/* OUT OF THE BOX STYLES */

/*-- CSS TABLE OF CONTENTS
1. Reset.css
2. Navbar styling
3. Home section
4. Category Section
5. Features styling
6. Counter Section
7. Reviews styling
8. Pricing Section
9. FAQ section
10. Subscribe Form
11. Media Queries --*/


/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* --- common styles ---*/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat';
	font-size: 16px;
}

p {
	font-family: 'Open Sans';
	font-size: 14px;
}

/*----- helper classes -----*/

html * {
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	display: none;
}

::-moz-selection {
	color: #FFFFFF;
	background: #23D3D3;
}

::selection {
	color: #FFFFFF;
	background: #23D3D3;
}

.nopadding {
	padding: 0;
}

.custompadding {
	padding-left: 15px;
	padding-right: 15px;
}

.container-m {
	max-width: 1199px;
	margin: 0 auto !important;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
}

.container-s {
	max-width: 920px;
	margin: 0 auto !important;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: fixed;
	opacity: 1;
	background-color: #F2F2F2;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	display: inline;
	top: 40%;
	position: relative;
	z-index: 9999;
}

/*------ navbar styling ------*/

.navbar {
	font-family: "Montserrat";
	padding: 20px 0;
	/*height: 80px;*/
	background-color: #FFFFFF !important;
	border-bottom: 1px solid #EFEFF1;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}

.wt-border {
	border-bottom: 2px solid #FFFFFF !important;
}

.no-border {
	border: none !important;
}

.navbar .navbar-brand {
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0px;
	color: #333347 !important;
	vertical-align: middle;
}

.navbar .navbar-brand img {
	vertical-align: middle;
	margin-right: 0.3em;
}

.navbar .navbar-toggler {
	border: none;
}

.navbar span.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar span.navbar-toggler-icon::before {
	outline: none;
}

.navbar .navbar-toggler:focus {
	outline: none;
}

.navbar-nav {
	height: auto;
	background: #FFFFFF;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	-webkit-transition: 0.5s all ease; /* For Safari 3.1 to 6.0 */
	transition: 0.5s all ease;
}

.navbar-nav .nav-item {
	margin-right: 0;
	margin-top: 1.5rem;
	font-size: 0.85rem;
	font-weight: 400;
	text-transform: capitalize;
	color: #333347;
	display: flex;
}

.navbar-nav .nav-item .nav-link {
	color: #6a6a6a;
	font-weight: 600;
	display: flex;
	letter-spacing: 0.01rem;
	vertical-align: middle;
}

.navbar-nav .nav-item .nav-link:hover {
	color: #8a8a8a;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.navbar-nav .nav-item .nav-link:focus {
	color: #8a8a8a;
}

.btn-nav {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 36px;
	letter-spacing: 1px;
	margin: 25px 0;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	cursor: pointer;
	background-color: transparent;
	background: transparent;
	color: #222222;
	border: 2px solid #8a8a8a !important;
	border-radius: 5px;
	box-sizing: border-box;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}

.btn-nav:hover {
	color: #FFFFFF;
	background: #21bf73;
	border: 2px solid #21bf73 !important;
}

.btn-nav:focus, .btn-nav:active {
	background: #21bf73;
	color: #FFFFFF;
	border: 2px solid #21bf73 !important;
}

/*---- navbar alt -----*/

.navbar-alt {
	background: transparent !important;
}

.navbar-alt .navbar-nav {
	background: transparent !important;
}
/*
.navbar-alt .btn-nav {
	background: #563d7c !important;
	border-color: #563d7c !important;
}*/

.navbar-alt .nav-item .nav-link {
	color: #FFFFFF;
}

.navbar-alt .nav-item .nav-link:hover, .navbar-alt .nav-item .nav-link:focus {
	color: rgba(255, 255, 255, 0.7);
}

.navbar-alt .navbar-brand {
	color: #FFFFFF !important;
}

@media only screen and (max-width: 767px) {
	.navbar {
		padding: 15px;
	}

	.navbar .navbar-nav {
		background: #FFFFFF !important;
		padding-bottom: 50px;
	}

	.navbar-nav .nav-item {
		display: block;
	}

	.nav-white .nav-item .nav-link {
		color: #4957B8;
	}

	.navbar .btn-cta {
		padding: 0 30px;
	}
}

@media only screen and (min-width: 240px) {
	.navbar.past-main {
		background: #FFFFFF !important;
		border-bottom: 1px solid #EFEFF1;
	}

	.navbar.effect-main {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.navbar.past-main .navbar-brand {
		color: #333347 !important;
	}

	.nav-white.past-main .nav-item .nav-link {
		color: #8a8a8a;
		font-weight:600;
	}

	.navbar.past-main .nav-item .nav-link {
		color: #8a8a8a;
		font-weight: 600;
	}

	.navbar.past-main .nav-item:hover .nav-link {
		color: #6a6a6a;
	}

	.navbar.past-main .navbar-brand {
		color: #333347;
	}
	/*
		.navbar.past-main span.navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}*/

	.nav-white.effect-main {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
}

/*----------------------------------------------
------------ hero section styling --------------
----------------------------------------------*/

.main {
	width: 100%;
	height: 100%;
}

.home {
	padding: 50px 0 50px 0;
	background: #f0f5f9;
}

.btn-action {
	font-family: 'Montserrat';
	display: inline-block;
	height: 42px;
	padding: 0 30px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 40px;
	letter-spacing: 1px;
	line-height: 2.8;
	margin: 15px 0 0 0;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	cursor: pointer;
	background-color: transparent;
	background: #21bf73;
	color: #FFFFFF !important;
	border: 2px solid #21bf73 !important;
	border-radius: 5px;
	box-sizing: border-box;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
}

.btn-action:hover {
	color: #FFFFFF;
	background: #21bf73;
	border: 2px solid #21bf73 !important;
	outline: none !important;
	text-decoration: none;
}

.btn-action:focus, .btn-action:active {
	background: #21bf73;
	color: #FFFFFF;
	border: 2px solid transparent !important;
	outline: none !important;
}

.btn-outline {
	background-color: transparent;
	color: #3498db !important;
	border: 2px solid #3498db !important;
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
	color: #FFFFFF !important;
	background-color: #3498db;
	border: 2px solid #3498db !important;
}

.btn-light {
	background-color: #222222;
	color: #FFFFFF;
	border: 2px solid #222222 !important;
}

.btn-light:hover, .btn-light:focus, .btn-light:active {
	background-color: #333333;
	border: 2px solid #333333 !important;
}

.home .btn-action {
	margin-right: 10px;
}

.condition_txt {
	font-size: 13px !important;
	font-family: 'Montserrat';
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #818198;
	margin: 10px 0;
}

/*-------- category (cat) section styling -------*/

.yd-cat {
	width: 100%;
	padding: 50px 0;
}

.cat-flex {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-direction: column;
	margin: 0;
}

.cat1 {
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
	text-align: center;
}

.cat2 {
	-webkit-box-flex:1;
	-ms-flex:1;
	flex: 0.40;
	text-align: left;
	margin-bottom: 30px;
}

.cat2 h4 {
	font-size: 13px;
	font-weight: 600;
	color: #21bf73;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cat2 h2 {
	font-size: 24px;
	font-weight: 800;
	color: #383B61;
	line-height: 1.2;
	margin-top: 15px;
}

.cat2 p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #818198;
	margin-top: 15px;
	margin-bottom: 15px;
}

.cat-item {
	margin-bottom: 25px;
	margin-right: 0;
	padding: 50px 50px;
	border-radius: 1px;
	background: #FFFFFF;
	cursor: pointer;
	text-align: left;
}

.cat-item.clr1 {
	background: #f6eedf;
	background: #fff2e5;
}

.cat-item.clr2 {
	background: #f8f9fa;
}

.cat-item.clr3 {
	background: #f0f5f9;
	margin-right: 0;
	padding-right: 50px;
}

.cat-img img {
	vertical-align: middle;
}

.cat-text {
	margin-top: 25px;
}

.cat-text h3 {
	font-size: 18px;
	font-weight: 700;
	color: #383B61;
	margin-bottom: 15px;
}

.cat-text p {
	font-size: 15px;
	font-weight: 500;
	color: rgb(129, 129, 152);
	line-height: 1.6;
	max-width: 320px;
	margin: 0 auto;
}


/*----------- flex features ------------*/

.flex-split {
	padding: 0 0;
	background: #f0f5f9;
}

.flex-intro {
	margin-bottom: 50px;
	text-align: center;
}

.flex-inner {
	margin: 50px 0;
}

.flex-inner .f-image {
	padding: 0 5px;
	text-align: center;
}

.flex-inner .f-text {
	padding: 0 5px;
	text-align: center;
}

.flex-inner .f-text {
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
	text-align: center;
}

.flex-inner .f-text h4 {
	font-size: 16px;
	font-weight: 600;
	color: #5c5c5c;
	line-height: 1.2;
}

.flex-inner .f-text h2 {
	font-size: 24px;
	font-weight: 800;
	color: #3a3a47;
	line-height: 1.2;
	margin-top: 20px;
}

.flex-inner .f-text  p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #818198;
	margin-top: 15px;
	margin-bottom: 15px;
}

.flex-inner.flex-inverted .f-image {
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1
}

.flex-inner.flex-inverted .f-image img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(10%);
}

