/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
	animation-duration: 1s;
	animation-fill-mode: both
}

.animated.infinite {
	animation-iteration-count: infinite
}

.animated.hinge {
	animation-duration: 2s
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	animation-duration: .75s
}

@keyframes bounce {
	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translate3d(0, 0, 0)
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		transform: translate3d(0, -4px, 0)
	}
}

.bounce {
	animation-name: bounce;
	transform-origin: center bottom
}

@keyframes flash {
	from,
	50%,
	to {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

.flash {
	animation-name: flash
}

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1)
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}
	to {
		transform: scale3d(1, 1, 1)
	}
}

.pulse {
	animation-name: pulse
}

@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1)
	}
	30% {
		transform: scale3d(1.25, 0.75, 1)
	}
	40% {
		transform: scale3d(0.75, 1.25, 1)
	}
	50% {
		transform: scale3d(1.15, 0.85, 1)
	}
	65% {
		transform: scale3d(0.95, 1.05, 1)
	}
	75% {
		transform: scale3d(1.05, 0.95, 1)
	}
	to {
		transform: scale3d(1, 1, 1)
	}
}

.rubberBand {
	animation-name: rubberBand
}

@keyframes shake {
	from,
	to {
		transform: translate3d(0, 0, 0)
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0)
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	animation-name: shake
}

@keyframes headShake {
	0% {
		transform: translateX(0)
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}
	50% {
		transform: translateX(0)
	}
}

.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake
}

@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		transform: rotate3d(0, 0, 1, -5deg)
	}
	to {
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

.swing {
	transform-origin: top center;
	animation-name: swing
}

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1)
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
	to {
		transform: scale3d(1, 1, 1)
	}
}

.tada {
	animation-name: tada
}

@keyframes wobble {
	from {
		transform: none
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	to {
		transform: none
	}
}

.wobble {
	animation-name: wobble
}

@keyframes jello {
	from,
	11.1%,
	to {
		transform: none
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg)
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg)
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
	}
}

.jello {
	animation-name: jello;
	transform-origin: center
}

@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9)
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97)
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	animation-name: bounceIn
}

@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0)
	}
	75% {
		transform: translate3d(0, -10px, 0)
	}
	90% {
		transform: translate3d(0, 5px, 0)
	}
	to {
		transform: none
	}
}

.bounceInDown {
	animation-name: bounceInDown
}

@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0)
	}
	75% {
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		transform: translate3d(5px, 0, 0)
	}
	to {
		transform: none
	}
}

.bounceInLeft {
	animation-name: bounceInLeft
}

@keyframes bounceInRight {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}
	from {
		opacity: 0;
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		transform: translate3d(10px, 0, 0)
	}
	90% {
		transform: translate3d(-5px, 0, 0)
	}
	to {
		transform: none
	}
}

.bounceInRight {
	animation-name: bounceInRight
}

@keyframes bounceInUp {
	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
	}
	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	75% {
		transform: translate3d(0, 10px, 0)
	}
	90% {
		transform: translate3d(0, -5px, 0)
	}
	to {
		transform: translate3d(0, 0, 0)
	}
}

.bounceInUp {
	animation-name: bounceInUp
}

@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9)
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}
}

.bounceOut {
	animation-name: bounceOut
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0)
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0)
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	animation-name: bounceOutRight
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0)
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	animation-name: bounceOutUp
}

