
/*
* Boxes
*/
.box-color {
	width: 54px;
	height: 54px;
}

.box-icon-inner {
	position: relative;
}

.box-icon-inner > * {
	position: relative;
	z-index: 1;
}

.box-icon-inner:before {
	position: absolute;
	top: 15%;
	left: 56%;
	content: '';
	z-index: 0;
}

.box-icon-inner.decorate-triangle:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 18px 10px;
	border-color: transparent transparent rgba(0, 0, 0, 0.08) transparent;
	transform: rotate(137.76deg) translate(0, 0);
	will-change: transform;
	transition: all .6s;
}

.box-icon-inner.decorate-triangle.decorate-color-secondary:before {
	border-color: transparent transparent #FFD541 transparent;
}

.box-icon-inner.decorate-circle:before {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.08);
	transform: translate(0, 0);
	will-change: transform;
	transition: all .6s;
}

.box-icon-inner.decorate-circle.decorate-color-secondary-2:before {
	background: #5656DF;
}

.box-icon-inner.decorate-rectangle:before {
	width: 16px;
	height: 16px;
	transform: translateY(0) rotate(45deg);
	background-color: rgba(0, 0, 0, 0.08);
	will-change: transform;
	transition: all .6s;
}

.box-icon-inner.decorate-rectangle.decorate-color-primary:before {
	background: #7FBC4E;
}

.box-icon-caption h4 {
	font-weight: 500;
}

.box-icon-caption * + p {
	margin-top: 20px;
}

.box-icon-classic {
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.box-icon-classic > * + * {
	margin-top: 25px;
}

.box-icon-classic .box-icon-caption p {
	color: rgba(21, 21, 21, 0.6);
}

.box-icon-classic:hover .decorate-triangle:before {
	transform: rotate(175deg) translate(15px, 15px);
}

.box-icon-classic:hover .decorate-circle:before {
	transform: translate(-45px, 2px);
}

.box-icon-classic:hover .decorate-rectangle:before {
	transform: rotate(-90deg) translateY(-40px);
}

.box-icon-modern {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.box-icon-modern > * + * {
	margin-top: 25px;
}

@media (min-width: 576px) {
	.box-icon-modern {
		flex-direction: row;
		text-align: left;
	}
	.box-icon-modern > * + * {
		margin-top: 0;
		margin-left: 30px;
	}
	.box-icon-modern .box-icon-inner:before {
		left: 70%;
	}
}

.box-icon-modern .box-icon-caption * + p {
	margin-top: 5px;
}

.box-icon-modern .decorate-triangle:before {
	border-width: 0 16px 28px 16px;
}

.box-icon-modern .decorate-circle:before {
	width: 35px;
	height: 35px;
}

.box-icon-modern .decorate-rectangle:before {
	width: 25px;
	height: 25px;
}

.box-icon-modern:hover .decorate-triangle:before {
	transform: rotate(175deg) translate(15px, 15px);
}

.box-icon-modern:hover .decorate-circle:before {
	transform: translate(-45px, 2px);
}

.box-icon-modern:hover .decorate-rectangle:before {
	transform: rotate(-90deg) translateY(-40px);
}

.box-img-animate {
	text-align: center;
}

.box-img-animate .box-img-animate-item {
	display: inline-block;
}

.box-img-animate .box-img-animate-item img {
	border-radius: 6px;
	box-shadow: 8px 14px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199.98px) {
	.box-img-animate .box-img-animate-item + .box-img-animate-item {
		margin-top: 20px;
	}
	.box-img-animate .box-img-animate-item {
		padding: 0 15px;
	}
}


/*
 * Box Causes
*/
.box-causes {
	max-width: 372px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.box-causes-img {
	z-index: 1;
	position: relative;
	overflow: hidden;
}

.box-causes-img:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(21, 21, 21, 0) 38.12%, rgba(21, 21, 21, 0.364) 100%);
	pointer-events: none;
	opacity: 0;
	transition: .3s ease-out all;
}

.box-causes-img .button {
	position: absolute;
	left: 50%;
	bottom: 30px;
	opacity: 0;
	transform: translateX(-50%) scale(0.6);
}

.box-causes-donate {
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0;
}

.box-causes-donate-complete {
	color: #7FBC4E;
}

.box-causes:hover .box-causes-img .button {
	bottom: 48px;
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

.box-causes:hover .box-causes-img:before {
	opacity: 1;
}

* + .box-causes-donate {
	margin-top: 4px;
}

.box-causes-img + * {
	margin-top: 17px;
}

@media (min-width: 1200px) {
	.box-causes-img + * {
		margin-top: 30px;
	}
	* + .box-causes-donate {
		margin-top: 7px;
	}
}

/*
* Images
*/
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	width: 100%;
}



.row-50 {
	margin-bottom: 20px;
}

.row-50:empty {
	margin-bottom: 0;
}

.row-50 > * {
	margin-bottom: 50px;
}

.row-70 {
	margin-bottom: -70px;
}

.row-70:empty {
	margin-bottom: 0;
}

.row-70 > * {
	margin-bottom: 70px;
}

.row-85 {
	margin-bottom: -85px;
}

.row-85:empty {
	margin-bottom: 0;
}

.row-85 > * {
	margin-bottom: 85px;
}

@media (min-width: 768px) {
	.row-md-40 {
		margin-bottom: -40px;
	}
	.row-md-40:empty {
		margin-bottom: 0;
	}
	.row-md-40 > * {
		margin-bottom: 40px;
	}
}

@media (min-width: 992px) {
	.row-lg-60 {
		margin-bottom: -60px;
	}
	.row-lg-60:empty {
		margin-bottom: 0;
	}
	.row-lg-60 > * {
		margin-bottom: 60px;
	}
}

@media (min-width: 1200px) {
	.row-xl-60 {
		margin-bottom: -60px;
	}
	.row-xl-60:empty {
		margin-bottom: 0;
	}
	.row-xl-60 > * {
		margin-bottom: 60px;
	}
	.row-xl-100 {
		margin-bottom: -100px;
	}
	.row-xl-100:empty {
		margin-bottom: 0;
	}
	.row-xl-100 > * {
		margin-bottom: 100px;
	}
}


/*
* Light Backgrounds
*/
.bg-default {
	background-color: #ffffff;
}

.bg-default:not([style*="background-"]) + .bg-default:not([style*="background-"]) {
	padding-top: 0;
}

.bg-default-decor {
	position: relative;
}

.bg-default-decor:before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: calc( 100% - 2px);
	height: 65px;
	background-image: url("../images/decor-wave-bottom.png");
}

