/*
Theme Name: Annemarie Theme
Version: 1.0
Author: Fanatiek media
Author URI: https://fanatiekmedia.nl/
*/

/***************************
          FONT
***************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/***************************
          GENERAL
***************************/

body {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	color: #4A4A49;
	font-weight: 300;
	font-size: 17px;
}

html {
	font-size: 100%;
	width: 100%;
	font-weight: 300;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #94295A;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #94295A;
	text-decoration: underline;
}

strong, b {
	font-weight: 600;
}

p {
	margin: 0 0 20px;
	line-height: 150%;
}

ul {
	margin: 0 0 20px;
	padding: 0 0 0 30px;
}

ul ul {
	margin: 0;
}

ul li, ol li {
	line-height: 150%;
}

.page-content ul {
	list-style-type: none;
}

.page-content ul li {
	position: relative;
}

.page-content ul li:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: #F7A600;
	left: -20px;
	top: 8px;
	position: absolute;
}

.page-content .list ul {
	list-style-type: disc;
}

.page-content .list li:before {
	display: none;
}

.page-content .inline-form ul {
	list-style-type: none;
	padding: 0;
}

.page-content .inline-form ul li:before {
	display: none;
}

.page-content .woocommerce ul {
	list-style-type: none;
}

.page-content .woocommerce li:before {
	display: none;
}

.page-content .woocommerce .wc_payment_method:before {
	display: none !important;
}

blockquote {
	background: #ffe6f2;
	padding: 20px 20px 5px;
	margin: 0 0 20px 0;
	font-style: italic;
}

blockquote p {
	margin: 0 0 15px 0;
}

.btn, 
.button,
.inline-btn a,
input[type="submit"] {
	background-color: #A3195B;
	color: #fff;
	display: inline-block;
	padding: 10px 25px;
	position: relative;
	border: 0px solid;
	cursor: pointer;
	line-height: 120%;
	margin: 0 0 5px 0;
	width: auto;
	border-radius: 25px;
	font-size: 17px;
	transition: all 0.3s ease;
}

.inline-btn.center {
	text-align: center;
}

.btn:hover, 
.btn:focus, 
.button:hover, 
.button:focus,
.inline-btn a:hover,
.inline-btn a:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background-color: #740b3d;
	transition: all 0.3s ease;
	color: #fff;
	text-decoration: none;
}

.more-info {
	background-image: url('./assets/images/arrow-right-orange.svg');
	background-position: right 0 center;
	background-repeat: no-repeat;
	display: inline-block;
	padding: 0px 30px 0 0;	
	font-weight: bold;
}

input, textarea {
	background-color: #f1f1f1;
	border: 0px solid;
    padding: 10px 15px;	
    width: 100%;
	font-weight: 300;
    border-radius: 3px;
    margin: 0 0 10px 0;
	font-family: 'Poppins', sans-serif;
	color: #4A4A49;
}

input:focus, textarea:focus {
	outline: none;
}

[type="checkbox"], [type="radio"] {
	border-radius: 0px;
	display: inline-block;
	width: auto;
	margin: 0 10px 0 0;
}

textarea {
	height: 150px;
}

select {
	border-color: #d9d9d9;
	font-family: 'Poppins', sans-serif;
	padding: 5px 15px;
}

.container {
	max-width: 1120px;
	margin: 0 auto;
    padding: 0 15px;	
}

.container.small {
	max-width: 860px;
}

.aligncenter {
	margin: 0 auto;
	display: block;
}

@media only screen and (min-width:768px) {
	
	body {
		font-size: 18px;
	}
	
	.container {
		padding: 0 30px;
	}

	.alignleft {
		float: left;
		margin: 0 15px 15px 0;
	}
	
	.alignright {
		float: right;
		margin: 0 0 15px 15px;
	}

}