@keyframes fadeIn {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.fadeIn {
	animation-name: fadeIn
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInDown {
	animation-name: fadeInDown
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInDownBig {
	animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInLeft {
	animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInLeftBig {
	animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInRight {
	animation-name: fadeInRight
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInRightBig {
	animation-name: fadeInRightBig
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInUp {
	animation-name: fadeInUp
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.fadeInUpBig {
	animation-name: fadeInUpBig
}

@keyframes fadeOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

.fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOutDown {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	animation-name: fadeOutUpBig
}

@keyframes flip {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out
	}
	40% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out
	}
	50% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		animation-timing-function: ease-in
	}
	to {
		transform: perspective(400px);
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip
}

@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	to {
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX
}

@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in
	}
	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	to {
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY
}

@keyframes flipOutX {
	from {
		transform: perspective(400px)
	}
	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}
	to {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@keyframes flipOutY {
	from {
		transform: perspective(400px)
	}
	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}
	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY
}

@keyframes lightSpeedIn {
	from {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1
	}
	to {
		transform: none;
		opacity: 1
	}
}

.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
	from {
		opacity: 1
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in
}

@keyframes rotateIn {
	from {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	animation-name: rotateIn
}

@keyframes rotateInDownLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	animation-name: rotateInUpRight
}

@keyframes rotateOut {
	from {
		transform-origin: center;
		opacity: 1
	}
	to {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

.rotateOut {
	animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
	from {
		transform-origin: left bottom;
		opacity: 1
	}
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
	from {
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
	from {
		transform-origin: left bottom;
		opacity: 1
	}
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
	from {
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	animation-name: rotateOutUpRight
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out
	}
	20%,
	60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out
	}
	40%,
	80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	animation-name: hinge
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom
	}
	50% {
		transform: rotate(-10deg)
	}
	70% {
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}

.jackInTheBox {
	animation-name: jackInTheBox
}

@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}
	to {
		opacity: 1;
		transform: none
	}
}

.rollIn {
	animation-name: rollIn
}

@keyframes rollOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

.rollOut {
	animation-name: rollOut
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}
	50% {
		opacity: 1
	}
}

.zoomIn {
	animation-name: zoomIn
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInDown {
	animation-name: zoomInDown
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInLeft {
	animation-name: zoomInLeft
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInRight {
	animation-name: zoomInRight
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomInUp {
	animation-name: zoomInUp
}

@keyframes zoomOut {
	from {
		opacity: 1
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3)
	}
	to {
		opacity: 0
	}
}

.zoomOut {
	animation-name: zoomOut
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomOutDown {
	animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center
	}
}

.zoomOutLeft {
	animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center
	}
}

.zoomOutRight {
	animation-name: zoomOutRight
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
	}
}

.zoomOutUp {
	animation-name: zoomOutUp
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	to {
		transform: translate3d(0, 0, 0)
	}
}

.slideInDown {
	animation-name: slideInDown
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}
	to {
		transform: translate3d(0, 0, 0)
	}
}

.slideInLeft {
	animation-name: slideInLeft
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}
	to {
		transform: translate3d(0, 0, 0)
	}
}

.slideInRight {
	animation-name: slideInRight
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}
	to {
		transform: translate3d(0, 0, 0)
	}
}

.slideInUp {
	animation-name: slideInUp
}

@keyframes slideOutDown {
	from {
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0)
	}
}

.slideOutDown {
	animation-name: slideOutDown
}

@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0)
	}
}

.slideOutLeft {
	animation-name: slideOutLeft
}

@keyframes slideOutRight {
	from {
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0)
	}
}

.slideOutRight {
	animation-name: slideOutRight
}

@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0)
	}
}

.slideOutUp {
	animation-name: slideOutUp
}

.white {
	color: #fff
}

.bg-white {
	background-color: #fff
}

.black {
	color: #090401
}

.bg-black {
	background-color: #090401
}

.brown {
	color: #512100
}

.bg-brown {
	background-color: #512100
}

.brown-light {
	color: #c3992e
}

.bg-brown-light {
	background-color: #c3992e
}

.brown-lighter {
	color: #e4dad0
}

.bg-brown-lighter {
	background-color: #e4dad0
}

.gray {
	color: #f2f2f2
}

.bg-gray {
	background-color: #f2f2f2
}

.gray-light {
	color: #ABABAB
}

.bg-gray-light {
	background-color: #ABABAB
}

.gray-lighter {
	color: #E5E5E5
}

.bg-gray-lighter {
	background-color: #E5E5E5
}

.brown-dark {
	color: #605954
}

.bg-brown-dark {
	background-color: #605954
}

html,
body {
	font-family: "adobe-garamond-pro", serif
}

html {
	font-size: 16px
}

body {
	font-size: 1.375rem;
	font-family: "adobe-garamond-pro", serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	scroll-behavior: smooth
}


h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: bold
}



h2,
.h2 {
	font-size: 1.625rem
}

@media (min-width: 768px) {
	h2,
	.h2 {
		font-size: 1.875rem
	}
}

@media (min-width: 992px) {
	h2,
	.h2 {
		margin-bottom: 25px;
		font-size: 2.375rem
	}
}

h3,
.h3 {
	font-size: 1.375rem
}

@media (min-width: 768px) {
	h3,
	.h3 {
		font-size: 1.875rem
	}
}

h4,
.h4 {
	font-size: 1.625rem
}

h5,
.h5 {
	font-size: 1.375rem
}

h6,
.h6 {
	font-size: 1.25rem
}

p {
	font-family: "futura-pt", sans-serif;
	margin-bottom: 25px;
	font-weight: lighter
}

p:last-child {
	margin-bottom: 0
}

a {
	color: inherit
}

a:hover {
	color: inherit
}

textarea,
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="phone"],
input[type="date"],
input[type="text"],
input[type="email"] {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

iframe {
	border: 0
}

@media (max-width: 600px) {
	#wpadminbar {
		position: fixed
	}
}

.wow {
	visibility: hidden
}

.wow.wow-visible {
	visibility: hidden
}

@media (min-width: 992px) {
	.columns-2 {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2
	}
}

.section {
	padding: 45px 0
}

@media (min-width: 992px) {
	.section {
		padding: 90px 0
	}
}

@media (min-width: 992px) {
	.section.section-sm {
		padding: 45px 0
	}
}

@media (min-width: 992px) {
	.section.section-md {
		padding: 75px 0
	}
}

@media (min-width: 992px) {
	.section.section-lg {
		padding: 135px 0
	}
}

@media (min-width: 1367px) {
	.container {
		padding: 0;
		max-width: 1400px
	}
}

