/* Owl-carousel */

.owl-carousel {
    padding: 0px 40px;
}
.owl-carousel .owl-item {
    perspective: 1000px;
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -50px;
    text-align: center;
}
.owl-prev {
    left: 0px;
}
.owl-next {
    right: 0px;
}
.owl-prev:hover,
.owl-next:hover {
    transition: all .3s ease-in-out;
}
.owl-prev i,
.owl-next i {
    padding: 0px;
    height: 45px;
    width: 45px;
    color: #fff;
    line-height: 45px;
border-radius:50%;
}
.owl-carousel.owl-loaded {
    display: block;
    clear: both;
    /* Important fix */
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
}
.owl-theme .owl-dots .owl-dot span {
    border: 2px solid #cecece;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
}
.owl-theme .owl-dots .owl-dot span:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    transition: transform 0.3s;
    transform: translate(-50%, -50%) scale(0);
}
.owl-theme .owl-dots .owl-dot span:hover:before {
    transform: translate(-50%, -50%) scale(1);
}
.owl-theme .owl-dots .owl-dot.active span:before {
    transform: translate(-50%, -50%) scale(1);
}
#reviews{
    background: #fff;
}
.testimonial small{margin-top:20px; }

.testimonial img{max-width:200px;margin: 0 auto; }
.testimonial {font-family:Raleway;}
blockquote {
    color: #3b3f4a;
font-family:Raleway;
    text-transform: none;
}

bl
/* Owl carousel */
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}


 body #load {
  display: block;
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 9901;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .35s ease-out;
  transition: all .35s ease-out;
}
body #load.loader-removed {
  opacity: 0;
  visibility: hidden;
}
.load-wrap {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}
.load-wrap > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
#load {
  background-color: #f47b00;
}
.uil-default rect:not(.bk) {
  fill: #ffffff;
}
.uil-ring > path {
  fill: #ffffff;
}
.ring-loader .circle {
  fill: #ffffff;
}
.ring-loader .moving-circle {
  fill: #ffffff;
}
.uil-hourglass .glass {
  stroke: #ffffff;
}
.uil-hourglass .sand {
  fill: #ffffff;
}
.spinner-loader .load-wrap {
  background-image: url("data:image/svg+xml,%3Csvg width='75px' height='75px' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='uil-default'%3E%3Crect x='0' y='0' width='100' height='100' fill='none' class='bk'%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(0 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(30 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.08333333333333333s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(60 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.16666666666666666s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(90 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.25s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(120 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.3333333333333333s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(150 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.4166666666666667s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(180 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.5s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(210 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.5833333333333334s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(240 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.6666666666666666s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(270 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.75s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(300 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.8333333333333334s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect  x='46.5' y='40' width='7' height='20' rx='5' ry='5' fill='%23ffffff' transform='rotate(330 50 50) translate(0 -30)'%3E  %3Canimate attributeName='opacity' from='1' to='0' dur='1s' begin='0.9166666666666666s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E");
}
.ring-loader .load-wrap {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='72' height='72' fill='%23ffffff'%3E   %3Cpath opacity='.25' d='M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4'/%3E   %3Cpath d='M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z'%3E     %3CanimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='0.8s' repeatCount='indefinite' /%3E   %3C/path%3E %3C/svg%3E");
}
.hourglass-loader .load-wrap {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='72' height='72' fill='%23ffffff'%3E   %3Cpath transform='translate(2)' d='M0 12 V20 H4 V12z'%3E      %3Canimate attributeName='d' values='M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z' dur='1.2s' repeatCount='indefinite' begin='0' keytimes='0;.2;.5;1' keySplines='0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8' calcMode='spline'  /%3E   %3C/path%3E   %3Cpath transform='translate(8)' d='M0 12 V20 H4 V12z'%3E     %3Canimate attributeName='d' values='M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z' dur='1.2s' repeatCount='indefinite' begin='0.2' keytimes='0;.2;.5;1' keySplines='0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8' calcMode='spline'  /%3E   %3C/path%3E   %3Cpath transform='translate(14)' d='M0 12 V20 H4 V12z'%3E     %3Canimate attributeName='d' values='M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z' dur='1.2s' repeatCount='indefinite' begin='0.4' keytimes='0;.2;.5;1' keySplines='0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8' calcMode='spline' /%3E   %3C/path%3E   %3Cpath transform='translate(20)' d='M0 12 V20 H4 V12z'%3E     %3Canimate attributeName='d' values='M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z' dur='1.2s' repeatCount='indefinite' begin='0.6' keytimes='0;.2;.5;1' keySplines='0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8' calcMode='spline' /%3E   %3C/path%3E   %3Cpath transform='translate(26)' d='M0 12 V20 H4 V12z'%3E     %3Canimate attributeName='d' values='M0 12 V20 H4 V12z; M0 4 V28 H4 V4z; M0 12 V20 H4 V12z; M0 12 V20 H4 V12z' dur='1.2s' repeatCount='indefinite' begin='0.8' keytimes='0;.2;.5;1' keySplines='0.2 0.2 0.4 0.8;0.2 0.6 0.4 0.8;0.2 0.8 0.4 0.8' calcMode='spline' /%3E   %3C/path%3E %3C/svg%3E");
}
/*Icons above menu items*/
.main-nav > li > a .text-wrap,
.header-bar .main-nav > li > a,
.menu-box .main-nav > li > a {
-webkit-flex-flow: column wrap;
-moz-flex-flow: column wrap;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
}
.main-nav > .menu-item > a .fa {
padding-right: 0;
padding-bottom: 4px;
}
#gc-number-0, #gc-number-1, #gc-number-2{
color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
button.button, a.button, input[type="button"], input[type="reset"], input[type="submit"], .dt-btn-m, input.dt-btn-m[type="submit"], #main .gform_wrapper .gform_footer input.button, #main .gform_wrapper .gform_footer input[type="submit"], form.mc4wp-form input[type="submit"], div.mc4wp-form button[type="submit"], #main-slideshow .tp-button {
    padding-left: 50px !important;
    padding-right: 50px !important;
}
/*
.branding {
  margin-bottom: -40px  !important;
}*/