/* stop stacking issues */
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* use box-sizing: border-box */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade {
	opacity:0;
	-webkit-animation:fadeIn ease-in 1; 
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
	-webkit-animation-duration:2s;
	-moz-animation-duration:2s;
	animation-duration:2s;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

/***************************
          COLUMNS
***************************/

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row.small-padding {
	margin-left: -8px;
	margin-right: -8px;
}

.row.align-middle {
	align-items: center;
}

.row.align-bottom {
	align-items: flex-end;
}

.row.justify-center {
	justify-content: center;
}

.row.small-reverse {
	flex-direction: column-reverse;
}

.column {
	display: block;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.row.small-padding .column {
	padding-left: 8px;
	padding-right: 8px;
}

.small-1-2 {
	width: 50%;
}

.small-1-3 {
	width: 33.33334%;
}

@media only screen and (min-width:768px) {
	
	.row.small-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-reverse {
		flex-direction: row-reverse;
	}
	
	.row.medium-noreverse {
		flex-direction: row;
	}
	
	.row.medium-padding {
		margin-left: -20px;
		margin-right: -20px;
	}
		
	.row.medium-padding .column {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.row.large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.row.xlarge-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.xlarge-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.medium-1-5 {
		width: 20%;
	}

	.medium-1-4 {
		width: 25%;
	}
	
	.medium-1-3 {
		width: 33.33334%;
	}
	
	.medium-2-5 {
		width: 40%;
	}
	
	.medium-1-2 {
		width: 50%;
	}
	
	.medium-3-5 {
		width: 60%;
	}
	
	.medium-2-3 {
		width: 66.66666%;
	}
	
	.medium-3-4 {
		width: 75%;
	}
	
	.medium-4-5 {
		width: 80%;
	}

}

@media only screen and (min-width:1024px) { 
	
	.row.l-large-padding {
		margin-left: -30px;
		margin-right: -30px;
	}
		
	.row.l-large-padding .column {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.row.large-reverse {
		flex-direction: row-reverse;
	}
	
	.large-1-6 {
		width: 16.6666666667%;
	}
	
	.large-1-5 {
		width: 20%;
	}
	
	.large-1-4 {
		width: 25%;
	}
	
	.large-3-10 {
		width: 30%;
	}

	.large-1-3 {
		width: 33.33334%;
	}
	
	.large-35 {
		width: 35%;
	}
	
	.large-2-5 {
		width: 40%;
	}
	
	.large-45 {
		width: 45%;
	}
	
	.large-1-2 {
		width: 50%;
	}
	
	.large-3-5 {
		width: 60%;
	}
	
	.large-2-3 {
		width: 66.66666%;
	}
	
	.large-3-4 {
		width: 75%;
	}	
	
	.large-4-5 {
		width: 80%;
	}

}

@media only screen and (min-width:1300px) { 
	
	.row.xlarge-padding {
		margin-left: -40px;
		margin-right: -40px;
	}
		
	.row.xlarge-padding .column {
		padding-left: 40px;
		padding-right: 40px;
	}
	
}



/***************************
		   HEADINGS
***************************/

h1, h2, h3, h4, h5 {
	margin: 0 0 15px 0;
	padding: 0;
	color: #94295A;
	font-weight: 600;
	line-height: 120%;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 20px;
}

h2.block-title {
	border: 0px;
	border-bottom-width: 2px;
	border-style: solid;
	padding: 0 0 10px;
	margin: 0 0 25px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 17px;
}

@media only screen and (min-width:768px) { 

h1 {
	font-size: 30px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}
	
}

/***************************
    HEADER & NAVIGATION
***************************/

.header {
	background: #fff;
}

.header-top {
	background-color: #F7A600;
	padding: 10px 0;
	position: relative;
	z-index: 999;
	color: #fff;
	line-height: 100%;
}

.header-top .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
}

.header-top .contact {
	display: inline-block;
	font-size: 16px;
}

.header-top .contact .phone {
	background-image: url('./assets/images/phone.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	color: #fff;
	font-weight: 600;
	padding: 2px 0 2px 20px;	
}

.header-top .contact .phone:hover {
	text-decoration: none;
}

.header-top .socials {
	display: inline-block;
}

.header-top .socials a {
	display: inline-block;
	margin: 0 0 0 10px;
}

.header-top .socials a svg {
	width: 16px;
	height: 16px;
	fill: #A3195B;
}

.header-top .socials a:hover {
	transform: scale(1.2);
}

.header-main {
	background: #fff;
	position: relative;
	z-index: 999;	
	padding: 15px 0 0;
}

.header-main.landing {
	padding: 15px 0;
}

.header-logo {
	max-width: 180px;
}

.header-logo img {
	display: block;
}

.header-nav-cart {
	background-color: #F7A600;
	position: absolute;
    width: 42px;
    height: 42px;
	text-align: center;
	padding: 15px 0;
	top: 26px;
	right: 59px;
}

.header-nav-cart span {
	display: inline-block;
	background-image: url('./assets/images/shopping-cart.svg');
	background-repeat: no-repeat;
    background-size: 24px 18px;
    width: 24px;
    height: 18px;
	margin: 3px 12px 0 0;
	position: relative;
	display: inline-block;
}

.header-nav-cart span i {
	position: absolute;
	right: -12px;
	top: -12px;
	background: #702283;
	color: #fff;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: inline-block;
	text-align: center;
	font-style: normal;
	font-size: 14px;
    letter-spacing: -1px;
    padding: 4px 0;
}

.header-main .agenda {
	background-image: url('./assets/images/agenda.svg');
	background-position: left 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	background-color: #A3195B;
	padding: 10px 10px 10px 30px;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	top: 20px;
	right: 15px;
	height: 42px;
	border-radius: 20px;
}

.header-main .agenda span {
	display: none;
}

.header-main .agenda:hover {
	transform: scale(1.05);
	text-decoration: none;
}

.header-nav {
	width: 100%;
	top: 0;
	z-index: 99;
	position: relative;
	transition: all 0.3s ease;
}

.header-nav .container {
	padding: 0;
}

.site-menu {
	display: block;
	width: 100%;
	position: absolute;
	top: -100%;
	background: #F7A600;
	margin: 0;
	padding: 15px;
	list-style-type: none;
    transition: ease-in 0.3s all;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);	
}

.show-nav .site-menu {
	display: block;
	width: 100%;
	height: auto;
	top: 100%;
	transition: ease-in 0.6s all;
    -webkit-transform: translateY(0);
    transform: translateY(0);	
}

.site-menu ul {
	margin: 0;
	padding: 0px;
    list-style: none;
}

.site-menu ul li {
	line-height: 100%;
}

.site-menu ul li a {
	color: #fff;
	display: block;
	font-weight: 300;
	padding: 8px 0;
	font-size: 17px;
}

.site-menu ul li .sub-menu {
	margin: 0 0 2px 0;
}

.site-menu ul li .sub-menu li {
	padding-left: 10px;
}

.site-menu ul li .sub-menu li a {
	font-size: 15px;
}

.toggle-nav {
	background: #fff;
    display: inline-block;
    position: relative;
    border: 0px;
    width: 100%;
    color: #A3195B;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    height: 50px;
    outline: 0;
    margin: 0;
    padding: 5px 15px 5px 15px;
    text-align: left;
    z-index: 999;
}

.toggle-nav:focus {
	outline: none;
}

.toggle-nav:before {
	content: '';
	background-image: url('./assets/images/menu-icon.svg');
	background-size: 30px 18px;
	background-repeat: no-repeat;
	background-position: center center;
	width: 34px;
	height: 25px;
	display: inline-block;
    margin: 0 5px -6px 0;
	transition: all 0.6s ease;
}

.show-nav .toggle-nav:before {
	background-image: url('./assets/images/menu-icon-close.svg');
	background-size: 24px 24px;	
}

.header-nav .nav-logo {
	display: none;
	width: 135px;
	position: absolute;
	top: 5px;
	left: 30px;
	transition: all 0s ease;
	z-index: 99;
}

.header-nav .nav-logo a img {
	width: 100%;
	display: block;
}

.header-nav.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.header-nav.sticky + .header-nav-after {
	padding-top: 50px;	
}

@media only screen and (min-width:768px) {
	
	.header-top {
		padding: 15px 0;
	}
		
	.header-top .container {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;	
	}
	
	.header-top .contact {
		margin: 0 0 0 40px;
	}
	
	.header-top .socials {
		margin: 0 0 0 40px;
	}

	.header-logo {
		max-width: 250px;
	}
	
	.toggle-nav {
		padding: 5px 30px;
	}
	
	.site-menu {
		padding: 15px 30px;
	}
	
	.header-nav-cart {
	    width: 50px;
	    height: 50px;
		padding: 15px 0;
		top: 30px;
		right: 170px;
	}
	
	.header-nav-cart span {
		background-size: 29px 22px;
	    width: 29px;
	    height: 22px;
		margin: 3px 12px 0 0;
	}
	
	.header-main .agenda {
    	background-position: left 20px center;
    	padding: 6px 20px 6px 45px;
    	top: 30px;
    	right: 15px;
    	height: auto;
	}
	
	.header-main .agenda span {
		display: inline;
	}
	
}


@media only screen and (min-width:783px) {

	.admin-bar .header-nav.sticky {
		top: 32px;
	}

}



@media only screen and (min-width:1100px) {
	
	.header-top .contact {
		margin: 0 0 0 50px;
	}
	
	.header-top .socials {
		margin: 0 0 0 50px;
	}
	
	.header-main {
		padding: 15px 0;
		height: 45px;
	}
	
	.header-main.landing {
		height: auto;
	}
	
	.header-main .container {
		position: relative;
	}
	
	.header-logo {
		max-width: 230px;
		position: absolute;
		top: 0;
		left: 30px;
	}
	
	.header-main.landing .header-logo {
		position: relative;
		left: auto;
		top: auto;
		padding: 10px 0;
	}
	
	.header-nav-cart {
		top: 25px;
	}
	
	.header-main .agenda {
		top: 0px;
		right: 30px;
	}

	.header-nav {
		background: #fff;
		padding: 0;
		height: 50px;
	} 
	
	.header-nav .container {
		padding: 0 30px;
		height: 50px;
		position: relative;
	}
	
	.site-menu { 
		background: transparent;
		position: relative;
		width: 100%;
		height: 50px;
		display: inline-block;
		top: auto;
		left: auto;
		z-index: 1;
		padding: 0px;
	    -webkit-transform: translateY(0);
	    transform: translateY(0);
	    transition: ease-in 0.0s all;	
		text-align: right;	
	}
	
	.show-nav .site-menu {
		padding: 0;
		transition: ease-in 0.0s all;
		-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
		box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
	
	}
	
	.site-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
	    display: inline-block;
	}
	
	.site-menu ul li {
		display: inline-block;
		position: relative;
		float: left;
		margin: 0 0 0 18px;
	}
	
	.site-menu ul li a {
		display: inline-block;
		padding: 16px 0;
		font-size: 18px;
		color: #4A4A49;
	}
	
	.site-menu ul li:hover a  {
		color: #A3195B;
		text-decoration: none;
	}
	
	.site-menu ul .current-menu-item a, .site-menu ul .current-menu-parent a  {
		color: #A3195B;
	}
	
	.site-menu .sub-menu {
	    display: none;
	    position: absolute;
	    background: #F7A600;
	    -webkit-transition: 500ms ease all;
	    transition: 500ms ease all;
	    left: -25px;
	    z-index: 999;
	    padding: 15px;
	    width: 260px;
		text-align: left;
	}
	
	.site-menu ul li:hover .sub-menu li {
		display: block;
		padding: 0;
	}
	
	.site-menu ul li .sub-menu li {
		display: block;
	    margin: 0;
	    width: 100%;
	}
	
	.site-menu ul li .sub-menu li a {
		font-size: 16px;
		width: 100%;
		padding: 7px 10px;
		color: #fff;
		display: block;
		font-weight: 300;
	}
	
	.site-menu ul li .sub-menu .current-menu-item a {
	    color: #A3195B;
	}
	
	.site-menu ul li .sub-menu li:hover a {
	    color: #A3195B;
	}
	
	.site-menu ul li .sub-menu li:after {
		display: none;
	}	
	
	.site-menu ul li:hover .sub-menu {
		display: block;
	}
	
	.toggle-nav {
		display: none;
	}
	
	.header-nav .nav-logo {
		display: block;
		opacity: 0;
		visibility: hidden;
	}
	
	.header-nav.sticky .nav-logo {
		transition: all 0s ease;
	}
	
	.header-nav.scroll .nav-logo {
		display: block;
		visibility: visible;
		opacity: 1;
		transition: all 0.3s ease;
	}

}

@media only screen and (min-width:1200px) {
	
	.site-menu ul li {
		margin: 0 0 0 23px;
	}
	
}

/***************************
       PAGE 
***************************/

.main {
	min-height: calc(100vh - 250px);
}

.page-top {
	background-color: #a3185b;
	height: 100px;
	padding: 10px 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
}

.page-top .inner {
	display: block;
	width: 100%;
}

.page-top h1, 
.page-top .alt-title {
	margin: 0;
	padding: 0 0 7px 0;
	width: auto;
	display: inline-block;
	color: #fff;
	line-height: 120%;
	border-bottom: 2px solid #fff;
	font-size: 24px;
}

.page-top h1 span {
	text-transform: lowercase;
}

.page-top .inner p {
	margin: 10px 0 0;
	color: #fff;
	font-size: 1.2em;
}

.page-top .inner .back {
	font-size: 1em;
}

.page-top .inner a {
	color: #fff;
}

.page-content {
	padding: 30px 0 15px;
}

.page-content.ws-top {
	padding: 30px 0 1px;
}

.page-content.ws-bottom {
	padding: 0 0 15px;
}

.page-content.ws-none {
	padding: 0 0 1px;
}

.page-content.bg-lightyellow {
	background-color: #FEF1D8;
}

.page-content.bg-yellow {
	background-color: #F7A600;
	color: #fff;
}

.page-content.bg-darkpink {
	background-color: #a3185b;
	color: #fff;
}

.page-content.bg-darkpink h1,
.page-content.bg-darkpink h2,
.page-content.bg-darkpink h3,
.page-content.bg-darkpink h4 {
	color: #fff;
}

.page-content .inline-block {
	background-color: #FEF1D8;
	padding: 20px 20px 1px;
	margin: 0 0 20px;
}

.page-content.bg-lightyellow .inline-block {
	background-color: #fff;
}

.page-content .calendly-inline-widget {
	margin: 0 -20px;
}

.page-content .pdf-view {
	width: 100%;
	height: 500px;
	margin: 0 0 20px;
}

.block-reviews ul {
	list-style-type: none;
	padding: 0;
}

.block-reviews ul li:before {
	display: none;
}

.block-reviews ul li {
	padding: 0 0 10px;
}

.block-reviews ul li .text {
	background-color: #FEF1D8;
	padding: 20px;
	margin: 0 0 10px;
}

.block-reviews.bg-lightyellow ul li .text {
	background-color: #fff;
}

.block-reviews ul li .name {
	color: #94295A;
}

.block-reviews.block-reviews-slider h2.block-title {
	border: 0px;
	text-align: center;
	padding: 0;
}

.block-reviews .block-reviews {
	text-align: center;
}

.block-reviews .reviews-slider {
	padding: 0 0 10px;
}

.block-reviews .reviews-slider .slick-track {
    display: flex;
}

.block-reviews .reviews-slider li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	height: inherit;
}

.block-reviews .reviews-slider li .text {
	text-align: center;
	background-color: transparent;
	padding: 0;
	width: 100%;
}

.block-reviews .reviews-slider li .name {
	text-align: center;
	width: 100%;
}

.block-reviews .reviews-slider .slick-dots {
	margin:0;
	padding:0;
	list-style-type:none;
	text-align:center;
	position:absolute;
	bottom: 0;
	width:100%;
}

.block-reviews .reviews-slider .slick-dots li {
	display:inline-block;
}

.block-reviews .reviews-slider .slick-dots li button{
	width:14px;
	height:14px;
	border:2px solid #fff;
	display:inline-block;
	margin:0 2px;
	padding:0px;
	border-radius:10px;
	opacity:.5;
	font-size:0px;
	line-height:0;
	background:0 0;
	outline:none;
	cursor: pointer;
}

.block-reviews .reviews-slider .slick-dots  li.slick-active button{
	background:#fff;
	opacity:1;
}

.block-blocks .column {
	padding-bottom: 20px;
}

.block-blocks .item {
	text-decoration: none;
	display: block;
	border: 2px solid #F7A600;
	height: 100%;
	color: #4A4A49;
}

.block-blocks .item .figure {
	display: block;
	padding-bottom: 100%;
	background-color: #F7A600;
	position: relative;
}

.block-blocks .item .circle {
	position: absolute;
	z-index: 1;
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	background-color: #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.block-blocks .item h3 {
	position: absolute;
	top: 50%;
	left: 0%;
	width: 100%;
	z-index: 2;
	text-align: center;
	margin: 0;
	transform: translate(0,-50%);
	font-size: 26px;
	padding: 0 20%;
	transition: all 0.3s ease;
}

.block-blocks .item .next {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #94295A;
    background-image: url(./assets/images/next.svg);
    background-repeat: no-repeat;
    background-size: 11px 12px;
    background-position: left 7px center;
    border-radius: 50%;
    bottom: 15px;
    right: 15px;
    transition: all 0.3s ease;
	z-index: 3;
}

.block-blocks .item .text {
	padding: 15px;
}

.block-blocks .item .next:hover {
	transform: scale(1.1);
}

.block-blocks .item:hover .circle {
	transform: scale(1.05);
}

.block-blocks .item:hover h3 {
	transform: translate(0,-50%) rotate(-5deg);
}


.block-lessons .lesson {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	background-color: #fff;
	margin: 0 0 30px;
	padding: 15px;
}

.block-lessons .lesson.future {
	opacity: 0.5;
}

.block-lessons .lesson .image {
	width: 100%;
	padding: 0 0 20px;
}

.block-lessons .lesson .image img {
	display: block;
}

.block-lessons .lesson .content {
	flex: 1;
	align-self: center;
}

.block-lessons .lesson .content p {
	margin: 0;
}

.block-lessons .lesson:hover {
	background-color: #F7A600;
}

.block-image-full {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

.block-image-full .image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.block-image-full .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media only screen and (min-width:768px) { 
	
	.page-top {
		height: 120px;
		padding: 20px 0;
	}
	
	.page-content {
		padding: 40px 0 25px;
	}
	
	.page-content.ws-top {
		padding: 40px 0 1px;
	}
	
	.page-content.ws-bottom {
		padding: 0 0 25px;
	}
	
	.page-content.ws-none {
		padding: 0 0 1px;
	}
	
	.block-reviews ul {
		column-count: 2;
		column-gap: 30px;
		break-inside: avoid-column;
    	page-break-inside: avoid;
	}
	
	.block-reviews ul li {
		page-break-before: avoid;
    	page-break-inside: avoid;
    	page-break-after: always;
	}	
	
	.block-reviews .reviews-slider .slick-dots {
		column-count: unset;
	}
	
	.block-reviews .reviews-slider {
		column-count: unset;
	}
	
	.block-blocks .item h3 {
		font-size: 20px;
	}
	
	.block-lessons .lesson {
		padding: 20px;
	}
	
	.block-lessons .lesson .image {
		width: 150px;
		padding: 0 20px 0 0;
	}
	
	.block-image-full {
		height: 350px;
	}

}

@media only screen and (min-width:1024px) { 
	
	.page-top {
		height: 150px;
	}
	
	.page-top h1, 
	.page-top .alt-title {
		font-size: 30px;
	}
	
	.page-content .inline-block {
		padding: 30px 30px 10px;
	}
	
	.page-content .pdf-view {
		height: 650px;
	}
	
	.block-reviews ul li .text {
		padding: 30px;
	}
	
	.block-blocks .item h3 {
		font-size: 28px;
	}
	
	.block-blocks .item .text {
		padding: 25px;
	}
	
	.block-blocks .item .next {
    	width: 34px;
    	height: 34px;
    	background-size: 16px 17px;
    	background-position: left 10px center;
    	bottom: 20px;
    	right: 20px;
	}
	
	.block-lessons .lesson {
		padding: 30px;
	}
	
	.block-lessons .lesson .image {
		width: 200px;
		padding: 0 30px 0 0;
	}
	
	.block-image-full {
		height: 400px;
	}

}

@media only screen and (min-width:1200px) {
	
	.block-blocks .item h3 {
		font-size: 30px;
	}
	
}

/***************************
           HOME 
***************************/

.home-top {
	position: relative;
}

.home-slider {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.home-slider li .image {
	width: 100%;
	height: 250px;
	position: relative;
}

.home-slider li .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-top .inner {
	position: absolute;
	width: 100%;
	bottom: 10px;
	z-index: 2;
}

.home-top .inner h1 {
	margin: 0;
}

.home-top .inner h1 span {
	background-color: #F7A600;
	color: #fff;
	display: inline-block;
	padding: 5px 15px;
}

.home-top .inner p span {
	background-color: #94295A;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	padding: 5px 15px;
}

@media only screen and (min-width:768px) { 
	
	.home-slider li .image {
		height: 350px;
	}
	
	.home-top .inner {
		bottom: 20px;
	}
	
}

@media only screen and (min-width:1024px) { 

	.home-slider li .image {
		height: 400px;
	}
		
}

@media only screen and (min-width:1600px) { 

	.home-slider li .image {
		height: 450px;
	}
		
}


/***************************
       	BLOG ARCHIVE
***************************/

.post-archive .filters {
	margin: 0 0 20px;
}

.post-archive .filters .label {
	display: inline-block;
	margin: 0 20px 0 0;
}

.post-archive .filters .facetwp-facet {
	display: inline;
}

.post-archive .filters .facetwp-facet .facetwp-checkbox {
	background-image: url('./assets/images/unchecked.svg');
	background-size: 16px 16px;
	background-position: left 15px center;
    padding: 8px 20px 8px 40px;
    margin: 0 10px 5px 0;
    color: #fff;
    position: relative;
    display: inline-block;
    background-color: #F7A600; 
    border-radius: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.post-archive .filters .facetwp-facet .facetwp-checkbox:hover {
	opacity: 0.7;
}

.post-archive .filters .facetwp-facet .facetwp-checkbox.checked {
	background-image: url('./assets/images/checked.svg');
	opacity: 1;
	color: #fff;
}

.post-archive .filters .facetwp-facet .facetwp-checkbox .facetwp-counter {
	display: none;
}

.post-loop .column {
	padding-bottom: 30px;
}

.post-loop .item {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #4A4A49;
	flex-direction: column;
}

.post-loop .item .image {
	display: block;
	background-color: #a3185b;
	width: 100%;
	overflow: hidden;
	margin: 0;
	flex: none;
}

.post-loop .item .image img {
	width: 100%;
	display: block;
	margin: 0;
	transition: all 0.3s ease;
}

.post-loop .item .inner {
	padding: 15px 15px 45px 15px;
	border: 2px solid #C9C9C8;
	position: relative;
	width: 100%;
	display: block;
	flex: 1 1 auto;
}

.post-loop .item .inner h2 {
	font-size: 18px;
	color: #4A4A49;
	font-weight: 600;
}

.post-loop .item .inner p {
	margin: 0;
}

.post-loop .item .inner .next {
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #4A4A49;
	background-image: url('./assets/images/next.svg');
	background-repeat: no-repeat;
	background-size: 11px 12px;
	background-position: left 7px center;
	border-radius: 50%;
	bottom: 15px;
	right: 15px;
	transition: all 0.3s ease;
}

.post-loop .item:hover .image img {
	opacity: 0.8;
}

.post-loop .item:hover .inner h2 {
	color: #a3185b;
}

.post-loop .item:hover .inner .next {
	background-color: #a3185b;
}

.post-loop .item .inner .next:hover {
	transform: scale(1.1);
}

.post-content .image {
	display: block;
	position: relative;
	margin: 0 0 20px;
}

.post-content .image img {
	width: 100%;
	display: block;
}

.post-content .share {
	padding: 10px 0;
}

.post-content .share a {
	display: inline-block;
	margin: 0 2px 10px 0;
	padding: 11px 0;
	text-align: center;
	width: 42px;
	height: 42px;
	line-height: 100%;
	color: #fff;
	border-radius: 0px;
	border-radius: 50%;
}

.post-content .share a:hover {
	transform: scale(1.1);
}

.post-content .share svg {
	width: 20px;
	height: 20px;
	display: inline-block;
	fill: #fff;
}

.post-content .share .facebook {
	background: #3a579a;
}

.post-content .share .whatsapp {
	background: #57e86f;
}

.post-content .share .twitter {
	background: #00abf0;
}

.post-content .share .linkedin {
	background: #3a579a;
}

.post-content .share .sendmail {
	background: #f7a600;
}

.post-content .widget {
	border: 2px solid #F7A600;
    padding: 20px 20px 1px;
	margin: 0 0 20px;
}

.post-content .widget ul {
	padding: 0 0 0 22px;
}

.post-content .widget ul a {
	color: #4A4A49;
}

@media only screen and (min-width:768px) { 
	
	.post-loop .item .inner {
		padding: 20px 20px 45px 20px;
	}
	
	.post-loop .item .inner h2 {
		font-size: 20px;
	}

}

@media only screen and (min-width:1024px) { 
	
	.post-content .widget {
		border: 2px solid #F7A600;
    	padding: 30px 30px 10px;
	}

}


/***************************
      POST NAVIGATION 
***************************/

.navigation ul {
	list-style: none;
	margin: 10px 0 30px 0;
	padding: 0;
	text-align: center;
}

.navigation ul li {
    display: inline-block;
    background: #F7A600;
    font-size: 14px;
    color: #702283;
}

.navigation ul li a {
	color: #702283;
    padding: 7px 15px;
    display: inline-block;
    font-weight: bold;
}

.navigation ul li:hover {
	background: #702283;
	color: #F7A600;
}

.navigation ul li.active {
	background: #702283;
	color: #F7A600;
}

.navigation ul li.active a {
	color: #F7A600;	
}

.navigation ul li:hover a {
	color: #F7A600;
	text-decoration: none;
}

/***************************
		   WIDGETS
***************************/

.sidebar .widget {
	background: #fff4e1;
	padding: 20px 20px 5px; 
	margin: 0 0 20px 0;
}

.sidebar .widget ul {
	list-style-type: none;
}

.sidebar .widget ul li {
	position: relative;
	line-height: 120%;
	padding: 3px 0;
}

.sidebar .widget ul li:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: #F7A600;
	left: -20px;
	top: 8px;
	position: absolute;
}

.sidebar .widget ul li a {
	color: #454545;
}

/***************************
	WOOCOMMERCE
***************************/

.woocommerce ul.products li.product:before {
	display: none;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	padding: 13px 20px;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background: #8cc163;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover {
	background: #8cc163;
	padding: 13px 20px;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
	background: #73a34e;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
	padding: 13px 20px;
	font-size: 18px;
	width: auto;
	display: inline-block;
}

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
	padding: 10px 8px;
}

.woocommerce div.product div.images {
	width: 100%;
}

.woocommerce div.product div.summary {
	width: 100%;
}

.woocommerce .woocommerce-product-gallery__image {
	border: 1px solid #e1e1e1;
}

.woocommerce div.product form.cart {
	margin: 0 0 20px;
}

.woocommerce div.product form.cart .variations {
	text-align: left;
}

.woocommerce div.product form.cart .variations select {
    background: #fff;
    line-height: 100%;
    height: 40px;	
	width: calc(100% - 1em);
}

.woocommerce div.product form.cart .reset_variations {
    display: inline-block;
    padding: 5px 0 0;
    line-height: 100%;
    float: right;
    margin-right: 1em;	
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: none;
}

.woo_discount_rules_variant_table, .woo_discount_rules_table {
	display: none;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 110px;
}

.woocommerce-info, .woocommerce-message {
	border-top-color: #a3185b;
}

.woocommerce-info::before, .woocommerce-message::before {
	color: #a3185b;
}

.woocommerce-info a {
	color: #a3185b;
}

#customer_details {
	margin: 0 0 25px 0;
}

.woocommerce table.shop_table {
	font-size: 16px;
}

.woocommerce table.shop_table th {
	font-weight: 600;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
	font-weight: 600;
}

.woocommerce ul#shipping_method .amount {
	font-weight: 600;
}

