/*----------------------------------------------------
	L'AMORE WEDDING TEMPLATE.

	Author:			theme_div
	Type:          	CSS
	Last Update:   	25.09.2018
	Primary color:	#ffd7d7 (pink)


	[Table of contents]
	1. General
		1.1 Animations
		1.2 Icons
	2. Utilities
	3. Hero
	4. Navigation
		4.1. Mobile navigation
	5. Intro
		5.1. Counter
	6. Story timeline
	7. Bridesmaids & Groomsmen
		7.1. Slider
	9. Location
	10. RSVP
	11. Memories
		11.1. Masonry
	12. Footer

----------------------------------------------------*/


/*============== 1. General ==============*/

*:focus {
	outline: none!important;
}

body {
	font-family: 'Montserrat', serif;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

h2, h3, h4, h5, h6 {
	margin-bottom: 30px;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 46px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

@media(min-width: 992px) {
	h2 {
		font-size: 60px;
	}
}

ul {
	margin: 0;
	padding: 0;
}

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

svg {
	max-width: 100%;
}

a{
	color: #ada077;
}

a:hover {
	color: #ada077;
}
a:focus {
	text-decoration: none;
}

/* 1.1 Animations */
@-webkit-keyframes pulse {
    0% {-webkit-transform: scale(0.2, 0.2); opacity: 0;}
    50% {opacity: 1;}
    100% {-webkit-transform: scale(1.5, 1.5); opacity: 0;}
}

.animation-pulse {
	animation: pulse 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

/* 1.2 Icons */
.icon {
	transition: color .4s ease;
}

.icon--sm {
	font-size: 20px;
	width: 20px;
	height: 20px;
	display: block;
}

.icon--md {
	font-size: 30px;
	width: 30px;
	height: 30px;
}

.icon--lg {
	font-size: 50px;
	width: 50px;
	height: 50px;
}

.icon--xl {
	font-size: 70px;
	width: 70px;
	height: 70px;
}

.icon--primary {
	color: #5d191a;
}

.icon--center {
	margin: 5px;
	display: block;
}

.icon--white {
	color: #fff;
}

.icon--black {
	color: #000;
}

.icon:hover {
	color: #5d191a;
}

/* fix for IE */
.icon--sm {
	width: 20px;
	height: 20px;
}

.icon--md {
	width: 30px;
	height: 30px;
}

.icon--lg {
	width: 50px;
	height: 50px;
}

.icon--xl {
	width: 70px;
	height: 70px;
}

.icon svg {
	fill: currentColor;
	display: block;
	width: 100%;
	height: 100%;
}

.icon .icon-inner {
	display: block;
	width: 100%;
	height: 100%;
}

.icon--center {
	margin: 0 auto;
	display: block;
}

@media(max-width: 991px) {
	#harmonogram .icon--center {
		margin: 5px;
	}
}

/*============== 2. Utilities ==============*/

/* fonts */
.u-font-script {
	font-family: 'Great Vibes', serif;
	word-spacing: 8px;
}

.u-h1 {
	font-size: 36px;
}

.u-h2 {
	font-size: 32px;
}

.u-h3 {
	font-size: 28px;
}

.u-h4 {
	font-size: 24px;
}

.u-h5 {
	font-size: 20px;
}

/* borders */
.u-border-b-grey {
	border-bottom: 1px solid #e5e5e5;
}

/* backgrounds */
.u-bg-grey {
	background-color: #fbfbfa;
}

.u-bg-secondary {
	background-color: #7b9e71;
}

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

.u-bg-primary {
	background-color: #faec7c;
}

/* margins */
.u-m-b-3 {
	margin-bottom: 30px;
}

.u-m-b-5 {
	margin-bottom: 50px;
}

.u-m-b-8 {
	margin-bottom: 80px;
}

.u-m-t-n-3 {
	margin-top: -30px;
}

/*============== 3. Hero ==============*/
.hero {
	background-image: url('../img/pozadi2.jpg'); /* Change to your image here */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom right;
	padding: 50px 0 170px;
	color: #fff;
    position: relative;
}

.hero:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero > div {
    position: relative;
    z-index: 2;
}

.hero__title {
	font-size: 42px;
}

.hero__wreath {
	width: 250px;
}

.hero__wreath--up {
	transform: rotate(178deg);
	-webkit-transform: rotate(178deg);
	-ms-transform: rotate(178deg);
	margin-bottom: -6px;
}

.hero__wreath--down {
	margin-top: -56px;
}

.hero__date {
	font-size: 28px;
	font-weight: 700;
	font-style: initial;
}


@media(min-width: 768px) {
	.hero__title {
		font-size: 52px;
		background-position: bottom right;
	}
}

@media(min-width: 992px) {
	.hero {
		min-height: 90vh;
		background-position: bottom right;
	}

	.hero__wreath {
		width: 300px;
	}
}

/*============== 4. Navigation ==============*/
.nav {
	position: sticky;
	position: -webkit-sticky;
	background-color: #fff;
	top: 0;
	z-index: 999;
}

.nav-list {
	text-align: center;
}

.nav-list li {
	display: inline-block;
	padding: 0 18px;
}

.nav-list__link {
	display: inline-block;
	padding: 14px 0;
	text-transform: uppercase;
	color: #414141;
	letter-spacing: 0.5px;
	font-size: 16px;
	border-bottom: 1px solid #fff;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.nav-list__link.active,
.nav-list__link:hover,
.nav-list__link:focus {
	border-bottom: 1px solid #000;
	color: #000;
}

@media(min-width: 992px) {
	.nav-list li {
		padding: 0 25px;
	}
}

.js-nav-link.active {
	color: #ada077;
}

/* Mobile navigation */
.mobile-nav {
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    background: #fff;
    text-align: center;
    z-index: 999;
}

.mobile-nav__trigger {
	position: absolute;
    right: 10px;
    top: 10px;
}

.mobile-nav-list {
	display: none;
	padding: 47px 0;
	width: 90%;
	max-width: 350px;
    margin: 0 auto;
    list-style: none;
}

.mobile-nav-list__link {
	display: block;
	padding: 14px 0;
	text-transform: uppercase;
	color: #414141;
	font-size: 16px;
	/*border-bottom: 1px solid #9e9e9e;*/
}

.mobile-nav-list li:last-of-type .mobile-nav-list__link {
	border-bottom: 0;
}

/*============== 5. Intro ==============*/

.section-padding {
	padding: 80px 0;
}

.intro {
	margin: 80px 0 80px;
}

.intro-content .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 9;
}

.intro-content__text {
	padding: 30px;
}

.intro-content__text h4 {
	font-weight: 600;
	font-style: initial;
	margin-bottom: 15px;
}

.intro-content__col {
	margin: 5px;
}

.intro-content__img {
	height: 100%;
	min-height: 260px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

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

	.intro-content__col {
		width: 50%;
		position: relative;
	}

	.intro-content__img {
		min-height: 360px;
	}

	.intro-content__text {
		opacity: 0;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		padding: 35px 60px;
		-webkit-transition: opacity .4s ease;
		transition: opacity .4s ease;
	}

	.intro-content__col:hover .intro-content__text {
		opacity: 1;
	}
}

/* 5.1. Counter */
.counter-list {
	list-style: none;
	text-align: center;
	margin-top: 25px;
}

.counter-list__item {
	width: 25%;
    position: relative;
    float: left;
}

.counter-list__item span {
	font-size: 32px;
	margin-bottom: 6px;
    display: inline-block;
}

.counter-list__item .icon {
	position: absolute;
	right: -10px;
	top: 27px;
}

.counter-list__item p {
	font-size: 18px;
	font-weight: 300;
	font-style: initial;
	line-height: 0.5;
}

@media(max-width: 419px) {
	.counter-list__item .icon {
	position: absolute;
	right: -10px;
	top: 16px;
}
}

@media(min-width: 992px) {
	.counter-list {
		margin-left: 70px;
	}

	.counter-list__item .icon {
		top: 40%;
	}

	.counter-list__item span {
		font-size: 42px;
	}
	
	.counter-list__item p {
		font-size: 22px;
	}
}


/*============== 6. Story ==============*/
.story-timeline {
	position: relative;
}

.story-timeline__text {
	padding: 30px 0;
	position: relative;
	z-index: 9;
}

.story-timeline__text h4 {
	font-style: initial;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}

@media(min-width: 768px) {
	.story-timeline__col {
		width: 50%;
	}

	.story-timeline__col--left {
		padding-right: 45px;
		position: relative;
	}

	.story-timeline__col--left .story-timeline__text {
		text-align: right;
	}

	.story-timeline__col--right {
		padding-left: 45px;
	}

	.story-timeline__col--left:after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		width: 1px;
		height: 100%;
		background-color: #dfdfdf;
	}

	.story-timeline__text {
		padding: 50px 0;
	}

	.story-timeline__text h4:before {
		content: "";
		position: absolute;
		height: 1px;
		background: #dfdfdf;
		left: -33px;
		width: 26px;
		top: 14px;
	}

	.story-timeline__col--left h4:before {
		left: auto;
		right: -33px;
	}

	.story-timeline__text .icon {
		position: absolute;
		left: -56px;
		padding: 3px 0;
		margin-top: 2px;
		top: 30px;
	}

	.story-timeline__col--left .icon {
		left: auto;
		right: -55px;
	}
}

@media(min-width: 992px) {
	.story-timeline__text h4 {
		padding-left: 78px;
		padding-top: 30px;
	}

	.story-timeline__col--left h4 {
		padding-right: 78px;
		padding-top: 30px;
	}

	.story-timeline__text h4:before {
		width: 100px;
		margin-top: 30px;
	}
}


/*============== 7. Friends ==============*/

.friends__title {
	font-size: 24px;
	text-align: center;
	margin-bottom: 60px;
}

/* 7.1. Slider */
.slider-list {
	list-style: none;
	margin-bottom: 25px;
}

.slider-list .slick-list {
	padding-top: 25px!important; /* Because of margin-top: -25 on current slick item */
}

.slider-list__item {
	text-align: center;
	transition: transform .4s ease;
	-webkit-transition: transform .4s ease;
}

.slider-list__item.slick-current {
	transform: translateY(-25px);
	-webkit-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
}

.slider-list__item img {
	width: 92%;
	max-width: 180px;
	border-radius: 50%;
	margin-bottom: 20px;
	display: inline!important;
	transition: box-shadow .4s ease;
	-webkit-transition: box-shadow .4s ease;
}

.slider-list__item p {
	font-size: 20px;
	margin-bottom: 0px;
	display: none;
}

.slider-list__item.slick-current img {
	-webkit-box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
	-moz-box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
	box-shadow: 4px 21px 29px -8px rgba(161,161,161,1);
}

.slider-list__item.slick-current p {
	display: block;
}

.slider-arrows {
	justify-content: center;
}

.slider-arrows .icon {
	padding: 0 5px;
	margin-top: 5px;
}

.slider-arrow {
	cursor: pointer;
}

.slider-arrow svg path {
	stroke: #b1b1b1;
	transition: stroke .4s ease;
	-webkit-transition: stroke .4s ease;
}

.slider-arrow:hover svg path {
	stroke: #ffd7d7;
}

@media(min-width: 768px) {
	.slider-list__item img {
		max-width: 200px;
	}
}

/*============== 8. Quote ==============*/
.quote {
	padding: 80px 0 50px;
	position: relative;
}

.quote:before,
.quote:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #e5e5e5;
}