.font-semi-bold {
	font-weight: 400
}

.section-categories {
	border-top: 1px solid #c3992e;
	border-bottom: 1px solid #c3992e
}

.section-categories ul {
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	flex-wrap: nowrap
}

@media (min-width: 992px) {
	.section-categories ul {
		margin: 0 auto;
		display: table
	}
}

.section-categories li a {
	font-size: 1.25rem;
	padding: 30px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .25s ease-in-out 0s;
	display: inline-block;
	text-decoration: none
}

.section-categories li a.active,
.section-categories li a:hover {
	color: #c3992e
}

@media (min-width: 992px) {
	.section-categories li a.active,
	.section-categories li a:hover {
		border-right: 1px solid #c3992e;
		border-left: 1px solid #c3992e
	}
}

.section-categories li.small a {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 16px
}

@media (min-width: 992px) {
	.section-categories li+li a {
		margin-left: -1px
	}
}

.section-categories .combine-tabs li:first-child a {
	padding-left: 0;
	border: 0;
	font-size: 41px;
	font-weight: bold
}

.section-categories .nav-tabs {
	border-bottom: 0
}

@media (max-width: 767px) {
	.footer .block-wrapper {
		padding: 30px 0 15px;
		border-top: 1px solid #ABABAB;
		border-bottom: 1px solid #ABABAB
	}
}

.footer p {
	font-size: 1rem;
	color: #fff
}

.footer h6 {
	font-weight: 500
}

@media (max-width: 767px) {
	.footer .sub-menu {
		padding-bottom: 20px;
		float: none
	}
}

.footer .sub-menu h3 {
	font-size: 1.125rem
}

@media (max-width: 767px) {
	.footer .sub-menu h3 {
		margin-bottom: 15px
	}
}

.footer .sub-menu a[data-toggle="collapse"] {
	padding: 0;
	text-decoration: none;
	display: block;
	cursor: default;
	position: relative
}

.footer .sub-menu a[data-toggle="collapse"].collapsed .add-icon {
	transform: none
}

@media (min-width: 768px) {
	.footer .sub-menu .collapse-wrapper {
		height: auto !important;
		display: block !important
	}
}

.footer .sub-menu .collapse-wrapper a {
	font-family: "futura-pt", sans-serif;
	font-size: 1rem;
	color: #fff
}

.footer .sub-menu .add-icon {
	position: absolute;
	top: 50%;
	width: 20px;
	right: 0;
	margin-top: -10px;
	transform: rotate(180deg);
	transition: all .25s ease-in-out 0s
}

@media (min-width: 768px) {
	.footer .sub-menu .add-icon {
		display: none
	}
}

.footer li {
	line-height: 1.1
}

@media (max-width: 767px) {
	.footer li {
		margin-bottom: 15px
	}
}

.footer .logos img {
	height: 90px
}

@media (min-width: 992px) {
	.footer .logos img+img {
		margin-left: 30px
	}
}

@media (max-width: 767px) {
	.footer .logos img {
		margin-top: 50px;
		height: 45px
	}
}

@media (min-width: 992px) {
	.footer .logos {
		margin-top: 70px;
		float: right
	}
}

@media (max-width: 767px) {
	.footer .row-lower {
		line-height: 2
	}
}

.social-icons a {
	padding: 0 18px;
	color: #c3992e;
	font-size: 1.625rem
}

.social-icons a:first-child {
	padding-left: 0
}

label {
	font-family: "futura-pt", sans-serif;
	margin-bottom: 20px;
	font-weight: lighter;
	width: 100%
}

hr {
	max-width: 1320px
}

@media (min-width: 1367px) {
	hr {
		max-width: 1400px
	}
}

.wpcf7-submit {
	width: unset;
	background-color: #090401;
	color: #fff;
	font-size: .9375rem;
	font-family: "futura-pt", sans-serif;
	padding: 0 20px
}

.wpcf7-textarea {
	height: 75px
}

@media screen and (min-width: 1560px) {
	.d-xxl-inline-block {
		display: inline-block !important;
		margin-left: 20px
	}
}

@media (max-width: 991px) {
	.header {
		position: relative;
		z-index: 2
	}
}

@media (min-width: 1200px) {
	.header {
		position: -webkit-sticky;
		position: sticky;
		z-index: 1020;
		top: -130px
	}
}

.header .header-top {
	padding: 20px 0
}

@media (max-width: 767px) {
	.header .header-top {
		padding: 15px 0
	}
}

.header .header-top .logo img {
	height: 70px;
}

@media (min-width: 992px) {
	.header .header-top .logo img {
		height: 90px
	}
}

.header .header-top .side-menu nav {
	border-bottom: 1px solid #E5E5E5;
	border-top: 1px solid #E5E5E5;
	padding: 15px 0
}

.header .header-top .side-menu h5 {
	font-size: 1.125rem
}

.header .header-top .side-menu p {
	font-size: .875rem
}