.woocommerce ul#shipping_method li {
	margin: 0;
}

.woocommerce-privacy-policy-text p {
	margin: 0 0 10px;
	font-size: 15px;
}

.woocommerce div.product .product_title {
	margin: 0;
}

.woocommerce .quantity .qty {
	padding: 12px 15px 11px;
    -webkit-appearance: none; 
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
	opacity: 1;
}

.woocommerce div.product form.cart .variations {
	margin: 0;
}

.woocommerce .woocommerce-variation {
	margin: -15px 0 15px 0;
}

.woocommerce .text-after-order-button {
	padding: 10px 0 0 0;
}

.woocommerce .text-after-order-button p {
	font-size: 15px;
}

.woocommerce ul.products li.product .price{ 
	color: #F7A600;
	font-weight: bold;
	font-size: 24px;
	margin: 0;
}


.woocommerce div.product p.price, .woocommerce div.product span.price {
	color: #F7A600;
	font-weight: bold;
	font-size: 24px;
	margin: 0;
}

.woocommerce div.product p.price {
	display: none;
}

.woocommerce div.product p.price.single {
	margin: 0 0 15px;
}

.woocommerce .woocommerce-variation-add-to-cart .price {
	display: none;
}

.woocommerce div.product .woocommerce-variation-add-to-cart p.price.single {
	margin: 0;
}

