/* ---------------------------------------- start variable ---------------------------------------- */
:root {
    --default-color: #fff;
    --default-color-dark: #000;

    --primary-color: #fff;
    --primary-color-dark: #fff;
    --primary-color-darker: #fff;
    --primary-color-darkest: #fff;

    --secondary-color: #fff;
    --secondary-color-dark: #fff;
    --secondary-color-darker: #fff;
    --secondary-color-darkest: #fff;

    --event-background: unset;
}

::-webkit-selection {
    color: var(--primary-color) !important;
    background: var(--secondary-color) !important;
}
::-moz-selection {
    color: var(--primary-color) !important;
    background: var(--secondary-color) !important;
}
::selection {
    color: var(--primary-color) !important;
    background: var(--secondary-color) !important;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* ---------------------------------------- start body ---------------------------------------- */
.section-padding {
    padding-top: 50px;
    padding-bottom: 0px;
}

.hidden {
    display: none;
}

form input.form-control:focus,
form textarea.form-control:focus,
form select.form-control:focus {
    border-color: var(--secondary-color) !important;
    -webkit-box-shadow: var(--secondary-color) !important;
    -moz-box-shadow: var(--secondary-color) !important;
    -o-box-shadow: var(--secondary-color) !important;
    -ms-box-shadow: var(--secondary-color) !important;
    box-shadow: var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

form input.form-control[readonly],
form textarea.form-control[readonly],
form select.form-control[readonly] {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
    color: #767779 !important;
}

form select.form-control,
form textarea.form-control {
    padding: 7px 15px 7px 15px;
    border: 1px solid #ececec;
}

form .form-group {
    text-align: center;
}

button:focus {
    outline: unset !important;
}

.btn-100 {
    width: 100%;
}

.btn-template {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    letter-spacing: 3px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.btn-template.active.focus,
.btn-template.active:focus,
.btn-template.active:hover,
.btn-template:active.focus,
.btn-template:active:focus,
.btn-template:active:hover,
.open>.dropdown-toggle.btn-template.focus,
.open>.dropdown-toggle.btn-template:focus,
.open>.dropdown-toggle.btn-template:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.btn-template.active,
.btn-template:active,
.open>.dropdown-toggle.btn-template {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--primary-color-darkest);
}

.btn-template:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color-darker);
}

.btn-template.focus,
.btn-template:focus {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.bg-pink {
    background-color: var(--primary-color-dark);
}

.bg-white {
    background-color: var(--primary-color) !important;
}

.separator {
    border-bottom: 1px solid var(--secondary-color) !important;
}

.oliven-title-meta {
    color: var(--secondary-color);
}

.oliven-title {
    color: var(--secondary-color-darkest);
}

.contact__msg {
    text-align: center;
    display: none;
}

/* ---------------------------------------- start music ---------------------------------------- */
#music.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--default-color);
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    border-style: solid;
    font-size: 20px;
    display: none;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

#music.float i {
    margin: -1px 0px 0px -15px;
    font-size: 30px;
}

#music.float span {
    font-size: 50px;
    position: absolute;
    transform: rotateZ(315deg);
    margin: -34px 0px 0px -6px;
}

/* ---------------------------------------- start envelope ---------------------------------------- */
#envelope {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 10000;
    text-align: center;
    padding-top: 50px;
    color: var(--secondary-color);
    background-image: url(dots.png);
    background-repeat: repeat;
}

#envelope h1 {
    display: block;
    position: relative;
    top: 12px;
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    font-size: 70px;
    color: var(--secondary-color);
    margin-bottom: 0px;
}

#envelope h3 {
    font-size: 20px;
    margin-bottom: 0px;
    letter-spacing: 5px;
    color: var(--secondary-color);
}

#envelope > div {
    position: relative;
    height: 100%;
}

#envelope .stick-bottom {
    position: absolute;
    bottom: 15%;
    width: 100%;
}

#envelope .stick-bottom > p {
    color: var(--secondary-color);
    font-size: 20px;
}

#envelope .stick-bottom > p > span {
    letter-spacing: 5px;
    color: var(--secondary-color);
    font-size: 25px;
}

@media (max-width: 767px) {
    #envelope small {
        display: block;
        padding: 0px;
        margin: -30px 0;
    }
}

/* ---------------------------------------- start loader ---------------------------------------- */
.lds-heart div {
    background: var(--secondary-color);
}

.lds-heart div:after, .lds-heart div:before {
    background: var(--secondary-color);
}

.preloader {
    background: var(--primary-color);
    z-index: 11000;
}

/* ---------------------------------------- start menu ---------------------------------------- */
.oliven-nav-toggle {
    background-color: var(--secondary-color) !important;
}

#oliven-aside {
    background: var(--primary-color-darker);
}