/*-------- flex split section end -----------*/


/*------------ features section styling ----------*/


/*----------- flex features ------------*/

.ft-flex {
	padding: 0 0;
	background: #FFFFFF;
}

.ft-intro {
	margin-bottom: 50px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.ft-intro h2 {
	font-size: 34px;
	font-weight: 800;
	color: #3a3a47;
	line-height: 1.2;
	margin-top: 20px;
}

.ft-intro p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #818198;
	margin-top: 15px;
	margin-bottom: 15px;
}

.ft-inner {
	margin: 0;
	background: #f8f9fa;
	padding: 50px;
}

.ft-inner .ft-image {
	padding: 0 25px;
	text-align: center;
}

.ft-inner .ft-text {
	margin: 0;
	text-align: center;
}

.ft-inner .ft-text {
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
	text-align: center;
}

.ft-inner .ft-text h4 {
	font-size: 18px;
	font-weight: 700;
	color: #5c5c5c;
	line-height: 1.2;
}

.ft-inner .ft-text h2 {
	font-size: 24px;
	font-weight: 800;
	color: #383B61;
	line-height: 1.2;
	margin-top: 20px;
}

.ft-inner .ft-text  p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #6A7076;
	margin-top: 15px;
	margin-bottom: 25px;
}

.ft-inner .ft-content ul {
	list-style-type: none;
	text-align: left;
	margin-bottom: 0;
}

.ft-inner .ft-content ul li img {
	vertical-align: middle;
	margin-right: 10px;
}

.ft-inner .ft-content ul li {
	font-family: 'Montserrat';
	font-size: 15px;
	font-weight: 600;
	color: #6A7076;
	margin: 15px 0;
}

