﻿@charset "UTF-8";
/* CSS Document */

/*------------------------ Button hover effects ------------------------------*/
/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.0.0
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 * Hover.css Copyright Ian Lunn 2014. Generated with LESS.

 * Modified by: Maciej Bobrowski

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
 */
/*Variables =================================================================================================*/
/*Mixins =====================================================================================================*/
/*Hacks ======================================================================================================*/
/*Default Style ======================================================================================================*/
.btn {
  border-radius: 0;
  background-color: #eeeeee;
  color: #000000;
}
.btn:hover {
  color: #000000;
}
.btn span + i {
  padding-left: 10px;
}
.btn i + span {
  padding-left: 10px;
}
.btn-success {
  background-color: #5cb85c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: #4cae4c;
}
.btn-danger {
  background-color: #d9534f;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: #d43f3a;
}
.btn-warning {
  background-color: #f0ad4e;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: #eea236;
}
.btn-info {
  background-color: #5bc0de;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
  background-color: #46b8da;
}
.btn-primary {
  background-color: #337ab7;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #2e6da4;
}
.btn-default {
  background-color: #CCC;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  background-color: #CCC;
}
.btn-motive {
  background-color: #555556;
}
.btn-motive:hover,
.btn-motive:focus,
.btn-motive:active {
    background-color: #FFFFFF;
}
.btn {
  border: 1px solid transparent;
  color: #000000;
}
.btn:hover,
.btn:focus,
.btn:active {
    color: #5A5A5A;
}
.ct-btn-transparent {
  background-color: transparent;
  border-color: white;
  border-width: 1px;
  border-style: solid;
}
.ct-btn-transparent:hover {
  background-color: transparent;
  color: #000000;
}
.ct-btn-transparent.btn:hover {
  color: #CCC;
}
.ct-btn-transparent.btn-success:hover {
  color: #5cb85c;
}
.ct-btn-transparent.btn-danger:hover {
  color: #d9534f;
}
.ct-btn-transparent.btn-warning:hover {
  color: #f0ad4e;
}
.ct-btn-transparent.btn-info:hover {
  color: #5bc0de;
}
.ct-btn-transparent.btn-default:hover {
  color: #CCC;
}
.ct-btn-transparent.btn-primary:hover {
  color: #337ab7;
}
.ct-btn-transparent.btn-motive:hover {
  color: #555556;
}
/*Effects =====================================================================================================*/
/* Outline Out */
.btn.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn.ct-hover--outlineOut:hover:before,
.btn.ct-hover--outlineOut:focus:before,
.btn.ct-hover--outlineOut:active:before {
  border-color: #dddddd;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #dddddd;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-success.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-success.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-success.ct-hover--outlineOut:hover:before,
.btn-success.ct-hover--outlineOut:focus:before,
.btn-success.ct-hover--outlineOut:active:before {
  border-color: #4cae4c;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-success.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-success.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-success.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-success.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-success.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #4cae4c;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-danger.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-danger.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-danger.ct-hover--outlineOut:hover:before,
.btn-danger.ct-hover--outlineOut:focus:before,
.btn-danger.ct-hover--outlineOut:active:before {
  border-color: #d43f3a;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-danger.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-danger.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-danger.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-danger.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-danger.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #d43f3a;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-warning.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-warning.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-warning.ct-hover--outlineOut:hover:before,
.btn-warning.ct-hover--outlineOut:focus:before,
.btn-warning.ct-hover--outlineOut:active:before {
  border-color: #eea236;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-warning.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-warning.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-warning.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-warning.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-warning.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #eea236;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-info.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-info.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-info.ct-hover--outlineOut:hover:before,
.btn-info.ct-hover--outlineOut:focus:before,
.btn-info.ct-hover--outlineOut:active:before {
  border-color: #46b8da;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-info.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-info.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-info.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-info.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-info.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #46b8da;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-primary.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-primary.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-primary.ct-hover--outlineOut:hover:before,
.btn-primary.ct-hover--outlineOut:focus:before,
.btn-primary.ct-hover--outlineOut:active:before {
  border-color: #2e6da4;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-primary.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-primary.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-primary.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-primary.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-primary.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #2e6da4;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-default.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-default.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-default.ct-hover--outlineOut:hover:before,
.btn-default.ct-hover--outlineOut:focus:before,
.btn-default.ct-hover--outlineOut:active:before {
  border-color: #bfbfbf;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-default.ct-btn-rounded.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-default.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-default.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-default.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-default.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #bfbfbf;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.btn-motive.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.btn-motive.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-motive.ct-hover--outlineOut:hover:before,
.btn-motive.ct-hover--outlineOut:focus:before,
.btn-motive.ct-hover--outlineOut:active:before {
	border-color: #5D5D5D;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}
.btn-motive.ct-btn-rounded.ct-hover--outlineOut {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);

}
.btn-motive.ct-btn-rounded.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: "top, right, bottom, left";
  transition-property: "top, right, bottom, left";
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.btn-motive.ct-btn-rounded.ct-hover--outlineOut:hover:before,
.btn-motive.ct-btn-rounded.ct-hover--outlineOut:focus:before,
.btn-motive.ct-btn-rounded.ct-hover--outlineOut:active:before {
  border-color: #5D5D5D;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
/*------------------------ animate.css ------------------------------*/
/*------------------------ Yamm ------------------------------*/
/*!
 * Yamm!3
 * Yet another megamenu for Bootstrap 3
 * 
 * http://geedmo.github.com/yamm3
 */
@media (min-width: 768px) {
  .yamm .nav,
  .yamm .collapse,
  .yamm .dropup,
  .yamm .dropdown {
    position: static;
  }
  .yamm .container {
    position: relative;
  }
  .yamm .dropdown-menu {
    left: auto;
    right: auto;
  }
  .yamm .navbar-right .dropdown-menu.yamm-dropdown {
    left: auto;
    right: 0;
  }
  .yamm .dropdown-menu.yamm-dropdown {
    min-width: 60%;
  }
  .yamm .dropdown.yamm-fw .dropdown-menu {
    left: 0;
    right: 0;
  }
}
/*------------------------ Image hover effects ------------------------------*/
/**************http://tympanus.net/Development/HoverEffectIdeas/    *********/
/***********Lily**************/
.ct-hover-type1 img {
  width: auto;
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.ct-hover-type1 figcaption {
  top: auto !important;
  bottom: 0;
  height: 50% !important;
  text-align: left;
}
.ct-hover-type1 h2,
.ct-hover-type1 p {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
.ct-hover-type1 h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
.ct-hover-type1 p {
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}
.ct-hover-type1:hover img,
.ct-hover-type1:hover p {
  opacity: 1;
}
.ct-hover-type1:hover img,
.ct-hover-type1:hover h2,
.ct-hover-type1:hover p {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type1:hover p {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}
/***********Sadie*****************/
.ct-hover-type2 figcaption::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
}
.ct-hover-type2 h2 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #484c61;
  -webkit-transition: -webkit-transform 0.35s, color 0.35s;
  transition: transform 0.35s, color 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.ct-hover-type2 figcaption::before,
.ct-hover-type2 p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-hover-type2 p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2em;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
.ct-hover-type2:hover h2,
.ct-hover-type2:hover h2 span {
  color: #fff;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
}
.ct-hover-type2:hover figcaption::before,
.ct-hover-type2:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/********Honey******/
.ct-hover-type3 img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type3:hover img {
  opacity: 0.5;
}
.ct-hover-type3:hover figcaption::before,
.ct-hover-type3:hover h2,
.ct-hover-type3:hover h2 i {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type3 figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #fff;
  content: '';
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
.ct-hover-type3 h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em 1.5em;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
.ct-hover-type3 h2 i {
  font-style: normal;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
.ct-hover-type3 figcaption::before,
.ct-hover-type3 h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
/*******Layla***********/
.ct-hover-type4 img {
  min-width: 100%;
  height: -webkit-calc(140%);
  height: calc(140%);
}
.ct-hover-type4 figcaption {
  padding: 3em;
}
.ct-hover-type4 figcaption:before,
.ct-hover-type4 figcaption:after {
  position: absolute;
  content: '';
  opacity: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.ct-hover-type4 figcaption:before {
  top: 50px;
  right: 30px;
  bottom: 50px;
  left: 30px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.ct-hover-type4 figcaption:after {
  top: 30px;
  right: 50px;
  bottom: 30px;
  left: 50px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.ct-hover-type4 h2 {
  padding-top: 26%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
.ct-hover-type4 p {
  padding: 0.5em 2em;
  text-transform: none;
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.ct-hover-type4 img,
.ct-hover-type4 h2 {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
.ct-hover-type4 img,
.ct-hover-type4 figcaption::before,
.ct-hover-type4 figcaption::after,
.ct-hover-type4 p {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-hover-type4:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type4:hover figcaption::before,
.ct-hover-type4:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ct-hover-type4:hover h2,
.ct-hover-type4:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type4:hover figcaption::after,
.ct-hover-type4:hover h2,
.ct-hover-type4:hover p,
.ct-hover-type4:hover img {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
/********Zoe*********/
.ct-hover-type5 figcaption {
  top: auto !important;
  bottom: 0;
  padding: 23px !important;
  height: 60px !important;
  background: #000;
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-hover-type5 h2 {
  float: left;
  display: inline-block;
}
.ct-hover-type5 figcaption > i {
  float: right;
}
.ct-hover-type5 p {
  position: absolute;
  bottom: 8em;
  padding: 2em;
  color: #fff;
  text-transform: none;
  font-size: 90%;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type5 h2,
.ct-hover-type5 figcaption > i {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
.ct-hover-type5 figcaption > i:before {
  display: inline-block;
  padding: 8px 2px;
  -webkit-font-smoothing: antialiased;
}
.ct-hover-type5:hover p {
  opacity: 1;
}
.ct-hover-type5:hover figcaption,
.ct-hover-type5:hover h2,
.ct-hover-type5:hover figcaption > i {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type5:hover h2 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.ct-hover-type5:hover figcaption > i:nth-child(4) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.ct-hover-type5:hover figcaption > i:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.ct-hover-type5:hover figcaption > i:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
/*********Oscar**************/
.ct-hover-type6 {
  background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
  background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}
.ct-hover-type6 img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type6 figcaption {
  padding: 3em;
  background-color: rgba(58, 52, 42, 0.7);
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}
.ct-hover-type6 figcaption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: '';
}
.ct-hover-type6 h2 {
  margin: 20% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-hover-type6 figcaption::before,
.ct-hover-type6 p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.ct-hover-type6:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type6:hover figcaption::before,
.ct-hover-type6:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ct-hover-type6:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}
.ct-hover-type6:hover img {
  opacity: 0.4;
}
/*******Marley********/
.ct-hover-type7 {
  background: #000000;
}
.ct-hover-type7 img {
  opacity: 0.5 !important;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type7 figcaption {
  text-align: right;
}
.ct-hover-type7 h2,
.ct-hover-type7 p {
  position: absolute;
  right: 30px;
  left: 30px;
  padding: 10px 0;
}
.ct-hover-type7 p {
  bottom: 30px;
  line-height: 1.5;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.ct-hover-type7 h2 {
  top: 30px;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.ct-hover-type7 h2:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  content: '';
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
.ct-hover-type7:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type7:hover h2:after,
.ct-hover-type7:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type7 h2:after,
.ct-hover-type7 p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
/**************Ruby*************/
.ct-hover-type8 img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.ct-hover-type8:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ct-hover-type8:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type8:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.ct-hover-type8 h2 {
  margin-top: 20%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.ct-hover-type8 p {
  margin: 1em 0 0;
  padding: 3em;
  border: 1px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1);
}
/******Roxy*********/
.ct-hover-type9 {
  background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
  background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}
.ct-hover-type9 img {
  width: -webkit-calc(160%);
  width: calc(160%);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}
.ct-hover-type9 figcaption {
  padding: 3em;
  text-align: left;
}
.ct-hover-type9 figcaption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-20px, 0, 0);
  transform: translate3d(-20px, 0, 0);
}
.ct-hover-type9 h2 {
  padding: 30% 0 10px 0;
}
.ct-hover-type9 p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.ct-hover-type9:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type9:hover figcaption:before,
.ct-hover-type9:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/**********Bubba***********/
.ct-hover-type10 img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type10:hover img {
  opacity: 0.4;
}
.ct-hover-type10:hover figcaption::before,
.ct-hover-type10:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ct-hover-type10:hover h2,
.ct-hover-type10:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type10 figcaption::before,
.ct-hover-type10 figcaption::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-hover-type10 figcaption::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.ct-hover-type10 figcaption::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.ct-hover-type10 h2 {
  padding-top: 30%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
.ct-hover-type10 p {
  padding: 20px 2.5em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
/************Romeo************/
.ct-hover-type11 {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.ct-hover-type11 img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 0, 300px);
  transform: translate3d(0, 0, 300px);
}
.ct-hover-type11 figcaption:before,
.ct-hover-type11 figcaption:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: #fff;
  content: '';
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.ct-hover-type11 h2,
.ct-hover-type11 p {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
.ct-hover-type11 h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}
.ct-hover-type11 p {
  padding: 0.25em 2em;
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}
.ct-hover-type11:hover img {
  opacity: 0.6;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type11:hover figcaption:before {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.ct-hover-type11:hover figcaption:after {
  opacity: 0.5;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.ct-hover-type11:hover h2 {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}
.ct-hover-type11:hover p {
  -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
  transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}
/********Dexter*********/
.ct-hover-type12 {
  background: -webkit-linear-gradient(top, #258dc8 0%, #683c13 100%);
  background: linear-gradient(to bottom, #258dc8 0%, #683c13 100%);
}
.ct-hover-type12 img {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ct-hover-type12 h2 {
  position: absolute;
  bottom: 33%;
}
.ct-hover-type12 figcaption {
  padding: 3em;
  text-align: left;
}
.ct-hover-type12 figcaption:after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: -webkit-calc(20%);
  height: calc(20%);
  border: 2px solid #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.ct-hover-type12 p {
  position: absolute;
  right: 60px;
  bottom: 60px;
  left: 60px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}
.ct-hover-type12:hover img {
  opacity: 0.4;
}
.ct-hover-type12:hover figcaption::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type12:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/********Sarah***********/
.ct-hover-type13 img {
  width: -webkit-calc(120%);
  width: calc(120%);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ct-hover-type13:hover img {
  opacity: 0.4;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type13:hover h2:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type13:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type13 h2 {
  position: relative;
  overflow: hidden;
  padding: 0.5em 0;
}
.ct-hover-type13 h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.ct-hover-type13 figcaption {
  text-align: left;
}
.ct-hover-type13 p {
  padding: 1em 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
/*********Chico**********/
.ct-hover-type14 {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.ct-hover-type14 img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-hover-type14:hover img {
  opacity: 1;
}
.ct-hover-type14:hover figcaption::before,
.ct-hover-type14:hover p {
  opacity: 1;
}
.ct-hover-type14 figcaption {
  padding: 3em;
}
.ct-hover-type14 figcaption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: '';
  -webkit-transform: translate3d(0, 0, 70px);
  transform: translate3d(0, 0, 70px);
}
.ct-hover-type14 figcaption::before,
.ct-hover-type14 p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-hover-type14 h2 {
  padding: 20% 0 20px 0;
}
.ct-hover-type14 p {
  margin: 0 auto;
  max-width: 200px;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
/*************Milo**********/
.ct-hover-type15 img {
  width: -webkit-calc(160%);
  width: calc(160%);
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-30px, 0, 0) scale(1.12);
  transform: translate3d(-30px, 0, 0) scale(1.12);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ct-hover-type15:hover img {
  opacity: 0.5;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.ct-hover-type15:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ct-hover-type15 h2 {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1em 1.2em;
}
.ct-hover-type15 p {
  padding: 0 10px 0 0;
  width: 50%;
  border-right: 1px solid #fff;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0);
}
/*------------------------ Counter ------------------------------*/
.counter-group {
  display: inline-block;
}
.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}
.counter-group:after {
  clear: both;
}
.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}
.counter-group:after {
  clear: both;
}
.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}
.counter-group:after {
  clear: both;
}
.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}
.counter-group:after {
  clear: both;
}
.counter-block {
  float: left;
  padding-right: 40px;
  padding-left: 40px;
}
.counter-block .counter {
  position: relative;
  width: 165px;
  height: 140px;
  overflow: hidden;
}
.counter-block .counter .number {
  padding: 1%;
  width: 46%;
  height: 98%;
  background-color: #222222;
  position: absolute;
  font-size: 140px;
  line-height: 140px;
  top: -10000px;
}
.counter-block .counter .number.tens {
  left: 0;
}
.counter-block .counter .number.units {
  left: 50%;
}
.counter-block .counter .number.hundreds {
  display: none;
}
.counter-block .counter .number.show {
  top: 0;
  z-index: 2;
}
.counter-block .counter .number.hidden-down {
  top: 100%;
}
.counter-block .counter .number.hidden-up {
  top: -100%;
  z-index: 100;
}
.counter-block .counter.with-hundreds {
  width: 300px;
}
.counter-block .counter.with-hundreds .number {
  width: 30.66%;
}
.counter-block .counter.with-hundreds .number.tens {
  left: 33.33%;
}
.counter-block .counter.with-hundreds .number.units {
  left: 66.66%;
}
.counter-block .counter.with-hundreds .number.hundreds {
  display: block;
  left: 0;
}
.counter-block .counter-caption {
  font-size: 150%;
}
@media (max-width: 992px) {
  .counter-block {
    margin-right: 10px;
  }
  .counter-block .counter {
    width: 120px;
    height: 100px;
    overflow: hidden;
    font-weight: 700;
  }
  .counter-block .counter .number {
    font-size: 108px;
    line-height: 90px;
  }
  .counter-block .counter.with-hundreds {
    width: 180px;
  }
  .counter-block .counter-caption {
    font-size: 100%;
  }
}
@media (max-width: 768px) {
  .counter-block {
    margin-right: 8px;
  }
  .counter-block .counter {
    width: 96px;
    height: 80px;
  }
  .counter-block .counter .number {
    font-size: 86px;
    line-height: 72px;
  }
  .counter-block .counter.with-hundreds {
    width: 144px;
  }
  .counter-block .counter-caption {
    font-size: 85%;
  }
}
@media (max-width: 480px) {
  .counter-block .counter {
    width: 61px;
    height: 52px;
  }
  .counter-block .counter .number {
    font-size: 55px;
    line-height: 50px;
  }
  .counter-block .counter.with-hundreds {
    width: 91px;
  }
  .counter-block .counter-caption {
    font-size: 70%;
  }
}
.ct-counterBox {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
.ct-counterBox .ct-counterBox-number {
  font-size: 3rem;
  font-style: normal;
  color: #555556;
  display: block;
}
@media (max-width: 768px) {
  .ct-counterBox {
    width: 80px;
  }
}
.counter-block {
  font-size: 1rem;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.counter-block .counter {
  width: 140px !important;
  height: 140px !important;
  background-color: transparent;
  border: 1px solid #555556;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.counter-block .counter .number {
  width: auto;
  font-size: 3.9rem;
  font-weight: 300;
  line-height: 140px;
  background-color: transparent;
  color: #555556;
}
.counter-block .counter .hundreds {
  display: none !important;
}
.counter-block .counter-caption {
  background-color: transparent;
  color: #555556;
  padding: 15px;
  text-transform: uppercase;
  font-size: 1.25em;
  letter-spacing: 2px;
  opacity: 0.9;
}
.counter-block .counter .number.tens {
  left: 25%;
  z-index: 6000;
}
.counter-block .counter .number.units {
  right: 25%;
  left: auto;
}
@media (max-width: 992px) {
  .counter-block {
    display: block;
    width: 170px;
    float: none;
    margin-bottom: 30px;
  }
}
.col-md-4 .ct-graphBox.ct-graphBox--default {
  text-align: center;
}
.col-md-4 .ct-graphBox.ct-graphBox--default .ct-graphBox-graph {
  margin: 0 80px;
  line-height: 1;
}
.col-md-3 .ct-graphBox.ct-graphBox--default {
  text-align: center;
}
.col-md-3 .ct-graphBox.ct-graphBox--default .ct-graphBox-graph {
  margin: 0 30px;
}
.ct-graphBox.ct-graphBox--default {
  text-align: center;
}
.ct-graphBox.ct-graphBox--default .ct-graphBox-graph {
  position: relative;
}
.ct-graphBox.ct-graphBox--default .ct-graphBox-graph .ct-graphBox-graphPercentage {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -25px;
  font-size: 50px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}
.ct-graphBox.ct-graphBox--default .ct-graphBox-title {
  margin: 25px 0;
}
.ct-graphBox.ct-graphBox--default h5.ct-graphBox-title {
  line-height: 29px;
}
.ct--darkMotive .ct-graphBox.ct-graphBox--default .ct-graphBox-graph .ct-graphBox-graphPercentage {
  color: #ffffff;
}
@media (max-width: 991px) {
  .ct-graphBox.ct-graphBox--default .ct-graphBox-graph {
    margin: 0;
  }
  .col-sm-4 .ct-graphBox.ct-graphBox--default {
    text-align: center;
  }
  .col-sm-4 .ct-graphBox.ct-graphBox--default .ct-graphBox-graph {
    margin: 0;
    line-height: 1;
  }
}
/*------------------------ Owl ------------------------------*/
.item {
  display: table;
  width: 100%;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.item .item-inner {
  display: table-cell;
  vertical-align: middle;
}
.owl-controls .owl-buttons .owl-prev {
  background-color: transparent !important;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -31px !important;
  color: #000000 !important;
  font-size: 30px !important;
}
.owl-controls .owl-buttons .owl-next {
  background-color: transparent !important;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -31px !important;
  color: #000000 !important;
  font-size: 30px !important;
}
.ct-login .owl-controls .owl-buttons i {
  color: #555556;
  font-size: 25px;
}
.ct-login .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  bottom: -6px;
  padding-left: 4px;
  margin-top: auto;
  margin-bottom: auto;
}
.ct-login .owl-controls .owl-buttons .owl-next {
  position: absolute;
  bottom: -6px;
  right: 0;
  padding-right: 4px;
  margin-top: auto;
  margin-bottom: auto;
}
.owl-carousel.ct-owl--type2 {
  margin-bottom: -10px;
}
.owl-carousel.ct-owl--type2 .item {
  width: 100%;
}
.owl-carousel.ct-owl--type2 .item img {
  max-width: none;
  width: 100%;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-prev,
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-next {
  background-color: #555556;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  width: 25px;
  height: 24px;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-prev i,
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-next i {
  color: #ffffff;
  font-size: 14px;
  background-color: #555556;
  border-radius: 50%;
  width: 25px;
  height: 24px;
  line-height: 26px;
  vertical-align: middle;
  text-align: center;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-prev {
  left: 0;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-prev i {
  padding-right: 2px;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-next {
  left: 40px;
}
.owl-carousel.ct-owl--type2 .owl-controls .owl-buttons .owl-next i {
  padding-left: 2px;
}
.owl-carousel.ct-owl--type3 .item {
  width: 100%;
}
.owl-carousel.ct-owl--type3 .item img {
  max-width: none;
  width: 100%;
}
.owl-carousel.ct-owl--type3 .owl-controls {
  font-size: 10px;
}
.owl-carousel.ct-owl--type3 .owl-controls .owl-prev i {
  padding: 11px 15px 9px 12px;
  background-color: white;
  font-size: 15px;
}
.owl-carousel.ct-owl--type3 .owl-controls .owl-next i {
  padding: 11px 12px 9px 15px;
  background-color: white;
  font-size: 15px;
}
.owl-carousel.ct-owl--type4 .item {
  display: block;
}
.owl-carousel.ct-owl--type4 .owl-controls .owl-prev,
.owl-carousel.ct-owl--type4 .owl-controls .owl-next {
  color: #ffffff !important;
  font-size: 20px !important;
  top: 125px;
}
.owl-carousel.ct-owl--type4 .owl-controls .owl-prev {
  left: 50%;
  margin-left: -100px !important;
}
.owl-carousel.ct-owl--type4 .owl-controls .owl-next {
  right: 50%;
  margin-right: -100px !important;
}
@media (max-width: 480px) {
  .owl-carousel.ct-owl--type4 .owl-controls .owl-prev,
  .owl-carousel.ct-owl--type4 .owl-controls .owl-next {
    top: 102px;
  }
}
.ct-login .owl-wrapper {
  padding-bottom: 7px;
}
.ct-login .owl-carousel {
  height: 100%;
}
.ct-login .owl-theme .owl-controls .owl-page span {
  background-color: gray;
}
.ct-login .owl-theme .owl-controls .owl-page.active span {
  background-color: #444;
}
/*------------------------ Media section ------------------------------*/
/* **************************************
  MEDIA SECTIONS - VIDEO/PARALLAX/KENBURNS
  **************************************** */

@media(min-width:800px){
#ct-home .navbar {
position: fixed;
right:0;
left:0;
top: 37px !important;
}
#ct-home .ct-topBar{
position:fixed;
}
#ct-home .ct-mediaSection[data-type="parallax"]{
margin-top:170px;
}
}
@media (max-width:1366px) and (min-width: 1024px){
.ct-mediaSection[data-type="parallax"] {
background-attachment: fixed !important;
}
} 
.ct-mediaSection-overlay--motive,
.ct-mediaSection-overlay--black {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: .6;
  z-index: 0;
}
.ct-mediaSection-overlay--motive {
  background-color: #a382d4;
}
.ct-mediaSection-overlay--black {
  background-color: #ffffff;
}
video {
  width: 100%;
}
.mobile_hero {display:none;}
.ct-mediaSection {
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  width: 100%;
  position: relative;

}
.ct-mediaSection video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
}
.hero_video {width: 100%;
	height: 100%;
}
.ct-mediaSection .ct-mediaSection-inner {
  position: relative;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.media_iframe {
	-webkit-box-shadow: 0 0px 10px #9D9D9D;
	box-shadow: 0 0px 20px #9D9D9D;
	border: 2px solid #ffffff;
	background-color: #ffffff;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
background-position: center 170px !important;
background-size: cover;
height: 1300px;
}

@media (min-width: 1771px) and (max-width: 2070px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
	background-position: center 170px !important;
background-size: contain;
		height: 1050px !important;
}
}
@media (min-width: 1491px) and (max-width: 1770px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
background-size: contain;
	background-position: center 170px !important;
		height: 835px !important;
}
}

@media (min-width: 1366px) and (max-width: 1490px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
	background-position: center 170px !important;
background-size: contain;
		height: 750px !important;
}
}
@media (min-width: 1231px) and (max-width: 1365px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
background-size: contain;
	background-position: center 170px !important;
		height: 700px !important;
}
}
@media (min-width: 961px) and (max-width: 1230px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
background-size: contain;
	background-position: center 170px !important;
		height: 520px !important;
}
}
@media (min-width: 801px) and (max-width: 960px) {
.ct-mediaSection[data-type="parallax"] {
  background-attachment: fixed;
  display: table;
  position: static;
background-size: contain;
	background-position: center 170px !important;
		height: 445px !important;
}
}
@media  (max-width:800px)
{
.mobile_hero {display:inline;}
.ct-mediaSection[data-type="parallax"] {display:none}
.hero_video {display:none}
.media_iframe {display:none}
}

.ct-mediaSection[data-type="pattern"] {
  background-repeat: repeat;
  display: table;
}
.ct-mediaSection[data-type="pattern"] .ct-mediaSection-inner {
  display: table-cell;
}
.ct-mediaSection[data-type="parallax"].ct-mediaSection--stellar {
  overflow: hidden;
}
.ct-mediaSection[data-type="parallax"] .ct-mediaSection-inner {
  display: table-cell;
}


.ct-mediaSection[data-type="video"] .ct-u-displayTable {
  height: 100%;
  position: absolute;
  top: 0;
}
.ct-mediaSection[data-type="video"] .ct-mediaSection-inner {
  display: table-cell;
}
.ct-mediaSection[data-type="video"] .ct-mediaSection-video {
  position: absolute;
  min-width: 100%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

	
  .ct-mediaSection[data-type="video"] .ct-u-displayTable {
    display: block;
    position: relative;
  }
  .ct-mediaSection[data-type="video"] .ct-u-displayTable .ct-mediaSection-inner {
    display: block;
  }
.ct-mediaSection[data-type="kenburns"] {
  overflow: hidden;
  display: table;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-inner {
  display: table-cell;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img {
  vertical-align: middle;
  max-width: none;
  position: absolute;
  top: 0;
  margin-top: 0;
  min-width: 120%;
  min-height: 100%;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  margin-left: -5%;
  -webkit-transition-property: opacity, -webkit-transform;
  -webkit-transition-duration: 3s, 8s;
  -moz-transition-property: opacity, -moz-transform;
  -moz-transition-duration: 3s, 8s;
  -o-transition-property: opacity, -o-transform;
  -o-transition-duration: 3s, 8s;
  transition-property: opacity, transform;
  transition-duration: 3s, 8s;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img.singlefx {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(2n+1) {
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(3n+1) {
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(4n+1) {
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  transform-origin: bottom right;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .fx:first-child + img ~ img {
  z-index: -1;
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .fx {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transform: scale(1.1) translate(30px);
  -moz-transform: scale(1.1) translate(30px);
  -o-transform: scale(1.1) translate(30px);
  transform: scale(1.1) translate(30px);
}
@-webkit-keyframes singleimageloop {
  0% {
  -webkit-transform: scale(1) translate(0px);
    transform: scale(1) translate(0px);
  }
  50% {
  -webkit-transform: scale(1.1) translate(30px);
    transform: scale(1.1) translate(30px);
  }
  100% {
  -webkit-transform: scale(1) translate(0px);
    transform: scale(1) translate(0px);
  }
}
@-moz-keyframes singleimageloop {
  0% {
    -moz-transform: scale(1) translate(0px);
     transform: scale(1) translate(0px);
 }
  50% {
    -moz-transform: scale(1.1) ct-m-translate(30px);
     transform: scale(1.1) translate(30px);
 }
  100% {
    -moz-transform: scale(1) translate(0px);
     transform: scale(1) translate(0px);
 }
}
@-o-keyframes singleimageloop {
  0% {
    -o-transform: scale(1) translate(0px);
     transform: scale(1) translate(0px);
 }
  50% {
    -o-transform: scale(1.1) translate(30px);
    transform: scale(1.1) translate(30px);
  }
  100% {
    -o-transform: scale(1) translate(0px);
      transform: scale(1) translate(0px);
}
}
@keyframes singleimageloop {
  0% {
    transform: scale(1) translate(0px);
  }
  50% {
    transform: scale(1.1) translate(30px);
  }
  100% {
    transform: scale(1) translate(0px);
  }
}
.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .singlefx {
  -webkit-animation: singleimageloop 20s infinite;
  /* Safari 4+ */
  -moz-animation: singleimageloop 20s infinite;
  /* Fx 5+ */
  -o-animation: singleimageloop 20s infinite;
  /* Opera 12+ */
  animation: singleimageloop 20s infinite;
  /* IE 10+ */
}
.ct-mediaSection-stellarObject {
  position: absolute;
}
@media (max-width: 480px) AND (max-height: 500px) {
  .ct-navbar--transparent .ct-mediaSection {
    padding-top: 80px;
  }
}
/*------------------------ Buttons ------------------------------*/
.btn {
  font-size: 1rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 2;
  letter-spacing: 0.18em;
  color: white;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn.btn-sm {
  line-height: 1.8;
  padding-left: 28px;
  padding-right: 28px;
  font-size: .85rem;
}
.btn.ct-btn-block {
  display: block;
  width: 100%;
}
.btn.ct-hover--outlineOut.ct-btn-inverse:before {
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
}
.btn.ct-btn-link {
  border: none;
  background-color: transparent;
}
.btn.ct-btn-link:hover {
  text-decoration: underline !important;
}
.btn-success.ct-btn-link {
  color: #5cb85c;
}
.btn-success.ct-btn-transparent {
  color: #5cb85c;
  background-color: transparent;
  border-color: #4cae4c;
}
.btn-success.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-success.ct-btn-rounded {
  border-radius: 50px;
}
.btn-success:hover.ct-btn-link {
  color: #5cb85c;
}
.btn-success:hover.ct-btn-transparent {
  background-color: #5cb85c;
  color: white;
}
.btn-success:hover.ct-btn-inverse {
  color: #5cb85c;
  background-color: #ffffff;
}
.btn-success:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-success:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-success.active {
  background-color: #449d44;
  color: #ffffff;
}
.btn-success.active.ct-btn-transparent {
  background-color: #5cb85c;
  color: white;
}
.btn-success.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-success.active.ct-btn-inverse {
  background-color: #5cb85c;
  color: white;
}
.btn-success.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-danger.ct-btn-link {
  color: #d9534f;
}
.btn-danger.ct-btn-transparent {
  color: #d9534f;
  background-color: transparent;
  border-color: #d43f3a;
}
.btn-danger.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-danger.ct-btn-rounded {
  border-radius: 50px;
}
.btn-danger:hover.ct-btn-link {
  color: #d9534f;
}
.btn-danger:hover.ct-btn-transparent {
  background-color: #d9534f;
  color: white;
}
.btn-danger:hover.ct-btn-inverse {
  color: #d9534f;
  background-color: #ffffff;
}
.btn-danger:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-danger:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-danger.active {
  background-color: #c9302c;
  color: #ffffff;
}
.btn-danger.active.ct-btn-transparent {
  background-color: #d9534f;
  color: white;
}
.btn-danger.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-danger.active.ct-btn-inverse {
  background-color: #d9534f;
  color: white;
}
.btn-danger.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-warning.ct-btn-link {
  color: #f0ad4e;
}
.btn-warning.ct-btn-transparent {
  color: #f0ad4e;
  background-color: transparent;
  border-color: #eea236;
}
.btn-warning.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-warning.ct-btn-rounded {
  border-radius: 50px;
}
.btn-warning:hover.ct-btn-link {
  color: #f0ad4e;
}
.btn-warning:hover.ct-btn-transparent {
  background-color: #f0ad4e;
  color: white;
}
.btn-warning:hover.ct-btn-inverse {
  color: #f0ad4e;
  background-color: #ffffff;
}
.btn-warning:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-warning:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-warning.active {
  background-color: #ec971f;
  color: #ffffff;
}
.btn-warning.active.ct-btn-transparent {
  background-color: #f0ad4e;
  color: white;
}
.btn-warning.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-warning.active.ct-btn-inverse {
  background-color: #f0ad4e;
  color: white;
}
.btn-warning.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-info.ct-btn-link {
  color: #5bc0de;
}
.btn-info.ct-btn-transparent {
  color: #5bc0de;
  background-color: transparent;
  border-color: #46b8da;
}
.btn-info.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-info.ct-btn-rounded {
  border-radius: 50px;
}
.btn-info:hover.ct-btn-link {
  color: #5bc0de;
}
.btn-info:hover.ct-btn-transparent {
  background-color: #5bc0de;
  color: white;
}
.btn-info:hover.ct-btn-inverse {
  color: #5bc0de;
  background-color: #ffffff;
}
.btn-info:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-info:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-info.active {
  background-color: #31b0d5;
  color: #ffffff;
}
.btn-info.active.ct-btn-transparent {
  background-color: #5bc0de;
  color: white;
}
.btn-info.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-info.active.ct-btn-inverse {
  background-color: #5bc0de;
  color: white;
}
.btn-info.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-primary.ct-btn-link {
  color: #337ab7;
}
.btn-primary.ct-btn-transparent {
  color: #337ab7;
  background-color: transparent;
  border-color: #2e6da4;
}
.btn-primary.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-primary.ct-btn-rounded {
  border-radius: 50px;
}
.btn-primary:hover.ct-btn-link {
  color: #337ab7;
}
.btn-primary:hover.ct-btn-transparent {
  background-color: #337ab7;
  color: white;
}
.btn-primary:hover.ct-btn-inverse {
  color: #337ab7;
  background-color: #ffffff;
}
.btn-primary:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-primary:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-primary.active {
  background-color: #286090;
  color: #ffffff;
}
.btn-primary.active.ct-btn-transparent {
  background-color: #337ab7;
  color: white;
}
.btn-primary.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-primary.active.ct-btn-inverse {
  background-color: #337ab7;
  color: white;
}
.btn-primary.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-default.ct-btn-link {
  color: #bbbbbb;
}
.btn-default.ct-btn-transparent {
  border-color: #bbbbbb;
  color: #bbbbbb;
  background-color: transparent;
}
.btn-default.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-default.ct-btn-rounded {
  border-radius: 50px;
}
.btn-default:hover {
  background-color: #bbbbbb;
}
.btn-default:hover.ct-btn-link {
  color: #bbbbbb;
  background-color: transparent;
}
.btn-default:hover.ct-btn-transparent {
  background-color: #bbbbbb;
  color: white;
}
.btn-default:hover.ct-btn-inverse {
  color: #bbbbbb;
  background-color: #ffffff;
}
.btn-default:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-default:hover.ct-btn-rounded {
  border-radius: 50px;
}
.btn-default.active {
  background-color: #b3b3b3;
  color: #ffffff;
}
.btn-default.active.ct-btn-transparent {
  background-color: #cccccc;
  color: white;
}
.btn-default.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-default.active.ct-btn-inverse {
  background-color: #cccccc;
  color: white;
}
.btn-default.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-motive.ct-btn-link {
  color: #555556;
}
.btn-motive.ct-btn-transparent {
  background-color: transparent;
  border-color: #5D5D5D;
  color: #5D5D5D;
}
.btn-motive.ct-btn-inverse {
  border: 1px solid transparent;
}
.btn-motive.ct-btn-rounded {
  border-radius: 50px;
}
.btn-motive:hover.ct-btn-link {
  color: #555556;
}
.btn-motive:hover.ct-btn-transparent {
  background-color: #555556;
  color: white;
}
.btn-motive:hover.ct-btn-inverse {
  background-color: white;
  color: #555556;
}
.btn-motive:hover.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: white;
  z-index: 0;
}
.btn-motive:hover.ct-btn-rounded {
    border-radius: 50px;
}
.btn-motive.active {
  background-color: #875cc7;
  color: #ffffff;
}
.btn-motive.active.ct-btn-transparent {
  background-color: #555556;
  color: white;
}
.btn-motive.active.ct-btn-transparent.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.btn-motive.active.ct-btn-inverse {
  background-color: #555556;
  color: white;
}
.btn-motive.active.ct-btn-inverse.ct-hover--outlineOut:before {
  border-color: transparent !important;
  z-index: 0;
}
.ct-btn-mobileMenu,
.ct-btn-NavbarMenu {
  color: #ffffff !important;
  background-color: #555556 !important;
}
.ct-btn-mobileMenu {
  padding: 9px 17px !important;
}
.ct-btn-mobileMenu span {
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: left !important;
}
.ct-btn-NavbarMenu {
  padding: 4px 17px !important;
  font-weight: 500 !important;
}
.ct-btn-NavbarMenu span span {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
/*------------------------ Morph buttons ------------------------------*/
/* Morph Button: Default Styles */
.ct-morph-button {
  position: relative;
  display: block;
  margin: 0 auto;
}
.ct-morph-button > button {
  position: relative;
  padding: 0 1em;
  border: none;
  background-color: #e85657;
  color: #f9f6e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 80px;
  overflow: hidden;
}
.ct-morph-button.open > button {
  pointer-events: none;
}
.ct-morph-content {
  pointer-events: none;
}
.ct-morph-button.open .ct-morph-content {
  pointer-events: auto;
}
/* Common styles for overlay and modal type (fixed morph) */
.ct-morph-button-fixed,
.ct-morph-button-fixed .ct-morph-content {
  width: 300px;
  height: 80px;
}
.ct-morph-button-fixed > button {
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.1s 0.5s;
  transition: opacity 0.1s 0.5s;
}
.ct-morph-button-fixed.open > button {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.ct-morph-button-fixed .ct-morph-content {
  position: fixed;
  z-index: 900;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}
.ct-morph-button-fixed.open .ct-morph-content {
  opacity: 1;
}
.ct-morph-button-fixed .ct-morph-content > div {
  visibility: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
  transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
}
.ct-morph-button-fixed.open .ct-morph-content > div {
  visibility: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.5s;
  transition: opacity 0.3s 0.5s;
}
.ct-morph-button-fixed.active > button {
  z-index: 2000;
}
.ct-morph-button-fixed.active .ct-morph-content {
  z-index: 1900;
}
/* Transitions for overlay button and sidebar button */
.ct-morph-button-overlay .ct-morph-content,
.ct-morph-button-sidebar .ct-morph-content {
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}
.ct-morph-button-overlay.open .ct-morph-content,
.ct-morph-button-sidebar.open .ct-morph-content {
  -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}
/* Morph Button Style: Overlay */
.ct-morph-button.ct-morph-button-overlay {
  margin: 50px auto;
}
.ct-morph-button-overlay .ct-morph-content {
  overflow: hidden;
  background: #e85657;
}
.ct-morph-button-overlay.open .ct-morph-content {
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
}
/* Morph Button Style: Modal */
.ct-morph-button-modal::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
}
.ct-morph-button-modal.open::before {
  opacity: 1;
  pointer-events: auto;
}
.ct-morph-button-modal.active::before {
  z-index: 1800;
}
.ct-morph-button-modal .ct-morph-content {
  overflow: hidden;
  -webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}
.ct-morph-button-modal.open .ct-morph-content {
  top: 50% !important;
  left: 50% !important;
  margin: -210px 0 0 -300px;
  width: 600px;
  height: 420px;
  -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
  transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}
/* Colors and sizes for individual modals */
.ct-morph-button.ct-morph-button-modal-1 {
  float: left;
}
.ct-morph-button.ct-morph-button-modal-2,
.ct-morph-button.ct-morph-button-modal-3 {
  display: inline-block;
  margin: 10px 15px;
}
.ct-morph-button-modal-1 > button,
.ct-morph-button-modal-1 .ct-morph-content {
  background-color: #553445;
}
.ct-morph-button-modal-2 > button,
.ct-morph-button-modal-2 .ct-morph-content,
.ct-morph-button-modal-3 > button,
.ct-morph-button-modal-3 .ct-morph-content {
  background-color: #fef0e3;
  color: #e75854;
}
.ct-morph-button-modal-4 {
  display: inline-block;
}
.ct-morph-button-modal-4 > button,
.ct-morph-button-modal-4 .ct-morph-content {
  background-color: #faf1e0;
  color: #553445;
}
.ct-morph-button-modal-4 > button span,
.ct-morph-button-modal-4 .ct-morph-clone {
  padding-left: 10px;
  color: #286f81;
}
.ct-morph-button-modal-4 .ct-morph-clone {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 100;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-transition: bottom 0.4s 0.1s, right 0.4s 0.1s;
  transition: bottom 0.4s 0.1s, right 0.4s 0.1s;
}
.ct-morph-button-modal-4.open .ct-morph-clone,
.no-js .ct-morph-button-modal-4 .ct-morph-clone {
  right: 10px;
  bottom: 10px;
}
.ct-morph-button-modal-1::before {
  background: rgba(240, 221, 204, 0.7);
}
.ct-morph-button-modal-2.open .ct-morph-content {
  margin: -210px 0 0 -170px;
  width: 340px;
  height: 420px;
}
.ct-morph-button-modal-3.open .ct-morph-content {
  margin: -255px 0 0 -210px;
  width: 420px;
  height: 510px;
}
.ct-morph-button-modal-3.open .ct-morph-content > div {
  height: 420px;
}
.ct-morph-button-modal-2.open .ct-morph-content > div,
.ct-morph-button-modal-3.open .ct-morph-content > div {
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
}
.ct-morph-button-modal-4.open .ct-morph-content {
  margin: -200px 0 0 -320px;
  width: 640px;
  height: 400px;
}
/* Morph Button Style: In the content flow */
.ct-morph-button-inflow {
  overflow: hidden;
  max-width: 100%;
  height: 70px;
}
.ct-morph-button-inflow > button {
  width: 100%;
  line-height: 70px;
}
.ct-morph-button-inflow .ct-morph-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.ct-morph-button-inflow .ct-morph-content .ct-morph-clone {
  padding: 0;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 70px;
}
/* Colors and sizes for individual in flow buttons */
.ct-morph-button-inflow-1 {
  width: 600px;
  margin: 2em auto;
  -webkit-transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.ct-morph-button-inflow-1 > button span {
  visibility: hidden;
}
.ct-morph-button-inflow-1 .ct-morph-content .ct-morph-clone {
  color: #f9f6e5;
  background: #e85657;
}
.ct-morph-button-inflow-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  background-color: #fef0e3;
  -webkit-transition: height 0.3s, width 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, width 0.3s, transform 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.ct-morph-button-inflow-2 > button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #e75854;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.ct-morph-button-inflow-2.open > button {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.ct-morph-button-inflow-2 .ct-morph-content {
  width: 260px;
  height: 200px;
}
.ct-morph-button-inflow-2.open {
  width: 260px;
}
/* Morph Button Style: Sidebar */
.ct-morph-button-sidebar,
.ct-morph-button-sidebar .ct-morph-content {
  width: 60px;
  height: 60px;
}
.ct-morph-button-sidebar {
  position: fixed;
  bottom: 50px;
  left: 50px;
}
.ct-morph-button-sidebar > button {
  line-height: 60px;
  font-size: 1.6em;
  padding: 0;
}
.ct-morph-button-sidebar .ct-morph-content {
  background: #e85657;
}
.ct-morph-button-sidebar.open .ct-morph-content {
  top: 0 !important;
  left: 0 !important;
  width: 300px;
  height: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}
/* Let's add some nice easing for all cases */
.ct-morph-button .ct-morph-content,
.ct-morph-button.open .ct-morph-content,
.ct-morph-button-modal-4 .ct-morph-clone {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
/* Helper classes */
.noscroll {
  overflow: hidden;
}
.ct-morph-button-overlay.scroll .ct-morph-content {
  overflow-y: scroll;
}
.ct-morph-button-sidebar.scroll .ct-morph-content {
  overflow: auto;
}
/* No JS fallback: let's hide the button and show the content */
.no-js .ct-morph-button > button {
  display: none;
}
.no-js .ct-morph-button {
  margin: 10px 0;
  float: none;
}
.no-js .ct-morph-button,
.no-js .ct-morph-button .ct-morph-content,
.no-js .ct-morph-button .ct-morph-content > div {
  position: relative;
  width: auto;
  height: auto;
  opacity: 1;
  visibility: visible;
  top: auto;
  left: auto;
  -webkit-transform: none;
  transform: none;
  pointer-events: auto;
}
.no-js .ct-morph-button .ct-morph-content .icon-close {
  display: none;
  cursor: pointer;
}
.no-js .ct-morph-button-sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  height: 100%;
  background: #e85657;
  overflow: auto;
}
.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.ct-morph-button.ct-login {
  margin: 0 !important;
  height: 39px;
  width: 100%;
  max-width: 160px;
  background-color: transparent;
}
.ct-morph-button.ct-login > button {
  line-height: 27px;
  height: 37px;
  overflow: visible;
  outline: none !important;
}
.ct-morph-button.ct-login .ct-morph-content {
  width: 158px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: white;
  background-color: #555556;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.ct-morph-button.ct-login.open .ct-morph-content {
  background-color: white;
  width: 340px;
  height: 450px;
  margin-left: -170px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.ct-morph-button.ct-login.open .ct-morph-content > div {
  position: relative;
  height: 100%;
}
.ct-morph-button.ct-login.open .ct-morph-content > div > span {
  z-index: 2;
  color: #555556;
  position: absolute;
  top: 3px;
  right: 19px;
  cursor: pointer;
  font-size: 1.1em;
}
.ct-morph-button.ct-login.open .ct-morph-content > div .content {
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
}
.ct-morph-button.ct-login.open .ct-morph-content > div .content h1,
.ct-morph-button.ct-login.open .ct-morph-content > div .content h2,
.ct-morph-button.ct-login.open .ct-morph-content > div .content h3,
.ct-morph-button.ct-login.open .ct-morph-content > div .content h4,
.ct-morph-button.ct-login.open .ct-morph-content > div .content h5,
.ct-morph-button.ct-login.open .ct-morph-content > div .content h6 {
  color: #222;
  line-height: 1.158;
  letter-spacing: 0.143em;
  padding: 10px 0;
}
/* Media Queries */
@media screen and (max-width: 600px) {
  .ct-morph-button-modal.open .ct-morph-content {
    top: 0 !important;
    left: 0 !important;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  }
}
@media screen and (max-width: 400px) {
  .ct-morph-button-fixed,
  .ct-morph-button-fixed .ct-morph-content {
    width: 100%;
    height: 80px;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .ct-morph-button-fixed > button {
    font-size: 75%;
  }
  .ct-morph-button-sidebar > button {
    font-size: 1.6em;
  }
  .ct-morph-button-inflow .ct-morph-content .ct-morph-clone {
    font-size: 0.9em;
  }
  .ct-morph-button-modal-4,
  .ct-morph-button-modal-4 .ct-morph-content {
    width: 100%;
    height: 120px;
  }
  .ct-morph-button-modal-4 > button {
    font-size: 100%;
    line-height: 50px;
  }
  .ct-morph-button-modal-4 > button span {
    display: block;
  }
  .ct-morph-button-modal-4 .ct-morph-clone {
    right: 83px;
    bottom: 26px;
  }
  .ct-morph-button-sidebar,
  .ct-morph-button-sidebar .ct-morph-content {
    width: 100% !important;
    height: 60px !important;
  }
  .ct-morph-button-sidebar {
    bottom: 0;
    left: 0;
  }
  .ct-morph-button-sidebar.open .ct-morph-content {
    height: 100% !important;
  }
}
.ct-mbMorphButtonContainer {
  font-size: 1rem;
  position: relative;
  display: inline-block;
  float: left;
}
.ct-mbMorphButtonContainer button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #555556;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .ct-mbMorphIconClose {
  position: absolute;
  top: 5px;
  right: 18px;
  font-size: 19px;
  color: #555556;
  z-index: 10000;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .ct-mbMorphIconClose:hover {
  cursor: pointer;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer.morph-open {
  position: fixed;
  display: block;
  z-index: 90000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner {
  background-color: #FFF;
}
.ct-mbMorphButtonContainer .ct-mbMorphButton-overlay {
  position: fixed;
  content: "";
  z-index: 80000;
  display: none;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  top: -50vh;
  left: -50vw;
  width: 200vw;
  height: 200vh;
  background-color: rgba(0, 0, 0, 0.4);
}
.ct-mbMorphButtonContainer.ct-menu-morph {
  height: 40px;
  width: 190px;
}
.ct-mbMorphButtonContainer.ct-menu-morph button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons {
  position: relative !important;
  margin: 50px 30px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-prev,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-next {
  font-size: 16px !important;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-prev:hover,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-next:hover {
  color: #555556 !important;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-prev.disabled,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-next.disabled {
  opacity: .1;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-prev.disabled:hover,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .owl-carousel .owl-controls .owl-buttons .owl-next.disabled:hover {
  opacity: 1;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item {
  text-align: left;
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  opacity: 0;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item:first-child {
  opacity: 1;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h1,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h2,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h3,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h4,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h5,
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content h6 {
  margin-bottom: 20px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content form .form-group input {
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .item .content form button {
  height: 46px;
  margin: 20px 0 10px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer.morph-open {
  width: 320px;
  height: 480px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ct-mbMorphButtonContainer.ct-menu-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ct-mbMorphButtonContainer.ct-personBox-morph,
.ct-mbMorphButtonContainer.ct-teamMember-morph {
  height: 2.857em;
  width: 2.857em;
  border-radius: 50%;
}
.ct-mbMorphButtonContainer.ct-personBox-morph button,
.ct-mbMorphButtonContainer.ct-teamMember-morph button {
  letter-spacing: normal;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer {
  border-radius: 50%;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open {
  position: fixed;
  width: 320px;
  height: 480px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner {
  background-color: #FFF;
  padding: 10px 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h1,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h1,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h2,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h2,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h3,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h3,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h4,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h4,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h5,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h5,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h6,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner h6 {
  margin-bottom: 20px;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form .form-group input,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form .form-group input,
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form .form-group textarea,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form .form-group textarea {
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.ct-mbMorphButtonContainer.ct-personBox-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form button,
.ct-mbMorphButtonContainer.ct-teamMember-morph .ct-mbMorphButton-wrapper-outer.morph-open .ct-mbMorphButton-wrapper-inner form button {
  height: 46px;
  margin: 20px 0 10px;
}
.ct-mbMorphButtonContainer.ct-teamMember-morph {
  width: 25px;
  height: 25px;
}
.ct-mbMorphButtonContainer.ct-teamMember-morph > button {
  font-size: 15px;
  line-height: 24px;
  padding: 0;
  position: absolute !important;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .ct-mbMorphButtonContainer button {
    padding: 0;
  }
  .ct-mbMorphButtonContainer .ct-mbMorphButton-wrapper-outer .ct-mbMorphButton-wrapper-inner .ct-mbMorphIconClose {
    position: static;
    line-height: 1;
    padding: 0;
    margin: 0 0 10px 0;
    height: 20px;
  }
}
/*------------------------ Divided ------------------------------*/
.ct-divided .row .col-sm-4 {
  padding-right: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-divided .row .col-sm-8 {
  padding-left: 90px;
}
@media (max-width: 768px) {
  .ct-divided .row .col-sm-4,
  .ct-divided .row .col-sm-8 {
    padding-left: 15px;
    padding-right: 15px;
    border: none;
  }
}
/*------------------------ Menu ------------------------------*/
.mainHeader {
  width: 100%;
  z-index: 10;
  background-color: transparent;
}
body.ct-navbar--transparent .mainHeader {
  position: absolute;
}
body.ct-navbar--transparent nav.navbar {
  background-color: transparent;
  border: none;
}
body.ct-navbar-fixed-top .mainHeader {
  position: fixed;
}
body.ct-navbar-fixed-top .mainHeader nav,
body.ct-navbar-fixed-top .mainHeader .ct-topBar {
  width: 100%;
}
.ct-topBar {
	z-index: 9999;
	background-color: #B9B8B8;
	min-height: 38px;
	padding-right: 45px;
	padding-left: 45px;
	display: table;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.ct-topBar {
			padding-right: 5px !important;
	padding-left: 5px !important;

}

}
.ct-topBar .ct-topBar-inner {
  max-width: 1350px;
}
.ct-topBar .quick-contact .contact-phone,
.ct-topBar .quick-contact .contact-email {
	font-family: "Roboto Slab", sans-serif;
	text-transform: uppercase;
	font-size: 1rem;
	line-height: 1.2rem;
	margin-top: 8px;
	margin-bottom: 0px;
}
.ct-topBar .quick-contact .contact-phone {
	color: rgba(50,50,51,0.70);
	font-weight: 400;
	line-height: normal;
}
.ct-topBar .quick-contact .contact-email a {
	color: #555556;
	margin-left: 30px;
	text-decoration: none;
	font-weight: 400;
}
.ct-topBar .quick-contact .contact-email a:hover {
  color: rgba(95, 101, 107, 0.7);
}
.social-navbar {
  display: table;
  height: 38px;
}
.navbar-header-mobileLogo {
	display: none;
	padding-top: 20px;
	padding-bottom: 20px;
}
.navbar-header-mobileLogo .navbar-brand {
  float: none;
}
.navbar-header-mobileLogo .navbar-brand img {
  margin: 0 auto;
  max-width: 90%;
}
.ct-navbarMobile,
.ct-menuMobile {
  display: none;
}
.navbar-toggle {
  padding: 10px 10px;
  margin-top: 1px;
  color: #efefef;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}
.navbar-toggle span {
  background-color: #6d7173;
}
.ct-menuMobile {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 266px;
	z-index: -1;
	height: 100%;
	overflow: scroll;
	background-color: #464646;
}
.ct-menuMobile .navbar-brand {
  padding: 9px 15px;
}
.ct-menuMobile .navbar-brand img {
  margin-top: 3px;
}
.ct-menuMobile ul.ct-menuMobile-navbar {
  padding: 37px 0 0 0;
  height: 100%;
}
.ct-menuMobile ul.ct-menuMobile-navbar > li:last-child {
	background: none;
	padding: 5px 0;
	margin: 0;
}
.ct-menuMobile ul.ct-menuMobile-navbar > li > a {
	font-family: "Lato", sans-serif;
	font-weight: 500;
	display: block;
	padding: 12px 19px;
	text-decoration: none;
	color: #464646;
	overflow: hidden;
	font-size: 1.2rem;
}

@media (max-width: 480px) {
	
.ct-menuMobile ul.ct-menuMobile-navbar > li > a {
	font-family: "Lato", sans-serif;
	font-weight: 500;
	display: block;
	padding: 12px 19px;
	text-decoration: none;
	color: #464646;
	overflow: hidden;
	font-size: 1.5rem;
}
	}


.ct-menuMobile ul.ct-menuMobile-navbar > li:hover a {
	background-color: #464646;
	color: #FFF;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown {
	overflow: hidden;
	padding: 5px 0;
	margin: 0;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown .dropdown-menu {
  position: static;
  width: 100%;
  display: none;
  margin: 0;
  padding: 0;
  background-color: #FFF;
  border: none;
  border-radius: 0;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown .dropdown-menu li a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background-color: transparent;
  color: #000;
  padding: 5px 15px;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown .dropdown-menu li:hover a,
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown .dropdown-menu li.active a {
  color: #555556;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown .dropdown-menu li:hover {
  background-color: #F4F4F4;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown.active a {
  font-weight: 700;
  color: white;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown.open {
  background-color: #F5F5F5;
  padding: 0;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown.open > a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background-color: #555556;
  color: #FFF;
}
.ct-menuMobile ul.ct-menuMobile-navbar .dropdown.open .dropdown-menu {
  display: block;
}
body.snapjs-right .ct-menuMobile {
  z-index: 0;
}
.navbar {
	z-index: 1;
	margin-bottom: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding-top: 12px;
	padding-right: 40px;
	padding-left: 40px;
	padding-bottom: 10px;
	display:block;
		-webkit-box-shadow: 0 0 15px #CFCFCF;
	box-shadow: 0 0 15px #CFCFCF;


}
.navbar .navbar-nav li:last-child {
  margin-top: 4px;
}
.navbar .navbar-nav.yamm .dropdown > a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8462;
}
.navbar .navbar-nav.yamm .dropdown > a:after {
  font-family: fontawesome;
  content: "\f0d7 ";
  position: absolute;
  right: 4px;
  top: 57%;
  margin-top: -12px;
}
.navbar .navbar-menu {
	
	max-width: 1350px;
	position: relative;
	
}


.navbar .navbar-menu .navbar-header {
	display: block;
	
	/* [disabled]text-align:center; */
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav {
margin-top:64px;
}

.navbar .navbar-menu .navbar-collapse ul.navbar-nav a {
	font-family: "Lato", sans-serif;
	font-weight: 500;
	display: block;
	background-color: transparent;
	text-transform: uppercase;
	padding-top: 7px;
	padding-right: 18px;
	padding-left: 18px;
	padding-bottom: 7px;
	line-height: 1.4rem;
	font-size: 1rem;
	color: #5f656b;
	letter-spacing: 0.2rem !important;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media (min-width:926px) and (max-width:1020px) {
	.navbar .navbar-menu .navbar-collapse ul.navbar-nav a {
	font-size: .9rem !important;
	letter-spacing: 0.2em !important;
	padding-right: 14px !important;
	padding-left: 14px !important;
	}
		.navbar-brand img {
		max-height: 99%;}
.navbar .navbar-nav.yamm .dropdown > a:after {
  font-family: fontawesome;
  content: "\f0d7 ";
  position: absolute;
  right: 2px;
  top: 57%;
  margin-top: -12px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav {
margin-top:52px;
}


	}
	
	@media (min-width:851px) and (max-width:925px) {
	.navbar .navbar-menu .navbar-collapse ul.navbar-nav a {
	font-size: .9rem !important;
		letter-spacing: 0.1em !important;
	padding-right: 15px;
	padding-left: 15px;

	}
	.navbar-brand img {
		max-height: 100%;
		}
		.navbar .navbar-nav.yamm .dropdown > a:after {
  font-family: fontawesome;
  content: "\f0d7 ";
  position: absolute;
  right: 4px;
  top: 57%;
  margin-top: -12px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav {
margin-top:50px;
}

	}

	
@media (min-width:769px) and (max-width:850px) {
	.navbar .navbar-menu .navbar-collapse ul.navbar-nav a {
	font-size: .85rem !important;
		letter-spacing: 0.2em !important;
	padding-right: 8px;
	padding-left: 8px;

	}
	.navbar-brand img {
	max-height: 90%;
		}
		.navbar .navbar-nav.yamm .dropdown > a:after {
  font-family: fontawesome;
  content: "\f0d7 ";
  position: absolute;
  right: -2px;
  top: 57%;
  margin-top: -12px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav {
margin-top:50px;
margin-left:auto;
margin-right:auto;
}

	}

.navbar .navbar-menu .navbar-collapse ul.navbar-nav li.active a,
.navbar .navbar-menu .navbar-collapse ul.navbar-nav li:hover a {
  color: #555556;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 2;
  display: none;
  border: none;
  margin-top: 27px;

}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu:before {
  position: absolute;
  top: -4px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #555556;
  opacity: .6;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 36px;
  background-color: transparent;
  content: '';
  top: -36px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background-color: transparent;
  color: #5f656b;
  text-transform: none;
  padding-top: 0;
  padding-bottom: 0;
	letter-spacing: normal !important;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu li:hover a,
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu li.active a {
  color: #555556;
}


.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu li:hover {
  background-color: #F4F4F4;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown .dropdown-menu li.logo:hover {
  background-color: transparent;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner:hover {
  background-color: transparent;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner:hover a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  color: #5f656b;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content .row {
  margin-left: 0;
  margin-bottom: 0;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content .row .row {
  margin-left: -15px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content .row .row > div {
  margin-top: -5px;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content li a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  padding: 7px 19px;
  font-size: 13px;
  line-height: 1.8462;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content li:hover a,
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content li.active a {
  color: #555556;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown ul.dropdown-menu > li.yamm-inner .yamm-content h6 {
  padding-top: 5px;
  padding-left: 10px;
  font-size: 1rem;
  color: #555556;
}
.navbar .navbar-menu .navbar-collapse ul.navbar-nav.yamm li.dropdown.yamm-fw ul.dropdown-menu {
  max-width: 1065px;
  margin-left: auto;
  margin-right: auto;
}
h5.ct-menu-header {
  padding-left: 10px;
  color: #555556;
  font-size: 16px;
}
h5.ct-menu-header small {
  display: block;
  margin-top: 5px;
}
.header-search {
  min-height: 50px;
  margin-left: 35px;
  float: right;
}
.header-search form {
  width: 234px;
}
.header-search form .input-group {
  position: relative;
  float: right;
  margin-top: 9px;
}
.header-search form .input-group .search-input::-webkit-input-placeholder {
  color: #92989e !important;
  color: rgba(95, 101, 107, 0.3) !important;
}
.header-search form .input-group .search-input::-moz-placeholder {
  color: #92989e !important;
  color: rgba(95, 101, 107, 0.3) !important;
}
.header-search form .input-group .search-input::-moz-placeholder {
  color: #92989e !important;
  color: rgba(95, 101, 107, 0.3) !important;
}
.header-search form .input-group .search-input:-ms-input-placeholder {
  color: #92989e !important;
  color: rgba(95, 101, 107, 0.3) !important;
}
.header-search form .input-group input.search-input {
  margin: 0 !important;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  border-color: #d7d8d9;
  box-shadow: none;
  float: right;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  width: 158px;
  height: 39px !important;
  padding: 6px 35px 6px 12px !important;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}
.header-search form .input-group input.search-input:focus {
  width: 234px;
  border-color: #5D5D5D;
}
.header-search form .input-group span {
  position: absolute;
  right: 0;
  height: 39px;
}
.header-search form .input-group span button {
  display: block;
  width: 28px;
  height: 100%;
  z-index: 2;
  background: transparent !important;
  border: none;
  padding: 0 5px;
  overflow: hidden;
  color: transparent;
  margin: 0;
  margin-top: -2px;
}
.header-search form .input-group span button:focus,
.header-search form .input-group span button:active,
.header-search form .input-group span button:hover,
.header-search form .input-group span button:visited {
  outline: 0;
  box-shadow: none;
}
.header-search form .input-group span button:before {
  content: '\f002';
  font-family: fontawesome;
  display: inline-block;
  line-height: 39px;
  margin: 0 auto;
  margin-top: -5px;
  color: #dedfe0;
}
.ct-navbar--bounceIn > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--fadeIn > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--fadeInLeft > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--fadeInRight > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--fadeInDown > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--fadeInUp > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--pulse > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--bounceInRight > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--bounceInLeft > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--flipInX > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--flipInY > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--zoomIn > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--zoomInDown > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-navbar--zoomInUp > li.dropdown:hover .dropdown-menu {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.navbar-scroll-top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.headroom {
  transition: transform 200ms linear;
  z-index: 9998;
}
.headroom--pinned {
  transform: translateY(0%);
  display: block;
}
.headroom--unpinned {
  transform: translateY(-100%);
  display: none;
}
@media (max-width: 1400px) {
  nav.navbar .navbar-menu .navbar-collapse ul.navbar-nav > li > a {
	font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .ct-topBar .social-navbar {
    margin-right: 20px !important;
  }
  nav.navbar {
    display: none;
  }
  .ct-navbarMobile,
  .ct-menuMobile,
  .navbar-header-mobileLogo {
    display: block;
  }
 .ct-topBar {margin-left:0px !important;}
 
}
@media (max-width: 570px) {
}
@media (max-width: 480px) {
}
@media (max-height: 500px) {
  .navbar-header-mobileLogo {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/*------------------------ Social icons ------------------------------*/
.socialicons {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0;
}
.socialicons li {
  list-style-type: none;
  float: left;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialicons li:first-child {
  margin-left: 0;
}
.socialicons li:hover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.socialicons li:hover a {
  background-color: #555556;
}
.socialicons li a {
  border-radius: 50%;
  display: block;
  text-align: center;
}
.socialicons-sm li {
  margin-left: 15px;
}
.socialicons-sm li a {
  height: 22px;
  width: 22px;
  font-size: 14px;
  line-height: 22px;
}
.socialicons-md li {
  margin-left: 15px;
}
.socialicons-md li a {
  height: 25px;
  width: 25px;
  font-size: 17px;
  line-height: 25px;
}
.socialicons-lg li {
  margin-left: 20px;
}
.socialicons-lg li a {
  height: 30px;
  width: 30px;
  font-size: 19px;
  line-height: 30px;
}
.socialicons--white li a {
  background-color: #FFF;
  color: #222;
}
.socialicons--white li:hover a {
  color: white;
}
.socialicons--gray li a {
  background-color: #d7d8d9;
  color: #FFF;
}
.socialicons--gray li:hover a {
  color: white;
}
.socialicons--darkGray li a {
  background-color: #393939;
  color: #222;
}
.socialicons--darkGray2 li a {
  background-color: #393939;
  color: white;
}
/*------------------------ Forms ------------------------------*/
.successMessage,
.errorMessage {
  display: none;
}
.ct-alert {
  border: 1px solid transparent;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 15px;
  margin-bottom: 20px;
}
.ct-alert .ct-alert-header {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}
.ct-alert .ct-alert-header .ct-alert-title {
  display: table-cell;
  vertical-align: middle;
}
.ct-alert .ct-alert-header .ct-alert-title * {
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.ct-alert .ct-alert-header .ct-alert-closeIcon {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.ct-alert .ct-alert-header .ct-alert-closeIcon i {
  height: 17px;
  width: 17px;
  line-height: 17px;
  background-color: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
}
.ct-alert .ct-alert-content p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.929rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.ct-alert.ct-alert--success {
	background-color: #C1B6C8;
	border-color: #FFFFFF;
}
.ct-alert.ct-alert--success .ct-alert-header .ct-alert-closeIcon i {
	color: #4C4D4C;
}
.ct-alert.ct-alert--success.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--success.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
	background-color: #4C4C4C;
	color: #ffffff;
}
.ct-alert.ct-alert--danger {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.ct-alert.ct-alert--danger .ct-alert-header .ct-alert-closeIcon i {
  color: #d9534f;
}
.ct-alert.ct-alert--danger.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--danger.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #d9534f;
  color: #ffffff;
}
.ct-alert.ct-alert--warning {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.ct-alert.ct-alert--warning .ct-alert-header .ct-alert-closeIcon i {
  color: #f0ad4e;
}
.ct-alert.ct-alert--warning.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--warning.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #f0ad4e;
  color: #ffffff;
}
.ct-alert.ct-alert--info {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.ct-alert.ct-alert--info .ct-alert-header .ct-alert-closeIcon i {
  color: #5bc0de;
}
.ct-alert.ct-alert--info.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--info.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #5bc0de;
  color: #ffffff;
}
.ct-alert.ct-alert--primary {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.ct-alert.ct-alert--primary .ct-alert-header .ct-alert-closeIcon i {
  color: #337ab7;
}
.ct-alert.ct-alert--primary.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--primary.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #337ab7;
  color: #ffffff;
}
.ct-alert.ct-alert--default {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.ct-alert.ct-alert--default .ct-alert-header .ct-alert-closeIcon i {
  color: #bbbbbb;
}
.ct-alert.ct-alert--default.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--default.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #bbbbbb;
  color: #ffffff;
}
.ct-alert.ct-alert--motive {
  background-color: #555556;
  border-color: #5D5D5D;
}
.ct-alert.ct-alert--motive .ct-alert-header .ct-alert-closeIcon i {
  color: #555556;
}
.ct-alert.ct-alert--motive.ct-alert--inverse {
  background-color: #ffffff;
}
.ct-alert.ct-alert--motive.ct-alert--inverse .ct-alert-header .ct-alert-closeIcon i {
  background-color: #555556;
  color: #ffffff;
}
.ct-alert.ct-alert--sm {
  padding: 8px;
  margin-bottom: 5px;
  line-height: 0;
  margin-top: -5px !important;
}
.ct-alert.ct-alert--sm .ct-alert-header {
  margin-bottom: 0;
  position: relative;
}
.ct-alert.ct-alert--sm .ct-alert-header .ct-alert-title * {
  font-size: 1rem;
  padding: 0;
}
.ct-alert.ct-alert--sm .ct-alert-header .ct-alert-closeIcon {
  position: absolute;
  top: -1px;
  right: -5px;
}
.ct-alert.ct-alert--sm .ct-alert-header .ct-alert-closeIcon i {
  height: 15px;
  width: 15px;
  line-height: 15px;
  font-size: 12px;
}
.ct-alert.ct-alert--sm .ct-alert-content p {
  font-size: 0.8rem;
}
form {
  text-align: left;
  color: black;
  margin-bottom: 30px;
}
form .form-group {
  margin-bottom: 10px;
  line-height: 1;
}
form .form-group label {
  margin-bottom: 5px;
}
form .form-control {
  padding: 6px 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 10px;
  box-shadow: none;
  padding-left: 20px;
}
form .form-control:focus {
  border-color: #5D5D5D;
  box-shadow: none;
}
form input.form-control {
  height: 48px;
}
form button {
  outline: none !important;
  min-height: 48px;
}
.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
}
.form-inline .form-group input {
  margin-bottom: 0;
}
.form-inline .form-group button {
  bottom: auto;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  position: relative;
  top: 2px;
}
.form-inline .radio label,
.form-inline .checkbox label {
  display: block;
  height: 48px;
  line-height: 46px;
}
select.form-control {
  box-shadow: none !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
select.form-control:active,
select.form-control:focus {
  border: 1px solid #555556;
}
.ct-newsletter {
  max-width: 370px;
  margin: 0 auto;
}
.ct-newsletter form .input-group {
  width: 100%;
}
.ct-newsletter form .input-group input.form-control {
  padding-right: 55px;
}
.ct-newsletter form .input-group span button {
  height: 46px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  width: 45px;
  position: absolute !important;
  padding: 0;
  top: 1px;
  z-index: 2;
  margin: 0;
  right: 3px;
  min-height: 46px !important;
}
/*------------------------ Widget ------------------------------*/
.widget {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.widget-links ul li {
  margin: 0;
}
.widget-location .widget-inner p {
  font-size: 16px;
  line-height: 1.714;
  font-weight: 300;
  color: #000;
  margin-bottom: 0.313em;
}
.widget-contact .widget-inner .widget-phone,
.widget-contact .widget-inner .widget-email {
  font-size: 16px;
  line-height: 1.714;
  font-weight: 300;
}
.widget-contact .widget-inner .widget-phone {
	color: #fff;
	margin-bottom: 0.313em;
}
.widget-contact .widget-inner .widget-email a {
  color: #000;
}
.widget-contact .widget-inner .widget-email a:hover {
  color: #555556;
}
.widget-social .widget-inner .socialicons li:first-child {
  margin-left: 0;
}
/*------------------------ Icon box ------------------------------*/
.ct-iconBox {
  font-size: 1.143rem;
  margin: 0 0 3.125em;
}
.ct-iconBox.ct-iconBox--type1 {
  text-align: center;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-logo {
  display: block;
  margin-bottom: 2.400em;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-logo span {
  border: 1px solid #555556;
  width: 6.563em;
  height: 6.563em;
  line-height: 6.563em;
  vertical-align: middle;
  margin: 0 auto;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-logo span i {
  font-size: 1.875em;
  display: block;
  line-height: 3.500em;
  color: #555556;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-header .ct-iconBox-title {
  font-family: 'Lato', sans-serif;
  line-height: 1.29411;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.188em;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-text {
  margin-bottom: 15px;
}
.ct-iconBox.ct-iconBox--type1 .ct-iconBox-text p {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.938em;
  line-height: 1.9;
  font-weight: 500;
  padding-left: 3.125em;
  padding-right: 3.125em;
}
.ct-iconBox.ct-iconBox--type1:hover .ct-iconBox-header .ct-iconBox-logo span {
  background-color: #555556;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.ct-iconBox.ct-iconBox--type1:hover .ct-iconBox-header .ct-iconBox-logo span i {
  color: white;
}
.ct-iconBox.ct-iconBox--type1:hover .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
	border-color: #555556;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
}
.ct-iconBox.ct-iconBox--type2 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 auto;
  padding-bottom: 70px;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-logo span {
  display: inline-block;
  width: 5.313em;
  height: 5.313em;
  line-height: 5.313em;
  border: 2px solid #5f656b;
  vertical-align: middle;
  text-align: center;
  color: #5f656b;
  float: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-logo span i {
  font-size: 2.500em;
  line-height: 100%;
  vertical-align: middle;
  margin-top: -11px;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-title {
  height: 5.313em;
  display: table;
  padding-left: 20px;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-header .ct-iconBox-title div {
  display: table-cell;
  vertical-align: middle;
  font-weight: 300;
  text-align: left;
  color: #222222;
  line-height: 1.1;
}
.ct-iconBox.ct-iconBox--type2 .ct-iconBox-text p {
  color: #222222;
  font-size: 0.875em;
  font-weight: 300;
  line-height: 1.429;
  text-align: justify;
}
.ct-iconBox.ct-iconBox--type2:hover .ct-iconBox-header .ct-iconBox-logo span {
  background-color: #555556;
  border-color: #555556;
}
.ct-iconBox.ct-iconBox--type2:hover .ct-iconBox-header .ct-iconBox-logo span i {
  color: white;
}
.ct-iconBox.ct-iconBox--type2:hover .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
  border-color: #555556;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.ct-iconBox.ct-iconBox--type3 {
  font-size: 1.429rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0 auto;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-header .ct-iconBox-logo span {
  display: inline-block;
  width: 4.250em;
  height: 4.250em;
  line-height: 4.250em;
  border: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  float: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-header .ct-iconBox-logo span i {
  font-size: 2.500em;
  line-height: 2.1em;
  vertical-align: middle;
  margin-top: -11px;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-header .ct-iconBox-title {
  padding-left: 5.750em;
  font-weight: 900;
  text-align: left;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.9em;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-text {
  margin-bottom: 0;
  padding-left: 5.750em;
}
.ct-iconBox.ct-iconBox--type3 .ct-iconBox-text p {
  color: #000000;
  font-size: 0.65em;
  font-weight: 400;
  line-height: 1.769;
  text-align: justify;
  margin-bottom: 0;
}
.ct-iconBox.ct-iconBox--type3 .btn {
  margin-left: 5.750em;
}
.ct-iconBox.ct-iconBox--type3:hover .ct-iconBox-header .ct-iconBox-logo span {
  background-color: white;
  border-color: white;
}
.ct-iconBox.ct-iconBox--type3:hover .ct-iconBox-header .ct-iconBox-logo span i {
  color: #555556;
}
.ct-iconBox.ct-iconBox--type3:hover .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before,
.ct-iconBox.ct-iconBox--type3:hover .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before,
.ct-iconBox.ct-iconBox--type3:hover .ct-iconBox-header .ct-iconBox-logo span.ct-hover--outlineOut:before {
  border-color: white;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
@media (max-width: 992px) {
  .ct-iconBox {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .ct-iconBox-header {
    margin-bottom: 15px !important;
  }
}
/*------------------------ Portfolio ------------------------------*/
.ct-imageBox {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: none;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	-webkit-box-shadow: 0 0 15px #CFCFCF;
	box-shadow: 0 0 15px #CFCFCF;
	font-size: 1rem;
	line-height: 1.1rem;
        background-color: #ffffff;
}
@media (min-width: 1280px) and (max-width: 1490px){
	.ct-imageBox {	font-size: .75rem;
	line-height: .85rem;

	}
}

.ct-imageBox .ct-imageBox-image {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.ct-imageBox .ct-imageBox-image img {
  width: 100%;
}
.ct-imageBox.effect-apollo {
  background-color: black;
}
.ct-imageBox.effect-apollo figcaption {
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ct-imageBox.effect-apollo figcaption > div {
  display: table;
  width: 100%;
  height: 100%;
}
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title {
  display: table-cell;
  vertical-align: middle;
  position: static;
  opacity: 0;
}
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h1,
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h2,
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h3,
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h4,
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h5,
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title h6 {
  text-align: center;
}
.ct-imageBox.effect-apollo figcaption > div .ct-imageBox-title p {
  text-align: center;
  position: static;
  margin: 0;
  border: none;
  max-width: 100%;
}
.ct-imageBox.effect-apollo figcaption:before {
  background-color: black;
  opacity: .5;
  width: 200%;
  height: 150%;
  top: -100px;
  transform: rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
}
.ct-imageBox figcaption {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	padding-top: 1em;
	padding-right: 1em;
	padding-left: 1em;
	padding-bottom: 1em;
	left: 0;
}
.ct-imageBox figcaption h1, h2 {
    font-weight: bold;
    color: #999696 !important;
    text-transform: uppercase;
}


.ct-imageBox figcaption .ct-imageBox-title {
  position: absolute;
  padding: 2rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-imageBox figcaption .ct-imageBox-title h1 a,
.ct-imageBox figcaption .ct-imageBox-title h2 a,
.ct-imageBox figcaption .ct-imageBox-title h3 a,
.ct-imageBox figcaption .ct-imageBox-title h4 a,
.ct-imageBox figcaption .ct-imageBox-title h5 a,
.ct-imageBox figcaption .ct-imageBox-title h6 a {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}
.ct-imageBox figcaption .ct-imageBox-title p {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.938em;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  line-height: 1.333;
  text-align: center;
}
.ct-imageBox:hover.effect-apollo figcaption {
  background-color: rgba(0, 0, 0, 0.4);
}
.ct-imageBox:hover.effect-apollo figcaption:before {
  transform: rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
}
.ct-imageBox:hover.effect-apollo figcaption > div .ct-imageBox-title {
  color: white;
  opacity: 1;
}
.ct-portfolio-pagination ul {
  margin: 0;
  display: inline-block;
}
.ct-portfolio-pagination ul li {
  width: 2.857rem;
  height: 2.857rem;
  text-align: center;
  padding: 0;
  margin: 5px 0;
}
.ct-portfolio-pagination ul li a {
  display: block;
  border: 1px solid black;
  width: 100%;
  height: 100%;
}
.ct-portfolio-pagination ul li a i {
  line-height: 2.857rem;
  vertical-align: middle;
}
.ct-portfolio-pagination ul li a:hover {
  border-color: #a382d4;
}
.ct-portfolio-pagination ul li a.active {
  border-color: #a382d4;
  color: #a382d4;
}
.ct-portfolio-pagination ul + p {
  color: rgba(0, 0, 0, 0.45);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
  margin-left: 10px;
}
.ct-portfolio-detail {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-portfolio-detail .ct-portfolio-detail-header {
  display: table;
  width: 100%;
  margin-bottom: 40px;
}
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title {
  display: table-cell;
  vertical-align: middle;
}
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h1,
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h2,
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h3,
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h4,
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h5,
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title h6 {
  font-weight: 700;
  color: #000000;
}
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-detail-title p {
  margin: 0;
}
.ct-portfolio-detail .ct-portfolio-detail-header .ct-portfolio-pagination {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.ct-portfolio-detail .ct-portfolio-detail-media {
  margin-bottom: 40px;
}
.ct-portfolio-detail .ct-portfolio-detail-inner {
  margin-bottom: 40px;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-text {
  margin-bottom: 20px;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.929em;
  font-weight: 400;
  line-height: 1.692;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-meta {
  margin-bottom: 20px;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-meta ul li a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.929em;
  font-weight: 400;
  line-height: 1.692;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-meta ul li a i {
  font-size: 1.2em;
  margin-right: 7px;
}
.ct-portfolio-detail .ct-portfolio-detail-inner .ct-portfolio-detail-meta ul li a:hover {
  color: #a382d4;
}
@media (max-width: 992px) {
  .ct-portfolio-detail .ct-portfolio-detail-meta {
    margin: 0 auto;
    width: 335px;
  }
  .ct-portfolio-detail .ct-portfolio-detail-meta ul li {
    float: left;
    padding: 5px 10px;
  }
}
@media (max-width: 480px) {
  .ct-portfolio-detail .ct-portfolio-detail-meta {
    width: 362px;
  }
  .ct-portfolio-container article.ct-portfolio-item {
  width: 100%;
    margin-bottom: 0px !important;

}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media {
	margin-top: 5px !important;
		margin-bottom: 5px !important;
}

}
.ct-portfolio-container article.ct-portfolio-item {
	width: 100%;
	margin-bottom: 0px;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media {
	}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure {
	overflow: hidden;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure a img {
  max-width: none;
  width: 100%;

}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div {
    display: block;
    height: 100%;
    width: 100%;
    background-color: #a382d4;
    position: relative;
    text-align: center;
    padding: 10%;
}

.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure.effect-duke  > div  {
    padding: 0% !important;
}

.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div:before {
  position: absolute;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #a382d4;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div ul {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: auto;
  height: 40px;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div ul li {
  padding: 0 3px;
  margin: 0;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div ul li a {
  display: block;
  width: 100%;
  height: 40px;
  color: #ffffff;
	
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div ul li a i {
  vertical-align: middle;
  line-height: 40px;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure > div ul li a:hover {
  color: #a382d4;

  
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure:hover > div:before {
  opacity: .7;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure:hover > div ul {
  opacity: 1;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-inner .ct-portfolio-header .ct-portfolio-title {
  color: #000000;
  font-weight: 700;
}
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-inner .ct-portfolio-header .ct-portfolio-title p {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
.ct-portfolio-container.ct-portfolio-masonry {
	margin-left: 5px;
	margin-right: 5px;
}
.ct-portfolio-container.ct-portfolio-masonry article.ct-portfolio-item .ct-portfolio-item-outer {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col2 article.ct-portfolio-item {
  width: 50%;         padding: 1%;
}

.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col3 article.ct-portfolio-item {
  width: 33.3333%;         padding: 1%;
}
.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col4 article.ct-portfolio-item {
  width: 25%;         padding: 1%;
}
.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col6 article.ct-portfolio-item {
  width: 16.6666%;         padding: 1%;
}

@media (min-width: 993px) and (max-width: 1279px) {
	.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col6 article.ct-portfolio-item {
  width: 33.3333%;
        padding: 1%;

}
}




@media (max-width: 992px) {
  .ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col3 article.ct-portfolio-item {
    width: 50%;
              padding: 1%;

  }
  .ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col4 article.ct-portfolio-item {
    width: 50%;
              padding: 1%;

  }
.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col6 article.ct-portfolio-item {
  width: 50%;
            padding: 1%;

}
}
@media (max-width: 480px) {
  .ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer {
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 5px;
  }
  .ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col2 article.ct-portfolio-item {
    width: 100%;
              padding: 1%;

  }
  .ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col3 article.ct-portfolio-item {
    width: 100%;
              padding: 1%;

  }
  .ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col4 article.ct-portfolio-item {
    width: 100%;
              padding: 1%;

  }
	.ct-portfolio-container.ct-portfolio-masonry.ct-portfolio-masonry--col6 article.ct-portfolio-item {
  width: 100%;
}
.ct-portfolio-container.ct-portfolio-masonry article.ct-portfolio-item .ct-portfolio-item-outer {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

}
.ct-gallery {
	margin-bottom: 0px;
}
.ct-gallery .wp-pagenavi {
  display: none;
}
.ct-gallery {
  overflow: hidden;
  min-height: 300px;
}
.ct-gallery.is-loaded:before {
  display: none;
}
.ct-gallery:before {
  content: url("../images/ball-triangle.svg");
  width: 40px;
  height: 40px;
  font-size: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.ct-gallery-item.ct-gallery-item--masonry {
  position: relative;
  width: 20%;
  float: left;
  margin-top: -1px;
  overflow: hidden;
  padding: 15px;
}
.ct-gallery-item.ct-gallery-item--masonry .project-thumb {
  width: 100%;
}
.ct-gallery-item.ct-gallery-item--masonry img {
  width: 100%;
}
.ct-gallery-item.ct-gallery-item--masonry:hover .area-hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-gallery-item.ct-gallery-item--masonry:hover .area-hover .cat-links {
  top: 0;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-gallery-item.ct-gallery-item--masonry:hover .area-hover .entry-title {
  top: 0;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry {
  width: 20%;
}
.ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
.ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
  width: 40%;
}
.ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry {
  width: 25%;
}
.ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
.ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
  width: 50%;
}
.ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry {
  width: 33.33%;
}
.ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
.ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
  width: 66.66%;
}
.ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry {
  width: 50%;
}
.ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
.ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
  width: 100%;
}
.ct-gallery.ct-gallery--col1 .ct-gallery-item.ct-gallery-item--masonry {
  width: 100%;
}
@media (max-width: 991px) {
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry {
    width: 33.33%;
  }
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
    width: 66.66%;
  }
}
@media (max-width: 767px) {
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry,
  .ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry,
  .ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry {
    width: 100%;
  }
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--wide,
  .ct-gallery.ct-gallery--col5 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big,
  .ct-gallery.ct-gallery--col4 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big,
  .ct-gallery.ct-gallery--col3 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big,
  .ct-gallery.ct-gallery--col2 .ct-gallery-item.ct-gallery-item--masonry.ct-gallery-item--big {
    width: 100%;
  }
}
#infscr-loading {
  z-index: 3000;
  position: absolute;
  bottom: 100px;
  left: 50%;
  margin-left: -100px;
  text-align: center;
}
#infscr-loading > div {
  width: 200px;
  padding: 20px 0;
  background-color: #222222;
}
#infscr-loading img {
  display: none !important;
}
#infscr-loading div {
  position: relative;
  bottom: auto;
  left: auto;
}
#infscr-loading > div {
  position: absolute;
  bottom: -38px;
  left: 8px;
}
.gallerymessage {
  padding: 7px 15px;
  color: #ffffff;
}
.ct-gallery {
  background-color: transparent;
  position: relative;
}
.ct-gallery-item a {
  display: block;
}
.ct-gallery-itemImage img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  min-width: 100%;
}
.ct-gallery-item--default .ct-gallery-itemDescription {
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ct-gallery-item--default .ct-gallery-itemDescription a {
  color: inherit;
}
.ct-gallery-item--default .ct-gallery-itemDescription .ct-gallery-itemDescription-title,
.ct-gallery-item--default .ct-gallery-itemDescription .ct-gallery-itemDescription-category {
  line-height: 1;
}
.ct-gallery-item--default .ct-gallery-itemDescription .ct-gallery-itemDescription-title {
  font-size: 30px;
  display: block;
  padding: 20px;
  font-weight: 300;
}
.ct-gallery-item--default .ct-gallery-itemDescription .ct-gallery-itemDescription-category {
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  padding: 0 20px 20px 20px;
}
#ct-ajaxContent {
  background-color: #eeeeee;
  min-height: 585px;
}
#ct-ajaxContent p,
#ct-ajaxContent header {
  margin-bottom: 20px;
}
#ct-ajaxContent header {
  line-height: 1.7;
}
.ct--darkMotive #ct-ajaxContent {
  background-color: #191919;
}
.ct-galleryAjax-Details {
  margin-bottom: 30px;
  background-color: #eeeeee;
}
.ct-gallery-item.ct-gallery-item--secundary,
.ct-gallery-item.ct-gallery-item--third {
  position: relative;
  margin-bottom: 30px;
}
.ct-gallery-item.ct-gallery-item--secundary .ct-gallery-itemDescription,
.ct-gallery-item.ct-gallery-item--third .ct-gallery-itemDescription {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  line-height: 1.3;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ct-gallery-item.ct-gallery-item--secundary .ct-gallery-item-number,
.ct-gallery-item.ct-gallery-item--third .ct-gallery-item-number {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.ct-gallery-item.ct-gallery-item--secundary .ct-gallery-item-number span,
.ct-gallery-item.ct-gallery-item--third .ct-gallery-item-number span {
  color: #000000;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
  font-size: 125px;
  line-height: 1;
  height: 125px;
  top: 50%;
  margin-top: -63px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  display: block;
  position: absolute;
  font-weight: 300;
}
.ct-gallery-item.ct-gallery-item--secundary .ct-gallery-itemInner:after,
.ct-gallery-item.ct-gallery-item--third .ct-gallery-itemInner:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -7.5px;
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 0 15px;
  border-color: transparent transparent transparent #eeeeee;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ct-gallery-item.ct-gallery-item--secundary .is-visible .ct-gallery-itemDescription,
.ct-gallery-item.ct-gallery-item--third .is-visible .ct-gallery-itemDescription {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.ct-gallery-item.ct-gallery-item--secundary .is-visible .ct-gallery-item-number,
.ct-gallery-item.ct-gallery-item--third .is-visible .ct-gallery-item-number {
  top: 0;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
}
.ct-gallery-item.ct-gallery-item--secundary .is-visible:after,
.ct-gallery-item.ct-gallery-item--third .is-visible:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct--darkMotive .ct-gallery-item.ct-gallery-item--secundary .ct-gallery-item-number,
.ct--darkMotive .ct-gallery-item.ct-gallery-item--third .ct-gallery-item-number {
  background-color: #222222;
}
.ct--darkMotive .ct-gallery-item.ct-gallery-item--secundary .ct-gallery-item-number span,
.ct--darkMotive .ct-gallery-item.ct-gallery-item--third .ct-gallery-item-number span {
  color: #ffffff;
}
.ct--darkMotive .ct-gallery-item.ct-gallery-item--secundary .ct-gallery-itemInner:after,
.ct--darkMotive .ct-gallery-item.ct-gallery-item--third .ct-gallery-itemInner:after {
  border-color: transparent transparent transparent #191919;
}
.ct-gallery-item--secundary .ct-gallery-itemDescription-title,
.ct-gallery-item--third .ct-gallery-itemDescription-title,
#ct-ajaxContent .ct-gallery-itemDescription-title {
  background-color: #ffffff;
  padding: 2px 5px;
  font-size: 30px;
  color: #222222;
  font-weight: 300;
  display: initial;
}
.ct-gallery-item--secundary .ct-gallery-itemDescription-category,
.ct-gallery-item--third .ct-gallery-itemDescription-category,
#ct-ajaxContent .ct-gallery-itemDescription-category {
  padding: 2px 5px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
}
.ct-gallery-item--third {
  overflow: hidden;
}
.ct-gallery-item--third .ct-gallery-item-icon {
  position: absolute;
  top: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.ct-gallery-item--third .ct-gallery-item-icon i {
  position: absolute;
  height: 40px;
  width: 40px;
  font-size: 22px;
  line-height: 40px;
  top: 70%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ct-gallery-item--third .ct-gallery-itemDescription {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.ct-gallery-item--third:hover .ct-gallery-item-icon {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-gallery-item--third:hover .ct-gallery-item-icon i {
  top: 50%;
}
.ct-gallery-item--third:hover .ct-gallery-itemDescription {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
@media (max-width: 991px) {
  #ct-ajaxContent header {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  #ct-ajaxContent .flexslider {
    margin-bottom: 80px;
  }
}
.ct-gallerySingleAjax {
  background-color: #ffffff;
  overflow: hidden;
}
.ct-gallerySingleAjax header h1,
.ct-gallerySingleAjax header .h1,
.ct-gallerySingleAjax header h2,
.ct-gallerySingleAjax header .h2,
.ct-gallerySingleAjax header h3,
.ct-gallerySingleAjax header .h3,
.ct-gallerySingleAjax header h4,
.ct-gallerySingleAjax header .h4,
.ct-gallerySingleAjax header h5,
.ct-gallerySingleAjax header .h5,
.ct-gallerySingleAjax header h6,
.ct-gallerySingleAjax header .h6 {
  margin: 0;
  line-height: 60px;
  padding: 25px 0;
}
.ct-gallerySingleAjax .ct-flexslider--adjacentVisible {
  background-color: #222222;
}
.ct-gallerySingleAjax .ct-flexslider--adjacentVisible .flexslider {
  margin-bottom: 0;
}
.ct-gallerySingleAjax .ct-flexslider--adjacentVisible .flexslider ul.slides > li:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.ct-gallerySingleAjax .ct-magnificPopup-content {
  padding-right: 30px;
}
.ct-sidebar {
  background-color: #f9f9f9;
  padding-left: 30px;
  padding-bottom: 50px;
}
.ct-sidebar:before,
.ct-sidebar:after {
  content: "";
  background-color: #f9f9f9;
  position: absolute;
  width: 9999px;
}
.ct-sidebar:before {
  top: 0;
  left: 100%;
  bottom: 0;
}
.ct-sidebar:after {
  top: 100%;
  left: 0;
  height: 9999px;
}
@media (min-width: 1200px) {
  .ct-gallerySingleAjax .ct-flexslider--adjacentVisible {
    height: 580px;
  }
}
@media (max-width: 992px) {
  .ct-imageBox {
	margin-bottom: 0px !important;
  }
}


@media (max-width: 767px) {
  .ct-gallerySingleAjax .ct-magnificPopup-content {
    padding-right: 15px;
  }
  .ct-gallerySingleAjax .ct-magnificPopup-sidebar {
    padding-left: 15px;
  }
  .ct-gallerySingleAjax .ct-magnificPopup-sidebar:before,
  .ct-gallerySingleAjax .ct-magnificPopup-sidebar:after {
    display: none;
  }
}
/*------------------------ Blockquote ------------------------------*/
.ct-blockquote {
  max-height: 330px;
}
.ct-quote--type1 blockquote {
  margin: 0;
  border: 0;
  font-size: 1.143rem;
}
.ct-quote--type1 blockquote p {
  font-family: 'Lato', sans-serif;
  font-size: 1.500em;
  line-height: 1.1666667;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}
.ct-quote--type1 blockquote p:before {
  content: '“';
}
.ct-quote--type1 blockquote p:after {
  content: '”';
}
.ct-quote--type1 blockquote a cite {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.750em;
  line-height: 2.33333;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  text-transform: uppercase;
}
.ct-quote--type1 blockquote a cite span {
  font-weight: bold;
  padding-left: 0.188em;
}
.ct-quote--type2 {
  font-size: 1rem;
  margin-bottom: 1.429em;
}
.ct-quote--type2 blockquote {
  border-left: 8px solid rgba(0, 0, 0, 0.1);
  padding-top: 5px;
  padding-bottom: 5px;
}
.ct-quote--type2 blockquote p {
  color: rgba(0, 0, 0, 0.7);
  font-size: .875em;
  font-weight: 600;
  font-style: italic;
  line-height: 1.429;
}
.ct-quote--type2 blockquote p:before,
.ct-quote--type2 blockquote p:after {
  content: '';
}
.ct-quote--type3 blockquote {
  margin: 0;
  border: 0;
  font-size: 1.143rem;
}
.ct-quote--type3 blockquote p {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  line-height: 1.1666667;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
.ct-quote--type3 blockquote p:before {
  content: '“';
}
.ct-quote--type3 blockquote p:after {
  content: '”';
}
.ct-quote--type3 blockquote a cite {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: .75em;
  line-height: 2.33333;
  color: rgba(0, 0, 0, 0.7);
  font-style: normal;
  text-transform: uppercase;
}
.ct-quote--type3 blockquote a cite span {
  font-weight: 700;
  padding-left: 0.188em;
}
/*------------------------ Person Box ------------------------------*/
.ct-personBox {
	font-size: .9em;
    line-height: 1.4em;
	margin-left: -30px;
	margin-right: -auto;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.ct-personBox .ct-u-displayTableVertical {
  width: auto;
}
.ct-personBox .ct-u-displayTableVertical .socialicons {
  width: auto;
}
.ct-personBox .ct-u-displayTableVertical .socialicons li {
  margin-left: 15px;
}
.ct-personBox .ct-personBox-title {
  font-size: 1.143rem;
  margin-bottom: 1.250em;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: black;
}
.ct-personBox .ct-personBox-title a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ct-personBox .ct-personBox-title p {
  font-family: 'Lato', sans-serif;
  font-size: 0.813em;
  font-style: italic;
  line-height: 1.46154;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}
.ct-personBox .ct-personBox-images {
  overflow: hidden;
  margin-bottom: 20px;
}
.ct-personBox .ct-personBox-images a {
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.ct-personBox .ct-personBox-images a img {
  width: 100%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.ct-personBox .ct-personBox-text p {
	margin-top: 0;
	font-size: .85em;
	line-height: 1.5em;
	font-weight: 300;
	color: #555555;
	;
	font-family: "Roboto Slab", "Lato", helvetica, arial, sans-serif;
	margin-bottom: .8rem;
}

.ct-personBox .ct-personBox-text strong {	font-weight: 400;
}

.ct-personBox .ct-personBox-text span {
  font-family: 'Lato', sans-serif;
  display: inline-block;
  opacity: 0;
  height: 3.1em;
  line-height: 3.1em;
  vertical-align: middle;
  color: #555556;
  font-size: 1.1rem;
  padding-left: 0.96em;
  font-style: italic;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ct-personBox .ct-personBox-text .ct-person-contact {
  margin-bottom: 5px;
}
.ct-personBox .ct-personBox-text li {
margin-top: 12px !important;
margin-bottom: 12px !important;}

.ct-personBox .ct-personBox-text .ct-person-contact li p {
	line-height: 25px;
	font-size: 1.1rem;
	font-weight: 400;
}
.ct-personBox:hover .ct-personBox-title h1 a,
.ct-personBox:hover .ct-personBox-title h2 a,
.ct-personBox:hover .ct-personBox-title h3 a,
.ct-personBox:hover .ct-personBox-title h4 a,
.ct-personBox:hover .ct-personBox-title h5 a,
.ct-personBox:hover .ct-personBox-title h6 a {
  color: #555556;
}
.ct-personBox:hover .ct-personBox-text span {
  opacity: 1;
}
.ct-personBox:hover .ct-personBox-images a img {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 100px);
  transform: translate3d(0, 0, 100px);
}
.ct-morph-button {
  font-size: 1.143rem;
}
.ct-morph-button.ct-personBox-email {
  margin: 0 !important;
  line-height: 2.500em;
  text-align: center;
  width: 2.500em;
  height: 2.500em;
  font-size: 1em;
  color: #ffffff;
  vertical-align: middle;
  background-color: transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}
.ct-morph-button.ct-personBox-email > button {
  line-height: 27px;
  overflow: visible;
  outline: none !important;
  margin-top: 0 !important;
  vertical-align: baseline !important;
}
.ct-morph-button.ct-personBox-email > button i {
  line-height: 29px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 29px;
  width: 29px;
  padding: 0;
}
.ct-morph-button.ct-personBox-email .ct-morph-content {
  margin: 0;
  font-size: 1.143rem;
  line-height: 2.500em;
  text-align: center;
  width: 2.500em;
  height: 2.500em;
  color: white;
  background-color: #555556;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.ct-morph-button.ct-personBox-email.open {
  z-index: 2;
}
.ct-morph-button.ct-personBox-email.open .ct-morph-content {
  background-color: white;
  width: 340px;
  height: 420px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content {
  padding-left: 20px;
  padding-right: 20px;
}
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content > span {
  color: #555556;
  position: absolute;
  top: 2px;
  right: 19px;
  cursor: pointer;
  font-size: 1.05em;
}
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h1,
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h2,
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h3,
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h4,
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h5,
.ct-morph-button.ct-personBox-email.open .ct-morph-content > div .content h6 {
  color: #222;
  line-height: 1.158;
  letter-spacing: 0.143em;
  padding: 10px 0;
}
@media (max-width: 992px) {
  .ct-personBox .ct-personBox-text {
    margin-top: 15px;
  }
  .ct-personBox {
margin-left: auto;
margin-right: auto;
}

  .ct-personBox-btn {
    margin-top: 20px;
  }
}
/* Media Queries */
@media screen and (max-width: 600px) {
		.ct-personBox .ct-personBox-text p {
	font-size: 1.2rem;
	line-height: 1.5em;
}
.ct-personBox .ct-personBox-text .ct-person-contact li p {
	line-height: 25px;
	font-size: 1.2rem;
	font-weight: 400;
}

  .ct-morph-button-modal.open .ct-morph-content {
    top: 0% !important;
    left: 0% !important;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
    transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
  }
  .ct-morph-button.ct-personBox-email.open .ct-morph-content {
    margin-left: 0;
  }
  .ct-personBox {
margin-left: auto;
margin-right: auto;
}

}
@media screen and (max-width: 400px) {
	.ct-personBox .ct-personBox-text p {
	font-size: 1.2rem;
	line-height: 1.5em;
}
.ct-personBox .ct-personBox-text .ct-person-contact li p {
	line-height: 25px;
	font-size: 1.2rem;
	font-weight: 400;
}

  .ct-morph-button-fixed,
  .ct-morph-button-fixed .ct-morph-content {
    width: 100%;
    height: 80px;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .ct-morph-button-fixed > button {
    font-size: 75%;
  }
  .ct-morph-button-sidebar > button {
    font-size: 1.6em;
  }
  .ct-morph-button-inflow .ct-morph-content .ct-morph-clone {
    font-size: 0.9em;
  }
  .ct-morph-button-modal-4,
  .ct-morph-button-modal-4 .ct-morph-content {
    width: 100%;
    height: 120px;
  }
  .ct-morph-button-modal-4 > button {
    font-size: 100%;
    line-height: 50px;
  }
  .ct-morph-button-modal-4 > button span {
    display: block;
  }
  .ct-morph-button-modal-4 .ct-morph-clone {
    right: 83px;
    bottom: 26px;
  }
  .ct-morph-button-sidebar,
  .ct-morph-button-sidebar .ct-morph-content {
    width: 100% !important;
    height: 60px !important;
  }
  .ct-morph-button-sidebar {
    bottom: 0;
    left: 0;
  }
  .ct-morph-button-sidebar.open .ct-morph-content {
    height: 100% !important;
  }
}
@media (max-width: 480px) {
  .ct-morph-button.ct-personBox-email {
    margin-top: 4px !important;
  }
  .ct-morph-button.ct-personBox-email > button {
    padding: 0 !important;
  }
  .ct-morph-button.ct-personBox-email.ct-morph-button.open .ct-morph-content {
    overflow-y: scroll;
    max-width: 320px;
    max-height: 100%;
  }
  .ct-morph-button.ct-personBox-email.ct-morph-button.open .ct-morph-content > div .content > span {
    left: -5px;
    top: -10px;
    font-size: 22px;
    right: auto;
  }
.ct-personBox {
margin-left: auto;
margin-right: auto;
}
}


.ct-personBox-emailSimple {
  display: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #555556;
  text-align: center;
  color: #ffffff;
}
.ct-personBox-emailSimple i {
  vertical-align: middle;
  margin-top: -3px;
}



.ct-personBox-emailSimple:hover {
  color: #ffffff;
}
/*------------------------ Progress Bar ------------------------------*/
.ct-progressBar {
  font-size: 1.143rem;
}
.ct-progressBar .ct-progressBar-title {
  float: left;
  width: 100%;
  margin-bottom: 4.25em;
}
.ct-progressBar .ct-progressBar-title h1,
.ct-progressBar .ct-progressBar-title h2,
.ct-progressBar .ct-progressBar-title h3,
.ct-progressBar .ct-progressBar-title h4,
.ct-progressBar .ct-progressBar-title h5,
.ct-progressBar .ct-progressBar-title h6 {
  float: left;
  font-size: 1.188em;
  line-height: 1.15795;
  font-weight: 900;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #000000;
}
.ct-progressBar .ct-progressBar-content {
  float: left;
  width: 100%;
}
.ct-progressBar .ct-progressBar-content .media .progress {
  margin-bottom: 0;
}
.ct-progressBar .ct-progressBar-content .media .progress .progress-bar {
  min-width: 4px;
}
.ct-progressBar .ct-progressBar-content .media .progress .progress-bar span {
  margin-left: 5px;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon {
  display: inline-block;
  width: 5.500em;
  height: 5.500em;
  border: 1px solid #555556;
  color: #555556;
  background-color: #ffffff;
  text-align: center;
  margin-right: -14px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon i {
  font-size: 2.250em;
  line-height: 2.444em;
  vertical-align: middle;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon.ct-hover--outlineOut {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon.ct-hover--outlineOut:before {
  content: '';
  position: absolute;
  border: transparent solid 4px;
  border-radius: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon:hover {
  background-color: #555556;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon:hover i {
  color: white;
}
.ct-progressBar .ct-progressBar-content .ct-progressBar-icon:hover.ct-hover--outlineOut:before {
  border-color: #555556;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.ct-progressBar .ct-progressBar-content .progress {
  border-radius: 30px;
  margin-bottom: 4.46em;
  height: 10px;
  overflow: visible;
  box-shadow: none;
}
.ct-progressBar .ct-progressBar-content .progress .progress-bar {
  background-color: #555556;
  box-shadow: none;
  border-radius: 30px;
  font-size: 1.143rem;
}
.ct-progressBar .ct-progressBar-content .progress .progress-bar span {
  font-family: 'Lato', sans-serif;
  display: block;
  margin-top: -1.688em;
  text-align: right;
  font-size: 0.938em;
  font-style: italic;
  line-height: 1.466667;
  color: #000000;
  min-width: 180px;
}
.ct-progressBar .ct-progressBar-content .progress .progress-bar span strong {
  font-weight: bold;
}
@media (max-width: 992px) {
  .ct-progressBar .ct-progressBar-title {
    text-align: center;
  }
  .ct-progressBar .ct-progressBar-title h1,
  .ct-progressBar .ct-progressBar-title h2,
  .ct-progressBar .ct-progressBar-title h3,
  .ct-progressBar .ct-progressBar-title h4,
  .ct-progressBar .ct-progressBar-title h5,
  .ct-progressBar .ct-progressBar-title h6 {
    float: none;
  }
}
@media (max-width: 768px) {
  .ct-progressBar {
    padding-left: 0;
  }
}
/*------------------------ Breadcrumbs ------------------------------*/
.ct-breadcrumbs {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-breadcrumbs .container > div {
  display: table;
  height: 100px;
  width: 100%;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-pageTitle {
  display: table-cell;
  vertical-align: middle;
  font-weight: 700;
  line-height: 1.045;
  color: #000000;
  letter-spacing: normal;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list {
  display: table-cell;
  vertical-align: middle;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul {
  float: right;
  margin: 0;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li {
  padding-left: 0;
  padding-right: 0;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li a {
  font-size: 0.857em;
  font-weight: 400;
  line-height: 1.917;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li a:hover {
  color: #555556;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li:after {
  content: "/";
  margin: 0 3px 0 6px;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li:last-child {
  font-weight: 700;
}
.ct-breadcrumbs .container > div .ct-breadcrumbs-list ul li:last-child:after {
  content: "";
  margin: 0;
}
/*------------------------ Call to action ------------------------------*/
.ct-callToAction {
  font-size: 1.357rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-callToAction .ct-callToAction-inner {
  display: table;
  height: 100%;
}
.ct-callToAction .ct-callToAction-inner .ct-callToAction-title {
  display: table-cell;
  vertical-align: middle;
}
.ct-callToAction .ct-callToAction-inner .ct-callToAction-title p {
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.474;
  text-align: left;
  letter-spacing: normal;
  margin-right: 80px;
  margin-bottom: 0;
}
.ct-callToAction .ct-callToAction-inner .ct-callToAction-btn {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .ct-callToAction {
    display: table;
  }
  .ct-callToAction .ct-callToAction-inner {
    display: table-cell;
    vertical-align: middle;
  }
  .ct-callToAction .ct-callToAction-inner .ct-callToAction-title {
    display: block;
    margin-bottom: 20px;
  }
  .ct-callToAction .ct-callToAction-inner .ct-callToAction-title p {
    margin-right: 0;
  }
  .ct-callToAction .ct-callToAction-inner .ct-callToAction-btn {
    display: block;
    text-align: center;
  }
}
/*------------------------ Color Box ------------------------------*/
.ct-colorBox {
  margin: 0 -15px;
  position: relative;
  background-color: #555556;
}
.ct-colorBox.ct-colorBox--lighten10 {
  background-color: #bfa8e1;
}
.ct-colorBox.ct-colorBox--lighten10 .ct-colorBox-arrow.ct-colorBox-arrow--top {
  border-bottom-color: #bfa8e1;
}
.ct-colorBox.ct-colorBox--lighten10 .ct-colorBox-arrow.ct-colorBox-arrow--bottom {
  border-top-color: #bfa8e1;
}
.ct-colorBox.ct-colorBox--lighten20 {
  background-color: #dbceee;
}
.ct-colorBox.ct-colorBox--lighten20 .ct-colorBox-arrow.ct-colorBox-arrow--top {
  border-bottom-color: #dbceee;
}
.ct-colorBox.ct-colorBox--lighten20 .ct-colorBox-arrow.ct-colorBox-arrow--bottom {
  border-top-color: #dbceee;
}
.ct-colorBox.ct-colorBox--darken10 {
  background-color: #875cc7;
}
.ct-colorBox.ct-colorBox--darken10 .ct-colorBox-arrow.ct-colorBox-arrow--top {
  border-bottom-color: #875cc7;
}
.ct-colorBox.ct-colorBox--darken10 .ct-colorBox-arrow.ct-colorBox-arrow--bottom {
  border-top-color: #875cc7;
}
.ct-colorBox.ct-colorBox--darken20 {
  background-color: #6d3db3;
}
.ct-colorBox.ct-colorBox--darken20 .ct-colorBox-arrow.ct-colorBox-arrow--top {
  border-bottom-color: #6d3db3;
}
.ct-colorBox.ct-colorBox--darken20 .ct-colorBox-arrow.ct-colorBox-arrow--bottom {
  border-top-color: #6d3db3;
}
.ct-colorBox.ct-colorBox--after:after {
  position: absolute;
  top: 0;
  right: -1000px;
  background-color: inherit;
  content: '';
  display: block;
  height: 100%;
  width: 1000px;
}
.ct-colorBox.ct-colorBox--before:before {
  position: absolute;
  top: 0;
  left: -1000px;
  background-color: inherit;
  content: '';
  display: block;
  height: 100%;
  width: 1000px;
}
.ct-colorBox .ct-colorBox-wrapper {
  min-height: 370px;
  height: 370px;
  width: 100%;
  display: table;
}
.ct-colorBox .ct-colorBox-wrapper .ct-colorBox-wrapperInner {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 35px;
}
.ct-colorBox .ct-colorBox-arrow {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--top {
  border-bottom: 10px solid #555556;
  top: -10px;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--bottom {
  border-top: 10px solid #555556;
  bottom: -10px;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--left {
  left: 0;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--right {
  right: 0;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--center {
  left: 50%;
  margin-left: -10px;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--btPrev {
  left: 0;
  margin-left: -10px;
}
.ct-colorBox .ct-colorBox-arrow.ct-colorBox-arrow--btNext {
  right: 0;
  margin-right: -10px;
}
@media (max-width: 992px) {
  .ct-colorBox {
    overflow: hidden;
  }
}
/*------------------------ Media object ------------------------------*/
.ct-mediaObject {
  font-size: 1.143rem;
  padding-bottom: 70px;
}
.ct-mediaObject .ct-mediaObject-image img {
  width: 8.438em;
  height: 8.438em;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  max-width: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ct-mediaObject .ct-mediaObject-body {
  background-color: #ffffff;
  position: relative;
  padding: 20px 15px;
}
.ct-mediaObject .ct-mediaObject-body:before {
  position: absolute;
  display: block;
  top: 4.219em;
  margin-top: -10px;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.ct-mediaObject .ct-mediaObject-body .ct-mediaObject-header {
  color: #000000;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  margin-top: 0;
  margin-bottom: 1.250em;
}
.ct-mediaObject .ct-mediaObject-body .ct-mediaObject-text p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.429;
  text-align: justify;
  margin-bottom: 0;
}
.ct-mediaObject:hover .ct-mediaObject-image img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.ct-mediaObject.ct-mediaObject--left .ct-mediaObject-image {
  padding-right: 35px;
}
.ct-mediaObject.ct-mediaObject--left .ct-mediaObject-body:before {
  border-right: 10px solid white;
  left: 0;
  margin-left: -10px;
}
.ct-mediaObject.ct-mediaObject--right .ct-mediaObject-image {
  padding-left: 35px;
}
.ct-mediaObject.ct-mediaObject--right .ct-mediaObject-body:before {
  border-left: 10px solid white;
  right: 0;
  margin-right: -10px;
}
@media (max-width: 768px) {
  .ct-mediaObject.ct-mediaObject--left .ct-mediaObject-image,
  .ct-mediaObject.ct-mediaObject--right .ct-mediaObject-image,
  .ct-mediaObject .ct-mediaObject-image {
    display: block;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 8.438em;
    height: 8.438em;
  }
  .ct-mediaObject.ct-mediaObject--left .ct-mediaObject-image img,
  .ct-mediaObject.ct-mediaObject--right .ct-mediaObject-image img,
  .ct-mediaObject .ct-mediaObject-image img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
  }
  .ct-mediaObject.ct-mediaObject--left .ct-mediaObject-body,
  .ct-mediaObject.ct-mediaObject--right .ct-mediaObject-body,
  .ct-mediaObject .ct-mediaObject-body {
    display: block;
  }
  .ct-mediaObject.ct-mediaObject--left .ct-mediaObject-body:before,
  .ct-mediaObject.ct-mediaObject--right .ct-mediaObject-body:before,
  .ct-mediaObject .ct-mediaObject-body:before {
    border-top: none;
    border-bottom: 10px solid white;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: 0;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
  }
}
/*------------------------ Blog ------------------------------*/
.ct-blog-container {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.143rem;
  color: #000000;
  position: relative;
  margin-right: 40px;
  margin-bottom: 60px;
}
.ct-blog-container:before {
  position: absolute;
  display: block;
  content: '';
  height: 100%;
  width: 700px;
  top: 0;
  left: -700px;
  background-color: inherit;
}
.ct-blog-container article.ct-blog-item {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.429rem;
  color: #000000;
  overflow: hidden;
  width: 100%;
  margin-bottom: 50px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer {
  background-color: white;
  overflow: hidden;
  position: relative;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media {
  width: 50%;
  float: left;
  overflow: hidden;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media figure a img {
  width: 100%;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper {
  width: 100%;
  float: left;
  padding: 15px 25px 22px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner {
  width: 100%;
  height: 100%;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-header {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: normal;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-date p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.1;
  color: #555556;
  margin-bottom: 10px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-date p span {
  font-weight: 900;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-content .ct-quote--type2 {
  margin-bottom: 30px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-content .ct-quote--type2 p {
  font-size: 1rem;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-content > .ct-linkPost * {
  margin-bottom: 30px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-content > .ct-linkPost *:after {
  font-family: fontawesome;
  content: '\f178';
  margin-left: 5px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-content p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.429;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer {
  background-color: transparent;
  position: absolute;
  bottom: 0;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer ul.ct-blog-item-comments {
  margin-bottom: 7px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer ul.ct-blog-item-comments li a {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.714;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer ul.ct-blog-item-comments li a i {
  margin-right: 2px;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer ul.ct-blog-item-comments li a:hover {
  color: #555556;
}
.ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media + .ct-blog-item-wrapper {
  width: 50%;
}
.ct-blog-container article.ct-blog-item:hover .ct-blog-item-outer .ct-blog-item-media figure a img {
  opacity: 1;
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}
.ct-blog-container.ct-blog-masonry {
  margin-left: -30px;
  margin-right: 10px;
}
.ct-blog-container.ct-blog-masonry article.ct-blog-item {
  width: 100%;
}
.ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer {
  margin-left: 30px;
  margin-right: 30px;
}
.ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper {
  padding: 15px 25px 50px;
}
.ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media {
  width: 100%;
}
.ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media + .ct-blog-item-wrapper {
  width: 100%;
}
.ct-blog-container.ct-blog-masonry.ct-blog-masonry--col2 article.ct-blog-item {
  width: 50%;
}
.ct-blog-container.ct-blog-masonry.ct-blog-masonry--col3 article.ct-blog-item {
  width: 33.3333%;
}
.ct-blog-container.ct-blog-masonry.ct-blog-masonry--col4 {
  margin-left: -15px;
  margin-right: -15px;
}
.ct-blog-container.ct-blog-masonry.ct-blog-masonry--col4 article.ct-blog-item {
  width: 25%;
}
.ct-blog-container.ct-blog-masonry.ct-blog-masonry--col4 article.ct-blog-item .ct-blog-item-outer {
  margin-left: 15px;
  margin-right: 15px;
}
@media (max-width: 1200px) {
  .ct-blog-container {
    margin-right: 0;
  }
  .ct-blog-container:after {
    position: absolute;
    display: block;
    content: '';
    height: 100%;
    width: 700px;
    top: 0;
    right: -700px;
    background-color: inherit;
  }
  .ct-blog-container.ct-blog-masonry {
    margin-left: -30px;
    margin-right: -30px;
  }
  .ct-blog-container.ct-blog-masonry article.ct-blog-item {
    width: 50%;
  }
  .ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media {
    width: 100%;
    float: none;
  }
  .ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper {
    float: none;
    padding: 10px 20px;
  }
  .ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-wrapper .ct-blog-item-inner .ct-blog-item-footer {
    padding-bottom: 0;
  }
  .ct-blog-container article.ct-blog-item .ct-blog-item-outer .ct-blog-item-media + .ct-blog-item-wrapper {
    width: 100%;
  }
  .ct-blog-container.ct-blog-masonry {
    margin-left: -15px;
    margin-right: -15px;
  }
  .ct-blog-container.ct-blog-masonry article.ct-blog-item {
    width: 50%;
  }
  .ct-blog-container.ct-blog-masonry article.ct-blog-item .ct-blog-item-outer {
    margin-left: 15px;
    margin-right: 15px;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col2 article.ct-blog-item {
    width: 50%;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col3 article.ct-blog-item {
    width: 50%;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col4 article.ct-blog-item {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .ct-blog-container article.ct-blog-item .ct-blog-item-wrapper {
    padding: 10px 5px;
  }
  .ct-blog-container.ct-blog-masonry {
    margin-left: -30px;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col2 article.ct-blog-item {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col3 article.ct-blog-item {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
  .ct-blog-container.ct-blog-masonry.ct-blog-masonry--col4 article.ct-blog-item {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/*------------------------ Blog sidebar ------------------------------*/
.ct-sidebar {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.143rem;
  background-color: white;
  color: #000000;
  position: relative;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 50px;
}
.ct-sidebar:after {
  position: absolute;
  display: block;
  content: '';
  height: 100%;
  width: 700px;
  top: 0;
  left: 100%;
  background-color: inherit;
}
.ct-sidebar .widget {
  margin-bottom: 60px;
}
.ct-sidebar .widget > h1,
.ct-sidebar .widget > h2,
.ct-sidebar .widget > h3,
.ct-sidebar .widget > h4,
.ct-sidebar .widget > h5,
.ct-sidebar .widget > h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 30px;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject {
  margin-bottom: 30px;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-image img {
  height: 4.375em;
  width: 4.375em;
  max-width: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-header {
  margin: 0;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-header a {
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: normal;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner {
  margin-top: 5px;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner p {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner ul.widget-post-comments {
  margin: 0;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner ul.widget-post-comments li a {
  color: rgba(0, 0, 0, 0.22);
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.571;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner ul.widget-post-comments li a i {
  margin-right: 2px;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner ul.widget-post-comments li a:hover {
  color: #555556;
}
.ct-sidebar .widget-post .widget-inner .ct-sidebarMediaObject .ct-sidebarMediaObject-body .ct-sidebarMediaObject-inner ul.widget-post-comments li:first-child {
  padding-left: 0;
}
.ct-sidebar .widget-links .widget-inner a {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  line-height: 1.571;
  font-size: 0.875em;
}
.ct-sidebar .widget-links .widget-inner a:hover {
  color: #555556;
}
.ct-sidebar .widget-tags .widget-inner ul li {
  padding: 5px;
}
.ct-sidebar .widget-tags .widget-inner ul li a {
  color: white;
  background-color: #555556;
  padding: 8px 12px 9px;
  line-height: 1;
  font-size: 0.875em;
  font-weight: 400;
  border: 1px solid transparent;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.ct-sidebar .widget-tags .widget-inner ul li a:hover {
  color: #555556;
  background-color: white;
  border-color: #555556;
}
@media (max-width: 1200px) {
  .ct-sidebar {
    border: none;
    padding-left: 0;
  }
  .ct-sidebar:before {
    position: absolute;
    display: block;
    content: '';
    height: 100%;
    width: 700px;
    top: 0;
    left: -700px;
    background-color: inherit;
  }
  .ct-sidebar .widget-post > h1,
  .ct-sidebar .widget-post > h2,
  .ct-sidebar .widget-post > h3,
  .ct-sidebar .widget-post > h4,
  .ct-sidebar .widget-post > h5,
  .ct-sidebar .widget-post > h6 {
    text-align: center;
  }
  .ct-sidebar .widget-post .ct-sidebarMediaObject {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .ct-sidebar .widget-links,
  .ct-sidebar .widget-tags {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ct-sidebar {
    font-size: 1.5rem;
  }
}
/*------------------------ Blog post ------------------------------*/
.ct-post-container {
  font-size: 1.875rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  padding-right: 30px;
}
.ct-post-container .ct-post-header {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}
.ct-post-container .ct-post-header .ct-post-title {
  display: table-cell;
  vertical-align: middle;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
}
.ct-post-container .ct-post-header .ct-post-title * {
  margin: 0;
}
.ct-post-container .ct-post-header .ct-post-meta {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.ct-post-container .ct-post-header .ct-post-meta p {
  display: inline-block;
  color: #555556;
  font-size: 0.667em;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
}
.ct-post-container .ct-post-header .ct-post-meta p span {
  font-weight: 900;
}
.ct-post-container .ct-post-header .ct-post-meta p:after {
  content: '|';
  margin-left: 10px;
}
.ct-post-container .ct-post-header .ct-post-meta ul.ct-post-item-comments {
  display: inline-block;
  margin: 0;
}
.ct-post-container .ct-post-header .ct-post-meta ul.ct-post-item-comments li {
  padding-right: 0;
}
.ct-post-container .ct-post-header .ct-post-meta ul.ct-post-item-comments li a {
  font-size: 0.467em;
  font-weight: 400;
  line-height: 1.714;
  color: rgba(0, 0, 0, 0.3);
  vertical-align: middle;
}
.ct-post-container .ct-post-header .ct-post-meta ul.ct-post-item-comments li a i {
  margin-right: 3px;
}
.ct-post-container .ct-post-header .ct-post-meta ul.ct-post-item-comments li a:hover {
  color: #555556;
}
.ct-post-container .ct-post-media {
  margin-bottom: 1em;
}
.ct-post-container .ct-post-media img {
  max-width: none;
  width: 100%;
}
.ct-post-container .ct-post-inner {
  font-size: 1rem;
}
.ct-post-container .ct-post-inner .ct-post-text {
  margin-bottom: 2.143em;
}
.ct-post-container .ct-post-inner .ct-post-text p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.429;
}
.ct-post-container .ct-post-inner .ct-post-gallery {
  font-size: 1.429rem;
  margin-bottom: 30px;
}
.ct-post-container .ct-post-inner .ct-post-gallery .ct-post-gallery-title {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 35px;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item {
  overflow: hidden;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe {
  position: relative;
  float: left;
  overflow: hidden;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe .ct-post-gallery-item-image {
  max-width: none;
  width: 100%;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe figcaption {
  position: absolute;
  background-color: #555556;
  height: 2em;
  width: 100%;
  padding: 0 5px;
  float: none;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe figcaption > div {
  display: table;
  height: 100%;
  width: 100%;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe figcaption > div .ct-post-gallery-item-title {
  display: table-cell;
  vertical-align: middle;
}
.ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe figcaption > div .ct-post-gallery-item-title p {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  color: white;
  width: 100%;
  padding-left: 5px;
  line-height: 1.1;
}
.ct-post-container .ct-post-inner .ct-post-tags {
  font-size: 1rem;
  margin-bottom: 3.214em;
}
.ct-post-container .ct-post-inner .ct-post-tags ul:before {
  font-family: fontawesome;
  content: '\f02b';
  margin-right: 10px;
  color: #555556;
}
.ct-post-container .ct-post-inner .ct-post-tags ul li {
  padding-left: 0;
  padding-right: 0;
}
.ct-post-container .ct-post-inner .ct-post-tags ul li a {
  font-size: 1em;
  font-style: italic;
  line-height: 1.714;
}
@media (max-width: 1200px) {
  .ct-post-container {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .ct-post-container .ct-post-header .ct-post-meta p:after {
    margin-left: 8px;
  }
  .ct-post-container .ct-post-inner .ct-post-gallery {
    margin-bottom: 0;
  }
  .ct-post-container .ct-post-inner .ct-post-gallery .ct-post-gallery-title {
    text-align: center;
  }
  .ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item {
    margin-bottom: 30px;
  }
  .ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe {
    float: none;
  }
  .ct-post-container .ct-post-inner .ct-post-gallery article.ct-post-gallery-item figure.effect-zoe .ct-post-gallery-item-image {
    max-width: none;
    width: 100%;
  }
}
article.ct-recentWork-item {
  font-size: 2.143rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  margin-bottom: 50px;
}
article.ct-recentWork-item .ct-recentWork-item-media {
  margin-bottom: 15px;
}
article.ct-recentWork-item .ct-recentWork-item-media a > div {
  position: relative;
  background-color: #000000;
}
article.ct-recentWork-item .ct-recentWork-item-media a > div:before {
  font-family: fontawesome;
  content: '\f002';
  display: block;
  height: 45px;
  width: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
article.ct-recentWork-item .ct-recentWork-item-media a > div img {
  width: 100%;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
article.ct-recentWork-item .ct-recentWork-item-media a:hover > div:before {
  opacity: 1;
}
article.ct-recentWork-item .ct-recentWork-item-media a:hover > div img {
  opacity: .3;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-title a {
  letter-spacing: normal;
  font-weight: 700;
  line-height: 1.1;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.433em;
  font-weight: 400;
  line-height: 1.692;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-date p {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.467em;
  font-weight: 400;
  line-height: 1.571;
  margin: 0;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul {
  line-height: .32;
  margin: 0;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul li {
  line-height: .3;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul li:first-child {
  padding-left: 0;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul li a {
  color: rgba(0, 0, 0, 0.2);
  font-size: 0.467em;
  font-weight: 400;
  line-height: 1.571;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul li a i {
  margin-right: 2px;
}
article.ct-recentWork-item .ct-recentWork-item-inner .ct-recentWork-item-comment ul li a:hover {
  color: #555556;
}
/*------------------------ Pagination ------------------------------*/
.ct-pagination {
  font-size: 1rem;
  margin-bottom: 3.214em;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
  float: left;
}
.ct-pagination ul.ct-paginationNav {
  margin: 0;
  line-height: 1;
}
.ct-pagination ul.ct-paginationNav li {
  margin-left: 15px;
}
.ct-pagination ul.ct-paginationNav li a {
  color: #555556;
  opacity: 0.7;
  font-size: .8em;
}
.ct-pagination ul.ct-paginationNav li a i {
  line-height: 1.2;
}
.ct-pagination ul.ct-paginationNav li a:hover {
  opacity: 1;
}
.ct-pagination ul.ct-paginationNav li:first-child {
  margin-left: 0;
}
.ct-pagination p {
  font-size: 1em;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.2);
  margin-top: 3px;
}
.ct-blog-container + .ct-pagination {
  padding-right: 40px;
}
@media (max-width: 1200px) {
  .ct-blog-container + .ct-pagination {
    padding-right: 0;
  }
}
/*------------------------ List switcher ------------------------------*/
.ct-listSwitcher {
  margin-bottom: 30px;
}
.ct-listSwitcher ul li {
  padding: 0;
}
.ct-listSwitcher ul li:first-child {
  padding-left: 5px;
}
.ct-listSwitcher ul li a {
  width: 35px;
  height: 35px;
  display: block;
  border: 1px solid black;
  text-align: center;
}
.ct-listSwitcher ul li a i {
  line-height: 35px;
  vertical-align: middle;
}
.ct-listSwitcher ul li a:hover {
  border-color: #555556;
}
.ct-listSwitcher ul li a.active {
  color: #555556;
  border-color: #555556;
}
/*------------------------ Comment ------------------------------*/
.ct-comment {
  font-size: 2.143rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-comment form {
  padding-bottom: 70px;
}
.ct-comment form label {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.467em;
  font-weight: 400;
  line-height: 1.714;
  text-align: left !important;
}
.ct-comment form button {
  width: 100%;
}
.ct-comment .ct-comment-item {
  font-size: 1rem;
  margin-bottom: 70px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user {
  padding-right: 30px;
  border-right: 1px solid #555556;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-comment-user-image {
  margin-bottom: 2.143em;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-comment-user-image a img {
  height: 7.214em;
  width: 7.214em;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: none;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments {
  display: block;
  margin: 0 auto;
  float: none;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  width: 80px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul {
  text-align: center;
  margin: 0;
  padding-top: 5px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul li:first-child {
  padding-left: 0;
  padding-right: 6px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul li:last-child {
  padding-left: 6px;
  padding-right: 0;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul li a {
  color: rgba(0, 0, 0, 0.15);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.714;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul li a i {
  margin-right: 2px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-media-comment-user-comments ul li a:hover {
  color: #555556;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body {
  padding-left: 30px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-userName {
  display: table-cell;
  vertical-align: middle;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-userName > div {
  font-weight: 300;
  line-height: 1;
  color: #555556;
  letter-spacing: normal;
  margin: 0;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-userName > div * {
  margin: 0;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-reply {
  display: table-cell;
  vertical-align: middle;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-reply p {
  text-align: right;
  margin: 0;
  line-height: 1;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-reply p a {
  font-size: 1.429em;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.3);
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-comment-media-heading .ct-comment-media-reply p a:hover {
  color: #555556;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-media-comment-text {
  margin-bottom: 20px;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-media-comment-text p {
  color: #8f999f;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.429;
}
.ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body .ct-media-comment-date p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1em;
  font-weight: 900;
  line-height: 1.429;
  margin: 0;
}
.ct-comment .ct-comment-item.ct-comment-subcomment {
  padding-left: 200px;
}
@media (max-width: 992px) {
  .ct-comment form button {
    margin-top: 5px;
    margin-right: -15px;
  }
  .ct-comment .ct-comment-item.ct-comment-subcomment {
    padding-left: 40px;
  }
}
@media (max-width: 480px) {
  .ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user {
    display: block;
    border: none;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-user .ct-comment-user-image {
    width: 7.214em;
    margin-left: auto;
    margin-right: auto;
  }
  .ct-comment .ct-comment-item .ct-comment-media .ct-comment-media-body {
    display: block;
    padding-left: 0;
  }
  .ct-comment .ct-comment-item.ct-comment-subcomment {
    padding-left: 50px;
  }
}
/*------------------------ Contact ------------------------------*/
.ct-contact {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.ct-contact > * {
  font-weight: 700;
  color: #444444;
  margin-bottom: 20px;
}
.ct-contact > div {
  margin-bottom: 20px;
}
.ct-contact > div p {
	margin-bottom: 10px;
	line-height: 1.5rem;
	font-weight: 400;
	font-size: 1.2rem;
}
@media (max-width: 480px) {
.ct-contact > div p {
	margin-bottom: 5px;
	line-height: 1.7rem;
	font-weight: 400;
	font-size: 1.5rem;
}
}
@media (max-width: 992px) {
  .ct-contact {
    float: left !important;
  }
}
/*------------------------ Error page ------------------------------*/
.ct-errorPage {
  max-width: 750px;
  margin: 0 auto;
}
.ct-errorPage .ct-errorPage-header {
  color: #222222;
  font-size: 12.286rem;
  font-weight: 900;
  line-height: 35px;
  letter-spacing: normal;
  margin-bottom: 60px;
}
.ct-errorPage header {
  margin-bottom: 40px;
}
.ct-errorPage header * {
  font-weight: 700;
  margin-bottom: 0;
}
.ct-errorPage header p {
  font-weight: 300;
  text-align: center;
}
.ct-errorPage .ct-errorPage-listContainer {
  display: block;
  margin: 0 auto;
  width: 382px;
}
.ct-errorPage .ct-errorPage-listContainer ul {
  display: table;
}
.ct-errorPage .ct-errorPage-listContainer ul li {
  display: table-cell;
  vertical-align: middle;
}
.ct-errorPage .ct-errorPage-listContainer ul li:first-child {
  padding-left: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li:last-child {
  padding-right: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li p {
  margin-bottom: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li form {
  overflow: hidden;
  margin: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group {
  position: relative;
  float: right;
  margin-top: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group .search-input::-webkit-input-placeholder {
  color: white !important;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group .search-input::-moz-placeholder {
  color: white !important;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group .search-input::-moz-placeholder {
  color: white !important;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group .search-input:-ms-input-placeholder {
  color: white !important;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group input.search-input {
  height: 42px !important;
  width: 240px;
  background-color: rgba(0, 0, 0, 0.1);
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 19px;
  border-color: #d7d8d9;
  box-shadow: none;
  float: right;
  padding: 20px 14px !important;
  margin: 0 !important;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group input.search-input:focus {
  border-color: #555556;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span {
  position: absolute;
  right: 0;
  height: 42px;
  z-index: 5;
  width: 30px;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a {
  display: block;
  width: 28px;
  height: 100%;
  z-index: 2;
  background: transparent !important;
  border: none;
  padding: 0 5px;
  overflow: hidden;
  color: transparent;
  margin: 0;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button:focus,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a:focus,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button:active,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a:active,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button:hover,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a:hover,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button:visited,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a:visited {
  outline: 0;
  box-shadow: none;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button:before,
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span a:before {
  content: '\f002';
  font-family: fontawesome;
  display: inline-block;
  line-height: 36px;
  margin: 0 auto;
  color: white;
}
.ct-errorPage .ct-errorPage-listContainer ul li form .input-group span button {
  height: 42px;
}
@media (max-width: 992px) {
  .ct-errorPage .ct-errorPage-listContainer {
    width: 245px;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li {
    display: block;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li:first-child,
  .ct-errorPage .ct-errorPage-listContainer ul li:last-child {
    padding-left: 5px;
    padding-right: 5px;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li p {
    text-align: center;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li button,
  .ct-errorPage .ct-errorPage-listContainer ul li a {
    position: static !important;
    min-height: 42px;
    width: 100%;
    padding: 0;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li a {
    line-height: 3;
  }
}
@media (max-width: 480px) {
  .ct-errorPage .ct-errorPage-listContainer {
    width: 245px;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li a {
    line-height: 4;
  }
  .ct-errorPage .ct-errorPage-listContainer ul li button {
    font-size: 14px;
  }
}
/*------------------------ Testimonals ------------------------------*/

.table-testimonials {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5rem !important;
    display: block;
}


.testimonial_img {
	width: 120px;
	height: 152px;
	float: right;
	margin-left: 2rem;
	margin-bottom: 5px;
	}

@media (min-width:480px) and (max-width: 966px) {
	.testimonial_img {
	width: 100px !important;
	height: 124px !important;
	float: right;
	margin-left: 2rem;
	margin-bottom: 5px;
	}
}

@media (max-width: 479px) {
	.testimonial_img {
	width: 85px !important;
	height: 105px !important;
	float: right;
	margin-left: 2rem;
	margin-bottom: 5px;
	}
}

.table_quote_l {
		font-family: "Georgia", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
font-size:3rem; line-height:2rem; margin-left:-18px; color:#E3E3E3;}
.table_quote_r {
		font-family: "Georgia", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
float: none;
	font-size: 3rem;
	line-height: 0.8rem;
	color: #E3E3E3;
	position: relative;
	top: 8px;
}

.quote_large_l {
	font-family: Georgia, Palatino, "Century Schoolbook", "Times New Roman", Times, serif;
	font-size: 5rem;
	margin-top: 0px;
	line-height: 4rem;
	margin-left: -29px;
	color: #E3E3E3;
	position: relative;
	top: 20px;
}
.quote_large_r {
	font-family:Georgia, Palatino, "Century Schoolbook", "Times New Roman", Times, serif;float: none;
	font-size: 4rem;
	line-height: .9rem;
	color: #E3E3E3;
	position:relative;
	top: 10px;
}


.quote_small_l {
	font-family:Georgia, Palatino, "Century Schoolbook", "Times New Roman", Times, serif;
	font-size:2.5rem;
	line-height:2rem;
	margin-left:-14px;
	color:#E3E3E3;
	}
.quote_small_r {
	font-family:Georgia, Palatino, "Century Schoolbook", "Times New Roman", Times, serif;
	float: none;
	font-size: 2.5rem;
	line-height: .8rem;
	color: #E3E3E3;
	position:relative;
	top: 6px;
}
	
.ct-testimonals {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #555556;
  padding: 5.714em 2.143em;
}
.ct-testimonals .ct-testimonals-media {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.143em;
}
.ct-testimonals .ct-testimonals-media img {
  margin-left: auto;
  margin-right: auto;
  width: 70px;
  height: 70px;
  display: block;
  max-width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ct-testimonals .ct-testimonals-content {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-text p {
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.929em;
  font-style: italic;
  line-height: 1.538;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul {
  text-align: center;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul li {
  padding-right: 0;
  color: white;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul li:after {
  content: '|';
  margin-left: 3px;
  margin-right: 0;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul li:last-child {
  padding-right: 5px;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul li:last-child:after {
  content: normal;
}
.ct-testimonals .ct-testimonals-content .ct-testimonals-author ul li a {
  color: #ffffff;
  font-size: 0.929em;
  font-weight: 700;
  line-height: 1.538;
}
/*------------------------ Tables ------------------------------*/
.ct-table {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}
.ct-table tr td p {
	margin-bottom: 8px !important;
}
	
	.ct-table tr td p strong {
	  font-family: "Roboto Condensed", sans-serif;
	  font-weight:400;
        font-size: inherit;
	
	}


.ct-table table {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-table a:hover {
	color: #4E045C !important;
	font-weight: 600 !important;
}
.ct-table a {
	color: #000000 !important;
	font-weight: 600 !important;
}

.ct-table table thead {
  background-color: #555556;
}
.ct-table table thead tr th {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.537;
	text-transform: uppercase;
	padding-top: 17px;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 17px;
	letter-spacing:.1em;
}
.ct-table table tbody tr:first-child td {
	padding-top: 15px;
	line-height: normal;
	padding-bottom: 0px;
}
.ct-table table tbody tr:last-child td {
  padding-bottom: 20px;
}
.ct-table table tbody tr td {
	font-family: "Roboto Condensed", "Arial Narrow", san-serif !important;
	color: rgba(0, 0, 0, 0.7);
	font-size: 1.1em;
	font-weight: 300;
	line-height: normal;
	padding-top: 8px;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 8px;
}


@media (max-width: 400px) {

.ct-table table tbody tr td {
	color: rgba(0, 0, 0, 0.7);
	font-family: "Roboto Condensed", "Arial Narrow", san-serif !important;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3rem !important;
	padding-top: 8px;
	padding-right: .5rem;
	padding-left: .5rem;
	padding-bottom: 8px;
}
	.ct-table tr td p strong {
	  font-family: "Roboto Condensed", sans-serif;
	  font-weight:600;
	
	}

}



.ct-table table:not(.table-bordered) thead {
  background-color: #555556;
}
.ct-table table:not(.table-bordered) thead tr th {
  border: none;
}
.ct-table table:not(.table-bordered) tbody tr td {
  border: none;
}
/*------------------------ Pricing tables ------------------------------*/
.ct-pricingTable {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
.ct-pricingTable .ct-pricingTable-header {
  background-color: #555556;
  display: table;
  width: 100%;
  padding: 35px 10px;
}
.ct-pricingTable .ct-pricingTable-header > div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}
.ct-pricingTable .ct-pricingTable-header > div * {
  margin-bottom: 0;
}
.ct-pricingTable .ct-pricingTable-header > div p {
  font-weight: 300;
  font-size: 2.143em;
}
.ct-pricingTable .ct-pricingTable-container {
  background-color: #ffffff;
}
.ct-pricingTable .ct-pricingTable-container ul {
  max-width: 175px;
  margin: 0 auto;
  padding: 60px 0;
  display: block;
}
.ct-pricingTable .ct-pricingTable-container ul li p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.929em;
  font-weight: 400;
  margin-bottom: 30px;
}
.ct-pricingTable .ct-pricingTable-container ul li p i {
  color: #e5e5e5;
  margin-right: .6em;
  font-size: 1.4em;
}
.ct-pricingTable .ct-pricingTable-container ul li.active p i {
  color: #555556;
}
.ct-pricingTable .ct-pricingTable-container ul li:last-child p {
  margin-bottom: 0;
}
.ct-pricingTable .ct-pricingTable-footer {
  height: 54px;
}
.ct-pricingTable .ct-pricingTable-footer a {
  padding: 12px 12px;
  font-weight: 700;
}
/*------------------------ Toggable ------------------------------*/
.ct-tab {
  font-size: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000000;
  max-width: 560px;
  margin: 0 auto;
}
.ct-tab .ct-tab-container .ct-tab-navbar {
  margin-bottom: 40px;
}
.ct-tab .ct-tab-container .ct-tab-navbar li a {
  font-size: 0.925em;
  font-weight: 700;
  line-height: 1.537;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.ct-tab .ct-tab-container .ct-tab-navbar li.active a {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-color: #555556;
}
.ct-tab .ct-tab-container .ct-tab-content {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.929em;
  font-weight: 400;
  line-height: 1.538;
  text-align: center;
}
.ct-accordion {
	font-size: .9rem;
    line-height: 1.2rem;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	background-color: #ffffff;
	margin-top: 0px;
	max-height: 100%;
}
.ct-accordion2 {
	font-size: 1rem;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	margin-top: 15px;
}

.ct-accordion p {
    padding-top: 5px;
}

.ct-accordion .ct-accordion-panel {
  background-color: #ffffff;
  margin: 0;
}
.ct-accordion .ct-accordion-panel + .ct-accordion-panel {
  margin: 0;
}
.ct-accordion .ct-accordion-panel .ct-accordion-heading {
  background-color: #555556;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ct-accordion .ct-accordion-panel .ct-accordion-heading .ct-accordion-title {
  display: block;
  height: 100%;
  width: 100%;
}
.ct-accordion .ct-accordion-panel .ct-accordion-heading .ct-accordion-title a {
	color: #ffffff;
	font-size: 1.125em;
	font-weight: 400;
	line-height: 1.111;
	display: block;
	width: 100%;
	height: 100%;
	padding: 13px 30px;
}

.ct-accordion .ct-accordion-panel .ct-accordion-heading .ct-accordion-title a.collapsed {
  background-color: #EDEBEB;
  color: #353535;
}
.ct-accordion .ct-accordion-panel .ct-accordion-heading .ct-accordion-title a:hover.collapsed {
  background-color: #ffffff;
  color: #353535;
}


.ct-accordion .ct-accordion-panel .ct-accordion-body {
	color: rgba(0, 0, 0, 0.7);
	font-size: .9rem;
	font-weight: 400;
	line-height: 1.538;
	padding: 18px 30px;
}
.ct-accordion2 .ct-accordion-panel2 .ct-accordion-body2 {
	color: rgba(0, 0, 0, 0.7);
	font-size: .9rem;
	font-weight: 400;
	line-height: 1.2;
	padding: 18px 20px;
}

.ct-accordion .ct-accordion-panel .ct-accordion-body a:hover {
color: #EDEBEB;
}

/*------------------------ Tweet ------------------------------*/
.twitterContainer {
  overflow: hidden;
}
.ct-twitter .owl-item .tweet_even,
.ct-twitter .owl-item .tweet_odd {
  padding: 0 10px;
}
.ct-twitter .owl-item > div p {
  font-size: 1.571rem;
  position: relative;
}
.ct-twitter .owl-item > div p a.tweet_user {
  visibility: hidden;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  width: 0;
  height: 0;
}
.ct-twitter .owl-item > div p span.tweet_text {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  color: #ffffff;
  line-height: 1.27273;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  display: block;
}
.ct-twitter .owl-item > div p span.tweet_text a {
  color: white;
}
.ct-twitter .owl-item > div p span.tweet_text a:hover {
  text-decoration: underline !important;
}
.ct-twitter .owl-item > div p span.tweet_time {
  font-family: 'Lato', sans-serif;
  font-size: 0.545em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.33333;
  font-weight: 400;
  text-align: center;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}
.ct-twitter .owl-item > div p span.tweet_time a {
  color: white;
}
.ct-twitter .owl-item > div p span.tweet_time a:hover {
  text-decoration: underline !important;
}
.footer_img {max-width: 40%; position: relative; text-align: center; left: -10px; margin-top: 20px; margin-bottom: 20px;}	
/*------------------------ Footer ------------------------------*/
footer {
	padding: 0;
	background-color: #474747;
}
footer a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer_img {max-width: 70%; position: relative; left: -35px; margin-top: 20px; margin-bottom: 20px;}

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


footer .widget > h1,
footer .widget > h2,
footer .widget > h3,
footer .widget > h4,
footer .widget > h5,
footer .widget > h6 {
  color: #CCC;
}

footer .copyright {
	color: #ffffff;}
	
footer .copyright a {
  color: #cccccc;
  font-size: 0.875em;
}
footer .copyright a:hover {
  color: #555556;
}
.footer {
  font-size: 1.143rem;
}
.footer .widget > h1,
.footer .widget > h2,
.footer .widget > h3,
.footer .widget > h4,
.footer .widget > h5,
.footer .widget > h6 {
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 1.875em;
  letter-spacing: 0.250em;
  color: rgba(255, 255, 255, 0.302);
}
.footer .widget-links .widget-inner .footer-nav {
  padding-bottom: 1.250em;
}
.footer .widget-links .widget-inner .footer-nav li {
  padding: 0.313em 1.250em;
}
.footer .widget-links .widget-inner .footer-nav li a {
  color: #FFF;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.375em;
  line-height: 1.31818;
}
.footer .widget-links .widget-inner .footer-nav li a:hover {
  color: #555556;
}
.footer .widget-contact .widget-inner .widget-phone,
.footer .widget-contact .widget-inner .widget-email {
  font-size: 1.375em;
  line-height: 1.27272;
  font-weight: 300;
}
.footer .widget-contact .widget-inner .widget-phone {
  color: #FFF;
  margin-bottom: 0.313em;
}
.footer .widget-contact .widget-inner .widget-email a {
  color: #FFF;
  text-decoration: none;
}
.footer .widget-contact .widget-inner .widget-email a:hover {
  color: #555556;
}
.footer .widget-social .widget-inner {
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.500em;
	width: 280px;
}
.footer .widget-social .widget-inner .socialicons {
  padding-bottom: 25px;
}
.footer .widget-social .widget-inner .socialicons li:first-child {
  margin-left: 0;
}
.footer-extended {
  font-size: 1.143rem;
}
.footer-extended .widget > h1,
.footer-extended .widget > h2,
.footer-extended .widget > h3,
.footer-extended .widget > h4,
.footer-extended .widget > h5,
.footer-extended .widget > h6 {
	font-weight: 300;
	margin-top: 1.5em;
	margin-bottom: 1.5rem;
	color: #CCC;
}
.footer-extended .widget-contact .widget-inner .widget-phone,
.footer-extended .widget-contact .widget-inner .widget-email {
  font-size: 14px;
  line-height: 1.714;
  font-weight: 300;
}
.footer-extended .widget-contact .widget-inner .widget-phone {
  color: #FFF;
  margin-bottom: 0.313em;
}
.footer-extended .widget-contact .widget-inner .widget-email a {
  color: #FFF;
}
.footer-extended .widget-contact .widget-inner .widget-email a:hover {
  color: #555556;
}
.footer-extended .widget-location .widget-inner p {
  font-size: 14px;
  line-height: 1.714;
  font-weight: 300;
  color: #FFF;
  margin-bottom: 0.313em;
}
.footer-extended .widget-flickr .widget-inner .flickr_badge {
  min-height: 170px;
}
.footer-extended .widget-flickr .widget-inner .flickr_badge_image {
  float: left;
  width: 85px;
  height: 85px;
  padding: 5px;
}
.footer-extended .widget-flickr .widget-inner .flickr_badge_image a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.footer-extended .widget-flickr .widget-inner .flickr_badge_image a:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
}
.footer-extended .widget-flickr .widget-inner .flickr_badge_image a:hover:after {
  opacity: .5;
}
.footer-extended .widget-recentPost .widget-inner a {
  display: block;
}
.footer-extended .widget-recentPost .widget-inner a > h1,
.footer-extended .widget-recentPost .widget-inner a > h2,
.footer-extended .widget-recentPost .widget-inner a > h3,
.footer-extended .widget-recentPost .widget-inner a > h4,
.footer-extended .widget-recentPost .widget-inner a > h5,
.footer-extended .widget-recentPost .widget-inner a > h6 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #FFF;
  font-weight: 700;
  line-height: 1.333;
  margin: 0.625em 0 12px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-extended .widget-recentPost .widget-inner a:hover > h1,
.footer-extended .widget-recentPost .widget-inner a:hover > h2,
.footer-extended .widget-recentPost .widget-inner a:hover > h3,
.footer-extended .widget-recentPost .widget-inner a:hover > h4,
.footer-extended .widget-recentPost .widget-inner a:hover > h5,
.footer-extended .widget-recentPost .widget-inner a:hover > h6 {
  color: #555556;
}
.footer-extended .widget-recentPost .widget-inner .post-content p {
  color: #CCC;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.429;
}
.footer-extended .widget-recentPost .widget-inner .updateTime p {
  color: #FFF;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  line-height: 2;
}
.footer-extended .widget-links .widget-inner .footer-nav li {
  margin-bottom: 3px;
}
.footer-extended .widget-links .widget-inner .footer-nav li a {
	color: #FFF;
	text-decoration: none;
	font-weight: 400;
	font-size: 1.15rem;
}
.footer-extended .widget-links .widget-inner .footer-nav li a:hover {
  color: #555556;
}
.footer-extended .widget-social .widget-inner {
  margin-top: 11px;
}
.footer-extended .ct-copyright {
  display: table;
  min-height: 50px;
  height: 100%;
  width: 100%;
}
.footer-extended .ct-copyright .ct-copyright-inner {
  display: table-cell;
  vertical-align: middle;
}
.footer-extended .ct-copyright .ct-copyright-inner .ct-copyright-text {
  margin: 5px 0 0;
}
.footer-extended .ct-copyright .ct-copyright-inner .ct-copyright-text  {
	margin: 0;
	font-size: 0.7rem;
	line-height: 0.95rem;
	color: #FFF;
	text-transform: uppercase;
	letter-spacing: .1em;
  }
.footer-extended .ct-copyright .ct-copyright-inner .widget-inner {
  margin: 0;
  padding: 2px 0;
}

@media (max-width: 1200px) {
  .footer-extended .widget > h1,
  .footer-extended .widget > h2,
  .footer-extended .widget > h3,
  .footer-extended .widget > h4,
  .footer-extended .widget > h5,
  .footer-extended .widget > h6 {
    margin-top: 45px;
  }
  .footer-extended .widget-links,
  .footer-extended .widget-flickr,
  .footer-extended .widget-contact,
  .footer-extended .widget-location,
  .footer-extended .widget-recentPost {
    text-align: center;
  }
  .footer-extended .widget-links .widget-inner .footer-nav li {
    display: inline-block;
    padding: 5px 15px;
  }
  .footer-extended .widget-flickr .widget-inner {
    max-width: 255px;
    margin: 0 auto;
  }
  .footer-extended .widget-inner iframe {
margin-left:auto;
margin-right:auto;  }

  
}
@media (max-width: 992px) {
  .footer-extended .widget-social .widget-inner {
    margin: 20px auto;
    max-width: 260px;
  }
  .footer-extended .widget-social .widget-inner li {
    margin-left: 10px;
  }
  .footer-extended .widget-social .widget-inner li:first-child {
    margin-left: 0;
  }
  .footer-extended .copyright {
    text-align: center;
  }
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 25px;
  }
  .footer-extended .widget-links .widget-inner .footer-nav li {
    display: block;
    padding: 0;
  }
  .footer-extended .widget-social .widget-inner {
    margin: 20px auto;
    max-width: 240px;
  }
  .footer-extended .widget-social .widget-inner li {
    margin-left: 6px;
  }
  .footer-extended .widget-social .widget-inner li:first-child {
    margin-left: 0;
  }
  .footer-extended .ct-copyright {
    display: block;
  }
  .footer-extended .ct-copyright .ct-copyright-inner {
    display: block;
  }
  .footer-extended .ct-copyright .ct-copyright-inner .ct-copyright-text {
	margin-top: 5px;
	font-size: .8rem;
	text-align: center;
  }
  
  .footer-extended .ct-copyright .ct-copyright-inner .widget-inner {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 180px;
  }
}
@media (max-width: 480px) {
  .footer .widget-social .widget-inner {
    width: 255px;
  }
  .footer .widget-social .widget-inner .socialicons li {
    margin-left: 15px;
  }
    .footer-extended .ct-copyright .ct-copyright-inner .ct-copyright-text {
	margin-top: 10px;
	font-size: .6rem;
	text-align: center;
	line-height: 0.8rem;
  }

}
/*------------------------ Maps ------------------------------*/
.ct-googleMap--accordion .ct-googleMap-header {
  font-size: 32px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ct-googleMap--accordion .ct-googleMap-container {
  height: 0;
  overflow: hidden;
}
.ct-googleMap img {
  max-width: none;
}
/*------------------------ Intro Effect ------------------------------*/
html,
body,
.ct-intro-topImage {
    height: 100%;
    line-height: notmal;
}
/* Header */
.ct-intro-topImage {
  position: relative;
  margin: 0 auto;
  min-height: 760px;
  width: 100%;
  display: table;
  z-index: 9999;
}
.bg-img {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.bg-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
}
.intro-effect-jam3 .ct-intro-title,
.ct-intro--fadeOut .ct-intro-title,
.ct-intro--push .ct-intro-title,
.ct-intro--sliced .ct-intro-title {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 9999;
}
.intro-effect-jam3 .ct-intro-title *,
.ct-intro--fadeOut .ct-intro-title *,
.ct-intro--push .ct-intro-title *,
.ct-intro--sliced .ct-intro-title * {
  position: relative;
}
/* Trigger Button */
button.trigger {
  position: fixed;
  bottom: 50px;
  left: 50%;
  z-index: 9999;
  display: block;
  margin-left: -0.5em;
  padding: 0;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 2em;
  cursor: pointer;
}
.ct-pageWrapper:not(.notrans) button.trigger {
  -webkit-transition: opacity 0.3s 0.5s;
  transition: opacity 0.3s 0.5s;
}
.ct-pageWrapper.modify:not(.notrans) button.trigger {
  opacity: 0;
  pointer-events: none;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
button.trigger::before {
  position: absolute;
  top: 100%;
  left: -100%;
  padding: 0.8em;
  width: 300%;
  color: #fff;
  content: attr(data-info);
  font-size: 14px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-transform: uppercase;
}
button.trigger:focus {
  outline: none;
}
button.trigger span {
  position: relative;
  display: block;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
button.trigger span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  content: "\f107";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: fontawesome;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 2px solid #ffffff;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.modify button.trigger {
  display: none;
}
/***** Individual effects *****/
/* -------------------------- */
/* Jam 3 */
/* -------------------------- */
.intro-effect-jam3:not(.notrans) .bg-img {
  -webkit-transition-property: top, left, right, bottom;
  transition-property: top, left, right, bottom;
}
.intro-effect-jam3:not(.notrans) .ct-intro-topImage h1,
.intro-effect-jam3:not(.notrans) .codrops-top a {
  -webkit-transition-property: color;
  transition-property: color;
}
.intro-effect-jam3:not(.notrans) .codrops-demos a {
  -webkit-transition-property: border-color, color;
  transition-property: border-color, color;
}
.intro-effect-jam3:not(.notrans) .ct-intro-topImage p {
  -webkit-transition-property: color, opacity, -webkit-transform;
  transition-property: color, opacity, transform;
}
.intro-effect-jam3:not(.notrans) .ct-intro-content > div {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
}
.intro-effect-jam3:not(.notrans) .bg-img,
.intro-effect-jam3:not(.notrans) .ct-intro-topImage h1,
.intro-effect-jam3:not(.notrans) .codrops-top a,
.intro-effect-jam3:not(.notrans) .codrops-demos a,
.intro-effect-jam3:not(.notrans) .ct-intro-content > div {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.intro-effect-jam3:not(.notrans) .ct-intro-topImage p,
.intro-effect-jam3:not(.notrans) .ct-intro-topImage p.subline,
.intro-effect-jam3:not(.notrans) .ct-intro-content > div {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.intro-effect-jam3.modify:not(.notrans) .ct-intro-topImage p,
.intro-effect-jam3.modify:not(.notrans) .ct-intro-topImage p.subline,
.intro-effect-jam3.modify:not(.notrans) .ct-intro-content > div {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.intro-effect-jam3 .codrops-demos a {
  color: #fff;
}
.intro-effect-jam3 .codrops-demos a.current-demo {
  border-color: #fff;
}
.intro-effect-jam3.modify .codrops-demos a {
  color: #c03b5d;
}
.intro-effect-jam3.modify .codrops-demos a.current-demo {
  border-color: #c03b5d;
}
.intro-effect-jam3.ct-pageWrapper {
  padding: 45px 30px;
}
.intro-effect-jam3 .bg-img {
  top: -45px;
  right: -30px;
  bottom: -45px;
  left: -30px;
  background: #514753;
}
.intro-effect-jam3.modify .bg-img {
  top: 0;
  right: 0;
  bottom: 85%;
  left: 0;
}
.intro-effect-jam3.modify .ct-intro-topImage h1 {
  color: #514753;
}
.intro-effect-jam3 .ct-intro-topImage p {
  color: #514753;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}
.intro-effect-jam3.modify .ct-intro-topImage p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.intro-effect-jam3 .ct-intro-content {
  padding: 0 5em 5em;
}
.intro-effect-jam3 .ct-intro-topImage,
.intro-effect-jam3 .ct-intro-content {
  background: #fff;
}
.intro-effect-jam3 .ct-intro-content > div {
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}
.intro-effect-jam3.modify .ct-intro-content > div {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.intro-effect-jam3.modify .codrops-top a {
  color: #514753;
}
/* Delays */
.intro-effect-jam3.modify:not(.notrans) .ct-intro-topImage p:nth-last-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.intro-effect-jam3.modify:not(.notrans) .ct-intro-topImage p:last-child {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.intro-effect-jam3.modify:not(.notrans) .ct-intro-content > div {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
/* -------------------------- */
/* Faded gradient */
/* -------------------------- */
.ct-intro--fadeOut .ct-intro-topImage {
  display: table;
  height: 760px;
}
.ct-intro--fadeOut .ct-intro-topImage .inner {
  display: table-cell;
  vertical-align: middle;
}
.ct-intro--fadeOut:not(.notrans) .bg-img {
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
.ct-intro--fadeOut:not(.notrans) .bg-img::after {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.ct-intro--fadeOut:not(.notrans) .ct-intro-topImage p,
.ct-intro--fadeOut:not(.notrans) .ct-intro-content > div {
  -webkit-transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
}
.ct-intro--fadeOut:not(.notrans) .bg-img,
.ct-intro--fadeOut:not(.notrans) .bg-img::after,
.ct-intro--fadeOut:not(.notrans) .ct-intro-topImage p,
.ct-intro--fadeOut:not(.notrans) .ct-intro-content > div {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.ct-intro--fadeOut .ct-intro-topImage {
  overflow: hidden;
}
.ct-intro--fadeOut.modify .bg-img {
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
}
.ct-intro--fadeOut .bg-img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 101%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.ct-intro--fadeOut.modify .bg-img::after {
  opacity: 1;
}
.ct-intro--fadeOut .ct-intro-title {
  text-align: left;
  max-width: 900px;
}
.ct-intro--fadeOut.modify .ct-intro-topImage h1,
.ct-intro--fadeOut.modify .ct-intro-topImage h2,
.ct-intro--fadeOut.modify .ct-intro-topImage h3,
.ct-intro--fadeOut.modify .ct-intro-topImage h4,
.ct-intro--fadeOut.modify .ct-intro-topImage h5,
.ct-intro--fadeOut.modify .ct-intro-topImage h6,
.ct-intro--fadeOut.modify .ct-intro-topImage p {
  color: #313842;
}
.ct-intro--fadeOut .ct-intro-topImage p {
  opacity: 0;
}
.ct-intro--fadeOut .ct-intro-topImage p:nth-child(2) {
  -webkit-transform: translateX(150px);
  transform: translateX(150px);
}
.ct-intro--fadeOut .ct-intro-topImage p:nth-child(3) {
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}
.ct-intro--fadeOut.modify .ct-intro-topImage p:nth-child(2),
.ct-intro--fadeOut.modify .ct-intro-topImage p:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.ct-intro--fadeOut .ct-intro-content {
  z-index: 1000;
  position: relative;
}
.ct-intro--fadeOut .ct-intro-content > .div,
.ct-intro--fadeOut .ct-intro-content > .div-top,
.ct-intro--fadeOut .ct-intro-content > .div-bottom {
  opacity: 0;
  -webkit-transform: translateY(350px);
  transform: translateY(350px);
}
.ct-intro--fadeOut.modify .ct-intro-content > div {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* -------------------------- */
/* Sliced */
/* -------------------------- */
.ct-intro--sliced .ct-intro-topImage {
  position: absolute;
  left: 0;
  top: 0;
}
.ct-intro--sliced .ct-intro-topImage.fix-zindex {
  z-index: 0;
}
.ct-intro--sliced:not(.notrans) .bg-img,
.ct-intro--sliced:not(.notrans) .ct-intro-title {
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}
.ct-intro--sliced:not(.notrans) .ct-intro-content > div {
  -webkit-transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
}
.ct-intro--sliced:not(.notrans) .bg-img,
.ct-intro--sliced:not(.notrans) .ct-intro-title,
.ct-intro--sliced:not(.notrans) .ct-intro-content > div {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.ct-intro--sliced.modify:not(.notrans) .ct-intro-title,
.ct-intro--sliced.modify:not(.notrans) .ct-intro-content > div {
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.ct-intro--sliced .bg-img:first-child {
  bottom: 50%;
  position: fixed;
}
.ct-intro--sliced .bg-img:last-child {
  top: 50%;
  position: fixed;
  z-index: 900;
}
.snapjs-left .ct-intro--sliced .bg-img:last-child,
.snapjs-right .ct-intro--sliced .bg-img:last-child,
.boxed .ct-intro--sliced .bg-img:last-child {
  position: absolute;
}
.snapjs-left .ct-intro--sliced .bg-img:first-child,
.snapjs-right .ct-intro--sliced .bg-img:first-child,
.boxed .ct-intro--sliced .bg-img:first-child {
  position: absolute;
}
.ct-intro--sliced .bg-img:last-child img {
  top: -100%;
}
.ct-intro--sliced.modify .bg-img:first-child {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ct-intro--sliced.modify .bg-img:last-child {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.ct-intro--sliced .ct-intro-title {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.ct-intro--sliced.modify .ct-intro-title {
  -webkit-transform: scale(1);
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}
.ct-intro--sliced .ct-intro-content > div {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
}
.ct-intro--sliced.modify .ct-intro-content > div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
/* Delays */
.ct-intro--sliced.modify:not(.notrans) .ct-intro-title {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
/* -------------------------- */
/* Push */
/* -------------------------- */
.ct-intro--push:not(.notrans) .ct-intro-topImage,
.ct-intro--push:not(.notrans) > .ct-intro-title,
.ct-intro--push:not(.notrans) .ct-intro-content > div {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}
.ct-intro--push:not(.notrans) .ct-intro-topImage {
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
.ct-intro--push .ct-intro-topImage {
  position: absolute;
  top: 0;
}
.ct-intro--push > .ct-intro-title {
  position: relative;
  top: auto;
  left: auto;
  padding: 6em 1em 2em;
}
.ct-intro--push > .ct-intro-title,
.ct-intro--push .ct-intro-content > div {
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
  opacity: 0;
}
.ct-intro--push.modify > .ct-intro-title,
.ct-intro--push.modify .ct-intro-content > div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.ct-intro--push.modify .ct-intro-topImage {
  opacity: 0;
  -webkit-transform: translateY(-100%) scale(0.9);
  transform: translateY(-100%) scale(0.9);
}
/* Delays */
.ct-intro--push.modify:not(.notrans) > .ct-intro-title {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.ct-intro--push.modify:not(.notrans) .ct-intro-content > div {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
/* Media Queries */
@media screen and (max-width: 47em) {
  .ct-intro-title {
    font-size: 70%;
  }
}
@media screen and (max-width: 767px) {
  .intro-effect-jam3 .ct-intro-content {
    padding: 0 2em 5em;
  }
  .bg-img img {
    min-height: 0;
  }
  .ct-intro--push .ct-intro-topImage .ct-intro-title,
  .ct-intro--sliced .ct-intro-topImage .ct-intro-title,
  .intro-effect-jam3 .ct-intro-topImage .ct-intro-title,
  .ct-intro--push .ct-intro-topImage .ct-intro-title {
    top: 60px;
  }
  .ct-intro-title {
    font-size: 50%;
    padding-top: 100px;
    display: block !important;
  }
  button.trigger::before {
    display: none;
  }
}
/*------------------------ Magnific ------------------------------*/
/* Magnific Popup CSS */




.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 10px;
  line-height: 18px;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 680px;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
	text-align: left;
	line-height: 16px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
	font-family: "Roboto Slab", "Lato", helvetica, arial, sans-serif;
	font-size: .9rem;

}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-right:after {
  border-top: 2px solid #555556;
  border-left: 2px solid #555556;
  border-right: 0;
  border-bottom: 0;
  height: 42px;
  width: 42px;
}
.mfp-arrow-left:after {
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
}
.mfp-arrow-right:after {
  -ms-transform: rotate(135deg);
  /* IE 9 */
  -webkit-transform: rotate(135deg);
  /* Chrome, Safari, Opera */
  transform: rotate(135deg);
  margin-left: 18px;
}
.mfp-arrow-left:before,
.mfp-arrow:before,
.mfp-arrow-right:before {
  display: none;
}
.mfp-close {
  color: #fff !important;
  right: -2px !important;
  text-align: center !important;
  top: 11px !important;
  cursor: pointer !important;
  width: 25px !important;
  height: 25px !important;
  line-height: 1 !important;
  padding: 0 !important;
}
.mfp-ajax-holder .mfp-content .container {
  padding-top: 35px;
}
.mfp-ajax-holder .mfp-content .mfp-close {
  position: absolute;
  float: right;
  top: -40px;
}
/*------------------------ Base Style ------------------------------*/
body.ct-js-morphOpen {
  overflow: hidden;
}
#ct-js-wrapper {
  background: #fff;
  overflow: hidden;
}
header.ct-u-hideText {
  height: 0;
  width: 0;
}
img {
  max-width: 100%;
}
ul {
  margin-bottom: 0;
}
ul li {
    margin-top: 7px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 7px;
}
.navbar-scroll-top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.headroom {
  transition: transform 200ms linear;
  z-index: 9998;
}
.headroom--pinned {
  transform: translateY(0%);
  display: block;
}
.headroom--unpinned {
  transform: translateY(-100%);
  display: none;
}
/*------------------------ to Top arrow -----------------------------*/
.ct-js-btnScrollUp {
  position: fixed;
  bottom: 30px;
  right: 40px;
  width: 70px;
  height: 70px;
  z-index: 999999;
  opacity: 0;
  filter: alpha(opacity=70);
  text-align: center;
  padding-top: 15px;
  color: #fff;
  visibility: hidden;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ct-js-btnScrollUp.is-active {
  opacity: 0.7;
  visibility: visible;
}
.ct-js-btnScrollUp.is-active:hover {
  color: #555556;
  opacity: 1;
  filter: alpha(opacity=100);
}
.ct-js-btnScrollUp i {
  font-size: 36px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: #222222;
}
@media (max-width: 480px) {
  .ct-js-btnScrollUp {
    bottom: 30px;
    right: 5px;
  }
}
.ct-preloader {
  position: fixed;
  z-index: 99998;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow: hidden;
}
.ct-preloader .ct-preloader-content {
  position: absolute;
  z-index: 99999;
  top: 50%;
  margin-top: -32px;
  left: 50%;
  margin-left: -32px;
  overflow: visible;
  width: 64px;
  height: 64px;
  font-size: 64px;
  background: url("../images/ball-triangle.svg") no-repeat;
}
.ct-fw-300 {
  font-weight: 300;
}
.ct-fw-400 {
  font-weight: 400;
}
.ct-fw-500 {
  font-weight: 500;
}
.ct-fw-600 {
  font-weight: 600;
}
.ct-fw-700 {
  font-weight: 700;
}
.ct-fw-800 {
  font-weight: 800;
}
.ct-fw-900 {
	font-weight: 900;
}
.ct-fs-i {
  font-style: italic;
}
.ct-fs-n {
  font-style: normal;
}
.ct-u-size14 {
  font-size: 14px;
}
.ct-u-size16 {
  font-size: 16px;
}
.ct-u-size18 {
  font-size: 18px;
}
.ct-u-size19 {
  font-size: 19px;
}
.ct-u-size20 {
  font-size: 20px;
}
.ct-u-size22 {
  font-size: 1.571rem;
}
.ct-u-size24 {
  font-size: 24px;
}
.ct-u-size30 {
  font-size: 30px;
}
.ct-u-size70 {
  font-size: 70px;
}
.ct-u-ls-2 {
  letter-spacing: 0.143em;
}
.ct-u-ls-3 {
  letter-spacing: 0.214em;
}
.ct-u-ls-n {
  letter-spacing: normal;
}
.ct-u-lh-n {
  line-height: 1;
}
.ct-u-lh-27 {
  line-height: 27px;
}
.ct-u-ff--1 {
  font-family: 'Lato', sans-serif;
}
.ct-u-ff--2 {
  font-family: 'Lato', sans-serif;
}
.ct-u-underline:hover {
  padding-bottom: 5px;
}
.ct-u-hideText {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  margin: 0;
  padding: 0;
}
.ct-u-leader {
  font-size: 19px;
  line-height: 1.15795;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 65px;
}
.ct-u-displayTable,
.ct-u-displayTableVertical {
  display: table;
  width: 100%;
}
.ct-u-displayTableVertical {
  height: 100%;
}
.ct-u-displayTableVertical .ct-u-displayTableCell {
  vertical-align: middle;
}
.ct-u-displayTableRow {
  display: table-row;
}
.ct-u-displayTableCell {
  display: table-cell;
}
.ct-u-paddingBoth5 {  padding-top: 5px;
  padding-bottom: 5px;
}
.ct-u-paddingBoth10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ct-u-paddingTop10 {
  padding-top: 10px;
}
.ct-u-paddingBottom10 {
  padding-bottom: 10px;
}
.ct-u-paddingBoth15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ct-u-paddingTop15 {
  padding-top: 15px;
}
.ct-u-paddingBottom15 {
  padding-bottom: 15px;
}
.ct-u-paddingBoth20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ct-u-paddingTop20 {
  padding-top: 20px;
}
.ct-u-paddingBottom20 {
  padding-bottom: 20px;
}
.ct-u-paddingBoth30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ct-u-paddingTop30 {
  padding-top: 30px;
}
.ct-u-paddingBottom30 {
  padding-bottom: 30px;
}
.ct-u-paddingRight30 {
  padding-right: 30px;
}
.ct-u-paddingBoth40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.ct-u-paddingTop40 {
	padding-top: 40px;
}
.ct-u-paddingBottom40 {
  padding-bottom: 40px;
}
.ct-u-paddingBoth50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.ct-u-paddingTop50 {
  padding-top: 50px;
}
.ct-u-paddingBottom50 {
  padding-bottom: 50px;
}
.ct-u-paddingBoth60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ct-u-paddingTop60 {
  padding-top: 60px;
}
.ct-u-paddingBottom60 {
  padding-bottom: 60px;
}
.ct-u-paddingBoth70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.ct-u-paddingTop70 {
  padding-top: 70px;
}
.ct-u-paddingBottom70 {
  padding-bottom: 70px;
}
.ct-u-paddingBoth75 {
  padding-top: 75px;
  padding-bottom: 75px;
}
.ct-u-paddingTop75 {
  padding-top: 75px;
}
.ct-u-paddingBottom75 {
  padding-bottom: 75px;
}
.ct-u-paddingBoth80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.ct-u-paddingTop80 {
  padding-top: 80px;
}
.ct-u-paddingBottom80 {
  padding-bottom: 80px;
}
.ct-u-paddingBoth90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.ct-u-paddingTop90 {
  padding-top: 90px;
}
.ct-u-paddingBottom90 {
  padding-bottom: 90px;
}
.ct-u-paddingBoth100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.ct-u-paddingTop100 {
  padding-top: 100px;
}
.ct-u-paddingBottom100 {
  padding-bottom: 100px;
}
.ct-u-paddingBoth150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
.ct-u-paddingTop150 {
  padding-top: 150px;
}
.ct-u-paddingBottom150 {
  padding-bottom: 150px;
}
.ct-u-paddingBoth180 {
  padding-top: 180px;
  padding-bottom: 180px;
}
.ct-u-paddingTop180 {
  padding-top: 180px;
}
.ct-u-paddingBottom180 {
  padding-bottom: 180px;
}
.ct-u-paddingBoth200 {
  padding-top: 200px;
  padding-bottom: 200px;
}
.ct-u-paddingTop200 {
  padding-top: 200px;
}
.ct-u-paddingBottom200 {
  padding-bottom: 200px;
}
.ct-u-paddingLeft60--sm {
  padding-left: 60px;
}
.ct-u-marginBottom-120 {
  margin-bottom: -120px;
}
.ct-u-marginTop-65 {
  margin-top: -65px;
}
.ct-u-marginBottom-65 {
  margin-bottom: -65px;
}
.ct-u-marginBoth0 {
  margin-top: 0;
  margin-bottom: 0;
}
.ct-u-marginTop0 {
  margin-top: 0;
}
.ct-u-marginBottom0 {
  margin-bottom: 0;
}
.ct-u-marginBoth5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.ct-u-marginBoth10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ct-u-marginTop10 {
  margin-top: 10px;
}
.ct-u-marginBottom10 {
  margin-bottom: 10px;
}
.ct-u-marginBoth15 {
  margin-top: 15px;
  margin-bottom: 15px;
}
.ct-u-marginTop15 {
  margin-top: 15px;
}
.ct-u-marginBottom15 {
  margin-bottom: 15px;
}
.ct-u-marginBoth20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ct-u-marginTop20 {
  margin-top: 20px;
}
.ct-u-marginBottom20 {
  margin-bottom: 20px;
}
.ct-u-marginBoth25 {
  margin-top: 25px;
  margin-bottom: 25px;
}
.ct-u-marginTop25 {
  margin-top: 25px;
}
.ct-u-marginBottom25 {
  margin-bottom: 25px;
}
.ct-u-marginBoth30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.ct-u-marginTop30 {
  margin-top: 30px;
}
.ct-u-marginBottom30 {
  margin-bottom: 30px;
}
.ct-u-marginBoth40 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.ct-u-marginTop40 {
  margin-top: 40px;
}
.ct-u-marginBottom40 {
  margin-bottom: 40px !important;
}
.ct-u-marginBoth50 {
	margin-top: 50px;
	margin-bottom: 50px;
	line-height: normal;
}
.ct-u-marginTop50 {
  margin-top: 50px;
}
.ct-u-marginBottom50 {
  margin-bottom: 50px;
}
.ct-u-marginBoth60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.ct-u-marginTop60 {
  margin-top: 60px;
}
.ct-u-marginBottom60 {
  margin-bottom: 60px;
}
.ct-u-marginBoth70 {
  margin-top: 70px;
  margin-bottom: 70px;
}
.ct-u-marginTop70 {
  margin-top: 70px;
}
.ct-u-marginBottom70 {
  margin-bottom: 70px;
}
.ct-u-marginBoth80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.ct-u-marginTop80 {
  margin-top: 80px;
}
.ct-u-marginBottom80 {
  margin-bottom: 80px;
}
.ct-u-marginBoth90 {
  margin-top: 90px;
  margin-bottom: 90px;
}
.ct-u-marginTop90 {
  margin-top: 90px;
}
.ct-u-marginBottom90 {
  margin-bottom: 90px;
}
.ct-u-marginBoth100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.ct-u-marginTop100 {
  margin-top: 100px;
}
.ct-u-marginBottom100 {
  margin-bottom: 100px;
}
.ct-u-marginBoth150 {
  margin-top: 150px;
  margin-bottom: 150px;
}
.ct-u-marginTop150 {
  margin-top: 150px;
}
.ct-u-marginBottom150 {
  margin-bottom: 150px;
}
.ct-pageTitle {
  color: #000000;
  font-size: 2.714rem;
  line-height: 1.316;
  max-width: 875px;
  margin: 0 auto;
}
.ct-u-colorWhite {
  color: #ffffff !important;
}
.ct-u-Creme {
  color: rgba(255, 255, 255, 0.3);
}
.ct-u-colorLightGray {
  color: #eeeeee;
}
.ct-u-colorDarkGray {
  color: #aaaaaa;
}
.ct-u-colorDark {
  color: #222222 !important;
}
.ct-u-colorDark2 {
  color: #444444;
}
.ct-u-colorDark3 {
  color: #777777;
}
.ct-u-colorDarkerGray {
  color: #666666;
}
.ct-u-colorBlack {
  color: #000000;
}
.ct-u-borderAll {
  border: 1px solid #dddddd;
}
.ct-u-borderBoth {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.ct-u-borderTop {
  border-top: 1px solid #dddddd;
}
.ct-u-borderBottom {
  border-bottom: 1px solid #dddddd;
}
.ct-u-borderMotiveBoth {
  border-top: 10px solid #555556;
  border-bottom: 10px solid #555556;
}
.ct-u-borderMotiveTop {
  border-top: 10px solid #555556;
}
.ct-u-borderMotiveBottom {
  border-bottom: 10px solid #555556;
}
.ct-u-hr-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-u-hr-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-u-hr-left {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-u-hr-right {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-u-hr-both {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ct-u-hr-topLighten {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-u-hr-bottomLighten {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-u-hr-leftLighten {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-u-hr-rightLighten {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-u-hr-bothLighten {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-u-backgroundWhite {
	background-color: #ffffff;
}
.ct-u-backgroundGray {
  background-color: #efefef;
}
.ct-u-backgroundGray2 {
  background-color: #bbbbbb;
}
.ct-u-backgroundDarkGray {
  background-color: #222222;
}
.ct-u-backgroundDarkGray2 {
  background-color: #2c2c2c;
}
.ct-u-backgroundDarkGray3 {
  background-color: #5f656b;
}
.ct-u-backgroundDarkGray,
.ct-u-backgroundDarkGray2,
.ct-u-backgroundDarkGray3 {
  color: #ffffff;
}
.ct-u-backgroundDarkGray h1,
.ct-u-backgroundDarkGray2 h1,
.ct-u-backgroundDarkGray3 h1,
.ct-u-backgroundDarkGray .h1,
.ct-u-backgroundDarkGray2 .h1,
.ct-u-backgroundDarkGray3 .h1,
.ct-u-backgroundDarkGray h2,
.ct-u-backgroundDarkGray2 h2,
.ct-u-backgroundDarkGray3 h2,
.ct-u-backgroundDarkGray .h2,
.ct-u-backgroundDarkGray2 .h2,
.ct-u-backgroundDarkGray3 .h2,
.ct-u-backgroundDarkGray h3,
.ct-u-backgroundDarkGray2 h3,
.ct-u-backgroundDarkGray3 h3,
.ct-u-backgroundDarkGray .h3,
.ct-u-backgroundDarkGray2 .h3,
.ct-u-backgroundDarkGray3 .h3,
.ct-u-backgroundDarkGray h4,
.ct-u-backgroundDarkGray2 h4,
.ct-u-backgroundDarkGray3 h4,
.ct-u-backgroundDarkGray .h4,
.ct-u-backgroundDarkGray2 .h4,
.ct-u-backgroundDarkGray3 .h4,
.ct-u-backgroundDarkGray h5,
.ct-u-backgroundDarkGray2 h5,
.ct-u-backgroundDarkGray3 h5,
.ct-u-backgroundDarkGray .h5,
.ct-u-backgroundDarkGray2 .h5,
.ct-u-backgroundDarkGray3 .h5,
.ct-u-backgroundDarkGray h6,
.ct-u-backgroundDarkGray2 h6,
.ct-u-backgroundDarkGray3 h6,
.ct-u-backgroundDarkGray .h6,
.ct-u-backgroundDarkGray2 .h6,
.ct-u-backgroundDarkGray3 .h6 {
  color: #ffffff;
}
.ct-u-backgroundDarkGray h1 small,
.ct-u-backgroundDarkGray2 h1 small,
.ct-u-backgroundDarkGray3 h1 small,
.ct-u-backgroundDarkGray .h1 small,
.ct-u-backgroundDarkGray2 .h1 small,
.ct-u-backgroundDarkGray3 .h1 small,
.ct-u-backgroundDarkGray h2 small,
.ct-u-backgroundDarkGray2 h2 small,
.ct-u-backgroundDarkGray3 h2 small,
.ct-u-backgroundDarkGray .h2 small,
.ct-u-backgroundDarkGray2 .h2 small,
.ct-u-backgroundDarkGray3 .h2 small,
.ct-u-backgroundDarkGray h3 small,
.ct-u-backgroundDarkGray2 h3 small,
.ct-u-backgroundDarkGray3 h3 small,
.ct-u-backgroundDarkGray .h3 small,
.ct-u-backgroundDarkGray2 .h3 small,
.ct-u-backgroundDarkGray3 .h3 small,
.ct-u-backgroundDarkGray h4 small,
.ct-u-backgroundDarkGray2 h4 small,
.ct-u-backgroundDarkGray3 h4 small,
.ct-u-backgroundDarkGray .h4 small,
.ct-u-backgroundDarkGray2 .h4 small,
.ct-u-backgroundDarkGray3 .h4 small,
.ct-u-backgroundDarkGray h5 small,
.ct-u-backgroundDarkGray2 h5 small,
.ct-u-backgroundDarkGray3 h5 small,
.ct-u-backgroundDarkGray .h5 small,
.ct-u-backgroundDarkGray2 .h5 small,
.ct-u-backgroundDarkGray3 .h5 small,
.ct-u-backgroundDarkGray h6 small,
.ct-u-backgroundDarkGray2 h6 small,
.ct-u-backgroundDarkGray3 h6 small,
.ct-u-backgroundDarkGray .h6 small,
.ct-u-backgroundDarkGray2 .h6 small,
.ct-u-backgroundDarkGray3 .h6 small {
  color: #ffffff;
}
.ct-u-backgroundMotive {
  background-color: #555556;
}
.ct-u-backgroundCreme {
  background-color: #f5f5f5;
}
.ct-u-opacity7 {
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}
.ct-u-borderLeft div[class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}
.ct-u-borderLeft div[class^="col-"]:first-child:before {
  display: none;
  padding-left: 15px;
}
.ct-u-borderLeft div[class^="col-"]:last-child {
  padding-right: 15px;
}
.ct-u-borderLeft div[class^="col-"]:before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dddddd;
}
.ct-u-overflowHidden {
  overflow: hidden;
}
.ct-u-borderRight div[class^="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}
.ct-u-borderRight div[class^="col-"]:first-child:before {
  padding-left: 15px;
}
.ct-u-borderRight div[class^="col-"]:last-child:after {
  display: none;
  padding-right: 15px;
}
.ct-u-borderRight div[class^="col-"]:after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #dddddd;
}
.ct-u-backgroundDarkGray .ct-u-borderLeft div[class^="col-"]:before {
  background-color: #333333;
}
.ct-u-backgroundDarkGray .ct-u-borderRight div[class^="col-"]:after {
  background-color: #333333;
}
@media (max-width: 768px) {
  .ct-u-border-visible-sm {
    border: none;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .ct-u-borderLeft div[class^="col-"]:after,
  .ct-u-borderRight div[class^="col-"]:after,
  .ct-u-borderLeft div[class^="col-"]:before,
  .ct-u-borderRight div[class^="col-"]:before {
    display: none;
  }
}
.ct-u-triangleTopLeft,
.ct-u-triangleTopRight {
  position: relative;
}
.ct-u-triangleTopLeft:before,
.ct-u-triangleTopRight:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.ct-u-triangleBottomLeft,
.ct-u-triangleBottomRight {
  position: relative;
}
.ct-u-triangleBottomLeft:after,
.ct-u-triangleBottomRight:after {
  z-index: 2;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.ct-u-triangleBottomLeft:after {
  left: 0;
  bottom: -30px;
  border-width: 0 30px 30px 0;
  border-color: transparent #555556 transparent transparent;
}
.ct-u-triangleBottomRight:after {
  right: 0;
  bottom: -30px;
  border-width: 30px 30px 0 0;
  border-color: #555556 transparent transparent transparent;
}
.ct-u-triangleTopLeft:before {
  left: 0;
  top: -30px;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #555556 transparent;
}
.ct-u-triangleTopRight:before {
  right: 0;
  top: -30px;
  border-width: 30px 0 0 30px;
  border-color: transparent transparent transparent #555556;
}
.ct-u-diagonalTopLeft,
.ct-u-diagonalTopRight {
  position: relative;
  overflow: hidden;
}
.ct-u-diagonalTopLeft:before,
.ct-u-diagonalTopRight:before {
  position: absolute;
  content: "";
  width: 140%;
  top: -25px;
  left: -20%;
  height: 50px;
  background-color: #333333;
}
.ct-u-diagonalBottomLeft,
.ct-u-diagonalBottomRight {
  position: relative;
  overflow: hidden;
}
.ct-u-diagonalBottomLeft:after,
.ct-u-diagonalBottomRight:after {
  position: absolute;
  content: "";
  bottom: -25px;
  width: 140%;
  left: -20%;
  height: 50px;
  background-color: #333333;
}
.ct-u-diagonalTopLeft:before {
  -webkit-transform: rotate(-1.3deg);
  -moz-transform: rotate(-1.3deg);
  -o-transform: rotate(-1.3deg);
  -ms-transform: rotate(-1.3deg);
  transform: rotate(-1.3deg);
}
.ct-u-diagonalTopRight:before {
  -webkit-transform: rotate(1.3deg);
  -moz-transform: rotate(1.3deg);
  -o-transform: rotate(1.3deg);
  -ms-transform: rotate(1.3deg);
  transform: rotate(1.3deg);
}
.ct-u-diagonalBottomLeft:after {
  -webkit-transform: rotate(1.3deg);
  -moz-transform: rotate(1.3deg);
  -o-transform: rotate(1.3deg);
  -ms-transform: rotate(1.3deg);
  transform: rotate(1.3deg);
}
.ct-u-diagonalBottomRight:after {
  -webkit-transform: rotate(-1.3deg);
  -moz-transform: rotate(-1.3deg);
  -o-transform: rotate(-1.3deg);
  -ms-transform: rotate(-1.3deg);
  transform: rotate(-1.3deg);
}
.ct-u-width100per {
  width: 100%;
}

@media(max-width:1400px){
.ct-portfolio-container article.ct-portfolio-item .ct-portfolio-item-outer .ct-portfolio-item-media figure {
cursor:pointer;
}}
.ct-imageBox figcaption p  {color:#ffffff;}
.ct-imageBox figcaption i  {color:#ffffff;}