.quote:before {
	top: 10px;
}

.quote:after {
	bottom: 10px;
}

.quote__text {
	font-size: 28px;
	line-height: 1.5;
	text-align: center;
	font-style: initial;
}

/*============== 9. Location ==============*/
.location {
	margin: 100px 0;
}

.location__text {
	padding: 35px 30px;
}

.location__text h6 {
	color: #5f5f55;
	font-size: 16px;
}

.location__text h3 {
	position: relative;
	margin-bottom: 35px;
	font-weight: 600;
}

.location__text h3:after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 72px;
	background: #aeaeae;
	height: 1px;
}

.location__img {
	display: block;
	margin-bottom: 30px;
}


@media(min-width: 768px) {
	.location {
		margin: 100px 0;
	}
}

@media(min-width: 992px) {
	.location__text--sm {
		max-width: 90%;
	}

	.location__img--sm {
		max-width: 90%;
	}
}

/*============== 10. RSVP ==============*/
.rsvp {
	background-image: url("../img/rsvp-bg.jpg"); /* Change to your RSVP image here */
	background-size: cover;
	background-repeat: no-repeat;
	padding: 90px 0;
}

.rsvp-box {
	padding: 50px 30px 60px;
	position: relative;
}

.rsvp-box__title {
	margin-bottom: 20px;
}