#oliven-aside .oliven-logo a span {
    font-size: 32px;
    color: var(--secondary-color);
}

#oliven-aside .oliven-logo {
    margin-bottom: 20px;
}

#oliven-aside .oliven-logo h6 {
    color: var(--secondary-color-darkest);
}

#oliven-aside .oliven-main-menu ul li a {
    color: var(--secondary-color-darkest);
}

#oliven-aside .oliven-main-menu ul li a:hover {
    border-bottom: 1px solid var(--secondary-color);
}

#oliven-aside .footer1 p {
    color: var(--secondary-color-dark);
}

@media (max-width: 767px) {
    #oliven-aside small {
        display: block;
        padding: 0px;
        margin: -15px 0;
    }
}

/* ---------------------------------------- start header ---------------------------------------- */
.header .caption h1,
.header .caption h5,
.header .arrow i {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .header > .container {
        height: 100vh;
    }
    
    .header > .container > .row:first-child {
        padding-top: 30%;
    }
    
    .header > .container > .row:last-child {
        margin-top: 80%;
    }
}

/* ---------------------------------------- start welcome ---------------------------------------- */
#welcome * {
    font-size: 20px !important;
    color: var(--secondary-color-darkest);
}

/* ---------------------------------------- start couple ---------------------------------------- */
#couple {
    padding-top: 0px;
}

#couple .col-md-12 {
    padding-bottom: 10px;
}

.bridegroom .item {
    background: var(--primary-color);
    padding: 30px 0;
}

.bridegroom .info h6 {
    color: var(--secondary-color-darkest);
}

.bridegroom .info span,
.oliven-couple-title {
    color: var(--secondary-color);
}

.bridegroom .info b {
    color: var(--secondary-color-darkest);
}

.bridegroom .info p,
.bridegroom .info .social a {
    color: var(--secondary-color-dark) !important;
}

.bridegroom .info .social a:hover {
    color: var(--default-color) !important;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ---------------------------------------- start event ---------------------------------------- */
.whenwhere {
    padding-bottom: 50px;
}

.whenwhere .content {
    background: var(--primary-color) !important;
    padding: 20px 20px 30px 20px !important;
    width: 100% !important;
}

.whenwhere .mobile .content {
    margin: 20px 0;
}

.whenwhere .item .content h5 {
    color: var(--secondary-color-darkest);
}

.whenwhere .item .content p {
    color: var(--secondary-color-dark);
}

.whenwhere .item .content p i {
    color: var(--secondary-color);
}

.whenwhere .mobile {
    display: none;
}

@media (max-width: 767px) {
    .whenwhere .desktop {
        display: none;
    }

    .whenwhere .mobile {
        display: block;
    }
}

/* ---------------------------------------- start counting days ---------------------------------------- */
#countdown .section-head h4,
#countdown li,
#countdown li span {
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    #countdown li {
        width: 40%;
    }
}

/* ---------------------------------------- start doa ---------------------------------------- */
.doa .story-img .img:before {
    border: 10px solid var(--secondary-color);
}

.doa p {
    color: var(--secondary-color-dark);
}

/* ---------------------------------------- start gallery ---------------------------------------- */
#gallery .badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
}

/* ---------------------------------------- start prokes ---------------------------------------- */
.prokes {
    padding-bottom: 30px;
}

.prokes .item-box,
.prokes .item-box:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color-darkest);
    padding: 40px 30px;
    text-align: center;
}

.prokes .item-box .title {
    color: var(--secondary-color-darkest) !important;
}

.prokes img {
    width: 50%;
}

.prokes .item-box .title {
    font-size: 15px !important;
}

@media (max-width: 767px) {
    .prokes .col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .prokes img {
        width: 75%;
    }

    .prokes .item-box {
        padding: 30px 30px 10px 30px;
        margin: 10px;
        max-width: 40% !important;
    }
}

/* ---------------------------------------- start qr ---------------------------------------- */
.qr .item-box,
.qr .item-box:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color-darkest);
}

.qr .item-box .title {
    color: var(--secondary-color-darkest) !important;
}

.qr img {
    width: 30%;
}

.qr .item-box {
    text-align: center;
    padding: 30px 0px;
}

/* ---------------------------------------- start gift ---------------------------------------- */
.gift .item-box,
.gift .item-box:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color-darkest) !important;
}

.gift .item-box .title {
    color: var(--secondary-color-darkest) !important;
}

.gift .item-box {
    text-align: center;
    padding: 0;
    padding-top: 20px;
}

.gift p {
    color: var(--secondary-color-darkest) !important;
}

.gift img,
.gift img:hover {
    -webkit-filter: none;
    filter: none;
}

.gift img.bank {
    width: 100px !important;
}