.woocommerce form .validate-required {
	margin: 0;
	padding-bottom: 10px;
	line-height: 100%;
}

.woocommerce form .validate-required p {
	line-height: 100%;
}

.woocommerce form .woocommerce-mailchimp-opt-in {
	line-height: 100%;
	margin: 0 0 20px 0;
}

.woocommerce form .woocommerce-mailchimp-opt-in .checkbox {
	line-height: 120%;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	float: left;
}

.woocommerce div.product form.cart .button {
	padding: 13px 40px;
}

.woocommerce .wdp_bulk_table_content {
	margin: 0 0 30px;
	display: block;
}

.woocommerce .wdp_pricing_table_caption {
	font-weight: bold;
	margin: 0 0 10px;
	color: #4A4A49;
}

.woocommerce .wdp_pricing_table_footer {
	display: none;
}

@media only screen and (min-width:768px) { 

	.woocommerce div.product div.images {
		width: 33.33334%;
		padding: 0 15px 0 0;
	}
	
	.woocommerce div.product div.summary {
		width: 66.666666%;
		padding: 0 0 0 15px;
	}

}

@media only screen and (min-width:1024px) { 

	.woocommerce div.product div.images {
		padding: 0 30px 0 0;
	}
	
	.woocommerce div.product div.summary {
		padding: 0 0 0 30px;
	}

}