.ft-inner .ft-text  a {
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	color: #523ee8;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.ft-inner .ft-text a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3%;
	height: 2px;
	width: 85px;
	background: #523ee8;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.ft-inner .ft-text .ft-content a:hover::after {
	width: 0px;
}

.ft-inner .ft-text .ft-content a:hover {
	text-decoration: none;
}

.ft-inner.ft-inverted .ft-image {
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1
}

.ft-inverted {
	background: #f8f9fa;
}

.ft-inner.ft-inverted .ft-text h2 {
	color: #3a3a47;
	letter-spacing: 0.01em;
}

.ft-inner.ft-inverted .ft-text  p {
	color: #ABAFB3;
}

.ft-inner.ft-inverted .ft-image img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(10%);
}


/*--------------------------------------
--------- stat section styling ---------
--------------------------------------*/

.yd-stats {
	padding: 100px 0;
	background: #FFFFFF;
}

.yd-stats .intro h4 {
	font-size: 14px;
	font-weight: 600;
	color: #3498db;
	line-height: 1.3;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.yd-stats .intro h2 {
	font-size: 28px;
	font-weight: 800;
	color: #383B61;
	line-height: 1.3;
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.yd-stats .intro p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #959597;
	max-width: 630px;
	margin: 0 auto;
	margin-top: 15px;
	margin-bottom: 15px;
}

.yd-stats .counter-up {
	margin-top: 50px;
}

.counter-icon {
	padding: 15px;
}

.counter-icon img {
	width: 80px;
	height: 80px;
}

.counter-text {
	margin: 10px 0;
}

.counter-up h3 {
	font-size: 28px;
	font-weight: 700;
	color: #383B61;
}

.counter-text h2 {
	font-size: 15px;
	font-weight: 500;
	padding: 0.5em;
	color: #364655;
	color: #959597;
	color: #ABAFB3;
}


/*---------------------------------------------------
-------------- ar feature item styling --------------
---------------------------------------------------*/

.yd_reviews {
	padding: 0;
}

.yd_rev_inner {
	text-align: center;
	background: #f0f5f9;
	padding: 50px 0;
}

.yd_rev_inner .rev-intro {
	text-align: left;
	margin-top: 30px;
	padding: 50px;
}

.yd_rev_inner .rev-intro h2 {
	font-size: 34px;
	font-weight: 800;
	color: #383B61;
	line-height: 1.2;
}

.yd_rev_inner .rev-intro p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #6A7076;
	margin-top: 15px;
}

.yd_rev_inner .rev-list {
	text-align: left;
	padding: 50px;
	background: #f0f5f9;
}

.rev-list .rev-block {
	text-align: left;
}

.rev-block img {
	display: inline;
	margin-right: 10px;
}

.rev-list .rev-block h2 {
	display: inline;
	font-size: 18px;
	color: #6A7076;
	font-weight: 500;
	line-height: 1.6;
	margin-top: 15px;
}

.rev-list .rev-block .rev-client {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 25px;
}

.rev-client .rev-text {
	text-align: left;
	margin-left: 20px;
}

.rev-client .rev-text h3 {
	font-size: 16px;
	color: #364655;
	color: #161851;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
}

.rev-client .rev-text p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	color: #5e687c;
}

.rev-client .rev-text a {
	color: #3498db;
	text-decoration: none;
}

/* ----- pricing tables styling starts ----- */

.pricing-section {
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	background: #FFFFFF;
}

.pricing-intro h1 {
	font-size: 28px;
	color: #3a3a47;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 20px;
}

.pricing-intro p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #ABAFB3;
	margin-top: 10px;
	margin-bottom: 30px;
}

.pricing-details {
	padding: 50px 0 0 0;
}

.pricing-section .table-left, .pricing-section .table-right {
	padding: 15%;
	margin: 0 auto;
	margin-bottom: 30px;
	background-color: #f0f5f9;
	border: transparent;
	max-width: 400px;
}

.table-left h2, .table-right h2 {
	font-size: 24px;
	font-weight: 800;
	color: #3a3a47;
	margin-bottom: 15px;
}

.table-left p, .table-right p {
	font-size: 16px;
	font-weight: 500;
	color: #ABAFB3;
	line-height: 1.4;
}

.pricing-section .table-right {
	color: #FFFFFF !important;
	background-color: #f0f5f9;
}
/*
.pricing-section .table-right h3, .pricing-section .table-right p {
	color: #FFFFFF !important;
}
*/

.table-left .icon, .table-right .icon {
	padding: 50px 50px 40px 50px;
}