#invitation-snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#invitation-snackbar.show {
    visibility: visible;
    -webkit-animation: invitationfadein 0.5s, invitationfadeout 0.5s 2.5s;
    animation: invitationfadein 0.5s, invitationfadeout 0.5s 2.5s;
}

@-webkit-keyframes invitationfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes invitationfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes invitationfadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes invitationfadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* ---------------------------------------- start footer ---------------------------------------- */
.footer2 {
    padding-bottom: 20px;
    background: var(--primary-color-dark);
}

.footer2 p.copyright {
    margin-top: 30px;
    margin-bottom: 0px;
}

/* ---------------------------------------- start rsvp ---------------------------------------- */
#rsvp {
    padding-bottom: 30px;
}

/* ---------------------------------------- start wishes ---------------------------------------- */
.wishes .content {
    background: var(--primary-color);
    padding: 20px 20px 20px 20px;
    text-align: center;
}

.wishes .item .content h5 {
    color: var(--secondary-color-darkest);
    margin: 0;
}

.wishes .item .content p {
    color: var(--secondary-color-dark);
    margin: 0;
}
.wishes h5 {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Android Emoji', sans-serif !important;
}

/* ---------------------------------------- love story ---------------------------------------- */
.love_story {
	padding: 48px 0 20px;
}

.section-love_story {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 0
}

.love_story h2 {
    font-family: "modernline", Sans-serif !important;
    color: var(--default-color-dark) !important;
    text-align: center;
}

/* Slider Buttons */
.owl-prev {
	width: 86px;
	height: 185px;
	position: absolute;
	cursor: pointer;
	text-indent: -10000px;
	left: 30px;
	top: 50%;
	margin: -55px 0 0 0;
	padding: 0 10px;
	transition: background 0.5s;

}

.owl-prev:before {
	width: 1px;
	height: 100px;
	transform: rotate(-145deg);
	background: #bdbdbd;
	content: "";
	display: block;
	transition: transform 0.2s;
	position: absolute;
	transform-origin: top;
	top: 93px;
}

.owl-prev:hover:before {
	transform: rotate(-150deg);
}

.owl-prev:hover:after {
	transform: rotate(150deg);
}

.owl-prev:after {
	width: 1px;
	height: 100px;
	transform: rotate(145deg);
	background: #bdbdbd;
	content: "";
	display: block;
	position: absolute;
	transform-origin: bottom;
	transition: transform 0.2s;
	top: -8px;
}

.owl-next {
	width: 86px;
	height: 185px;
	right: 0;
	position: absolute;
	cursor: pointer;
	right: 30px;
	text-indent: -10000px;
	top: 50%;
	margin: -55px 0 0 0;
	padding: 0 10px;
	transition: background 0.5s;
}

.owl-next:before {
	width: 1px;
	height: 100px;
	transform: rotate(145deg);
	background: #bdbdbd;
	content: "";
	display: block;
	transition: transform 0.2s;
	position: absolute;
	transform-origin: top;
	top: 93px;
	margin: 0 0 0 62px
}

.owl-next:hover:before {
	transform: rotate(150deg);
}

.owl-next:hover:after {
	transform: rotate(-150deg);
}

.owl-next:after {
	width: 1px;
	height: 100px;
	transform: rotate(-145deg);
	background: #bdbdbd;
	content: "";
	display: block;
	position: absolute;
	transform-origin: bottom;
	transition: transform 0.2s;
	top: -8px;
	margin: 0 0 0 62px
}

.owl-controls {
	text-align: center;
    display: none !important;
}

.owl-pagination {
	margin: 55px 0 0 0;
	display: inline-block;
	padding: 0 22px;
	position: relative;
	height: 1px;
}

.owl-pagination:before {
	display: block;
	content: "";
	width: 31px;
	height: 17px;
	margin: -8px 0 0 -53px;
	position: absolute;
}

.owl-pagination:after {
	display: block;
	content: "";
	width: 8px;
	right: 0;
	height: 7px;
	top: 0;
	margin: -3px -7px 0 0;
	position: absolute;
}

.owl-page {
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	margin: -21px 0 0 0;
}

.owl-page:after {
	content: "";
	display: block;
	position: absolute;
	width: 16px;
	height: 26px;
	margin: 8px 0 0 16px;
}

#whenwhere .owl-carousel .owl-item {
    width: min-content !important;
    margin-right: 15px;
}

.story_wrapper .owl-wrapper-outer {
	box-shadow: 0 0 20px rgba(117, 102, 84, 0.2);
	background: #fff
}

.story_wrapper {}

.story_item {
	position: relative;
	height: 400px
}

.story_item img {
	width: 100%;
	height: auto
}

.story_img {
	width: 70%;
	height: 100%;
	background-size: cover !important;
	float: left;
	background-repeat: no-repeat !important;
	position: relative;
	background-position: center !important;
}