.rsvp-box__subtitle {
	font-size: 18px;
}

.rsvp-box__subtitle mark {
	background: none;
	font-style: initial;
}

@media(min-width: 768px) {
	.rsvp-box {
		padding: 50px 40px 110px;
	}
}

/* Form */
.rsvp-box .rsvp-form {
	margin-top: 50px;
}

.rsvp-form input,
.rsvp-form textarea,
.rsvp-form select {
	width: 100%;
	font-style: initial;
	color: #1c1c1c;
	padding: 5px 10px;
	margin-bottom: 25px;
	border-radius: 0;
}

.rsvp-form input,
.rsvp-form select {
	border: 0;
	border-bottom: 1px solid #898989;
}

.rsvp-form select {
    background: none;
    border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	color: #5f5f55;
}

.rsvp-form textarea {
	border: 1px solid #898989;
}

.rsvp-form-field {
	position: relative;
}

.rsvp-form-field__error {
	display: none;
	font-size: 15px;
	color: #c64141;
	font-style: initial;
	position: absolute;
	bottom: -18px;
	left: 5px;
}

.rsvp-form input.error {
	border-bottom: 1px solid #c64141;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #5f5f55;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #5f5f55;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #5f5f55;
}
:-moz-placeholder { /* Firefox 18- */
	color: #5f5f55;
}