.table-left .icon img, .table-right .icon img {
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.table-left .pricing-details span, .table-right .pricing-details span {
	display: inline-block;
	font-family: 'Open Sans';
	font-size: 42px;
	font-weight: 300;
	color: #505050;
	margin-bottom: 15px;
}

.sub_span {
	font-family: 'Open Sans';
	font-size: 15px;
	font-weight: 400;
	color: #505050;
}

.table-left .pricing-details h2, .table-right .pricing-details h2 {
	font-size: 21px;
	font-weight: 500;
	color: #505050;
	margin-bottom: 30px;
}

.table-left .pricing-details p, .table-right .pricing-details p {
	font-size: 14px;
	font-weight: 300;
	color: #505050;
	letter-spacing: 1px;
	line-height: 1.4;
}

.pricing-section .table-left, .pricing-section .table-right {
	margin-top: 20px;
}

.pricing-section .table-center {
	margin-top: 0;
}

.btn-action.btn-white {
	color: #047aed !important;
	background-color: #FFFFFF !important;
	border-color: #FFFFFF !important;
}

.btn-action.btn-white:hover {
	color: #555da8;
	border-color: #FFFFFF;
}

.pricing-section .refund-txt {
	font-size: 12px;
	font-weight: 500;
	color: #505050;
}


/*-----------------------------------------------------------
--------------------- faq section styling -------------------
------------------------------------------------------------*/

.yd_faqs {
	width: 100%;
}

.faq_inner {
	padding: 100px 0;
	background: #f0f5f9;
}

.yd_faqs .yd_flx2 {
	min-height: 500px;
	display: flex;
}

.yd_faqs .yd_flx2 .flx_1 {
	line-height: normal;
	padding: 0 100px;
	min-height: 300px;
}

.yd_faqs .faq_intro {
	max-width: 600px;
	margin-bottom: 50px;
}

.yd_faqs .faq_inner h2 {
	font-size: 32px;
	font-weight: 800;
	color: #3a3a47;
	line-height: 1.2;
	margin-bottom: 15px;
}

.yd_faqs .faq_inner p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #6A7076;
	margin-top: 15px;
	margin-bottom: 25px;
}

.yd_faqs .faq_inner h5 {
	font-size: 16px;
	font-weight: 500;
	color: #6A7076;
	line-height: 1.6;
	margin-top: 20px;
	display: inline;
}

.yd_faqs .faq_inner a {
	display: inline;
	font-family: 'Open Sans';
	color: #047aed;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

#accordion .card-header:after {
	font-family: 'ionicons';
	content: "\f209";
	float: right;
	transition: 0.5s;
}
#accordion .card-header.collapsed:after {
	/* symbol for "collapsed" panels */
	content: "\f218";
	transition: 0.5s;
}

#accordion .card {
	border-radius: 0;
	border: 0;
}

#accordion .card-header {
	padding: 30px 0;
	background: #f0f5f9;
	border-bottom: 2px solid rgba(0,0,0,.03);
	cursor: pointer;
}

#accordion .card-header .card-title {
	font-family: 'Montserrat';
	font-size: 18px;
	color: rgba(0, 0, 0, 0.55);
	font-weight: 600;
	line-height: 1.4;
}

#accordion .card-body {
	padding: 30px 0;
	background: #f0f5f9;
}

#accordion .card-body p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.02em;
	color: #6A7076;
}

.faq_alt {
	background: #FFFFFF;
}

.faq_alt #accordion .card-header {
	background: #FFFFFF;
}

.faq_alt #accordion .card-body {
	background: #FFFFFF;
}


/*---------- call to action section styling ----------*/

.cta {
	width: 100%;
}

.cta-inner {
	padding: 100px;
	background-color: #f0f5f9;
	background-image: none;
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-size: 394px 484px;
	border-radius: 1px;
	text-align: center;
}

.cta-inner .cta-content h2 {
	font-size: 34px;
	font-weight: 800;
	color: #383B61;
	line-height: 1.2;
	margin-top: 20px;
}

.cta-inner .cta-content p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: #6A7076;
	margin-top: 15px;
	margin-bottom: 15px;
}

.cta .btn-action {
	margin-right: 10px;
}


/*---------------- yd cta box styling --------------------*/

.yd_cta_box {
	text-align: center;
	background: #FFFFFF;
}

.cta_box {
	background: #FFFFFF;
	padding: 100px 0;
	border-radius: 0;
	margin: 0 auto;
	max-width: 800px;
}

.cta_box .cta_box_inner {
	padding: 0 20px;
}

.cta_box .cta_box_inner .box_txt {
	padding: 0;
}

.cta_box .cta_box_inner h4 {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 1px;
	color: #21bf73;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.cta_box .cta_box_inner h2 {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.4;
	color: #383B61;
}

.cta_box .cta_box_inner .btn-action {
	margin: 30px 0 0 0;
}

.chimp-form .mail {
	position: relative;
	background-color: #F9F9F9;
	box-shadow: none;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	transition: all .3s;
}

.form {
	padding-top: 35px;
	position: relative;
	text-align: none;
}

.form input {
	color: #222222;
	font-family: 'Montserrat';
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	height: 45px;
	border: 0;
	border-radius: 5px 0 0 5px;
	background-color: #F0F5F8;
	outline: none;
	padding: 0 75px 0 20px;
	box-shadow: 0 5px 30px rgba(255, 255, 255, 0.1);
}

.form input:focus {
	outline: none !important;
	border-color: transparent;
}

.form .submit-button {
	height: 45px;
	border: 0;
	border-radius: 0 5px 5px 0;
	margin-left: -35px;
	padding: 0 25px 0 25px;
	background: #21bf73;
	font-family: 'Montserrat';
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #FFFFFF;
	cursor: pointer;
	outline: none;
	box-shadow: 0 5px 30px rgba(255, 255, 255, 0.05);
	-webkit-transition: 500ms;
	-moz-transition: 500ms;
	transition: 500ms;
}

#email-error {
	position: absolute;
	left: 20%;
	right: 0;
	bottom: 0%;
	font-family: 'Montserrat';
	font-size: 13px;
	font-weight: 500;
	color: #FF3333;
}

#response {
	position: absolute;
	left: 20%;
	bottom: -90%;
	vertical-align: middle;
	font-family: 'Montserrat';
	font-size: 13px !important;
	font-weight: 500 !important;
	margin: 0 !important;
	color: #21bf73;
}

#response h4 {
	font-size: 13px !important;
	font-weight: 500 !important;
	text-align: center;
}