@media (max-width: 991px) {
	.header .header-top .side-menu {
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		padding: 60px 25px;
		right: 52px;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		-moz-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		-webkit-transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
		-moz-transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
		-ms-transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
		-o-transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
		transition: transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
		z-index: 1;
		box-shadow: -5px 10px 5px 5px rgba(0, 0, 0, 0.4)
	}
	.header .header-top .side-menu ul {
		padding: 0
	}
	.header .header-top .side-menu ul li {
		list-style-type: none
	}
	.header .header-top .side-menu ul li>a {
		position: relative;
		float: left;
		padding: 15px 0;
		width: 80%;
		display: block;
		vertical-align: middle;
		color: #E5E5E5;
		font-size: 1.375rem;
		font-family: "futura-pt", sans-serif
	}
	.header .header-top .side-menu .dropdown-menu-toggle {
		width: 20%;
		float: right;
		text-align: right
	}
	.header .header-top .side-menu .dropdown-menu-toggle>span {
		height: 20px;
		width: 20px;
		display: inline-block;
		transition: all .25s ease-in-out 0s;
		background: url("../images/icons/add-white.svg") center/contain no-repeat
	}
	.header .header-top .side-menu .dropdown-menu-toggle.toggle span {
		transform: rotate(180deg)
	}
	.header .header-top .side-menu .sub-menu {
		clear: both;
		-webkit-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
		-moz-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
		-ms-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
		-o-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
		transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
		display: none;
		padding: 0
	}
	.header .header-top .side-menu .sub-menu li {
		margin-bottom: 15px;
		*zoom: 1
	}
	.header .header-top .side-menu .sub-menu li::before,
	.header .header-top .side-menu .sub-menu li::after {
		content: ' ';
		display: table
	}
	.header .header-top .side-menu .sub-menu li::after {
		clear: both
	}
	.header .header-top .side-menu .sub-menu a {
		padding: 0;
		font-size: .875rem
	}
}

@media (max-width: 991px) {
	.admin-bar .header .header-top .side-menu {
		top: 32px
	}
}

@media (max-width: 991px) and (max-width: 783px) {
	.admin-bar .header .header-top .side-menu {
		top: 46px
	}
}

@media (max-width: 991px) {
	.side-menu-open .header .header-top .side-menu {
		-webkit-transform: translateZ(0);
		-moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		-o-transform: translateZ(0);
		transform: translateZ(0)
	}
	.side-menu-open .header .header-top .side-menu:after {
		opacity: 1;
		visibility: visible
	}
}

@media (max-width: 991px) {
	.side-menu-closing .header .header-top .side-menu {
		-webkit-transform: translate3d(-100%, 0, 0);
		-moz-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	.side-menu-closing .header .header-top .side-menu:after {
		opacity: 0
	}
}

.header .header-bottom .menu {
	padding-left: 0;
	margin: 0;
	text-align: center
}

.header .header-bottom .menu li {
	list-style-type: none
}

.header .header-bottom .menu>li {
	display: inline-block;
	transition: all .25s ease-in-out 0s;
	position: relative
}

.header .header-bottom .menu>li.active,
.header .header-bottom .menu>li.hover {
	background-color: #c3992e
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li.active .sub-menu,
	.header .header-bottom .menu>li.hover .sub-menu {
		opacity: 1;
		visibility: visible
	}
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li.menu-item-has-children {
		padding-right: 11px
	}
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li.menu-item-has-children>a:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 0px;
		width: 10px;
		height: 10px;
		margin-top: -3px;
		background: url("../images/icons/down-arrow.svg") center/contain no-repeat
	}
}

@media (min-width: 1367px) {
	.header .header-bottom .menu>li.menu-item-has-children>a:after {
		right: 10px
	}
}

.header .header-bottom .menu>li>a {
	color: #fff;
	font-family: "futura-pt", sans-serif;
	font-size: 1.125rem;
	padding: 20px 15px 20px 0;
	position: relative;
	text-decoration: none;
	display: block;
	width: 80%;
	float: left;
	line-height: 1.1;
	vertical-align: middle;
	font-weight: 700
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li>a {
		font-weight: 500;
		float: none;
		display: inline-block;
		width: auto;
		transition: all .25s ease-in-out 0s;
		font-size: .9375rem;
		padding: 17px 15px
	}
	.header .header-bottom .menu>li>a.logo {
		padding: 23px 15px
	}
}

@media (min-width: 1367px) {
	.header .header-bottom .menu>li>a {
		padding: 28px 25px
	}
	.header .header-bottom .menu>li>a.logo {
		padding: 23px 35px 23px 0
	}
}

.header .header-bottom .menu>li>a span {
	display: inline-block;
	font-size: 9px;
	vertical-align: 2px;
	margin-left: 10px
}

@media screen and (max-width: 370px) {
	.header .header-bottom .menu>li>a span {
		margin-left: 0
	}
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li>a span {
		margin-left: 0;
		vertical-align: auto;
		display: block;
		font-size: 14px
	}
}