/* Cart */

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.woocommerce .cross-sells {
	max-width: 600px;
}

/* Checkout */

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	line-height: 120%;
}

.woocommerce table.shop_table .cart_item .product-name {
	position: relative;
	padding-left: 40px;
}

.woocommerce table.shop_table .cart_item .product-name .quantity {
	display: inline-block;
	font-weight: normal;
}

.woocommerce table.shop_table .cart_item .product-name .product-quantity {
	font-weight: 300;
}

.woocommerce table.shop_table .cart_item .product-name a.remove {
	position: absolute;
	top: 10px;
	left: 12px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	margin: 0 0 20px;
}

.woocommerce .cancel-order {
	margin: 10px 0 0;
	font-size: 15px;
}

/* Thank You */

.woocommerce ul.woocommerce-thankyou-order-details {
	padding: 0;
}

/***************************
		   FORMS
***************************/

.gform_wrapper {
	margin: 0 0 25px 0;
}

.gform_fields {
	list-style-type: none;
	margin: 20px 0 10px;
	padding: 0;
}

.gfield {
	margin: 0 0 10px 0;
	display: block;
	width: 100%;
	padding: 0;
	border: 0px;
}

fieldset.gfield {
	padding: 0;
	border: 0px;
}

.gform_body .gfield:before, .gform_body .gfield_checkbox li:before {
	display: none;
}