#chimp-email-error {
	position: absolute;
	left: 15%;
	bottom: -50%;
	vertical-align: middle;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 13px;
	font-weight: 500;
	color: #21bf73;
}

.yd_cta_box #chimp-email-error {
	position: absolute;
	left: 18%;
	bottom: -50%;
}

.yd_cta_box #response {
	position: absolute;
	left: 25%;
	bottom: -90%;
}

.success-message {
	color:#33cc33;
	margin-top: 5px;
}

.form-note p {
	font-size: 12px;
}


/*---------- call to action section styling ends ----------*/


/* ------------ back-to-top styling starts here ------------*/

.footer {
	background: #f0f5f9;
	padding: 35px 0;
}

.footer-inner {
	background: #FFFFFF;
}

.footer .footer-logo {
	text-align: center;
}

.footer .footer-logo h2 {
	font-size: 18px;
	font-weight: 500;
	color: #21bf73;
	text-transform: uppercase;
	line-height: 1.4;
}

.footer p {
	font-size: 24px;
	font-weight: 700;
	color: #6A7076;
	line-height: 1.4;
	margin-top: 0;
}

/* ------------ bact-to-top styling starts here ------------*/

/*
.bk-top {
	z-index: 90;
	width: 50px;
	height: 75px;
	background: #6d48e5;
	color: #f2f2f0;
	display: table;
	box-shadow:0 5px 15px rgba(0, 0, 0, .1);
}

.bk-top-txt {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
*/

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-family: 'Montserrat';
	font-size: 11px;
	font-weight: 700;
	text-transform: capitalize;
	color: #FFFFFF;
	line-height: 1.8;
	display: inline-block;
	padding: 1.5rem 1.2rem;
	margin-top: 0;
	border-radius: 2px;
	background: url(../icons/arrow.svg) center top 1.2rem no-repeat #f0f5f9;
	text-decoration: none;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.back-to-top:hover {
	color: #FFFFFF;
	text-decoration: none;
}

.footer ul {
	list-style-type: none;
	text-align: center;
	margin-top: 0;
}

.footer .footer-menu {
	text-align: center;
	margin: 20px 0;
}

.footer .footer-links ul {
	text-align: center;
}

.footer ul li {
	font-family: "Montserrat";
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

.footer ul li a {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	position: relative;
	display: inline-block;
	color: #6A7076;
	text-decoration: none;
}

.footer ul li a:hover {
	text-decoration: none;
	color: #97a6b5;
}

.footer .footer-links ul li {
	margin-left: 10px;
	margin-right: 10px;
}

.footer .footer-links ul li a img {
	width: 24px;
	vertical-align: middle;
}


/*------------------------------------------
-------------- media queries ---------------
------------------------------------------*/

@media only screen and (min-width: 767px) {

	.navbar-nav {
		margin-top: 0;
	}

	.navbar-nav .nav-item {
		margin-top: 0;
		margin-right: 15px;
		font-size: 0.85rem;
		font-weight: 400;
	}

	.btn-nav {
		margin: 0;
	}

	.custompadding {
		padding-left: 25px;
		padding-right: 25px;
	}

	.container-s {
		padding-left: 20px;
		padding-right: 20px;
	}

	.container-m {
		padding-left: 40px;
		padding-right: 40px;
	}

	.home {
		padding: 150px 0 100px 0;
	}

	.home2 {
		padding: 100px 0;
	}

	.yd-cat {
		padding: 100px 0;
	}

	.cat-flex {
		flex-direction: row;
	}

	.cat-inner {
		padding: 0 0;
	}

	.cat-item {
		margin-bottom: 0;
	}

	.cat-item {
		margin-right: 25px;
	}

	.cat2 h2 {
		font-size: 34px;
	}

	.cat-item.clr3 {
		padding-right: 75px;
	}

	.flex-split {
		padding: 0 0;
	}

	.flex-inner {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0;
	}

	.flex-inner .f-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 600px;
		flex: 0 0 600px;
	}

	.flex-inner .f-text h2 {
		font-size: 36px;
	}

	.flex-inner .f-text  p {
		font-size: 16px;
	}

	.ft-split {
		padding: 0 0;
	}

	.ft-inner {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0;
		background: #f0f5f9;
		padding: 100px 50px 50px 50px;
	}

	.ft-inner.ft-inverted {
		padding: 50px 50px 100px 50px;
	}

	.ft-inner .ft-text {
		margin: 0 50px;
	}

	.ft-inner .ft-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 420px;
		flex: 0 0 420px;
	}

	.ft-inner .ft-text h2 {
		font-size: 34px;
	}

	.ft-inner .ft-text  p {
		font-size: 18px;
	}

	.yd-stats .intro h2 {
		font-size: 34px;
	}

	.yd_rev_inner .rev-list {
		margin-top: 0;
	}

	.yd_faqs {
		padding: 0 0;
	}

	.pricing-intro h1 {
		font-size: 34px;
	}

	.cta-inner {
		text-align: left;
		background-image: url(../images/cta.png);
	}

	.yd_cta_box {
		padding: 0 0;
	}

	.cta_box .cta_box_inner h2 {
		font-size: 34px;
	}

	.form input {
		padding: 0 150px 0 20px;
	}

	.form .submit-button {
		margin-left: 0;
		padding: 0 50px 0 50px;
	}

	.footer .footer-logo {
		text-align: left;
	}

	.footer .footer-menu {
		text-align: right;
		margin: 0;
	}

	.footer .footer-links ul {
		text-align: right;
	}
}