.rsvp-form-submit {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #ffd7d7;
	border: 0;
	text-transform: uppercase;
	font-size: 20px;
	padding: 11px 10px;
	left: 0;
	right: 0;
	margin: auto;
	cursor: pointer;
	transition: background-color .3s ease;
	-webkit-transition: background-color .3s ease;
}

.rsvp-form-submit .icon {
	display: none;
	position: absolute;
}

.rsvp-confirmation {
	display: none;
}

.rsvp-form__right {
	margin-top: 10px;
}

@media(min-width: 768px) {
	.rsvp-form__left {
		width: 45%;
	}

	.rsvp-form__right {
		width: 49%;
		margin-top: 0;
	}

	.rsvp-form select {
		margin-bottom: 0;
	}

	.rsvp-form-submit {
		max-width: 300px;
	}

	.rsvp-form-submit .icon:first-of-type {
		left: 100px;
	}

	.rsvp-form-submit:hover .icon {
		display: inline;
	}
}

/*============== 11. Memories ==============*/
.memories {
	margin: 80px 0;
}

.memories__title {
	margin-bottom: 50px;
}

.memories__img {
	border: 10px solid #fbfbfa;
}

.memories .icon {
	margin-bottom: 14px;
}


/* 11.1. Masonry grid */
.grid-item,
.grid-sizer {
	width: 100%;
}