.bg-gray-100 {
	background-color: #edeff4;
}

.bg-gray-100:not([style*="background-"]) + .bg-gray-100:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-300 {
	background-color: #E7E7E7;
}

.bg-gray-300:not([style*="background-"]) + .bg-gray-300:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-400 {
	background-color: #C4C4C4;
}

.bg-gray-400:not([style*="background-"]) + .bg-gray-400:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-1 {
	background-color: #f5f5f5;
}

.bg-gray-1:not([style*="background-"]) + .bg-gray-1:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-1-decor {
	position: relative;
}

.bg-gray-1-decor:before {
	content: '';
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: calc( 100% - 2px);
	height: 65px;
	background-image: url("../images/decor-gray-top.png");
}

/*
* Dark Backgrounds
*/
.bg-gray-600 {
	background-color: #3C3C3C;
}

.bg-gray-600:not([style*="background-"]) + .bg-gray-600:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-700 {
	background-color: #444141;
}

.bg-gray-700:not([style*="background-"]) + .bg-gray-700:not([style*="background-"]) {
	padding-top: 0;
}

.bg-gray-800 {
	background-color: #151515;
}

.bg-gray-800:not([style*="background-"]) + .bg-gray-800:not([style*="background-"]) {
	padding-top: 0;
}

.bg-dark-filter {
	position: relative;
}

.bg-dark-filter > * {
	position: relative;
	z-index: 1;
}

.bg-dark-filter:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(21, 21, 21, 0.8) 100%);
}

.bg-accent-filter {
	position: relative;
}

.bg-accent-filter > * {
	position: relative;
	z-index: 1;
}

.bg-accent-filter:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(359.73deg, #3A092F 0.9%, rgba(60, 55, 79, 0.45) 107.43%);
}


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

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

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

.wow-outer {
	position: relative;
	overflow: hidden;
}

html:not(.lt-ie10) .not-animated {
	opacity: 0;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

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

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

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

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

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

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

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

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

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

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

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

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

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

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

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

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

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

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

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

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

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

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

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

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