@media only screen and (min-width: 480px) {

	.container-s {
		padding-left: 20px;
		padding-right: 20px;
	}

	.flex-inner .f-text {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: left;
	}

	.ft-inner .ft-text {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: left;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

	.flex-inner .f-text h2 {
		font-size: 28px;
	}

	.flex-inner .f-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 360px;
		flex: 0 0 360px;
	}

	.ft-inner .ft-text {
		margin: 0;
	}

	.ft-inner .ft-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 380px;
		flex: 0 0 380px;
	}
}

@media only screen and (min-width: 240px)and (max-width: 420px) {

	.form input {
		padding: 0 75px 0 20px;
		border-radius: 5px;
	}
	.form .submit-button {
		margin-left: 0;
		margin-top: 10px;
		border-radius: 5px;
	}
	.yd_cta_box #chimp-email-error {
		position: absolute;
		left: 15%;
		bottom: -50%;
	}
}

@media only screen and (max-width: 767px) {

	.flex-inner .f-text {
		text-align: center;
	}
}

/* end out of the box styles */


/* custom styles */

body { background: #F3CDDC; font-family: 'Open Sans'; font-size: 16px; }
h1.heading { color: #FFFFFF; }
.h1, h1 { font-size: 2rem; color: #214058; line-height: 1.1; } /* 2.50rem */
.h2, h2 { font-size: 1.75rem; color: #326387; line-height: 1.2; } /* 2.00rem */
.h3, h3 { font-size: 1.5rem; color: #39739D; line-height: 1.3; } /* 1.75rem */
.h4, h4 { font-size: 1.25rem; color: #478ABC; line-height: 1.4; } /* 1.50rem */
.h5, h5 { font-size: 1.15rem; color: #214058; line-height: 1.5; font-weight: bold; } /* 1.25rem */

h1, h2, h3, h4, .h1, .h2, .h3, .h4 { margin-top: 1rem; margin-bottom: .5rem; }

p { font-size: 1rem; line-height: 1.3; margin-bottom: 1rem; }
ul, li { list-style-type: initial; padding: .3rem 0; margin-left: 1rem; }
b, strong { font-weight: bold; }

#nav_download { list-style-type: none; }

.page_contents { }
.responsive { max-width: 100%; height: auto; }

.landing_logo img { height: 50px; margin-left: 7px; }
.nav_placeholder { width: 100%; text-align: center; }
.navbar { padding: 0; }
.navbar .navbar-brand { margin-right: 0; }
.navbar_filler { width: 54px; }
.navbar.wt-border { border-bottom: 1px solid #DDD !important; }

.zoisadfi .terms_acknowledgement { font-size: smaller; color: #999999; margin-bottom: 20px; text-align: center; }

.signup_button { margin-left: -3px; }
.footer.minimal { background: transparent; padding: 10px; }
.footer .footer_2 { margin-top: 10px; font-size: smaller; }
.footer .footer_2 a { color: #888888; }

/* cc - REF# 626482 */
#cc_box {
	background-color: rgba(20,20,20,0.9); min-height: 26px; font-size: 14px; color: #CCCCCC; line-height: 26px;
	padding: 8px 0; font-family: "Trebuchet MS",Helvetica,sans-serif; position: fixed; bottom: 0;
	left: 0; right: 0; display: none; z-index: 9999; text-align: center;
}
.cc_button { width: 175px; }
#cc_box a { color: #4B8EE7; text-decoration: none; margin-right: 30px; }
/* end cc */

.grid_outer {  }
.grid_inner { /* border: 1px solid #CCCCCC; */ }
/ * add padding between boxes and compensate for outside padding with matching negative margins * /
/ * ze|sm|md|lg|xl - REF# 821947 define gutter sizes for grid builder * /
.grid_ze { margin: 0px; }
.grid_ze .grid_outer { padding: 0px; }
.grid_sm { margin: -2.5px; }
.grid_sm .grid_outer { padding: 2.5px; }
.grid_md { margin: -5px; }
.grid_md .grid_outer { padding: 5px; }
.grid_lg { margin: -7.5px; }
.grid_lg .grid_outer { padding: 7.5px; }
.grid_xl { margin: -10px; }
.grid_xl .grid_outer { padding: 10px; }

/* make buttons larger */
/* todo: 200% on small? */
.form-check { padding: 0.2rem 0 0.2rem 1.25rem; }
.form-check-input { zoom: 150%; margin-left: -0.7rem; }
.form-check-label { margin-left: 0.7rem; }

#back-top { display: none; background-color: #F3CDDC; box-shadow: -2px 1px 7px rgb(151 34 78 / 70%); }

/* some nice box shadows - https://www.cssscript.com/elegant-box-shadows/ */
/*
.shadow-4 {box-shadow:0 1px 1px rgba(0,0,0,0.15),0 2px 2px rgba(0,0,0,0.15),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.15)}
.shadow-5 {box-shadow:0 1px 1px rgba(0,0,0,0.12),0 2px 2px rgba(0,0,0,0.12),0 4px 4px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.12),0 16px 16px rgba(0,0,0,0.12)}
.shadow-6 {box-shadow:0 1px 1px rgba(0,0,0,0.11),0 2px 2px rgba(0,0,0,0.11),0 4px 4px rgba(0,0,0,0.11),0 8px 8px rgba(0,0,0,0.11),0 16px 16px rgba(0,0,0,0.11),0 32px 32px rgba(0,0,0,0.11)}
.shadow-sharp {box-shadow:0 1px 1px rgba(0,0,0,0.25),0 2px 2px rgba(0,0,0,0.2),0 4px 4px rgba(0,0,0,0.15),0 8px 8px rgba(0,0,0,0.1),0 16px 16px rgba(0,0,0,0.05)}
.shadow-diffuse {box-shadow:0 1px 1px rgba(0,0,0,0.08),0 2px 2px rgba(0,0,0,0.12),0 4px 4px rgba(0,0,0,0.16),0 8px 8px rgba(0,0,0,0.2)}
.shadow-dreamy {box-shadow:0 1px 2px rgba(0,0,0,0.07),0 2px 4px rgba(0,0,0,0.07),0 4px 8px rgba(0,0,0,0.07),0 8px 16px rgba(0,0,0,0.07),0 16px 32px rgba(0,0,0,0.07),0 32px 64px rgba(0,0,0,0.07)}
.shadow-shorter {box-shadow:0 1px 1px rgba(0,0,0,0.11),0 2px 2px rgba(0,0,0,0.11),0 4px 4px rgba(0,0,0,0.11),0 6px 8px rgba(0,0,0,0.11),0 8px 16px rgba(0,0,0,0.11)}
.shadow-longer {box-shadow:0 2px 1px rgba(0,0,0,0.09),0 4px 2px rgba(0,0,0,0.09),0 8px 4px rgba(0,0,0,0.09),0 16px 8px rgba(0,0,0,0.09),0 32px 16px rgba(0,0,0,0.09)}
*/
/*
.shadow-5 {box-shadow:0 1px 1px rgba(184,41,95,0.12),0 2px 2px rgba(184,41,95,0.12),0 4px 4px rgba(184,41,95,0.12),0 8px 8px rgba(184,41,95,0.12),0 16px 16px rgba(184,41,95,0.12)}
.shadow-6 {box-shadow:0 1px 1px rgba(184,41,95,0.11),0 2px 2px rgba(184,41,95,0.11),0 4px 4px rgba(184,41,95,0.11),0 8px 8px rgba(184,41,95,0.11),0 16px 16px rgba(184,41,95,0.11),0 32px 32px rgba(184,41,95,0.11)}
.shadow-sharp {box-shadow:0 1px 1px rgba(184,41,95,0.25),0 2px 2px rgba(184,41,95,0.2),0 4px 4px rgba(184,41,95,0.15),0 8px 8px rgba(184,41,95,0.1),0 16px 16px rgba(184,41,95,0.05)}
.shadow-diffuse {box-shadow:0 1px 1px rgba(184,41,95,0.08),0 2px 2px rgba(184,41,95,0.12),0 4px 4px rgba(184,41,95,0.16),0 8px 8px rgba(184,41,95,0.2)}
.shadow-dreamy {box-shadow:0 1px 2px rgba(184,41,95,0.07),0 2px 4px rgba(184,41,95,0.07),0 4px 8px rgba(184,41,95,0.07),0 8px 16px rgba(184,41,95,0.07),0 16px 32px rgba(184,41,95,0.07),0 32px 64px rgba(184,41,95,0.07)}
.shadow-shorter {box-shadow:0 1px 1px rgba(184,41,95,0.11),0 2px 2px rgba(184,41,95,0.11),0 4px 4px rgba(184,41,95,0.11),0 6px 8px rgba(184,41,95,0.11),0 8px 16px rgba(184,41,95,0.11)}
.shadow-longer {box-shadow:0 2px 1px rgba(184,41,95,0.09),0 4px 2px rgba(184,41,95,0.09),0 8px 4px rgba(184,41,95,0.09),0 16px 8px rgba(184,41,95,0.09),0 32px 16px rgba(184,41,95,0.09)}
*/

/* social media icons
	see: https://www.templatemonster.com/blog/how-to-add-social-media-icons-website/
*/
.social-wrapper .list-unstyled {
	padding-left: 0;
	list-style: none;
}
.social-wrapper .list-inline li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 10px;
}

.social-icons .fa { font-size: 1.8em; }

.social-icons .fa {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	color: rgba(255, 255, 255, 0.8);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#footer_navbar .social-icons .fa { width: 40px; height: 40px; line-height: 40px; }
#footer_navbar ul.social-icons { margin-bottom: 0; }

.social-icons.icon-circle .fa { border-radius: 50%; }

.social-icons .fa:hover, .social-icons .fa:active {
	color: #FFF;
	-webkit-box-shadow: 1px 1px 3px #333;
	-moz-box-shadow: 1px 1px 3px #333;
	box-shadow: 1px 1px 3px #333;
}

.social-icons .fa-youtube,.social-icons .fa-youtube-play,.social-icons .fa-youtube-square { background-color: #C52F30; }
.social-icons .fa-facebook,.social-icons .fa-facebook-square { background-color: #3C599F; }
.social-icons .fa-instagram { background-color: #A1755C; }
.social-icons .fa-pinterest,.social-icons .fa-pinterest-square { background-color: #CC2127; }
.social-icons .fa-twitter,.social-icons .fa-twitter-square { background-color: #32CCFE; }

.social-wrapper ul, .social-wrapper li { margin-left: 0; }

/* end social media icons */


/* LANDING PAGES */
.page_contents.lp { }

/* hero image and text */
.hero {
	position: relative;
	width: 100vw;
	height: 40vh;
	/* width: 100vw; */
	/* height: 100vh; */
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
}

/* REF# 743983 */
.hero.hero_header_offset_full { margin-top: 61px; }
.hero.hero_header_offset_logo { margin-top: 61px; }
.header_offset_full { margin-top: 61px; height: 61px; }
.header_offset_logo { margin-top: 61px; height: 61px; }


/*@media screen and (orientation: landscape) {*/
/* TODO: landscape vs portrait? */
/* TODO: min height? like for laptops? */
/*
.mw_xs { max-width: 360px; }  / * col * /
.mw_sm { max-width: 576px; }  / * col-sm * /
.mw_md { max-width: 768px; }  / * col-md * /
.mw_lg { max-width: 992px; }  / * col-lg * /
.mw_xl { max-width: 1200px; } / * col-xl * /
*/
@media only screen and (min-width: 320px) {
/*
	.hero { height: 40vh; }
*/
	.hero { height: 70vh; }
}
@media only screen and (min-width: 576px) {
/*
	.hero { height: 55vh; }
*/
	.hero { height: 80vh; }
}
@media only screen and (min-width: 768px) {
/*
	.hero { height: 70vh; }
*/
	.hero { height: 85vh; }
}
@media only screen and (min-width: 992px) {
/*
	.hero { height: 85vh; }
*/
	.hero { height: 90vh; }
}
@media only screen and (min-width: 1200px) {
/*
	.hero { height: 100vh; }
*/
	.hero { height: 100vh; }
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	filter: brightness(60%);
}
.hero-content {
	position: relative;
	font-family: "Monserrat", sans-serif;
	text-align: center;
	margin: 0.625rem;
}
.hero-content header {
	/*-webkit-text-stroke: 0.5px #FFFFFF;*/
}
.hero-title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 0;
}
.hero-subtitle {
	font-size: 2rem;
	font-weight: 200;
	margin-top: 1rem;
}
.hero-button {
	background-color: #ae2d59;
	color: white;
	border: 1px solid #cb376a;
	margin-top: 5rem;
	padding: 0.9375rem 1.875rem;
	font-family: "Monserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 200;
	cursor: pointer;
}
.hero-button:hover {
	background-color: #cb376a;
	border: 1px solid #db7598;
}
/* hero image and text */

.zoisadfi #cta_modal { margin-top: 10%; }
.zoisadfi #cta_modal .download_alert { padding: 10px; margin-bottom: 0; border-radius: 0;
	font-family: 'Open Sans'; font-size: 14px; line-height: 23px;
}
.zoisadfi #cta_modal .download_alert h2 { display: none; }
.zoisadfi #cta_modal .modal-body { padding: 0; }

/* .zoisadfi .hero-content header { text-shadow: -1px 3px 4px #777777; color: #AE2D59; } */
.zoisadfi .hero-content header { text-shadow: -1px 3px 4px #111111; color: #FBEEF3; }
.zoisadfi .hero-content header .heading { font-size: calc(24px + 2vw); }
.zoisadfi .hero-content header .subtitle { font-size: calc(14px + 1vw); line-height: calc(14px + 1vw); margin-top: 1.5rem; }

/*
.zoisadfi .hero-content {
	background-color: rgba(255, 255, 255, 0.50);
	box-shadow: 0 2px 5px 2px rgb(0 0 0 / 40%);
	padding: 5%;
	border-radius: 10px;
}
*/

.zoisadfi .hero-content {
    background-color: rgba(225, 140, 170, 0.25);
    box-shadow: 0 2px 5px 2px rgb(0 0 0 / 40%);
    padding: 8% 3%;
    border-radius: 10px;
    border: 2px solid #E691B0;
}

@media only screen and (min-width: 800px) {
	.zoisadfi .hero-content { max-width: 75%; }
}


/*  */
.zoisadfi .cta_button_outer { text-align: center; }
.zoisadfi .cta_button_outer .hero-button { margin: 10px auto; }

.zoisadfi .section {
	padding: 5px 20px; border: 1px solid #E691B0;
	box-shadow: 0 1px 1px rgba(184,41,95,0.15),0 2px 2px rgba(184,41,95,0.15),0 4px 4px rgba(184,41,95,0.15),0 8px 8px rgba(184,41,95,0.15);
	background: linear-gradient(to bottom right, #E1FEFF, #F7F5FC, #FFEAF5);
}
.zoisadfi .section strong { color: #3394FF; line-height: 1.5em; }
.zoisadfi .section strong:nth-child(odd) { color: red; line-height: 1.5em; }
.date_plan_view .activities_summary .row { background: #F0F0F0; }

.zoisadfi .section.section_background { }
.zoisadfi .section.section_image { background: #FFFFFF; padding: 0; margin-bottom: -4px; }

.video-container { position: relative; padding-bottom: 68%; height: 0; overflow: hidden; margin: 0 -20px; }
.video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

@media only screen and (min-width: 400px) {
	.video-container {
		padding-bottom: 56.25%;
		width: 100%;
		max-width: 100%;
		margin: 0;
	}
}

/* END LANDING PAGES */




/* RESOURCES PAGE */

.page_contents.resources { padding-top: 10px; }
.resources_heading { font-size: 18px; text-align: center; }
@media only screen and (min-width: 500px) {
	.resources_heading { font-size: 24px; }
}
@media only screen and (min-width: 800px) {
	.resources_heading { font-size: 30px; }
}


.resource_button { width: 100%; max-width: 500px; margin-bottom: 10px; }

.overview_list { margin: 10px 0 20px 0; }
.overview_item { padding: 4px 0; }
.buttons_1 { padding-top: 10px; }
.buttons_2 { padding-top: 4px; }

@media only screen and (min-width: 992px) {
	.buttons_1 { padding-top: 19px; }
	.buttons_2 { padding-top: 4px; }
}
@media only screen and (min-width: 1200px) {
	.buttons_1 { padding-top: 34px; }
	.buttons_2 { padding-top: 4px; }
}

/* END RESOURCES PAGE */



/* END CUSTOM STYLES */