.header .header-bottom .menu>li>a.dropdown-menu-toggle {
	width: 20%;
	float: right;
	text-align: right;
	padding: 22px 0 0;
	height: 56px
}

.header .header-bottom .menu>li>a.dropdown-menu-toggle span {
	display: inline-block;
	width: 16px;
	height: 10px;
	transition: all .25s ease-in-out 0s;
	background: url("../images/icons/gcs-chevron-down-gray.svg") right center/contain no-repeat
}

.header .header-bottom .menu>li>a.dropdown-menu-toggle.toggle span {
	transform: rotate(180deg)
}

.header .header-bottom .menu>li>.sub-menu {
	position: relative;
	display: none;
	text-align: left;
	-webkit-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
	-moz-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
	-ms-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
	-o-transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
	transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s;
	clear: both;
	padding-left: 0;
	color: #fff
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li>.sub-menu {
		box-shadow: 0 1px 5px -2px #fff;
		background-color: #090401;
		color: inherit;
		border-top: 0;
		opacity: 0;
		visibility: hidden;
		padding: 20px 0;
		display: block !important;
		position: absolute;
		top: 160%;
		left: 50%;
		white-space: nowrap;
		z-index: 1;
		transform: translateX(-50%)
	}
}

.header .header-bottom .menu>li>.sub-menu>li {
	width: 100%;
	line-height: 0.9
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li>.sub-menu>li {
		float: left
	}
}

.header .header-bottom .menu>li>.sub-menu>li>a {
	font-size: .875rem;
	font-family: "futura-pt", sans-serif
}

@media (min-width: 992px) {
	.header .header-bottom .menu>li>.sub-menu>li>a {
		font-size: .9375rem;
		color: #fff;
		padding: 10px 30px;
		display: block
	}
	.header .header-bottom .menu>li>.sub-menu>li>a:hover {
		text-decoration: none;
		background-color: #c3992e
	}
	/*10/07/20*/
	.header .header-bottom .menu>li>.sub-menu>li>.sub-menu>li>a {
		font-size: .9375rem;
		color: #fff;
		padding: 10px 30px;
		display: block
	}
	.header .header-bottom .menu>li>.sub-menu>li>.sub-menu>li>a:hover {
		text-decoration: none;
		background-color: #c3992e
	}
	.header .header-bottom .menu ul.sub-menu ul.sub-menu {
		padding-left: 20px;
	}
	.header .header-bottom .menu>li>.sub-menu>li:hover ul.submenu {
    	display: block;
	}
	.header .header-bottom .menu ul.sub-menu ul.sub-menu {
	    display: none;
	    width: 250px;
	    position: absolute;
	    top: 0;
	    left: 100%;
	    background: #ffffff;
	    z-index: 999;
	}
}

.header .header-bottom .menu>li>.sub-menu:before {
	left: 50%;
	top: -15px;
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 20px 20px;
	border-color: transparent transparent #090401 transparent;
	transform: translateX(-50%)
}

.header .header-bottom .menu>li>.sub-menu:after {
	left: 0;
	bottom: 100%;
	right: 0;
	height: 30px;
	position: absolute;
	content: ""
}

.header .side-menu-toggle-close {
	z-index: 2;
	width: 52px;
	height: 52px;
	display: block;
	position: fixed;
	right: -55px;
	top: 0;
	transition: all .25s ease-in-out 0s;
	padding-top: 8px;
	text-align: center;
	background: #090401
}

.admin-bar .header .side-menu-toggle-close {
	top: 32px
}

@media (max-width: 783px) {
	.admin-bar .header .side-menu-toggle-close {
		top: 46px
	}
}

.side-menu-open .header .side-menu-toggle-close {
	right: 0
}

.side-menu-closing .header .side-menu-toggle-close {
	right: -55px
}

.header .side-menu-toggle-open {
	display: inline-block;
	position: relative;
	z-index: 1;
	text-decoration: none;
	transition: all .25s ease-in-out 0s;
	height: 20px
}

.modal-body {
	padding-left: 2rem;
	padding-right: 2rem;
	padding-bottom: 2rem
}

.modal-content {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0
}

.modal-content .modal-body a {
	font-weight: bold
}

.modal-content .modal-header {
	border: 0;
	padding-left: 2rem;
	padding-top: 2rem
}

.modal-content .close {
	color: #000;
	opacity: 1;
	font-size: 30px;
	margin-top: -2rem
}

div.wpcf7-response-output {
	margin-left: 0;
	margin-right: 0
}

#breadcrumbs {
	font-size: 14px;
	color: #707070
}

#breadcrumbs a+span {
	display: inline-block;
	width: 20px;
	height: 10px;
	margin-left: 5px;
	margin-right: 5px;
	background: url("../images/icons/arrow-right.svg") center/contain no-repeat
}

#breadcrumbs .breadcrumb_last {
	color: #000;
	font-weight: 500
}

.read-more {
	position: relative
}

.read-more:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	height: 40px;
	left: 0;
	right: 0;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 68%, #fff 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 68%, #fff 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 68%, #fff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0)
}