.story_img_plane {
	background: #fff;
	transform-origin: 0 0 0;
	transform: skew(-17deg);
	height: 100%;
	content: "";
	display: block;
	z-index: 0;
	position: absolute;
	width: 124px;
	left: 0;
}

.story_img_plane:after {
	position: absolute;
	background: #000 ;
    z-index: 4;
	width: 10%;
	height: 400px;
	right: -2px;
	padding: 0 1px 0 0;
	border-right: 1px solid rgba(255, 255, 255, 0.7);
	content: "";
	display: block;
}

.story_plane {
	background: #fff;
	height: 100%;
	width: 30%;
	position: relative;
	z-index: 2;
	float: left;
	display: flex
}

.story_back {
	background: #fff;
	transform-origin: 0 0 0;
	transform: skew(-17deg);
	height: 100%;
	content: "";
	display: block;
	z-index: 0;
	position: absolute;
	width: 124px;
	left: 0
}

.story_back:before {
	position: absolute;
	z-index: 4;
	width: 10%;
	height: 400px;
	left: -2px;
	padding: 0 1px 0 0;
	border-left: 1px solid rgba(255, 255, 255, 0.7);
	content: "";
	display: block;
}

.story_txt {
	position: relative;
	z-index: 4;
	padding: 30px 0;
	margin: auto
}

.story_txt p {
	position: relative;
	margin: 0 0 0 -15%;
}

.story_title {
	font: 34px/26px Great Vibes;
	margin: 0 -10% 28px 0;
	text-align: center;
}

.story_title i {
	font: normal 300 14px/28px Roboto Condensed;
	position: relative;
	margin: 0 0 10px 0;
	text-align: center;
	;
	display: block;
}

.story_title:before {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 15px;
	transform: skew(-17deg, 0);
	margin: -25px 0 0 20px;
	left: 50%;
	opacity: 0.3
}

.story_title:after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 15px;
	transform: skew(-17deg, 0);
	margin: -5px 0 0 -9px;
	left: 50%;
	opacity: 0.3
}

.owl-item {
	transform: none !important;
}

.owl-buttons {
	top: 50%;
	position: absolute;
	margin: -85px 0 0 0;
	width: 100%
}

@media (max-width:480px) {
    h2 {
		font: 34px/40px Great Vibes
	}

	h2 span {
		font: 400 24px/32px Roboto Condensed
	}

    h2 span:after {
		margin: 0 0 0 10px
	}

    .story_txt p {
		margin: 0;
	}

    .gallery .owl-buttons {
		margin: -40px 0 0 0
	}

    .owl-carousel:hover .owl-next,
	.owl-carousel:hover .owl-prev {
		background: none !important
	}

    .story_txt {
		padding: 0 24px;
		margin: 220px 0 0;
        text-align: center;
	}

    .story_plane {
		width: 100%;
		left: 0;
		background: none
	}

    .story_back,
    .story_img_plane, 
    .story_title:after,
	.story_title:before {
		display: none
	}

    .story_title {
		margin: 0
	}

    .story_img {
		width: 200px;
		height: 200px;
		left: 50%;
		margin: 0 0 0 -100px;
		position: absolute;
		border-radius: 50%;
		z-index: 5;
	}

	.story_img:before {
		border: 10px solid rgba(255, 255, 255, 0.4);
		border-radius: 50%;
		content: "";
		display: block;
		height: 100%;
		position: absolute;
		width: 100%;
	}

    .story_wrapper .owl-wrapper-outer {
		box-shadow: 0 0 0;
		background: none
	}

	.story_item,
	.guest_wrapper {
		height: auto;
	}

}

/* ---------------------------------------- start filter ig ---------------------------------------- */
#section_filter_ig {
    padding: 50px 0 0px !important;
}

#section_filter_ig .section-title h2:before,
#section_filter_ig .section-title h2:after {
    display: none !important;
}

#section_filter_ig h2 {
    font-family: "modernline", Sans-serif !important;
    color: var(--secondary-color) !important;
    text-align: center;
}

#section_filter_ig .col {
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    margin-bottom: 15px;
}

#section_filter_ig .col p {
    color: var(--secondary-color) !important;
}

#section_filter_ig .col a {
    color: #ffff !important;
    padding: 5px 20px;
    border-width: 0px !important;
    border-radius: 8px;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: 'ABeeZee',Helvetica,Arial,Lucida,sans-serif!important;
    background-image: linear-gradient(165deg,#d19465 0%,#8b2a9d 100%);
    background-color: #e0c68d;
}

#section_filter_ig .container {
    background: var(--primary-color-dark);
    border-radius: 30px;
    padding-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
    width: 940px;
}

@media (max-width: 767px) {
    #section_filter_ig {
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }

    #section_filter_ig .container {
        width: 385px;
    }
}