/*! Prefix flex for IE10  in LESS
* https://gist.github.com/codler/2148ba4ff096a19f08ea
* Copyright (c) 2014 Han Lin Yap http://yap.nu; MIT license */
/* These are the conditional mixins for the different syntax for IE10 Flexbox */
/* #Testimonials
================================================== */
/* !-- Testimonials shortcode */
.testimonial-item {
  position: relative;
}
.testimonial-item:not(.testimonial-item-slider) {
  padding: 20px 25px 20px;
}
.testimonial-item .ts-slide {
  padding: 20px 25px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*testimonial slider*/
#page .testimonial-item.testimonial-item-slider {
  margin-bottom: 32px;
}
.testimonial-item ul {
  margin: 0;
  padding: 0;
}
.testimonial-vcard .no-avatar {
  width: 60px;
  height: 60px;
}
.testimonial-vcard .no-avatar:after {
  content: "\f007";
  font-size: 28px;
}
.testimonial-vcard a.no-avatar:hover:after {
  color: #fff;
}
.widget .testimonial-vcard .text-secondary,
.widget .testimonial-vcard .text-primary {
  font-weight: normal;
}
.testimonial-vcard .rollover i {
  width: 60px;
  height: 60px;
}
.testimonials .description-on-hover > .wf-cell .rollover i,
.testimonials .description-on-hover > .wf-cell .rollover i:after {
  visibility: visible;
}
/*rollover icon*/
.rollover i:after {
  position: absolute;
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
}
.small-hover-icons .testimonial-vcard .rollover i:after {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.testimonial-vcard img,
.testimonial-vcard .alignleft,
.testimonial-vcard .rollover i,
.testimonial-vcard .alignleft div {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mobile-false .scale-on-hover .testimonial-vcard a .alignleft div,
.mobile-false .scale-on-hover .testimonial-vcard a .alignleft {
  overflow: hidden;
}
.mobile-false .scale-on-hover .testimonial-vcard a .alignleft div,
.mobile-false .scale-on-hover .testimonial-vcard a .alignleft {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translatez(0);
}
.mobile-false .scale-on-hover .testimonial-vcard a.rollover:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mobile-false .is-safari.scale-on-hover .testimonial-vcard a.rollover:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
#page .testimonial-vcard .rollover i:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpolygon fill='white' points='28,28.01 16,28.01 16,16.01 19.011,16.01 19.011,14.01 16,14.01 14.011,14.01 14,14.01 14,28.01 14,30.01 16,30.01 30,30.01 30,29.999 30,28.01 30,24.999 28,24.999 '/%3E%3Cpolygon fill='white' points='28,13.99 28,14.01 22.993,14.01 22.993,16.01 26.637,16.01 20.5,22.146 21.863,23.51 28,17.374 28,20.99 30,20.99 30,13.99 '/%3E%3C/svg%3E");
}
/* !-- Testimonials widgets */
.testimonials {
  padding-bottom: 10px;
}
body.testimonials {
  padding-bottom: 0px;
}
.widget .testimonials article {
  position: relative;
  padding: 0;
}
.testimonial-vcard {
  display: table;
  margin: 20px 0 0 0;
  overflow: hidden;
}
.testimonial-vcard .alignleft {
  margin: 0 20px 5px 0;
  font-size: 0;
  line-height: 0;
}
.testimonial-vcard .alignleft div {
  overflow: hidden;
}
.testimonials.list-view li {
  position: relative;
  overflow: hidden;
  padding: 25px 0 0 0;
}
.testimonials.list-view li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none !important;
}
/* #Team
================================================== */
.content .slider-content .team-container {
  margin-bottom: 0px;
}
.bg-on.team-container:not(.fullwidth-img) {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.team-container img {
  width: 100%;
  height: auto;
}
.widget .team-container {
  padding: 0;
  text-align: center;
}
.widget .team-media a.rollover {
  display: inline-block;
}
.widget .team-media a.rollover i:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' fill='white' xml:space='preserve'%3E%3Cpolygon points='16,7 9,7 9,0 7,0 7,7 0,7 0,9 7,9 7,16 9,16 9,9 16,9 '/%3E%3C/svg%3E");
}
.widget .team-container img {
  max-width: 81px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.team-desc {
  padding: 20px 0px 0px;
  text-align: center;
}
.bg-on .team-desc {
  padding: 15px 25px 10px;
}
#sidebar .team-desc,
#footer .team-desc {
  padding: 8px 0 7px;
}
.team-container .soc-ico {
  padding-top: 5px;
  margin-bottom: 18px;
  font-size: 0;
  line-height: 0;
}
.team-container.bg-on .soc-ico {
  margin-bottom: 13px;
}
#sidebar .team-container .soc-ico,
#footer .team-container .soc-ico,
.sidebar-content .team-container .soc-ico {
  margin-bottom: 0px;
}
.team-container .soc-ico a {
  display: inline-block;
  float: none;
}
.content .team-items ul {
  margin: 0;
}
.round-images .team-container {
  text-align: center;
}
.team-author-name {
  margin-bottom: 5px;
}
.team-media {
  line-height: 0;
}
.round-images .bg-on .team-media {
  padding: 25px 25px 0;
}
/* #Partners, Clients, etc.
================================================== */
#page .logos-grid {
  margin-bottom: -40px;
}
.logos-grid .wf-cell {
  display: none;
  margin-bottom: 40px;
  text-align: center;
}
.logos-grid a {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  line-height: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.logos-grid a:hover {
  opacity: 0.7;
}
.logos-grid img {
  max-width: 100%;
  height: auto;
}
.logo-items li {
  text-align: center;
}
.logo-items li a {
  line-height: 0;
  font-size: 0;
  opacity: 1;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.logo-items img {
  max-width: 100%;
  height: auto;
}
.logo-items li a:hover {
  opacity: 0.8;
}
/* #Benefits
================================================== */
#page .benefits-grid {
  margin-bottom: -40px;
}
#page .benefits-style-one.benefits-grid,
#page .benefits-style-two.benefits-grid {
  margin-bottom: -30px;
}
.benefits-grid .wf-cell {
  margin-bottom: 40px;
  text-align: center;
}
.benefits-grid br,
.benefits-grid > .wf-cell {
  display: none;
}
.benefits-style-one.benefits-grid .wf-cell,
.benefits-style-two.benefits-grid .wf-cell {
  margin-bottom: 30px;
  text-align: left;
}
.benefits-style-one.benefits-grid.static-line .wf-cell,
.benefits-style-one.benefits-grid.hover-line .wf-cell,
.benefits-style-two.benefits-grid.static-line .wf-cell,
.benefits-style-two.benefits-grid.hover-line .wf-cell {
  margin-bottom: 40px;
}
.benefits-style-one .wf-table,
.benefits-style-two .wf-table {
  width: auto;
}
.benefits-style-two.benefits-grid .wf-td {
  vertical-align: top;
}
.benefits-style-one.benefits-grid .wf-td {
  padding-bottom: 0px;
}
.benefits-inner {
  margin-top: -5px;
}
.benefit-line-decoration,
.benefits-style-one .wf-cell > div,
.benefits-style-two .benefits-inner {
  position: relative;
}
.hover-line .benefit-line-decoration,
.static-line .benefit-line-decoration {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.hover-line.benefits-style-one .wf-cell > div,
.static-line.benefits-style-one .wf-cell > div,
.hover-line.benefits-style-two .benefits-inner,
.static-line.benefits-style-two .benefits-inner {
  padding-bottom: 25px;
}
.hover-line .benefit-line-decoration:after,
.static-line .benefit-line-decoration:after,
.hover-line.benefits-style-one .wf-cell > div:after,
.hover-line.benefits-style-two .benefits-inner:after,
.static-line.benefits-style-one .wf-cell > div:after,
.static-line.benefits-style-two .benefits-inner:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
  width: 50px;
  height: 2px;
  content: "";
}
.hover-line.benefits-style-one .wf-cell > div:after,
.hover-line.benefits-style-two .benefits-inner:after,
.static-line.benefits-style-one .wf-cell > div:after,
.static-line.benefits-style-two .benefits-inner:after {
  left: 0;
  margin-left: 0;
}
.benefits-grid p,
.benefits-grid ul,
.benefits-grid ol {
  margin-bottom: 0;
}
.benefit-title a {
  display: inline-block;
}
/*benefits icon*/
.benefits-grid-ico {
  display: block;
  margin: 0 auto 10px auto;
}
.icons-bg .benefits-grid-ico {
  margin: 0 auto 20px auto;
}
.benefits-style-one.benefits-grid .benefits-grid-ico {
  margin: 0 12px 10px 0;
}
.benefits-style-two.benefits-grid .benefits-grid-ico {
  margin: 5px 22px 0 0;
}
.benefits-style-one.benefits-grid.icons-bg .benefits-grid-ico,
.benefits-style-two.benefits-grid.icons-bg .benefits-grid-ico {
  text-align: center;
}
a.benefits-grid-ico {
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}
a.benefits-grid-ico > .fa,
a.benefits-grid-ico > .fa:before {
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}
/*benefits image*/
.content .benefits-grid-ico > img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  line-height: 0;
}
.benefits-grid a {
  text-decoration: none;
}
/* #Main slideshow
================================================== */
/* #Photo scroller
================================================== */
.photo-scroller {
  position: relative;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform: translatez(0);
  transform: translatez(0);
}
.photo-scroller.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.photo-scroller:-webkit-full-screen {
  width: 100%;
  height: 100%;
}
.photo-scroller .ts-wrap {
  overflow: hidden;
}
/*Overlay*/
.show-overlay .ts-centered:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/mask.png) 0 0 repeat;
}
.show-overlay .ts-centered.hide-slider-overlay:before {
  display: none;
}
.photo-scroller .ts-viewport {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: height 350ms;
  transition: height 350ms;
  -webkit-transform: translatez(0);
  transform: translatez(0);
}
.photo-scroller .ts-ready .ts-viewport {
  position: static;
}
.photo-scroller .ts-wrap.ts-centered .ts-viewport {
  width: 0;
  overflow: visible;
}
.photo-scroller .ts-slide,
.photo-scroller .ts-cell {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  top: 0;
  overflow: hidden;
  text-align: center;
}
.photo-scroller .ts-slide {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo-scroller .ts-autoHeight .ts-slide {
  height: auto;
}
.photo-scroller .ts-slide-img {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#page .photo-scroller .ts-slide.act .ts-slide-img,
#page .photo-scroller .ts-cell.act .ts-slide-img,
#page .photo-scroller .act .video-icon,
#page .photo-scroller .act .ps-link {
  opacity: 1 !important;
}
.photo-scroller .ts-cell .ts-slide-img {
  position: relative;
  -webkit-backface-visibility: hidden;
}
.photo-scroller .ts-cell .ts-slide-img > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.photo-scroller .ts-slide img,
.photo-scroller .ts-cell img {
  opacity: 0;
  -webkit-transition: opacity 1350ms;
  transition: opacity 1350ms;
}
.photo-scroller .ts-slide > img,
.photo-scroller .ts-cell > img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.photo-scroller .ts-slide.ts-loaded img,
.photo-scroller .ts-cell.ts-loaded img {
  opacity: 1;
}
.ts-ls-fit .ts-wide.ts-ls img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-ls-fit .ts-narrow.ts-ls img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-pt-fit .ts-wide.ts-pt img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-pt-fit .ts-narrow.ts-pt img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-pt-fill .ts-wide.ts-pt img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-pt-fill .ts-narrow.ts-pt img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-ls-fill .ts-wide.ts-ls img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-ls-fill .ts-narrow.ts-ls img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-collapsed.ts-ls-mob-fit .ts-wide.ts-ls img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-collapsed.ts-ls-mob-fit .ts-narrow.ts-ls img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-collapsed.ts-pt-mob-fit .ts-wide.ts-pt img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-collapsed.ts-pt-mob-fit .ts-narrow.ts-pt img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-collapsed.ts-pt-mob-fill .ts-wide.ts-pt img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-collapsed.ts-pt-mob-fill .ts-narrow.ts-pt img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.ts-collapsed.ts-ls-mob-fill .ts-wide.ts-ls img {
  width: 50%;
  max-width: 50%;
  height: auto;
  max-height: none;
}
.ts-collapsed.ts-ls-mob-fill .ts-narrow.ts-ls img {
  width: auto;
  max-width: none;
  height: 50%;
  max-height: 50%;
}
.photo-scroller .ts-slide figcaption {
  visibility: hidden;
}
.photoSlider .video-icon,
.rsPlayBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='32px' height='32px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve' fill='white'%3E%3Cpath d='M3.125,4L10.2,8.001L3.125,12V3.8 M1,0v16l13-8L1,0L1,0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 30px center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.photo-scroller .ps-link {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.ps-center-btn,
.rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 91px;
  height: 91px;
  margin: -45px 0 0 -45px;
}
.ps-center-btn.BtnCenterer,
.rsBtnCenterer.with-link {
  width: 200px;
  margin: -45px 0 0 -100px;
}
.photoSlider .ps-center-btn.BtnCenterer .video-icon,
.photoSlider .ps-center-btn.BtnCenterer .ps-link,
.rsBtnCenterer .rsPlayBtn {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 0 5px;
}
#page .photo-scroller .photoSlider .video-icon:hover,
#page .photo-scroller .act .ps-link:hover,
.rsPlayBtn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.7 !important;
}
/*!Scroller navigation*/
.btn-cntr,
.project-navigation,
.photo-scroller .slide-caption,
.photo-scroller .scroller-thumbnails {
  position: absolute;
  z-index: 99;
}
.btn-cntr,
.photo-scroller .slide-caption,
.photo-scroller .scroller-thumbnails {
  -webkit-transition: bottom .5s ease;
  transition: bottom .5s ease;
}
.btn-cntr a,
.project-navigation,
.photo-scroller .scroller-thumbnails,
.photo-scroller .album-content-btn > a,
#page .photo-scroller .album-content-btn > a:hover {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}
.mobile-false .project-navigation a:hover,
.mobile-false .btn-cntr a:hover {
  opacity: 0.7;
}
.slider-post-caption .album-content-btn a:hover {
  opacity: 1;
}
.btn-cntr {
  position: absolute;
  z-index: 100;
  right: 10px;
  bottom: 100px;
}
.photo-scroller.hide-thumbs .btn-cntr,
.photo-scroller.disable-thumbs .btn-cntr {
  bottom: 5px !important;
}
.btn-cntr a {
  float: left;
  width: 36px;
  height: 36px;
  margin: 0 0 5px 5px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
/*Thumbnails*/
.scroller-thumbnails {
  bottom: 0;
  width: 100%;
}
.photo-scroller.disable-thumbs .scroller-thumbnails,
.photo-scroller.disable-thumbs .hide-thumb-btn {
  display: none;
}
.photo-scroller.hide-thumbs .scroller-thumbnails {
  bottom: -100px;
}
.photo-scroller .scroller-thumbnails .ts-cell {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 3px solid transparent;
  border-right: 2px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo-scroller .scroller-thumbnails .ts-thumb-img {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.photo-scroller .scroller-thumbnails .ts-cell:not(.act) .ts-thumb-img:hover {
  cursor: pointer;
}
.photo-scroller .scroller-thumbnails .ts-thumb-img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.photo-scroller .scroller-thumbnails .ts-thumb-img:hover:after,
.photo-scroller .scroller-thumbnails .act .ts-thumb-img:after {
  opacity: 1;
}
.photo-scroller .scroller-thumbnails .act .ts-thumb-img:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Cpath d='M11,1C5.477,1,1,5.477,1,11c0,5.522,4.477,10,10,10c5.523,0,10-4.478,10-10C21,5.477,16.523,1,11,1z M9.299,16.387L4.574,11.66l2.012-2.012l2.713,2.714l6.263-6.263l2.013,2.011L9.299,16.387z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.photo-scroller.proportional-thumbs .scroller-thumbnails .ts-cell .ts-thumb-img > img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
/*navigation between albums*/
.project-navigation {
  top: 10px;
  right: 10px;
  height: 36px;
  padding: 6px 5px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.project-post .project-navigation {
  overflow: hidden;
}
.full-screen .project-navigation {
  display: none;
}
.project-navigation * {
  color: #fff;
}
.project-navigation span {
  float: left;
  padding: 0 5px;
}
.project-navigation a {
  float: left;
  width: 12px;
  height: 12px;
  padding: 5px;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
/*album caption*/
.photo-scroller .slide-caption {
  z-index: 100;
  bottom: 130px;
  left: 10px;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo-scroller.disable-thumbs .slide-caption {
  bottom: 5px !important;
}
.hide-thumbs.photo-scroller .slide-caption,
.photo-scroller.disable-thumbs .slide-caption {
  bottom: 30px;
}
.photo-scroller .slide-caption * {
  color: #fff;
}
.photo-scroller figcaption {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .4s;
  /* For Safari 3.1 to 6.0 */
  transition: opacity .4s;
}
.photo-scroller .slide-caption figcaption.actCaption {
  opacity: 1;
  visibility: visible;
}
.photo-scroller .album-content-btn {
  position: absolute;
  left: 0;
  bottom: 0;
}
.album-content-description {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -200px;
  width: 400px;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.photo-scroller .slide-caption h4 {
  margin-bottom: 0;
}
/*Share and Link*/
.album-share-overlay {
  position: relative;
}
.album-share-overlay,
.photo-scroller .btn-project-link,
.album-share-overlay .share-button.entry-share {
  float: left;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0 5px 5px 0;
}
.photo-scroller .btn-project-link,
.album-share-overlay .share-button.entry-share {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.photo-scroller .btn-project-link:hover,
.album-share-overlay .share-button.entry-share:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.4);
}
.photo-scroller .album-share-overlay .share-button.entry-share {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.4);
}
.photo-scroller .album-share-overlay .share-button.entry-share:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.4);
}
.album-share-overlay .share-button.entry-share {
  text-indent: -9999px;
}
.album-share-overlay .share-button.entry-share {
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
}
.album-share-overlay .soc-ico {
  position: absolute;
  z-index: 999;
  visibility: hidden;
  overflow: visible;
  opacity: 0;
  left: 0;
  bottom: 46px;
  width: 36px;
  background-color: #fff;
}
.album-share-overlay .soc-ico:after {
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  content: "";
}
.album-share-overlay .soc-ico a {
  display: none;
  width: 100%;
  margin: 5px auto;
  background: none !important;
}
#page .album-share-overlay .soc-ico a {
  box-shadow: none;
}
.album-share-overlay .soc-ico a:hover {
  background: none !important;
  opacity: 0.6;
}
.album-share-overlay .soc-ico a:before,
.album-share-overlay .soc-ico a:after {
  display: none;
}
#page .album-share-overlay .soc-ico a .icon,
#page .album-share-overlay .soc-ico a:hover .icon {
  fill: #000;
}
/*!Navigation svg bg*/
.full-screen-btn {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Ccircle cx='11.042' cy='11.042' r='2'/%3E%3Cpolygon points='21,1 19.011,1 14,1 14,3 19.011,3 19.011,8 21.011,8 21.011,1 '/%3E%3Cpolygon points='3,14 1,14 1,19.034 1,21 1,21.034 8,21.034 8,19.034 3,19.034 '/%3E%3C/svg%3E");
}
.full-screen-btn.act {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Ccircle cx='11.042' cy='11.042' r='2'/%3E%3Cpolygon points='17.011,5 17.011,0 15.011,0 15.011,5 15,5 15,7 15.011,7 17.011,7 22,7 22,5 '/%3E%3Cpolygon points='0,15 0,17 5,17 5,22 7,22 7,17 7,15 5,15 '/%3E%3C/svg%3E");
}
.auto-play-btn {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Cpath fill='none' d='M11,1.7c-5.128,0-9.3,4.172-9.3,9.3s4.171,9.3,9.3,9.3c5.128,0,9.3-4.172,9.3-9.3S16.128,1.7,11,1.7z M8,15V7l7.938,3.896L8,15z'/%3E%3Cpath d='M11,0C4.926,0,0,4.926,0,11c0,6.077,4.926,11,11,11c6.075,0,11-4.923,11-11C21.999,4.926,17.075,0,11,0z M11,20.3c-5.129,0-9.3-4.172-9.3-9.3S5.872,1.7,11,1.7s9.3,4.172,9.3,9.3S16.128,20.3,11,20.3z'/%3E%3Cpolygon points='8,15 15.938,10.896 8,7 '/%3E%3C/svg%3E");
}
.auto-play-btn.paused {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Cpath d='M11,0C4.926,0,0,4.926,0,11c0,6.077,4.926,11,11,11c6.075,0,11-4.923,11-11C21.999,4.926,17.075,0,11,0z M11,20.3c-5.129,0-9.3-4.172-9.3-9.3c0-5.127,4.172-9.3,9.3-9.3c5.128,0,9.3,4.173,9.3,9.3C20.3,16.128,16.128,20.3,11,20.3z'/%3E%3Crect x='8' y='7' width='2' height='8'/%3E%3Crect x='12' y='7' width='2' height='8'/%3E%3C/svg%3E");
}
.hide-thumb-btn {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Ccircle cx='11.042' cy='19' r='2'/%3E%3Ccircle cx='18.041' cy='19' r='2'/%3E%3Ccircle cx='4.041' cy='19' r='2'/%3E%3Cpolygon points='11.004,5.45 7.469,1.913 6.055,3.327 9.59,6.864 9.582,6.873 10.996,8.286 11.398,7.884 12.418,6.865 12.417,6.865 15.945,3.336 14.531,1.922 '/%3E%3C/svg%3E");
}
.hide-thumb-btn.act {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='22px' height='22px' viewBox='0 0 22 22' enable-background='new 0 0 22 22' fill='white' xml:space='preserve'%3E%3Ccircle cx='11.042' cy='19' r='2'/%3E%3Ccircle cx='18.041' cy='19' r='2'/%3E%3Ccircle cx='4.041' cy='19' r='2'/%3E%3Cpolygon points='12.418,3.136 11.003,1.723 10.995,1.714 9.581,3.128 9.589,3.136 6.055,6.673 7.47,8.086 11.003,4.551 14.531,8.078 15.945,6.664 12.417,3.136 '/%3E%3C/svg%3E");
}
.project-navigation .prev-post {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='12px' height='12px' viewBox='0 0 12 12' enable-background='new 0 0 12 12' xml:space='preserve'%3E%3Cpolygon fill='white' points='8.088,9.529 4.551,5.997 8.078,2.47 6.664,1.055 1.713,6.005 3.128,7.42 3.134,7.414 6.672,10.946 '/%3E%3C/svg%3E");
}
.project-navigation .next-post {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='12px' height='12px' viewBox='0 0 12 12' enable-background='new 0 0 12 12' xml:space='preserve'%3E%3Cpolygon fill='white' points='10.286,6.006 10.279,5.999 10.279,5.999 8.865,4.583 8.864,4.584 5.335,1.055 3.921,2.47 7.449,5.998 3.913,9.529 5.326,10.943 8.863,7.412 8.871,7.42 '/%3E%3C/svg%3E");
  margin-right: -3px;
}
.project-navigation .back-to-list,
.project-navigation .back-to-list:hover {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='12px' height='12px' viewBox='0 0 12 12' enable-background='new 0 0 12 12' fill='white' xml:space='preserve'%3E%3Cpath d='M3,1C1.896,1,1,1.896,1,3c0,1.105,0.896,2,2,2c1.104,0,2-0.895,2-2C5,1.896,4.104,1,3,1z'/%3E%3Cpath d='M3,8c-1.104,0-2,0.896-2,2c0,1.105,0.896,2,2,2c1.104,0,2-0.895,2-2C5,8.896,4.104,8,3,8z'/%3E%3Cpath d='M10,1C8.896,1,8,1.896,8,3c0,1.105,0.896,2,2,2c1.104,0,2-0.895,2-2C12,1.896,11.104,1,10,1z'/%3E%3Cpath d='M10,8c-1.104,0-2,0.896-2,2c0,1.105,0.896,2,2,2c1.104,0,2-0.895,2-2C12,8.896,11.104,8,10,8z'/%3E%3C/svg%3E");
}
.photo-scroller .btn-project-link {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'%3E%3Cpath fill='white' d='M11.797,3.106c0.552,0.553,0.552,1.453,0,2.004l-5.07,5.074c0.945,0.249,1.991,0.016,2.73-0.725l3.344-3.345c1.109-1.108,1.109-2.904,0-4.012L12.049,1.35c-1.109-1.107-2.904-1.107-4.012,0L4.692,4.693C3.952,5.433,3.719,6.479,3.97,7.424l5.071-5.071c0.553-0.553,1.452-0.553,2.005,0L11.797,3.106z M11.307,11.309c0.741-0.742,0.974-1.789,0.724-2.733l-5.069,5.073c-0.554,0.553-1.453,0.553-2.004,0l-0.754-0.753%09c-0.553-0.552-0.553-1.452,0-2.008l5.072-5.069c-0.946-0.25-1.992-0.017-2.731,0.724L3.198,9.884c-1.107,1.109-1.107,2.904,0,4.013l0.752,0.753c1.108,1.108,2.904,1.108,4.012,0L11.307,11.309z'/%3E%3C/svg%3E");
}
/*!Prev-Next Navigation*/
.scroller-arrow {
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.scroller-arrow.prev {
  left: 10px;
}
.scroller-arrow.next {
  right: 10px;
}
.scroller-arrow i {
  position: absolute;
  top: 40%;
  left: 0;
  width: 38px;
  height: 3px;
  -webkit-border-radius: 2.5px;
  border-radius: 2.5px;
  background: #fff;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.scroller-arrow.next i {
  left: auto;
  right: 0;
}
.scroller-arrow.prev i {
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.scroller-arrow.prev i:first-child {
  -webkit-transform: translate(0, -1px) rotate(43deg);
  transform: translate(0, -1px) rotate(43deg);
}
.scroller-arrow.prev i:last-child,
.scroller-arrow.next i:first-child {
  -webkit-transform: translate(0, 1px) rotate(-43deg);
  transform: translate(0, 1px) rotate(-43deg);
}
.scroller-arrow.prev:hover i:first-child {
  -webkit-transform: translate(0, -1px) rotate(33deg);
  transform: translate(0, -1px) rotate(33deg);
}
.scroller-arrow.prev:hover i:last-child {
  -webkit-transform: translate(0, 1px) rotate(-33deg);
  transform: translate(0, 1px) rotate(-33deg);
}
.scroller-arrow.prev.disabled i:first-child,
.scroller-arrow.prev.disabled i:last-child,
.scroller-arrow.prev.disabled:hover i:first-child,
.scroller-arrow.prev.disabled:hover i:last-child {
  -webkit-transform: translate(-5px, 0) rotate(0deg);
  transform: translate(-5px, 0) rotate(0deg);
}
.scroller-arrow.next i {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.scroller-arrow.next i:first-child {
  -webkit-transform: translate(0, 1px) rotate(43deg);
  transform: translate(0, 1px) rotate(43deg);
}
.scroller-arrow.next i:last-child {
  -webkit-transform: translate(0, -1px) rotate(-43deg);
  transform: translate(0, -1px) rotate(-43deg);
}
.scroller-arrow.next:hover i:first-child {
  -webkit-transform: translate(0, 1px) rotate(33deg);
  transform: translate(0, 1px) rotate(33deg);
}
.scroller-arrow.next:hover i:last-child {
  -webkit-transform: translate(0, -1px) rotate(-33deg);
  transform: translate(0, -1px) rotate(-33deg);
}
.scroller-arrow.next.disabled i:first-child,
.scroller-arrow.next.disabled i:last-child,
.scroller-arrow.next.disabled:hover i:first-child,
.scroller-arrow.next.disabled:hover i:last-child {
  -webkit-transform: translate(5px, 0) rotate(0deg);
  transform: translate(5px, 0) rotate(0deg);
}
.scroller-arrow.disabled {
  opacity: 0.3;
  cursor: default;
}
/*Porthole slideshow*/
#main-slideshow.fixed > .ts-wrap {
  margin: 0 auto;
}
.portholeSlider-wrap {
  background: #262626;
}
.portholeSlider-wrap .ts-slide {
  width: 100%;
  height: 100%;
  text-align: left;
}
/***************
*
*  Caption
*
****************/
.portholeSlider-wrap .rsCapt {
  position: absolute;
  top: auto;
  bottom: 45px;
  text-align: center;
  width: 100%;
  padding: 0 140px;
  z-index: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.overlap .portholeSlider-wrap .rsCapt {
  bottom: 115px;
}
.portholeSlider-wrap .rsTitle {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  vertical-align: middle;
  -webkit-text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.portholeSlider-wrap .rsDesc {
  display: block;
  margin: 10px auto 0 auto;
  color: #fff;
  vertical-align: middle;
  -webkit-text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.portholeSlider-wrap .rsCLink,
.royalSlider .rsCLink,
.ps-link {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: .3s;
  transition: .3s;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='32px' height='32px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' fill='white' xml:space='preserve'%3E%3Cpolygon points='14,14 2,14 2,2 5.011,2 5.011,0 2,0 0.011,0 0,0 0,14 0,16 2,16 16,16 16,15.989 16,14 16,10.989 14,10.989 '/%3E%3Cpolygon points='14,-0.019 14,0 8.993,0 8.993,2 12.637,2 6.5,8.137 7.863,9.5 14,3.364 14,6.981 16,6.981 16,-0.019 '/%3E%3C/svg%3E");
}
.royalSlider .rsCLink:hover,
.portholeSlider-wrap .rsCLink:hover {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.7;
}
.rsHomePorthole .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
}
.royalSlider .rsBtnCenterer.with-link,
.portholeSlider-wrap .rsBtnCenterer.with-link {
  margin: -40px 0 0 -90px;
}
.portholeSlider-wrap .with-link .rsCLink,
.royalSlider .with-link .rsCLink,
.royalSlider .with-link .rsPlayBtn,
.portholeSlider-wrap .with-link .rsPlayBtn {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  margin: 0 5px;
}
.psThumbs {
  position: absolute;
  overflow: hidden;
  top: 50%;
  right: 25px;
  width: 98px;
  height: 370px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.psThumbsContainer {
  position: absolute;
  width: 100%;
  padding-top: 120px;
  transition-property: transform;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.ps-thumb {
  position: relative;
}
.ps-thumb-img {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  overflow: hidden;
  width: 30px;
  height: 30px;
  opacity: 0;
  margin: 0 auto 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05);
}
.mobile-false .ps-thumb-img {
  -webkit-transition: width 600ms ease, height 600ms ease;
  transition: width 600ms ease, height 600ms ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-false .ps-thumb-img:first-child {
  -webkit-transition: width 100ms ease, height 100ms ease;
  transition: width 100ms ease, height 100ms ease;
}
.ps-thumb-img.psNavVis {
  opacity: 0.5;
}
.ps-thumb-img.psNavPrev,
.ps-thumb-img.psNavNext {
  width: 50px;
  height: 50px;
  opacity: 0.8;
}
.ps-thumb-img.psNavSelected {
  width: 90px;
  height: 90px;
  opacity: 1;
}
.ps-thumb-img img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#main-slideshow .progress-wrapper {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 0;
  margin-top: -49px;
  width: 98px;
  height: 98px;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
}
#main-slideshow .progress-wrapper.blurred {
  opacity: 0;
}
#main-slideshow .progress-controls {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 90px;
  height: 90px;
  opacity: 0.5;
  -webkit-border-radius: 90px;
  border-radius: 90px;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%09 width='30px' height='30px' viewBox='0 0 512 512' enable-background='new 0 0 512 512' xml:space='preserve'%3E%3Cpath fill='white' d='M217.679,462h-120V50h120V462z M414.321,50h-120v412h120V50z'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
}
.mobile-true #main-slideshow .progress-controls {
  background-color: transparent;
}
#main-slideshow .progress-controls:hover {
  opacity: 1;
}
#main-slideshow .paused .progress-controls {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='32px' height='32px' viewBox='0 0 512 512' enable-background='new 0 0 512 512' xml:space='preserve'%3E%09%3Cpolygon fill='white' points='418.999,256.001 121.001,462 121.001,50 '/%3E%3C/svg%3E");
  background-size: 32px 32px;
  background-position: 31px center;
}
#main-slideshow .progress-mask {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
#main-slideshow .progress-spinner-left,
#main-slideshow .progress-spinner-right {
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  -webkit-animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#main-slideshow .progress-spinner-left.paused,
#main-slideshow .progress-spinner-right.paused {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
#main-slideshow .progress-spinner-left {
  border-top-left-radius: 100% 50%;
  border-top-right-radius: 0 0;
  border-bottom-right-radius: 0 0;
  border-bottom-left-radius: 100% 50%;
  border-right: none;
  transform-origin: 100% 50%;
  transform: rotate(180deg);
  animation-name: rota-left;
  -webkit-transform-origin: 100% 50%;
  -webkit-transform: rotate(180deg);
  -webkit-animation-name: rota-left;
}
#main-slideshow .progress-spinner-right {
  border-top-left-radius: 0 0;
  border-top-right-radius: 100% 50%;
  border-bottom-right-radius: 100% 50%;
  border-bottom-left-radius: 0 0;
  border-left: none;
  transform-origin: 0 50%;
  transform: rotate(-180deg);
  animation-name: rota-right;
  -webkit-transform-origin: 0 50%;
  -webkit-transform: rotate(-180deg);
  -webkit-animation-name: rota-right;
}
@keyframes rota-left {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rota-right {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rota-left {
  0% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes rota-right {
  0% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* #Hover layouts
================================================== */
.content-align-centre,
.content-align-bottom {
  text-align: center;
}
.rollover-project {
  position: relative;
  overflow: hidden;
}
.post .rollover-project.alignnone {
  margin-bottom: 0;
}
.rollover-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
  padding: 10px 25px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.mobile-true .hover-style-two:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .rollover-content {
  display: none;
}
.rollover-content:hover {
  cursor: pointer;
}
.mobile-false .rollover-content {
  display: block;
  opacity: 0;
}
.mobile-false .rollover-project:hover .rollover-content,
.mobile-false .buttons-on-img:hover .rollover-content {
  opacity: 1;
}
.hover-grid .rollover-content,
.mobile-false .text-on-img.hover-grid .fs-entry {
  overflow: hidden;
}
.mobile-true .rollover-content.hide-content,
.mobile-true .fs-entry i {
  display: none;
}
.mobile-true .albums .rollover-content,
.mobile-true .media .rollover-content,
.mobile-true .buttons-on-img .rollover-content {
  opacity: 0;
}
.mobile-true .is-clicked.rollover-content,
.mobile-true .is-clicked .buttons-on-img i {
  visibility: visible !important;
  opacity: 1 !important;
}
/*Always show description*/
.always-show-info .rollover-content,
.always-show-info .rollover-content-container {
  display: block;
  opacity: 1 !important;
}
.rollover-content-container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*Show icons*/
.links-container {
  position: relative;
  line-height: 0 !important;
  font-size: 0 !important;
  text-align: center;
}
.small-portfolio-icons .buttons-on-img .links-container,
.small-portfolio-icons .wf-container:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .links-container,
.content-align-left-bottom.hover-style-two .links-container,
.content-align-left.hover-style-one .links-container,
.content-align-left.hover-style-three .links-container {
  position: absolute;
  display: block;
  top: 15px;
  right: 15px;
  text-align: right;
}
.small-portfolio-icons #page .effect-layla .links-container,
.small-portfolio-icons #page .effect-bubba .links-container,
.small-portfolio-icons #page .effect-sarah .links-container {
  position: relative;
  display: block;
  top: 0;
  right: auto;
  width: 100%;
  text-align: center;
}
.small-portfolio-icons #page .effect-sarah .links-container {
  text-align: left;
}
.small-portfolio-icons .buttons-on-img .links-container,
.small-portfolio-icons .wf-container:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .links-container {
  right: 10px;
}
.small-portfolio-icons .content-align-left-top.hover-style-two:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .links-container {
  top: auto;
  bottom: 15px;
}
.content-align-left-top.hover-style-two .links-container {
  position: absolute;
  display: block;
  bottom: 15px;
  right: 15px;
  text-align: right;
}
.semitransparent-portfolio-icons .buttons-on-img .links-container,
.accent-portfolio-icons .buttons-on-img .links-container,
.outlined-portfolio-icons .buttons-on-img .links-container {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.effect-layla .links-container,
.effect-bubba .links-container,
.effect-sarah .links-container {
  margin-top: 10px;
}
.mobile-true .links-container {
  visibility: hidden;
}
.mobile-true .is-clicked .links-container,
.mobile-true .effect-layla.always-show-info .links-container,
.mobile-true .effect-bubba.always-show-info .links-container,
.mobile-true .effect-sarah.always-show-info .links-container {
  visibility: visible;
}
.mobile-true .hover-style-two:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .is-clicked .links-container {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}
.links-container > a {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  margin: 5px 5px;
  text-indent: -9999px;
  line-height: 0;
  font-size: 0 !important;
  background-image: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.effect-sarah .links-container > a {
  margin: 5px 10px 5px 0;
}
.small-portfolio-icons .links-container > a {
  width: 26px;
  height: 26px;
  margin-top: 1px;
}
.small-portfolio-icons .links-container > a:hover {
  opacity: 0.8;
}
.semitransparent-portfolio-icons .links-container > a {
  background-color: rgba(255, 255, 255, 0.35);
}
.buttons-on-img .links-container > a,
.hover-style-two:not(.hover-color-static) .links-container > a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.links-container > a:after,
.outlined-portfolio-icons .links-container > a:before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
}
.outlined-portfolio-icons .links-container > a:after,
.outlined-portfolio-icons .links-container > a:before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}
.outlined-portfolio-icons .links-container > a:before,
.outlined-portfolio-icons .links-container > a:hover:after {
  opacity: 0;
}
.outlined-portfolio-icons .links-container > a:hover:before {
  opacity: 1;
}
.outlined-portfolio-icons .links-container .project-details:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpolygon fill='white' points='30,21 23,21 23,14 21,14 21,21 14,21 14,23 21,23 21,30 23,30 23,23 30,23 '/%3E %3Cpath id='flashlight-12' fill='white' d='M22,2c11.027,0,20,8.972,20,20c0,11.027-8.973,20-20,20S2,33.027,2,22C2,10.972,10.973,2,22,2z M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z'/%3E%3C/svg%3E");
}
.outlined-portfolio-icons .links-container .project-details:before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpath fill='white' d='M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z M30,23h-7v7h-2v-7h-7v-2h7v-7h2v7h7V23z'/%3E%3C/svg%3E");
}
.semitransparent-portfolio-icons .links-container .project-details:after,
.accent-portfolio-icons .links-container .project-details:after,
.small-portfolio-icons .links-container .project-details:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpolygon fill='white' points='30,21 23,21 23,14 21,14 21,21 14,21 14,23 21,23 21,30 23,30 23,23 30,23 '/%3E%3C/svg%3E");
}
.outlined-portfolio-icons .project-zoom:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpath fill='white' d='M22,2c11.027,0,20,8.972,20,20c0,11.027-8.973,20-20,20S2,33.027,2,22C2,10.972,10.973,2,22,2z M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z'/%3E%3Cpolygon fill='white' points='28,13.99 28,14.01 22.993,14.01 22.993,16.01 28,16.01 28,20.99 30,20.99 30,13.99 '/%3E%3Cpolygon fill='white' points='16,23.01 14,23.01 14,30.01 16,30.01 16,29.99 21.07,29.99 21.007,27.99 16,27.99 '/%3E%3C/svg%3E");
}
.outlined-portfolio-icons .project-zoom:before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpath fill='white' d='M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z M21.007,29.99H16v0.02h-2v-7h2v4.98h5.007V29.99z M30,20.99h-2v-4.98h-5.007v-2H28v-0.02h2V20.99z'/%3E%3C/svg%3E");
}
.semitransparent-portfolio-icons .project-zoom:after,
.accent-portfolio-icons .project-zoom:after,
.small-portfolio-icons .project-zoom:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpolygon fill='white' points='28,13.99 28,14.01 22.993,14.01 22.993,16.01 28,16.01 28,20.99 30,20.99 30,13.99 '/%3E%3Cpolygon fill='white' points='16,23.01 14,23.01 14,30.01 16,30.01 16,29.99 21.007,29.99 21.007,27.99 16,27.99 '/%3E%3C/svg%3E");
}
.outlined-portfolio-icons .project-link:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpath fill='white' d='M22,2c11.027,0,20,8.972,20,20c0,11.027-8.973,20-20,20S2,33.027,2,22C2,10.972,10.973,2,22,2z M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z'/%3E%3Cpolygon fill='white' points='28,28.01 16,28.01 16,16.01 19.011,16.01 19.011,14.01 16,14.01 14.011,14.01 14,14.01 14,28.01 14,30.01 16,30.01 30,30.01 30,29.999 30,28.01 30,24.999 28,24.999 '/%3E%3Cpolygon fill='white' points='28,13.99 28,14.01 22.993,14.01 22.993,16.01 26.637,16.01 20.5,22.146 21.863,23.51 28,17.374 28,20.99 30,20.99 30,13.99 '/%3E%3C/svg%3E");
}
.semitransparent-portfolio-icons .project-link:after,
.accent-portfolio-icons .project-link:after,
.small-portfolio-icons .project-link:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpolygon fill='white' points='28,28.01 16,28.01 16,16.01 19.011,16.01 19.011,14.01 16,14.01 14.011,14.01 14,14.01 14,28.01 14,30.01 16,30.01 30,30.01 30,29.999 30,28.01 30,24.999 28,24.999 '/%3E%3Cpolygon fill='white' points='28,13.99 28,14.01 22.993,14.01 22.993,16.01 26.637,16.01 20.5,22.146 21.863,23.51 28,17.374 28,20.99 30,20.99 30,13.99 '/%3E%3C/svg%3E");
}
.outlined-portfolio-icons .project-link:before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='44px' height='44px' viewBox='0 0 44 44' enable-background='new 0 0 44 44' xml:space='preserve'%3E%3Cpath fill='white' d='M22,0C9.851,0,0,9.85,0,22c0,12.149,9.851,22,22,22s22-9.851,22-22C44,9.85,34.149,0,22,0z M30,28.01v1.989v0.011H16h-2v-2v-14h0.011H16h3.011v2H16v12h12v-3.011h2V28.01z M30,20.99h-2v-3.616l-6.137,6.136L20.5,22.146l6.137-6.137h-3.644v-2H28v-0.02h2V20.99z'/%3E%3C/svg%3E");
}
.links-container a > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -2px;
  top: -2px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  opacity: 1;
  visibility: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.mobile-false .semitransparent-portfolio-icons .links-container > a .icon-hover,