@media (max-width: 767px) {
	.slick-dots {
		bottom: auto;
		top: 98%;
		padding: 0 30px
	}
}

@media (max-width: 767px) {
	.postid-1752 .slick-dots {
		bottom: -55px;
		padding: 0 20px
	}
}

@media (max-width: 767px) {
	.slick-dotted.slick-slider {
		margin-bottom: 60px
	}
}

@media (max-width: 767px) {
	.postid-1752 .slick-dotted.slick-slider {
		margin-bottom: 60px
	}
}

.slick-dots li.slick-active button:before,
.slick-dots li button:before {
	font-size: 15px;
	color: #c3992e
}

.slick-prev,
.slick-next {
	top: auto;
	z-index: 1;
	bottom: -31px
}

.slick-prev:before,
.slick-next:before {
	color: #c3992e;
	font-size: 26px;
	width: 25px;
	height: 25px
}

.slick-next {
	right: 0
}

.slick-prev {
	left: 0
}

.youtube {
	background-color: #000;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer
}

.youtube img {
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.8
}

.youtube .play-button {
	width: 90px;
	height: 60px;
	background-color: #333;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	z-index: 1;
	opacity: 0.8;
	border-radius: 6px
}

.youtube .play-button:before {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26.0px;
	border-color: transparent transparent transparent #fff
}

.youtube img,
.youtube .play-button {
	cursor: pointer
}

.youtube img,
.youtube .play-button,
.youtube .play-button:before {
	position: absolute
}

.youtube .play-button,
.youtube .play-button:before {
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0)
}

.single-cpt-campaign .header .logo {
	color: #fff !important
}

@media (min-width: 992px) {
	.single-cpt-campaign .header .logo {
		height: 90px;
		text-decoration: none
	}
}

.single-cpt-campaign .bg-black {
	background-color: #c3992e
}

.single-cpt-campaign .btn.btn-brown {
	background-color: #090401;
	color: #fff
}

.single-cpt-campaign .btn.btn-outline-brown {
	border: 1px solid #090401;
	color: #090401
}

.single-cpt-campaign .social-icons a {
	color: #fff
}

.single-cpt-campaign .gray-light {
	color: #090401
}

.single-cpt-campaign .header .header-bottom .menu>li.current-menu-item,
.single-cpt-campaign .header .header-bottom .menu>li.active,
.single-cpt-campaign .header .header-bottom .menu>li.hover {
	background-color: #090401
}

.single-cpt-campaign .header .header-bottom .menu>li {
	text-transform: uppercase
}

.single-cpt-campaign .section .section.section-gallery {
	padding-top: 0
}

@media (min-width: 1200px) {
	.single-cpt-campaign .tab-pane>.section {
		padding-top: 3rem !important
	}
}

.font-sans-serif {
	font-family: "futura-pt", sans-serif
}

.grecaptcha-badge {
	display: none
}

.btn {
	font-size: 1.0625rem;
	height: 50px;
	line-height: 50px;
	white-space: nowrap;
	padding: 0 35px;
	text-decoration: none !important;
	display: inline-block;
	font-weight: bold;
	text-align: center;
	text-shadow: none;
	border: 0;
	border-radius: 0;
	position: relative;
	font-family: "futura-pt", sans-serif;
	text-transform: uppercase;
	transition: all .25s ease-in-out 0s
}

@media (min-width: 992px) {
	.btn {
		font-size: .9375rem;
		padding: 0 45px
	}
}

@media (max-width: 767px) {
	.btn {
		font-size: .9375rem;
		padding: 0 15px
	}
}

@media (min-width: 992px) {
	.btn.btn-sm {
		padding: 0 25px;
		height: 40px;
		line-height: 40px
	}
}

.btn.btn-block,
.btn.btn-fullwidth {
	width: 100% !important
}

.btn.btn-black {
	background-color: #090401;
	color: #fff
}

.btn.btn-black:hover {
	background-color: #fff;
	color: #090401;
	transition: all .25s ease-in-out 0s
}

.btn.btn-outline {
	border: 1px solid #c3992e;
	color: #090401
}

.btn.btn-outline:focus,
.btn.btn-outline:active,
.btn.btn-outline:hover {
	background-color: #c3992e
}

.btn.btn-outline-brown {
	border: 1px solid #c3992e;
	color: #c3992e
}

.btn.btn-outline-brown:focus,
.btn.btn-outline-brown:active,
.btn.btn-outline-brown:hover {
	background-color: #c3992e;
	color: #090401
}

.btn.btn-brown {
	color: #090401;
	background-color: #c3992e
}

.nf-field-element .btn {
	height: 50px
}

.wpcf7-form-control {
	padding: 0 10px;
	height: 42px;
	border: 1px solid #E5E5E5;
	width: 100%
}

.wpcf7-form label {
	font-size: 16px;
	color: #000
}

.wpcf7-form-control-wrap {
	display: block
}

div.wpcf7 input[type="file"] {
	border: 0;
	padding: 0;
	height: auto
}