.grid-item {
	margin-bottom: 4%;
}


@media(min-width: 576px) {
	.grid-item,
	.grid-sizer {
		width: 46%;
	}

	.gutter-sizer {
		width: 4%;
	}
}

@media(min-width: 768px) {
	.grid-item,
	.grid-sizer {
		width: 31.333%;
	}

	.grid-item {
		margin-bottom: 3%;
	}

	.gutter-sizer {
		width: 3%;
	}
}

/*============== 12. Footer ==============*/
.footer {
	padding: 60px 0 20px;
}

.footer .icon {
	margin: 0 12px;
}

.footer__social {
	list-style: none;
	margin-top: 60px;
}

.footer__social li {
	display: inline-block;
	margin: 0 5px;
}

.footer__copy {
	font-size: 16px;
	
}

@media(min-width: 768px) {
	.footer {
		padding: 80px 0 20px;
	}
}
/* ---------------------------------
7. WEDDING DETAILS AREA
--------------------------------- */

.wedding-details{
	overflow: hidden; position: relative;
	padding: 20px 0;
}

.wedding-details:after{ content:''; position: absolute; top: 0; bottom: 0; left: 50%; margin-left: -.5px;
	width: 1px; background: #ccc; }

.w-detail{ width: 50%; padding: 0 50px; margin-bottom: 30px; position: relative; clear: both; margin-top: -40px; }

.w-detail:first-child{ margin-top: 0; }

.w-detail:last-child{ margin-bottom: 0; }

.w-detail:after{ content:''; position: absolute; top: 30px; height: 18px; width: 18px; border-radius: 20px;
	z-index: 1; border: 1px solid #aaa; background: #fff; }

.w-detail.right{ text-align: left;  float: right; }

.w-detail.right:after{ left: 0; margin-left: -9px; }
	
.w-detail.left{ text-align: right;  float: left; }

.w-detail.left:after{ right: 0; margin-right: -9px; }
	
.w-detail .title{ margin: 10px 0; }

.w-detail .icon{ font-size: 3.5em; line-height: 1; color: #ada077; fill: #ada077; }

.w-detail .icon-car { margin-bottom: -20px; width: 80px; height: 80px }
.w-detail .icon-lunch { margin-bottom: 0px; width: 80px; height: 80px }
.w-detail .icon-dance { margin-bottom: 10px; width: 80px; height: 80px }
.w-detail .icon-bbq { margin-bottom: 0px; width: 80px; height: 80px }
.w-detail .icon-party { margin-bottom: 10px; width: 80px; height: 80px }

@media(max-width: 419px) {
	.w-detail{ width: 100%; padding: 0 50px; margin-bottom: 30px; position: relative; clear: both; margin-top: -30px;
	}
	.wedding-details{
	overflow: hidden; position: relative;
	padding: 20px 0px 20px 0px;
	}
	.wedding-details:after{ content:''; position: absolute; top: 0; bottom: 0; left: 15px; margin-left: -.5px;
	width: 1px; background: #ccc;
	}
	.w-detail.right{ padding-right: 0px; padding-bottom: 30px; text-align: left;  float: right;
	}
	.w-detail.right:after{ left: 15px; top: 30px; margin-left: -9px;
	}
	.w-detail.left{ padding-right: 0px; padding-bottom: 30px; text-align: left;  float: right;
	}
	.w-detail.left:after{ left: 15px; top: 30px; margin-left: -9px;
	}

}

/* ---------------------------------
8. WEDDING CEREMONY
--------------------------------- */

.ceremony-area{ position: relative; z-index: 1; 
	background-image: url(../../images/counter-1-1600x600.jpg); background-size: cover; color: #fff; }

.ceremony-area:after{ content:''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; 
	z-index: -1; background: rgba(0,0,0,.3); }
	
.ceremony .desc{ margin-bottom: 15px; color: #fff;  }


	