.mobile-false .accent-portfolio-icons .links-container > a .icon-hover {
  visibility: visible;
  opacity: 0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}
.cs-style-3 .rollover-content-wrap:before,
.description-under-image .links-container:before,
.description-under-image .links-container:after,
.links-container:after,
.links-container:before {
  content: "";
  display: table;
  clear: both;
}
#page .rollover-content .entry-title a {
  background: none;
}
.links-hovers-disabled .rollover-content .entry-title a:hover {
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}
#page .rollover-content,
#page .rollover-content *,
#page .rollover-content h3.entry-title,
#page .rollover-content h3.entry-title a,
#page .post .rollover-content h4.entry-title a:hover,
#page .post .rollover-content .entry-title a:hover,
#page .rollover-content a:hover,
#page .post .rollover-content h3.entry-title a:hover,
#page .hover-style-one h2.entry-title,
#page .hover-style-two h2.entry-title,
#page .stripe .rollover-content,
#page .stripe .rollover-content *,
#page .stripe .rollover-content h3.entry-title,
#page .stripe .rollover-content h3.entry-title a,
#page .stripe .post .rollover-content h4.entry-title a:hover,
#page .stripe .post .rollover-content .entry-title a:hover,
#page .stripe .rollover-content a:hover,
#page .stripe .post .rollover-content h3.entry-title a:hover,
#page .stripe .hover-style-one h2.entry-title,
#page .stripe .hover-style-two h2.entry-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.rollover-content .portfolio-categories > a:after,
.rollover-content .portfolio-categories > span:after {
  background: #fff;
}
#page .rollover-content h3.entry-title,
#page .rollover-content .entry-title a,
#page .post .rollover-content .entry-title a:hover,
#page .hover-style-one h2.entry-title,
#page .hover-style-two h2.entry-title,
#page .hover-style-two h4.entry-title,
#page .stripe .rollover-content h3.entry-title,
#page .stripe .rollover-content .entry-title a,
#page .stripe .post .rollover-content .entry-title a:hover,
#page .stripe .hover-style-one h2.entry-title,
#page .stripe .hover-style-two h2.entry-title,
#page .stripe .hover-style-two h4.entry-title {
  background: none;
}
.hover-grid .rollover-content {
  -webkit-transition: none;
  transition: none;
}
/* #Under images
================================================== */
.buttons-on-img {
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
  text-align: center;
}
.bg-on .buttons-on-img {
  margin: 0;
}
.layout-list .buttons-on-img {
  margin: 0 30px 25px 0;
}
.layout-list .project-even .buttons-on-img {
  margin: 0 0 25px 30px;
}
.layout-list .media-wide .buttons-on-img {
  margin-right: 0;
  margin-left: 0;
}
.buttons-on-img > p,
.post .buttons-on-img .alignnone,
.description-under-image .post .buttons-on-img .alignnone,
.description-under-image .post .buttons-on-img .photoSlider-wrap {
  margin-bottom: 0;
}
.post .buttons-on-img .alignleft {
  margin: 0;
}
.buttons-on-img > .rollover-content {
  padding: 0;
}
.mobile-true .buttons-on-img > .rollover-content {
  display: block;
}
/* # On colored background
================================================== */
.mobile-true .hover-style-two:not(.effect-layla):not(.effect-bubba):not(.effect-sarah) .rollover-content.is-clicked {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hover-style-two .rollover-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content-align-bottom.hover-style-two .rollover-content {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.content-align-centre.hover-style-two .rollover-content {
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.content-align-left-bottom.hover-style-two .rollover-content {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.content-align-left-top.hover-style-two .rollover-content {
  -webkit-align-content: flex-start;
  -moz-align-content: flex-start;
  -ms-align-content: flex-start;
  align-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}
.hover-style-two .rollover-content-container {
  margin-top: 10px;
  width: 100%;
}
/* #Direction aware
	-------------------------------------------------- */
.mobile-true .hover-grid .rollover-content,
.mobile-true .hover-grid-reverse .rollover-content,
.mobile-true .hover-scale .rollover-content {
  /*display: block !important;*/
  top: 0 !important;
  left: 0 !important;
  opacity: 0;
}
.mobile-true .hover-grid .is-clicked .rollover-content,
.mobile-true .hover-grid-reverse .is-clicked .rollover-content,
.mobile-true .hover-scale .is-clicked .rollover-content {
  opacity: 1;
}
/* #Scale In
	-------------------------------------------------- */
.mobile-false .hover-scale .rollover-content {
  background: none;
}
.hover-scale .rollover-project:after {
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  content: "";
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding-bottom: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}
.hover-scale .ratio-2.rollover-project:after {
  top: -50%;
}
.hover-scale .ratio_3-2.rollover-project:after {
  top: -25%;
}
.hover-scale .ratio_4-3.rollover-project:after {
  top: -16.6666%;
}
.hover-scale .ratio_2-3.rollover-project:after {
  top: 16.6666%;
}
.hover-scale .ratio_3-4.rollover-project:after {
  top: 14.5%;
}
.mobile-false .hover-scale .rollover-project:hover:after {
  opacity: 1;
  -webkit-transform: scale(1.42);
  transform: scale(1.42);
}
.mobile-false .hover-scale .ratio_3-2.rollover-project:hover:after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.mobile-false .hover-scale .ratio_4-3.rollover-project:hover:after {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.mobile-false .hover-scale .ratio_3-4.rollover-project:hover:after {
  -webkit-transform: scale(2);
  transform: scale(2);
}
.mobile-false .hover-scale .ratio_2-3.rollover-project:hover:after {
  -webkit-transform: scale(2);
  transform: scale(2);
}
.mobile-false .hover-scale .rollover-content {
  background: none !important;
  background-color: transparent;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}
.mobile-false .hover-scale .rollover-project:hover .rollover-content {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* #On dark gradient
================================================== */
.hover-style-one .rollover-content,
.accent-gradient .hover-style-one .rollover-content {
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), rgba(0, 0, 0, 0.1) 50%, color-stop(100%, rgba(0, 0, 0, 0.6)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
  /* Chrome10+,Safari5.1+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
  /* W3C */
  background-color: transparent !important;
  color: #fff;
}
.hover-style-one .rollover-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content-align-centre.hover-style-one .rollover-content {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.content-align-left.hover-style-one .rollover-content {
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.hover-style-one .rollover-project > a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.mobile-false .hover-style-one .rollover-project:hover > a:after {
  opacity: 1;
}
.hover-style-one .rollover-content-container {
  margin-top: 10px;
  width: 100%;
}
.hover-style-one.always-show-info .links-container,
.hover-style-one.always-show-info .rollover-thumbnails {
  opacity: 0;
}
.hover-style-one.always-show-info .rollover-project:hover .links-container,
.hover-style-one.always-show-info .rollover-project:hover .rollover-thumbnails {
  opacity: 1;
}
/* #In the bottom
================================================== */
.cs-style-3 .rollover-project .rollover-content {
  opacity: 1;
}
.cs-style-3 .rollover-content {
  padding: 0;
}
.cs-style-3.content-align-centre .rollover-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  -ms-flex-line-pack: end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.cs-style-3 .rollover-project > a {
  position: relative;
  display: block;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
}
.mobile-false .cs-style-3 .rollover-project:hover > a {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.hover-style-three .rollover-project > a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.mobile-false .hover-style-three .rollover-project:hover > a:after,
.mobile-true .hover-style-three .rollover-project.is-clicked > a:after {
  opacity: 1;
}
.mobile-false .scale-on-hover .hover-style-three a.rollover:hover > img {
  -webkit-transform: none;
  transform: none;
}
.cs-style-3.content-align-left .rollover-content-container {
  position: absolute;
  bottom: 0;
}
.cs-style-3 .rollover-content-container {
  width: 100%;
  padding: 15px 20px 5px;
  background-color: #1e1e1e;
}
.mobile-false .cs-style-3 .rollover-content-container {
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
  -ms-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.cs-style-3 .rollover-project:hover .rollover-content-container,
.mobile-false .cs-style-3 .fs-entry:hover .rollover-content-container,
.mobile-true .cs-style-3 .is-clicked .rollover-content-container,
.mobile-true .cs-style-3 .fs-entry .rollover-content-container {
  opacity: 1;
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -ms-transition: -ms-transform 0.4s, opacity 0.1s;
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
  transition: transform 0.4s, opacity 0.1s;
}
.mobile-true .cs-style-3 .is-clicked .rollover-content {
  display: block;
}
.mobile-true .cs-style-3.content-align-centre .rollover-content {
  display: none;
}
.cs-style-3.content-align-centre .rollover-content.is-clicked {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
}
.cs-style-3 .rollover-thumbnails {
  opacity: 0;
  margin-bottom: 20px;
}
.mobile-false .cs-style-3 .links-container {
  opacity: 0;
}
.cs-style-3 .links-container {
  margin-bottom: 15px;
}
.mobile-false .cs-style-3 .rollover-project:hover .links-container,
.mobile-false .cs-style-3 .rollover-project:hover .rollover-thumbnails,
.mobile-false .cs-style-3 .fs-entry:hover .links-container {
  opacity: 1;
}
.mobile-false .cs-style-3 .links-container,
.cs-style-3 .rollover-project .rollover-thumbnails {
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.mobile-true .cs-style-3 .links-container {
  -webkit-transition: opacity 0.1s 0.3s;
  transition: opacity 0.1s 0.3s;
}
.cs-style-3 .rollover-content * {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.accent-gradient .cs-style-3 .rollover-content .entry-title a {
  -webkit-backface-visibility: hidden;
  background-image: none;
}
/* #Background & animated lines
================================================== */
/*---------------*/
/***** Layla *****/
/*---------------*/
.mobile-false .wf-container.effect-layla:not(.jg-container) .rollover-project > a > img {
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
}
.filter-grayscale .wf-container.effect-layla:not(.jg-container) .rollover-project > a > img,
.filter-grayscale-static .wf-container.effect-layla:not(.jg-container) .rollover-project > a > img {
  top: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.effect-layla .rollover-content {
  display: block;
  padding: 35px 45px;
  opacity: 1;
  text-align: center;
}
.effect-layla .rollover-content:hover {
  padding: 35px 45px;
}
.effect-layla .rollover-content:before,
.effect-layla .rollover-content:after {
  position: absolute;
  content: '';
  opacity: 0;
}
.effect-layla .rollover-content:before {
  top: 25px;
  right: 15px;
  bottom: 25px;
  left: 15px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -ms-transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.effect-layla .rollover-content:after {
  top: 15px;
  right: 25px;
  bottom: 15px;
  left: 25px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -ms-transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.effect-layla .entry-title,
.effect-layla .links-container,
.effect-layla .rollover-thumbnails {
  -ms-transition: -ms-transform 0.35s;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
.effect-layla:not(.always-show-info) .entry-title,
.effect-layla:not(.always-show-info) .links-container,
.effect-layla:not(.always-show-info) .rollover-thumbnails {
  opacity: 0;
  -ms-transition: -ms-transform 0.35s, opacity 0.35s;
  -webkit-transition: -webkit-transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s;
}
.effect-layla p,
.effect-layla .entry-meta {
  opacity: 0;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}
.effect-layla .entry-title,
.effect-layla .links-container,
.effect-layla .rollover-thumbnails {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
.always-show-info.effect-layla .entry-title,
.always-show-info.effect-layla .links-container,
.always-show-info.effect-layla .rollover-thumbnails {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
.mobile-false .effect-layla:not(.jg-container):not(.slider-wrapper) .rollover-project > a > img {
  -webkit-transform: translate3d(-20px, -50%, 0);
  transform: translate3d(-20px, -50%, 0);
}
.effect-layla .rollover-project > a > img,
.effect-layla .rollover-content:before,
.effect-layla .rollover-content:after,
.effect-layla p,
.effect-layla .entry-meta {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.effect-layla .links-container,
.effect-layla .entry-meta {
  position: relative;
  z-index: 10;
}
.mobile-false .effect-layla:not(.jg-container):not(.slider-wrapper) .rollover-project:hover > a > img {
  -webkit-transform: translate3d(-20px, calc(-50% + 10px), 0);
  transform: translate3d(-20px, calc(-50% + 10px), 0);
}
.mobile-true .filter-grayscale .effect-layla:not(.jg-container):not(.slider-wrapper) .rollover-project.is-clicked > a > img,
.mobile-true .filter-grayscale-static .effect-layla:not(.jg-container):not(.slider-wrapper) .rollover-project.is-clicked > a > img,
.mobile-true .effect-layla:not(.jg-container):not(.slider-wrapper) .rollover-project.is-clicked > a > img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-false .effect-layla.hover-color-static .rollover-project:hover > a > img,
.mobile-true .effect-layla.hover-color-static .rollover-project.is-clicked > a > img {
  opacity: 0.3;
}
.mobile-false .effect-layla .rollover-project:hover figcaption::before,
.mobile-false .effect-layla .rollover-project:hover figcaption::after,
.mobile-true .effect-layla .rollover-project.is-clicked figcaption::before,
.mobile-true .effect-layla .rollover-project.is-clicked figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mobile-false .effect-layla .rollover-project:hover .entry-title,
.mobile-false .effect-layla .rollover-project:hover p,
.mobile-false .effect-layla .rollover-project:hover .entry-meta,
.mobile-false .effect-layla .rollover-project:hover .links-container,
.mobile-false .effect-layla .rollover-project:hover .rollover-thumbnails,
.mobile-true .effect-layla .rollover-project.is-clicked .entry-title,
.mobile-true .effect-layla .rollover-project.is-clicked p,
.mobile-true .effect-layla .rollover-project.is-clicked .entry-meta,
.mobile-true .effect-layla .rollover-project.is-clicked .links-container,
.mobile-true .effect-layla .rollover-project.is-clicked .rollover-thumbnails {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-false.mobile-false .effect-layla .rollover-project:hover .rollover-content:after,
.mobile-false.mobile-false .effect-layla .rollover-project:hover .entry-title,
.mobile-false.mobile-false .effect-layla .rollover-project:hover .links-container,
.mobile-false.mobile-false .effect-layla .rollover-project:hover .rollover-thumbnails,
.mobile-false.mobile-false .effect-layla .rollover-project:hover p,
.mobile-false.mobile-false .effect-layla .rollover-project:hover a > img,
.mobile-false.mobile-false .effect-layla .rollover-project:hover .entry-meta,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked .rollover-content:after,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked .entry-title,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked .links-container,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked .rollover-thumbnails,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked p,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked a > img,
.mobile-true.mobile-true .effect-layla .rollover-project.is-clicked .entry-meta {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
/*---------------*/
/***** Bubba *****/
/*---------------*/
.effect-bubba .rollover-project > a > img {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.mobile-false .effect-bubba.hover-color-static .rollover-project:hover > a > img,
.mobile-true .effect-bubba.hover-color-static .rollover-project.is-clicked > a > img,
.mobile-false.effect-bubba.hover-color-static .rollover-project:hover > a > .blur-effect {
  opacity: 0.3;
}
.effect-bubba .rollover-content {
  display: block;
  padding: 35px 45px;
  text-align: center;
  opacity: 1;
}
.effect-bubba .rollover-content:before,
.effect-bubba .rollover-content:after {
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: 25px;
  left: 25px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.effect-bubba .rollover-content:before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.effect-bubba .rollover-content:after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.effect-bubba:not(.always-show-info) .rollover-content .entry-title,
.effect-bubba:not(.always-show-info) .rollover-content .links-container,
.effect-bubba:not(.always-show-info) .rollover-content .rollover-thumbnails {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
.effect-bubba .rollover-content p,
.effect-bubba .rollover-content .entry-meta {
  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);
}
.effect-bubba .links-container,
.effect-bubba .entry-meta {
  position: relative;
  z-index: 10;
}
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .rollover-content:before,
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .rollover-content:after,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .rollover-content:before,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .rollover-content:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .entry-title,
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .links-container,
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .rollover-thumbnails,
.mobile-false.mobile-false .effect-bubba .rollover-project:hover p,
.mobile-false.mobile-false .effect-bubba .rollover-project:hover .entry-meta,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .entry-title,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .links-container,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .rollover-thumbnails,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked p,
.mobile-true.mobile-true .effect-bubba .rollover-project.is-clicked .entry-meta {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*---------------*/
/***** Sarah *****/
/*---------------*/
.mobile-false .wf-container.effect-sarah:not(.jg-container) .rollover-project > a > img {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
}
.filter-grayscale .wf-container.effect-sarah:not(.jg-container) .rollover-project > a > img,
.filter-grayscale-static .wf-container.effect-sarah:not(.jg-container) .rollover-project > a > img {
  top: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.effect-sarah .rollover-project > a > img {
  max-width: none;
  width: -webkit-calc(100% + 20px);
  width: calc(100% + 20px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px, -50%, 0);
  transform: translate3d(-10px, -50%, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.jg-container.effect-sarah .rollover-project > a > img,
.slider-wrapper.effect-sarah .rollover-project > a > img,
.mobile-true .effect-sarah .rollover-project > a > img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slider-wrapper.effect-sarah .rollover-project > a > img {
  width: 100%;
}
.mobile-false.mobile-false .effect-sarah.hover-color-static .rollover-project:hover > a > img,
.mobile-true.mobile-true .effect-sarah.hover-color-static .rollover-project.is-clicked > a > img {
  opacity: 0.3;
}
.mobile-false.mobile-false .effect-sarah:not(.jg-container):not(.slider-wrapper) .rollover-project:hover > a > img,
.mobile-false.mobile-false .effect-sarah:not(.jg-container):not(.slider-wrapper) .rollover-project.is-clicked > a > img {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.effect-sarah .rollover-content {
  display: block;
  padding: 25px 40px;
  text-align: left;
  opacity: 1;
}
.effect-sarah .rollover-content .links-container {
  text-align: left;
}
.effect-sarah:not(.always-show-info) .rollover-content .entry-title,
.effect-sarah:not(.always-show-info) .rollover-content .links-container,
.effect-sarah:not(.always-show-info) .rollover-content .rollover-thumbnails {
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.effect-sarah .rollover-content .entry-title {
  position: relative;
  overflow: hidden;
  padding: 0 0 15px;
  margin-bottom: 15px;
}
.effect-sarah .rollover-content .entry-title: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(-101%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mobile-false.mobile-false .effect-sarah .rollover-project:hover .entry-title,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked .entry-title {
  opacity: 1;
}
.mobile-false.mobile-false .effect-sarah .rollover-project:hover .entry-title:after,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked .entry-title:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mobile-false.mobile-false .effect-sarah .rollover-project:hover .links-container,
.mobile-false.mobile-false .effect-sarah .rollover-project:hover .rollover-thumbnails,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked .links-container,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked .rollover-thumbnails {
  opacity: 1;
}
.effect-sarah .rollover-content p,
.effect-sarah .rollover-content .entry-meta {
  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);
}
.mobile-false.mobile-false .effect-sarah .rollover-project:hover p,
.mobile-false.mobile-false .effect-sarah .rollover-project:hover .entry-meta,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked p,
.mobile-true.mobile-true .effect-sarah .rollover-project .is-clicked .entry-meta {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.portfolio.small-hover-icons .rollover-video i:after,
.albums.small-hover-icons .rollover-video i:after,
.small-hover-icons .dt-portfolio-shortcode .rollover-video i:after,
.small-hover-icons .dt-albums-shortcode .rollover-video i:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' fill='white' xml:space='preserve'%3E%3Cpolygon points='16,7 9,7 9,0 7,0 7,7 0,7 0,9 7,9 7,16 9,16 9,9 16,9 '/%3E%3C/svg%3E");
}
.portfolio.large-hover-icons .rollover-video i:after,
.albums.large-hover-icons .rollover-video i:after,
.large-hover-icons .dt-portfolio-shortcode .rollover-video i:after,
.large-hover-icons .dt-albums-shortcode .rollover-video i:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='32px' height='32px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' fill='white' xml:space='preserve'%3E%3Cpolygon points='16,7 9,7 9,0 7,0 7,7 0,7 0,9 7,9 7,16 9,16 9,9 16,9 '/%3E%3C/svg%3E");
}
.instagram-photos.dt-gallery-container .rollover.rollover-small i:after {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' fill='white' xml:space='preserve'%3E%3Cpolygon points='14,-0.02 14,0 8.993,0 8.993,2 14,2 14,6.98 16,6.98 16,-0.02 '/%3E%3Cpolygon points='2,9 0,9 0,16 2,16 2,15.98 7.007,15.98 7.007,13.98 2,13.98 '/%3E%3C/svg%3E");
}
.instagram-photos.dt-gallery-container .rollover.rollover-small i:after {
  background-position: center center;
  background-repeat: no-repeat;
}
/*Albums -> Show image miniatures (hover styling)*/
.rollover-thumbnails {
  position: relative;
  display: -ms-flexbox;
}
.buttons-on-img .rollover-thumbnails,
.description-under-image .rollover-thumbnails {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 9;
}
.album-minuatures-style-1 .rollover-thumbnails {
  width: 142px;
  height: 116px;
}
.album-minuatures-style-2 .rollover-thumbnails {
  width: 170px;
  height: 70px;
}
.content-align-left-bottom.hover-style-two .rollover-thumbnails,
.hover-style-one.content-align-left .rollover-thumbnails,
.hover-style-three.content-align-left .rollover-thumbnails {
  position: absolute;
  display: block;
  top: 15px;
  right: 17px;
}
.content-align-left-top.hover-style-two .rollover-thumbnails {
  position: absolute;
  display: block;
  bottom: 14px;
  right: 17px;
}
.rollover-project .rollover-thumbnails {
  margin-top: 5px;
  margin-bottom: 5px;
  /*opacity: 1;*/
}
.effect-layla .rollover-project .rollover-thumbnails,
.effect-bubba .rollover-project .rollover-thumbnails,
.effect-sarah .rollover-project .rollover-thumbnails {
  display: inline-block;
  margin-bottom: -5px;
  margin-top: 15px;
}
.disabled-hover-icons .blog-media .rollover-thumbnails {
  display: none;
}
.mobile-false .buttons-on-img:hover .rollover-thumbnails,
.mobile-false .rollover:hover .rollover-thumbnails,
.mobile-true .rollover.is-clicked .rollover-thumbnails {
  opacity: 1;
}
.rollover-thumbnails span {
  position: absolute;
  top: 0;
  left: 0;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.album-minuatures-style-1 .rollover-thumbnails span {
  width: 90px;
  height: 90px !important;
}
.album-minuatures-style-2 .rollover-thumbnails span {
  top: 0;
  left: 0;
  width: 69px;
  height: 69px !important;
}
.rollover-thumbnails span,
.rollover-thumbnails span img {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rollover-thumbnails .r-thumbn-1 {
  z-index: 102;
}
.album-minuatures-style-1 .rollover-thumbnails .r-thumbn-1 {
  top: 25px;
  left: 49px;
}
.rollover-thumbnails .r-thumbn-2 {
  z-index: 100;
}
.album-minuatures-style-1 .rollover-thumbnails .r-thumbn-2 {
  top: 0;
  left: 42px;
  width: 50px;
  height: 50px !important;
}
.album-minuatures-style-2 .rollover-thumbnails .r-thumbn-2 {
  left: 49px;
}
.album-minuatures-style-1 .rollover-thumbnails .r-thumbn-3 {
  top: 29px;
  left: 0px;
  width: 70px;
  height: 70px !important;
  z-index: 101;
}
.album-minuatures-style-2 .rollover-thumbnails .r-thumbn-3 {
  left: 98px;
  z-index: 99;
}
.rollover-thumbnails span i {
  display: none !important;
}
.rollover.rollover-thumbnails-on i:after,
.albums .rollover.rollover-thumbnails-on i:after,
.dt-albums-shortcode .rollover.rollover-thumbnails-on i:after {
  display: none;
}
/* #Photos widget
========================================================================= */
.widget .instagram-photos {
  overflow: hidden;
  margin-bottom: 15px;
  padding-top: 5px;
}
.instagram-photos a {
  position: relative;
  float: left;
  max-width: 115px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  line-height: 0;
  opacity: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.widget .instagram-photos a {
  max-width: 77px;
}
.instagram-photos img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.instagram-photos a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mobile-false .instagram-photos a:hover i {
  opacity: 1;
}


.blog .dt-format-gallery .dt-format-gallery-coll.full,
.archive .dt-format-gallery .dt-format-gallery-coll.full,
.search .dt-format-gallery .dt-format-gallery-coll.full
{
	display: none;
}


.wp-caption-text,
.sticky,
.gallery-caption,
.bypostauthor {}

.clearfix { 
	content: "";
	display: table;
	clear: both;
}

#contacts, #parent-login, #partner { float: right; }

ul.header-icons { background: url('../img/header-bg.png') no-repeat; background-size: cover; float: right; max-width: 350px; margin-bottom: 5px; }
ul.header-icons li { display: inline-block; padding: 8px 0; margin: 0 3px; vertical-align: bottom; float: right}
ul.header-icons li img { float:right; max-width: 100%; height: auto; }

.mobile-mini-widgets-in-menu #partner { color: #fff !important; font-size: 12px; margin-top: 10px; }

.hidden { display: none; }
/*
nav.navigation { 
	position: absolute !important;
	left: 0 !important; 
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-top: 50px !important;
	margin-bottom: 50px !important;
	background-color: #9ae2fd; 
}

#rev_slider_1_1_wrapper { margin-top: 59px !important }
.page-title.solid-bg, header#fancy-header { margin-top: 50px }

.page-title.solid-bg .wf-table { height: 300px !important; }
*/
nav.navigation { background-color: #4CBDE1; }
.main-nav > li > a .menu-text { font-weight: 600; }

/* New CSS */

.classic-header .navigation {
    margin: 0px 0 0px 0;
    max-width: 100%;
}
.classic-header .branding{
    max-width: calc(1195px - 100px);
    margin: 0 auto;
}
.floating-mobile-menu-icon .dt-mobile-menu-icon.floating-btn {
    visibility: visible; 
    opacity: 1;
    background-color: rgba(0,0,0,.2);
    -webkit-backface-visibility: visible; 
}
.dt-mobile-menu-icon {
    margin-right: 10px;
}
.text-center{text-align:center!important;}

.margin1{margin-top:50px;}

.ubtn-text {
    line-height: 55px!important;
}

ul.main-nav{margin-bottom:0px!important;}

.wrapper-margin {
margin-top:120px;
margin-bottom:80px;
}


.btn-default {
	background-color:#F47B00;
    border-radius: 0px;
    padding: 25px;
	margin-top:10px;
    color: #fff!important;
	transition: background .2s ease-in-out;
    font-size: 18px;
    border: 0px;
	text-decoration: none;
}
.btn-default:hover,
 .btn-default:active:focus, .btn-default:active:hover,
.btn-default.focus, .btn-default:focus{
	background-color:#75A900;

}
.btn-lg{
    font-size: 28px;
	padding: 20px 100px;	
}
.btn-color2{
   background-color:#75A900;
}
.btn-color2:hover,
.btn-color2:active:focus, .btn-color2:active:hover{
  background-color:#F47B00;
}
/*===========================
 Top Bar
============================ */

.topbar{
    background: #F47B00;
	color:#fff!important;
}
.topbar a{
	transition:color .2s ease-in-out;
	color:#fff;
	text-decoration: none;
}
.topbar a:hover{
	color:#FFBC49;
}

.topbar ul,ol {
    margin-bottom: 0px;
    padding: 0px;
}

.topbar .contact-details p {
    font-size: 13px;
    display: inline-block;
    margin: 0px 0px 0px 20px;
    line-height: 40px;
}
.topbar i {margin-right:10px;}

.topbar .contact-details p:first-child {margin-left: 0px;}

/* Marquee */

.topbar .marquee {
    margin: 0 auto;
	font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee p{
	line-height:36px;
	line-height: 37px;
    margin: 0px;
}


/* home page */

/* ===========================
  Call Out
============================ */

#callout{
	overflow:hidden;
	padding:100px 0px;
	    position: relative;
	    width: 100%;
	background-image: url(/assets/img/bggrass.png);
	background-image: url(/assets/img/bggrass.png),linear-gradient(to bottom, #9ae2fd 18%, rgba(255, 255, 255, 0) 120%); /* W3C */
	background-position:bottom ;  
	background-repeat:repeat-x;

}
#callout .well{background-color:rgba(255, 255, 255, 0.66);}

/* Clouds  */

.cloud {
  width: 250px;
  height: 60px;
  position:absolute!important;
  background-color: white;
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  -moz-box-shadow: 9px -7px 0 0 #f7e7eb inset;
  -webkit-box-shadow: 9px -7px 0 0 #f7e7eb inset;
  box-shadow: 9px -7px 0 0 #f7e7eb inset;
}

.cloud:before, .cloud:after {
  content: '';
  position: absolute;
  background-color: white;
  width: 120px;
  height:120px;
  top: -75px;  
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;  
  transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -webkit-transform: rotate(30deg); 
  -moz-box-shadow: 10px 3px 0 0 #f7e7eb inset;;
  -webkit-box-shadow: 10px 3px 0 0 #f7e7eb inset;
  box-shadow: 10px 3px 0 0 #f7e7eb inset;
}

.cloud:after {
  width: 90px;
  height: 90px;
  top: -45px;
  right: 25px;
}

.cloud:before {left: 25px;}

.x1 {
	margin-left: -50%;
	top:100px;
	-webkit-animation: moveclouds2 75s linear infinite;
	-moz-animation: moveclouds2 75s linear infinite;
	-o-animation: moveclouds2 75s linear infinite;
}

.x2 {
  margin-left: -20%;
  top:300px;
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);   
  -webkit-animation: moveclouds 40s linear infinite;
	-moz-animation: moveclouds 40s linear infinite;
	-o-animation: moveclouds 40s linear infinite;
}

.x3 {
  margin-left: -2%;
  top: 270px;
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -o-transform: scale(0.3);
  opacity: .8;  
  -webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

.x4 {
   margin-left: -1%;
   top:360px;
   transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);  
  -webkit-animation: moveclouds2 28s linear infinite;
	-moz-animation: moveclouds2 28s linear infinite;
	-o-animation: moveclouds 28s linear infinite;
}

.x3 {
  margin-left: -1%;
  top: 200px;
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -o-transform: scale(0.3);
  opacity: .8;  
  -webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}

.x4 {
   margin-left: -75%;
   top:300px;
   transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);  
  -webkit-animation: moveclouds 28s linear infinite;
	-moz-animation: moveclouds 28s linear infinite;
	-o-animation: moveclouds 28s linear infinite;
}

.x5 {
  margin-left: -1%;
  top:280px;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -o-transform: scale(0.6); 
  -webkit-animation: moveclouds2 35s linear infinite;
	-moz-animation: moveclouds2 35s linear infinite;
	-o-animation: moveclouds2 35s linear infinite;

}

.x6 {
  margin-left: -1%;
  top: 190px;
   transform: scale(0.2);
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -o-transform: scale(0.2);
  opacity: 0.7; 
   -webkit-animation: moveclouds 31s linear infinite;
	-moz-animation: moveclouds 31s linear infinite;
	-o-animation: moveclouds 31s linear infinite;
}

.x7 {
  margin-left: 1%;
  top: 400px;
   transform: scale(0.2);
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -o-transform: scale(0.2);
  opacity: .7;
   -webkit-animation: moveclouds2 40s linear infinite;
	-moz-animation: moveclouds2 40s linear infinite;
	-o-animation: moveclouds2 40s linear infinite;
}

/* Clouds  Animation*/

@-webkit-keyframes moveclouds {
	0% {left: -20%;}
	100% {left: 100%;}
}

@-moz-keyframes moveclouds {
	0% {left: -20%;}
	100% {left:100%;}
}

@-o-keyframes moveclouds {
	0% {left: -20%;}
	100% {left:100%;}
}

@-webkit-keyframes moveclouds2 {
	0% {right: -20%;}
	100% {right: 100%;}
}

@-moz-keyframes moveclouds2 {
	0% {right: -20%;}
	100% {right:100%;}
}

@-o-keyframes moveclouds2 {
	0% {right: -20%;}
	100% {right:100%;}
}

.vc_custom_1488464985957{margin-top: -50px !important;margin-bottom: -50px !important;border-bottom-width: 0px !important;padding-top: 0px !important;background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1488465002387{border-bottom-width: 0px !important;padding-top: 0px !important;background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1488464965924{padding-top: 50px !important;background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1486699320656{background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1488465054952{background-color: #00a6d8 !important;}.vc_custom_1488466114531{background-color: #f47b00 !important;}.vc_custom_1488491981886{padding-top: 100px !important;padding-bottom: 150px !important;background-color: #ffffff !important;}.vc_custom_1488466131058{margin-bottom: -55px !important;background-color: #77ad0a !important;}.vc_custom_1488905165111{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1487911289122{background-color: rgba(0,0,0,0.01) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(0,0,0) !important;}.vc_custom_1486702208253{background-color: rgba(0,0,0,0.01) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(0,0,0) !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1486699206798{padding-top: 137px !important;background: rgba(255,255,255,0.01) url(../img/kids-bg.jpg) !important;background-position: 0 0 !important;background-repeat: repeat !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1486666596191{margin-right: 10% !important;margin-left: 10% !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1489452210509{padding-top: 200px !important;padding-bottom: 200px !important;background-image: url(/assets/img/indeximg1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488466216178{padding-top: 200px !important;padding-bottom: 200px !important;background-image: url(/assets/img/indeximg2.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488466450737{margin-right: 10% !important;margin-left: 10% !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488466462555{margin-right: 10% !important;margin-left: 10% !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1486684681540{padding-top: 200px !important;padding-bottom: 200px !important;background-image: url(/assets/img/indeximg3.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}

/* About us*/

.vc_custom_1488905165111{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488907163176{margin-right: 10% !important;margin-left: 10% !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1488907147631{padding-top: 100px !important;padding-right: 10% !important;padding-bottom: 100px !important;padding-left: 10% !important;background-color: #77ad0a !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}</style><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head>

/* careers*/

.vc_custom_1488912527548{background-color: #d82248 !important;}.vc_custom_1488905165111{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488908717768{padding-top: 100px !important;padding-right: 10% !important;padding-bottom: 100px !important;padding-left: 10% !important;}.vc_custom_1488908385321{padding-top: 100px !important;padding-right: 10% !important;padding-bottom: 100px !important;padding-left: 10% !important;background-color: #00a6df !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488912844153{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1488913136177{padding-top: 100px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488913007500{padding-bottom: -5px !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488911574245{padding-top: 100px !important;padding-right: 10% !important;padding-bottom: 100px !important;padding-left: 10% !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488911554671{padding-top: 100px !important;padding-right: 10% !important;padding-bottom: 100px !important;padding-left: 10% !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1488912844153{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}

/* language*/

.vc_custom_1489000894546{margin-top: 50px !important;margin-bottom: -40px !important;}.vc_custom_1491267723679{margin-top: 50px !important;margin-bottom: 0px !important;background-color: #536c68 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1491325393425{margin-top: 50px !important;margin-bottom: 0px !important;padding-bottom: 400px !important;background-color: #536c68 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1491325498479{margin-top: 50px !important;margin-bottom: 0px !important;padding-bottom: 200px !important;background-color: #536c68 !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1489010430209{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1489027770478{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #9850a6 !important;}.vc_custom_1491244476533{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}.vc_custom_1491244285436{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}.vc_custom_1489032815098{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #ededed !important;}.vc_custom_1489029688272{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}.vc_custom_1491245023285{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}.vc_custom_1489000807345{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1491324986691{margin-top: 100px !important;margin-bottom: 100px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1491324997931{margin-right: 10% !important;margin-left: 10% !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491325354288{margin-bottom: 100px !important;padding-top: 100px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1491325076362{margin-top: 100px !important;margin-bottom: 100px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1491244500644{margin-right: -30% !important;margin-left: -20% !important;background-image: url(../img/french-baby41f1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1491244320866{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491244267377{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491244238730{margin-right: -30% !important;margin-left: -20% !important;padding-top: 200px !important;padding-bottom: 100px !important;background-image: url(../img/french-baby41f1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1489028991981{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491244650315{margin-right: -10% !important;padding-top: 300px !important;background-image: url(../img//Mandarin.png) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1491244942561{margin-right: -0% !important;margin-left: -50% !important;background-image: url(../img//spanish.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1491244905477{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491244974484{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491244963416{margin-right: -0% !important;margin-left: -50% !important;padding-bottom: 400px !important;background-image: url(../img//spanish.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;} 

/* curriculum */

.vc_custom_1488944832583{background-color: #9e4cb2 !important;}.vc_custom_1491325908534{margin-top: -100px !important;}.vc_custom_1488905165111{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488944949444{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1486665048909{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1491306435311{margin-left: -300px !important;padding-top: 100px !important;padding-bottom: 80px !important;background-image: url(../img/curriculum-1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1488912844153{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1491325931748{margin-bottom: -100px !important;margin-left: 0px !important;padding-top: 100px !important;padding-bottom: 300px !important;background-image: url(../img/curriculum-1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}

/* our classrooms */

.vc_custom_1488905165111{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1488909744932{margin-bottom: 20px !important;}.vc_custom_1491307905265{margin-left: -300px !important;padding-top: 100px !important;padding-bottom: 80px !important;background-image: url(../img/curriculum-1.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488912844153{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}

/* Infants / Toddlers/ preschool/ VPK*/

.vc_custom_1493224964264 { margin-bottom:60px; }

.vc_custom_1488992969142{margin-top: 80px !important;background-color: #ffffff !important;}.vc_custom_1488992413437{margin-top: 80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488992929933{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1493224964264{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #05a6da !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}.wpb_animate_when_almost_visible { opacity: 1; }

/* nutrition */

.vc_custom_1488999924631{margin-top: 60px !important;background-color: #ffffff !important;}.vc_custom_1488992413437{margin-top: 80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488992929933{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1493223080818{margin-bottom: 75px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;} 

/* resources*/

.vc_custom_1488999924631{margin-top: 60px !important;background-color: #ffffff !important;}.vc_custom_1488992413437{margin-top: 80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1488992929933{background-position: center !important;background-repeat: no-repeat !important;background-size: contain !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}

/* contact*/

.vc_custom_1491326110905{margin-top: 80px !important;margin-bottom: -40px !important;}.vc_custom_1491326127879{margin-top: 80px !important;margin-bottom: -40px !important;}.vc_custom_1489000807345{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #3f3f3f !important;}.vc_custom_1488904011227{margin-top: 20px !important;margin-right: 0px !important;margin-bottom: 20px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1489000620507{margin-left: -300px !important;}.vc_custom_1488473878679{margin-top: 0px !important;margin-right: 10% !important;margin-bottom: 0px !important;margin-left: 10% !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1488905207155{margin-bottom: -5px !important;}.vc_custom_1488902776405{margin-top: 20px !important;margin-bottom: 20px !important;}


/*===========================
  Staff
============================ */ 

.team-item .team-caption {
       transition: all 0.3s;
    padding: 10px;
    background: #9B45AA;
    text-align: center;
    border-radius: 0px;
    margin-top: -20px;
    position: relative;
}

.team-item .team-caption h3,
.team-item .team-caption p {
  margin: 0;
  font-weight:600;
  padding:0px;
  text-decoration:none;
  color:#fff;
}
.team-item:hover .team-caption {
    background: #00A6D8;
}


/* =========================== Miscellaneous  ============================ */
/* Owl-carousel */

.owl-carousel {
    padding: 0px 50px;
    transition: all .3s ease-in-out;
}
.owl-carousel .owl-item {
    perspective: 1000px;
}
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    z-index: 99;
    transition: all .3s ease-in-out;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
}
.owl-prev i,
.owl-next i {
    font-size: 20px;
    transition: all .3s ease-in-out;
    line-height: 35px;
}
.owl-next {
    right: 15px;
}
.owl-prev {
    left: 15px;
}
.owl-carousel.owl-loaded {
    display: block;
    clear: both;
    /* Important fix */
}
.owl-theme .owl-controls .owl-page {
    display: inline-block;
}
.owl-theme .owl-controls .owl-page span {
    background: none repeat scroll 0 0 #869791;
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}
/* List group */

.list-group-item {
	background:#77AD0A;
    position: relative;
    display: block;
	text-decoration:none;
	color:#fff!important;
	border-radius:0px;
    padding: 10px 15px;
    margin-bottom: -1px;
    border: 1px solid #fff;
	transition: all 0.6s;
}
a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    color: #fff;
	background:#F47B00;
    text-decoration: none;
}
.list-group-item:last-child,
.list-group-item:first-child {
	    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
/* sidebar custom */

.sidebar-custom h4{
    font-weight: 600;
    color: #9B45AA;
}

/* section heading */
.section-heading{
    margin-bottom:30px;
}

/* BIG Social Media Icons */

.social-media {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.social-media a {
    display: inline-block;
    font-size: 20px;
}
.social-media a i {
    font-weight: normal;
    color: #f47b00;
    transition: .3s;
    margin: 3px;
    padding: 10px;
    border-radius: 50%;
    width: 30px;
}
.social-media i {
    transition: color .3s ease-in-out;
}


/*home page cloud divider */


#cloud_home{
    margin-top: -160px;
    z-index: 999;
    /* width: 3000px; */
    /* height: 241px; */
    margin-left: -30%;
    right: 0%;
}
/* Small Social Media Icons */

.smaller.social-media a i {
    font-size: 15px;
    transition: .3s;
    margin: 0px;
    border: 0px;
    background-color: transparent!important;
    padding: 0;
    width: 30px;
    color: #f47b00;
}
.smaller.social-media a i:hover {
    background: transparent!important;
}
.smaller.social-media {
    margin-top: 10px;
    margin-bottom: 10px;
}
/* custom list */

ul.custom li:before {
    content: '\f111';
    font-family: 'fontawesome';
    font-size: 12px;
	color:#75A900;
    font-weight: normal;
    margin-right: 10px;
}
ul.custom {
    list-style: none;
}
/* help-block */

.help-block {
    color: #fff;
}
/* well */

.well {
	padding:60px;
	background:#fff;
    border:0px;
}
.well .list-unstyled {
    padding-left:5px;
    list-style: none;
    line-height: 30px;
	font-weight:400;
}
/* Forms */
#enroll_form label {color:#fff;}
	
#enroll_form .wpcf7-select {
    height: 47px;
}
.form-control {
    display: block;
    width: 100%;
    height: 47px;
    border: 0;
	border: 1px solid #e0e1e1;
	border-radius:0px!important;
    font-size: 17px;
    outline: 0;
    box-shadow: none;
	margin-bottom: 10px;

}		

.input-group-btn:last-child>.btn.btn-default {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	padding:12px;
}
.input-group-btn .btn {margin-top:-1px;}

.input-group-btn span,.btn span{color:#fff;}

.form-control.form-control.input-lg{margin-top:0px;}

.input-group .form-control:focus {box-shadow: 0 0 10px rgba(255, 255, 255, 1);}

.form-control,.textarea-field:focus,.input-field:focus {outline:0 none;}

textarea {
	height:150px;
	resize:none;
}

textarea.form-control:focus{outline:0 none;}

/* search form */

.search-group .input-group-addon{
    background: white !important;
    border-radius: 0px 10px 10px 0px;	
	border:0px;
}
.search-group .form-control{
	 border:0;
}
.search-group button{
    border:0px;
    background:transparent;
}
.search-group .fa{
    color:#808080;
}
/* Pagination */

.pagination>li>a, 
.pagination>li>span { 
	margin: 0 5px;
	border:0;
	background-color: #77ad0a;
	font-weight:600;
	color:#fff;
	border-radius:50%!important;
	transition: all .2s ease-in-out;
}

.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #f47b00;
    border-color: #337ab7;
	color:#fff;
}
/* Breadcrumbs */

.breadcrumb {
    padding: 8px 25px;
    margin-bottom: 40px!important;
    list-style: none;
	text-align:center;
	display:block;
	font-size:14px;
	background:#9ae2fd;
	border-radius: 0px;
}


.breadcrumb>.active{ font-weight:600;}
/* Labels */

.label {
    padding: .2em .6em .3em;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    border-radius: 10px;
}

.label-default{background-color:#77AD0A;}
/* Progress bar */

.progress-bar {
	height:10px;
	box-shadow: 6px 6px 0px rgba(103, 102, 102, 0.2);
}

.progress {box-shadow: none;}

/* fade tab transition */

.fade {
	opacity: 0;
	transition: opacity 0.55s linear;
}
/* Page  */

.pages.boxed {margin-top:160px;}

.pages .container {margin-top:0px;padding-top:0px;}

.image-page {margin:20px 0;}

/* Dropdown */

.dropdown-menu {
    font-size: 16px;
    border: 0px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
	color:#fff;
	text-decoration: none;
    background-color: #f47b00;
	transition: all .2s ease-in-out;
}
ul.dropdown-menu {
 list-style-type: none;
}
.dropdown-menu>li>a {
    text-decoration: none;
}

/* Pager */

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff;
	    background: #9b45aa;
    text-decoration: none;
    border: 1px solid;
    border-radius: 0px;
	transition: all .2s ease-in-out;
}

.pager li > a:hover { color:#fff;
    background: #f47b00;
}

/* tab content */

.tab-content {
    padding: 30px;
    border-radius: 20px;
}
/* Nav-tabs */

.nav-tabs {
	text-align:center;
	border-bottom: 0;
}
.nav.nav-tabs > li.active > a,
.nav.nav-tabs > li.active > a:hover,
.nav.nav-tabs > li.active > a:focus,
.nav.nav-tabs > li >a:hover{ border: 0;
background:#f47b00;}

.nav.nav-tabs > li {
    float:none;

    display:inline-block;
	margin-bottom:20px;
}

.nav.nav-tabs > li > a {
	position: relative;
	display: block;
	    text-decoration: none;
			background-color: #77ad0a;
	letter-spacing:0.2px;
	min-height: 50px;
	line-height: 57px;
	border: 0;
	padding: 10px 35px;
	color:#fff !important;
	font-size: 22px;
	border-radius:10px;
	transition: all .2s ease-in-out;
}

/* Panels */

.panel {border: 0; background: transparent;}

.panel-title {font-size: 18px;}

.panel-default > .panel-heading + .panel-collapse > .panel-body {border: 0;}

.panel-heading a {
	display: block; 
	text-transform:none;
    color: #fff;
    padding: 10px;
	    background: #9b45aa;
	border:0px;
	transition: all .2s ease-in-out;
	border-radius: 0px;
}
.panel-heading a:hover, .panel-heading a:focus{color: #fff;
    background: #f47b00;}
 
.panel-group .panel+.panel {margin-top: 0px; }

.panel-group .panel-heading {border-bottom: 0px;}

.panel-group .panel-heading+.panel-collapse>.panel-body {border-top: 0px;}

.panel-heading {padding: 10px 0px;  }

.panel-heading [data-toggle="collapse"]:after {
	content: "\f077";
	font-family: FontAwesome;
	float: right;
	font-size: 18px;
	line-height: 22px;	
}

.panel-heading [data-toggle="collapse"].collapsed:after {transform: rotate(180deg);}

/* Lists */

ul {
    line-height: 30px;
}
ul.no-margin{
    margin: 20px;
    padding: 0;
}
/* Centered columns */

.col-centered{
    float: none;
    margin: 0 auto;
}

/* Blockquote */

 blockquote {
    padding: 30px;
    font-size: 18px;
	line-height:26px;
	font-weight: 700;
	border-radius:20px;	
	border-left: none;
	text-align: center;
}

 blockquote:before {
  content: "\f10d";
  font-family: 'Fontawesome';
  font-size: 2.3em;
  line-height: 0.1em;
  margin-right: 0.5em;
  vertical-align: 0.2em;
}

/* Nav-pills */

.nav-pills{ 
	display: inline-block;
	margin-bottom:20px;
}

.nav-pills>li>a { 	
	transition: all .2s ease-in-out;
	border-radius:10px;
	text-decoration:none;
	    background-color: #f47b00;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills>li>a:hover,
.nav-pills>li>a,
.nav-pills .nav > li > a:hover{
	color: #fff;
	font-size:20px;
	font-weight:400;
	margin:5px;
	padding:15px;
	    background-color: #77ad0a;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: #9b45aa;
}

/* Img Shapes */

.img-circle {border: 10px solid;}

.img-paragraph{margin: 0px 25px 10px 0px;}

.img-curved {border-radius: 30px 10px;}
/* Tables */

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid;
}

/* Media */

.media {margin-top: 45px;}

.media-heading small {
    font-weight: 700;
    display: block;
    margin: 10px 0 20px;
	line-height: 20px;
}
/* =========================== Blog Pages ============================ */

#blog-container {
    padding: 0px;
}
/* date & category badge */

.date-category {
    position: absolute;
    z-index: 10;
    color: #fff;
    margin: 10px;
    padding: 20px;
	background: #77ad0a;
    width: 150px;
}
.date-category p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0px 0px 0px;
}
.date-category i {
    color: #fff;
}

/* Post info */

.post-info p {
    margin-right: 15px;
    display: inline-block;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.post-info p + p {
    line-height: 0px !important;
}
.post-info i {
    margin-right: 5px;
}
/* blog post */

.blog-post {
    border-bottom: 1px solid #eee;
    padding: 60px 0;
    margin: 0 30px;
}
.blog-post:first-child {
    padding-top: 0;
}
.blog-post:last-child {
    border-bottom: 0px;
}
.blog-post h3 {
    margin-bottom: 10px;
    margin-top: 20px;
    transition: all 0.2s ease-in-out;
}
.blog-post h3 a {
    color: #5b5a5a;
}
.blog-post .post-info i {
    margin-right: 5px;
}
.single-page .blog-post h3 {
    margin-top: 0px;
}
.post-main {
    padding: 0 0 40px 0;
}
.post-main img {
    margin-bottom: 20px;
}
/* Blog main- images */

.img-blog {
    overflow: hidden;
}
.img-blog:hover,
.img-blog img {
    transition: all 0.9s;
}
.img-blog:hover img {
    transform: scale3d(1.2, 1.2, 1);
}
/* Blog tags */

.blog-tags a {
	color:#808080;
    font-size: 12px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    height: 26px;
	background: #9ae2fd;
    line-height: 26px;
    padding: 0 10px 0 20px;
    position: relative;
    letter-spacing: 0.5px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.blog-tags a:hover,
.blog-tags a:focus {
    color: #fff;
	background:#9B45AA;
}
.blog-tags a::before {
    background: #fff;
    border-radius: 5px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}
.post-info .blog-tags {
    margin-top: 20px;
}
/* Comments */

.comments-block {
	display: inline-grid;
    margin-top: 60px;
}
.comment.media-body {
    margin-right: 10px;
}
.comments-block .btn {
    padding: 10px;
}
.comments-block .media-object {
    max-width: 120px;
    float: left;
    margin-right: 20px;
    border: 5px solid;
    transition: all 0.5s ease-in-out;
}
.comment {
    border-bottom: 1px dotted;
    margin: 20px auto 20px;
    padding: 30px;
    position: relative;
}
.comment:last-child {
    border-bottom: 0;
}
.nested {
    display: inline-block;
}

.news-block{padding:20px;
background-color:#F47B00;
color:#fff;}
/* ===========================
 Main Slider
============================ */

#layerslider {
    width: 100% !important;
    height: 660px;
}
.ls-fullwidth .ls-nav-prev, .ls-fullwidth .ls-nav-next {
    z-index: 900;
}
.ls-bottom-nav-wrapper {
    margin-top: -40px!important;
    z-index: 99!important;
}
/* Slider text boxes  */

.header-text {
    padding: 30px !important;
    text-align: center;
    max-width: 50%;
    left: 25%!important;
    right: 25%!important;
    top: 25%!important;
}
.header-text h1 {
    margin-bottom: 0px;
    color: #fff;
  text-shadow: 2px -2px 10px #000;
  font-size:50px;
	line-height:54px;
	margin-bottom:20px;
}

.bg-color1{background-color:#00A6D8;}
.bg-color2{background-color:#F47B00;}
.text-light p,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light a
 {color:#fff!important;}
/*===========================
  Media Queries
============================ */

/************ min width 1500px *************/

@media (min-width: 1500px) {
    .ls-bg {
        width: 100%!important;
    }
}

/************ max width 1300px *************/

@media (max-width: 1300px) {

#layerslider {
    height: 480px;
}

.header-text {
    max-width: 90%;
    left: 5%!important;
    right: 5%!important;
}

/*home page cloud divider */

#cloud_home{
    margin-top: -160px;
    z-index: 999;
     width: 300%; 
    /* height: 241px; */
    margin-left: -30%;
    right: 0%;
}

}
/************ max width 767px *************/

@media (max-width: 767px) {

/* Slider text boxes  */
.header-text h1 {
    margin-bottom: 0px;
    color: #fff;
    font-size: 30px;
	line-height:36px;
}

#layerslider {
    height: 380px;
}
.btn-lg{
    font-size: 18px;
	padding: 10px;	
}

/*home page cloud divider */

#cloud_home{
    display:none;
}
}
/************ max width 480px *************/

@media (max-width: 480px) {
	#layerslider {
    height: 280px;
}
.header-text {
    padding: 10px !important;
	top:15%!important;
}

.header-text h1 {
    font-size: 18px;
    line-height: 22px;
}
.ls-fullwidth .ls-nav-prev, .ls-fullwidth .ls-nav-next {
display:none;
}

skin.css:41
.ls-fullw
.btn-lg{
    font-size: 14px;
	padding: 10px;	
}
.topbar .contact-details p {
    display: block;
    margin: 0px;
}
}
/************ max width 320px *************/

@media (max-width: 320px) {

.topbar .contact-details p {
    font-size: 11px;

	}
	#layerslider {
    height: 240px;
}
}