.gfield_label {
	padding: 0 0 5px;
	display: block;
}

.hide-labels .gfield_label {
	display: none;
}

.gfield_checkbox, 
.gfield_radio {
	margin: 0;
	list-style-type: none;
	padding: 0;
	position: relative;
	padding: 0;
}

.gfield_checkbox .gchoice,
.gfield_radio .gchoice {
	line-height: 120%;
	position: relative;
	padding: 0px 0 10px 20px;
}

.gfield_checkbox [type="checkbox"],
.gfield_radio [type="radio"] {
	position: absolute;
	top: 3px;
	left: 0;
}

.gform_required_legend {
	display: none;
}

.validation_error,
.validation_message {
	font-size: 14px;
	font-weight: bold;
	color: #e03333;
	padding: 0;
	margin: 0;
}

h2.gform_submission_error {
	color: #e03333;
	font-size: 16px;
}

.gform_confirmation_message {
    background: #38da0f;
    color: #fff;
    padding: 10px;
    margin: 0.5em 0 25px;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}

.gfield:after {
	content: " ";
	display: table;
	clear: both;	
}

#gform_wrapper_2 {
	max-width: 500px;
}

#gform_2 .gfield_checkbox li {
	font-size: 14px;
}

/***************************
      Newsletter block
***************************/