.section-hero-hp {
	background-position: center 35%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

@media (max-width: 767px) {
	.section-hero-hp {
		padding: 140px 0
	}
}

.section-hero {
	position: relative;
	background-position: center 35%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.section-hero:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8)
}

@media (max-width: 767px) {
	.section-hero {
		padding: 50px 0 !important
	}
}

.section-hero h1 {
	margin-bottom: 25px
}

.section-hero li {
	font-family: "futura-pt", sans-serif;
	font-weight: 300
}

@media (max-width: 767px) {
	.section-home-gallery h2 {
		margin-bottom: 30px
	}
}

.section-home-gallery h6 {
	display: none
}

@media (min-width: 992px) {
	.section-home-gallery h6 {
		display: block
	}
}

.section-home-gallery p {
	font-size: 1rem
}

@media (max-width: 767px) {
	.section-procedures {
		padding-bottom: 30px !important
	}
}

.section-procedures p {
	font-size: 1rem
}

.section-procedures .blurb {
	padding: 25px 0 0 25px;
	text-decoration: none
}

.section-procedures .blurb:before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	right: 50px;
	left: 0;
	height: 190px;
	border: 1px solid #c3992e
}

@media (max-width: 991px) {
	.section-procedures .blurb:before {
		padding: 25px
	}
}

.section-procedures img {
	margin-bottom: 20px
}

.section-procedures a {
	font-size: 1rem;
	font-family: "futura-pt", sans-serif
}

.section-procedures h3 {
	margin-bottom: 15px
}

.section-dr-dona {
	overflow: hidden;
	padding-top: 75px;
	background-position: 80% bottom;
	background-repeat: no-repeat;
	-webkit-background-size: auto;
	background-size: auto
}

@media (max-width: 767px) {
	.section-dr-dona {
		padding-bottom: 0;
		background-position: right 0;
		background-repeat: no-repeat;
		-webkit-background-size: 70%;
		background-size: 70%
	}
}

.section-dr-dona p {
	font-size: 1rem
}

@media (max-width: 767px) {
	.section-dr-dona .order-lg-first {
		background-color: #fff
	}
}

@media (min-width: 992px) {
	.section-dr-dona .inner-content {
		max-width: 450px
	}
}

@media (max-width: 991px) {
	.section-dr-dona img {
		height: 500px
	}
}

@media (max-width: 991px) {
	.section-dr-dona .img-wrapper:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 150px;
		background: -moz-linear-gradient(to top, #fff, transparent);
		background: -webkit-linear-gradient(to top, #fff, transparent);
		background: linear-gradient(to top, #fff, transparent)
	}
}

.section-instagram h2 {
	font-size: 2.125rem;
	margin-bottom: 10px
}

.section-instagram p {
	font-size: 1.125rem;
	color: #707070;
	margin-bottom: 40px
}

@media (max-width: 1199px) {
	.section-enquire .promoText {
		max-width: 400px
	}
}

.section-enquire h2 {
	font-weight: normal;
	font-size: 2.125rem
}

@media (max-width: 767px) {
	.section-enquire h2 {
		font-size: 1.625rem
	}
}

.section-enquire p {
	font-size: 1.375rem
}

@media (max-width: 767px) {
	.section-enquire p {
		font-size: 1.125rem
	}
}

.section-attention h1 {
	font-size: 2.875rem
}

@media (max-width: 767px) {
	.section-attention h1 {
		font-size: 1.875rem
	}
}

.section-attention p {
	font-size: 1.125rem
}

.section-options h3 {
	font-size: 2.125rem;
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%)
}

@media (max-width: 767px) {
	.section-options h3 {
		transform: translateY(-50%);
		font-size: 1.625rem
	}
}

.section-options .option {
	border: 1px solid #c3992e
}

.section-options .img-wrapper {
	height: 0;
	padding-bottom: 50%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.section-options .inner-content {
	padding: 20px 10px
}

.section-options .inner-content p {
	margin-bottom: 10px
}

.section-options .inner-content .promo-text {
	font-size: .875rem
}

.section-options .inner-content .small {
	font-size: .75rem
}

.section-options h6 {
	display: none;
	margin-bottom: 30px
}

@media (max-width: 767px) {
	.section-options h6 {
		display: block
	}
}

.section-blog a {
	text-decoration: none
}

@media (min-width: 992px) {
	.section-blog a {
		display: table
	}
}

@media (min-width: 992px) {
	.section-blog .inner-content h4 {
		margin-bottom: 25px
	}
}

.section-blog .inner-content p {
	font-size: 1rem
}

.section-about {
	background-position: 80% bottom;
	background-repeat: no-repeat;
	-webkit-background-size: auto;
	background-size: auto
}

@media (max-width: 767px) {
	.section-about {
		background-position: 130% 140%;
		background-repeat: no-repeat;
		-webkit-background-size: 70%;
		background-size: 70%
	}
}

.section-about h1 {
	font-size: 2.875rem;
	margin-bottom: 30px
}

.section-details p {
	font-size: 1.125rem
}

.section-details h2 {
	font-size: 2.875rem;
	margin-bottom: 25px
}

.section-details h4 {
	margin-bottom: 25px;
	font-weight: lighter;
	max-width: 450px
}

.section-team h2 {
	margin-bottom: 60px
}

.section-team .position {
	font-size: 1.25rem;
	margin-bottom: 10px
}

.section-team .img-wrapper {
	border-radius: 50%;
	border: 1px solid #c3992e
}

.section-team .img-wrapper img {
	border-radius: 50%
}

.section-team .member-info {
	margin-left: 270px
}

.section-team .member+.member {
	margin-top: 60px
}

.section-clinic h2 {
	max-width: 990px;
	font-size: 2.375rem
}

@media (min-width: 992px) {
	.section-philosophy {
		padding-bottom: 0 !important
	}
}

@media (max-width: 767px) {
	.section-philosophy {
		background-color: #e4dad0
	}
}

.section-philosophy .lead h3 {
	font-size: 2.5rem
}

.section-philosophy .lead p {
	font-size: 1.125rem
}

@media (max-width: 767px) {
	.section-faq {
		padding-top: 0 !important
	}
}

.section-faq h2 {
	font-size: 2.375rem;
	margin-bottom: 60px
}

@media (max-width: 767px) {
	.section-faq h2 {
		margin-bottom: 30px
	}
}

.section-faq .card-header {
	border: none;
	background-color: transparent;
	padding-left: 0;
	padding-right: 0
}

.section-faq .card-header img {
	margin-top: 5px
}

.section-faq .card {
	border: none
}

.section-faq .card+.card {
	border-top: 1px solid rgba(0, 0, 0, 0.1)
}

.section-faq a {
	cursor: pointer;
	font-weight: normal
}

@media (max-width: 767px) {
	.section-faq a {
		font-size: .9375rem
	}
}

.section-faq p {
	font-size: 1.125rem
}

@media (max-width: 767px) {
	.section-contact-us,
	.section-breast-implants,
	.section-brazilian,
	.section-breasts {
		padding-bottom: 50px !important;
		background-image: none !important;
		padding-top: 0 !important
	}
	.section-contact-us h1,
	.section-breast-implants h1,
	.section-brazilian h1,
	.section-breasts h1 {
		margin-top: -100px;
		font-size: 30px
	}
}

@media (max-width: 767px) {
	.section-breasts {
		padding-bottom: 0 !important
	}
}

.section-contact-us {
	padding-top: 50px !important
}

.section-perpetual p {
	font-size: 1rem
}

.section-surgery {
	padding-bottom: 50px !important
}

.section-surgery h3 {
	font-weight: normal;
	font-size: 1.125rem
}

@media (min-width: 992px) {
	.section-surgery h3 {
		font-size: 1.5rem
	}
}

.section-demand .img-wrapper {
	background-position: right bottom;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	height: 100%;
	position: relative;
	min-height: 560px
}

.section-demand .img-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 150px;
	background: -moz-linear-gradient(to right, #fff, transparent);
	background: -webkit-linear-gradient(to right, #fff, transparent);
	background: linear-gradient(to right, #fff, transparent)
}

.section-demand .inner-content {
	padding: 30px 0
}

@media (min-width: 992px) {
	.section-demand .inner-content {
		padding: 50px
	}
}

.section-demand p {
	font-size: 1rem
}

.section-planning {
	padding-top: 60px !important
}

.section-planning .inner-content {
	font-size: 1rem;
	font-family: "futura-pt", sans-serif;
	font-weight: 300
}

@media (max-width: 767px) {
	.section-planning {
		padding-top: 20px
	}
}

.section-planning p {
	display: block
}

.section-planning .small {
	font-size: .875rem
}

.section-gallery dt,
.section-gallery dd {
	font-family: "futura-pt", sans-serif;
	font-size: 1rem;
	display: inline-block;
	font-weight: lighter
}

.section-gallery dd {
	font-weight: 500
}

.section-gallery dt:not(:first-child) {
	margin-left: 60px
}

.section-gallery .case-gallery-nav img {
	cursor: pointer
}

.section-gallery .cases a {
	opacity: .7;
	transition: all .25s ease-in-out 0s
}

.section-gallery .cases a:hover,
.section-gallery .cases a.active {
	opacity: 1
}

.img-wrapper-breasts:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 150px;
	background: -moz-linear-gradient(to top, #fff, transparent);
	background: -webkit-linear-gradient(to top, #fff, transparent);
	background: linear-gradient(to top, #fff, transparent)
}

@media (min-width: 768px) {
	.section-find-out .inner-content {
		background-image: none !important
	}
}

@media (min-width: 992px) {
	.section-form .map img {
		max-width: none
	}
}

.section-form .inner-content {
	max-width: 570px;
	box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.75);
	padding: 20px
}

@media (min-width: 992px) {
	.section-form .inner-content {
		padding: 70px;
		margin-top: -50px
	}
}


/*# sourceMappingURL=main.min.css.map */