.newsletterblock, .inline-form {
	background: #F5E7F9;
	padding: 20px 20px 10px;
}

.newsletterblock h2, .inline-form h2 {
	margin: 0 0 5px 0;
}

.newsletterblock p, .inline-form p {
	line-height: 120%;
	margin: 0 0 10px 0;
}

.newsletter-form ul {
	list-style-type: none;
	margin: 0 0 15px 0;
	padding: 0;
}

.newsletter-form ul li {
	font-size: 14px;
}

.newsletter-form ul li:before {
	display: none;
}

.newsletterblock-small input[type="text"] {
	background-color: #fff;
	width: 48%;
	float: left;
	margin: 0 2% 10px 0;
}

.newsletterblock-small input[type="email"] {
	background-color: #fff;
	width: 48%;
	float: right;
	margin: 0 0 10px 2%;
}

.newsletterblock-small .btn {
	padding-top: 5px;
	padding-bottom: 5px;
}

.newsletterblock-small ul {
	margin: 0 0 10px 0;
}

.newsletterblock-small ul li {
	font-size: 12px;
}

@media only screen and (min-width:768px) { 
	
.newsletterblock-small input[type="text"] {
	width: 31%;
	margin: 0 2% 10px 0;
}	

.newsletterblock-small input[type="email"] {
	width: 32%;
	float: left;
	margin: 0 2% 10px 1%;
}	
	
}

/***************************
      Icegram
***************************/

.icegram h4 {
	margin: 5px 0 10px;
	color: #F7A600;
}

.icegram .ig_action_bar .ig_data {
	padding-right: 1.4em;
}

/***************************
      Video Container
***************************/

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	border-radius: 0px;
	margin: 0 0 30px 0;
	z-index: 1;
	background-position: center center;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0px;
}

.video-container .playbutton {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-container .playbutton:hover {
	background-color: rgba(0,0,0,.2);
}

.video-container .playbutton .playicon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90px;
	height: 90px;
	background-image: url('./assets/images/playbutton.svg');
	background-size: 90px 90px;
	background-repeat: no-repeat;
	background-position: center center; 
	margin: -45px 0 0 -45px;
	transition: all 0.3s ease;
	outline: none;
}

.video-container .playbutton .playicon:hover {
	transform: scale(1.05);
}

/***************************
          FOOTER
***************************/

.footer  {
	background-image: url('./assets/images/tree.png'), url('./assets/images/grass.png');
	background-position: left bottom, left bottom;
	background-repeat: no-repeat, repeat-x;
	background-size: 170px, 137px;
	background-color: #2f343a;
	padding: 20px 0 30px;
	font-size: 17px;
}

.footer-main {
	margin: 0 0 30px;
}

.footer-main h3 {
	color: #fff;
	font-size: 22px;
	position: relative;
	padding: 0 0 10px;
	margin: 0 0 20px 0;
	border-bottom: 2px solid #fff;
}


.footer-main p {
	color: #fff;
}

.footer-main a {
	color: #fff;
}

.footer-main ul {
	list-style-type: none;
	padding: 0;
}

.footer-main form {
	margin: 0 0 25px 0;
	color: #fff;
}

.footer-main form input[type="text"], .footer-main form input[type="email"] {
	background-color: #f1f1f1;
}

.footer-main form ul li {
	color: #fff;
}

.footer-main form  input[type="submit"] {
	background-color: #A3195B;
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    position: relative;
    border: 0px solid;
    cursor: pointer;
    line-height: 120%;
    margin: 0 0 5px 0;
    width: auto;
    border-radius: 25px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.footer-main form  input[type="submit"]:hover,
.footer-main form  input[type="submit"]:focus {
    background-color: #740b3d;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
	padding: 20px 0 0 0;
}

.footer-bottom p {
	text-align: right;
	line-height: 120%;
	font-size: 15px;
	color: #c3c3c3;
}

.footer-bottom a {
	color: #c3c3c3;
}

.footer-bottom span {
	display: inline-block;
}

.footer-bottom .developer {
	font-size: 11px;
}

@media only screen and (min-width:768px) { 

	.footer  {
		background-size: 270px, 222px, 2px 100%;
		padding: 40px 0 70px;
	}
	
	.footer-main {
		margin: 0 0 50px;
	}

}

@media only screen and (min-width:102px) { 
	
	.footer  {
		background-size: 310px, 251px, 2px 100%;
		padding: 70px 0 100px;
	}	
	
	.footer-bottom {
		padding-top: 0px;
	}

}