@font-face {
	font-family: 'Montserrat-Regular';
	src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
	font-family: 'Montserrat-Light';
	src: url(../fonts/Montserrat-Light.otf);
}
@font-face {
	font-family: 'Times-Roman';
	src: url(../fonts/Times-Roman.ttf);
}
@font-face {
	font-family: 'Times-Bold';
	src: url(../fonts/Times-Bold.ttf);
}
@font-face {
	font-family: 'Times-Italic';
	src: url(../fonts/Times-Italic.ttf);
}
@font-face {
	font-family: 'Times-BoldItalic';
	src: url(../fonts/Times-BoldItalic.ttf);
}
@font-face {
	font-family: 'Mulish-Regular';
	src: url(../fonts/Mulish/Mulish-Regular.ttf);
}
@font-face {
	font-family: 'Mulish-Medium';
	src: url(../fonts/Mulish/Mulish-Medium.ttf);
}
@font-face {
	font-family: 'Mulish-Bold';
	src: url(../fonts/Mulish/Mulish-Bold.ttf);
}
@font-face {
	font-family: 'Sacramento-Regular';
	src: url(../fonts/Sacramento-Regular.ttf);
}
@font-face {
	font-family: 'Cinzel-Regular';
	src: url(../fonts/Cinzel/Cinzel-Regular.ttf);
}
@font-face {
	font-family: 'Cinzel-SemiBold';
	src: url(../fonts/Cinzel/Cinzel-SemiBold.ttf);
}
html {
	scroll-behavior: smooth;
	scrollbar-color: #ababab #fff;
	scrollbar-width: thin;
}
html * {
	scrollbar-color: #ababab #fff;
	scrollbar-width: thin;
}
 html::-webkit-scrollbar {
	 width: 6px;
	 height: 6px;
}
 html::-webkit-scrollbar-track {
	 background: #fff;
	 border-radius: 4px;
	 border: 1px solid #dadada;
}
 html::-webkit-scrollbar-thumb {
	 background-color: #ababab;
	 border-radius: 4px;
}
 html *::-webkit-scrollbar {
	 width: 6px;
	 height: 6px;
}
 html *::-webkit-scrollbar-track {
	 background: #fff;
	 border-radius: 4px;
	 border: 1px solid #dadada;
}
 html *::-webkit-scrollbar-thumb {
	 background-color: #ababab;
	 border-radius: 4px;
}
body {
	background: #f2eae3;
	padding-top: 145px;
}
.form-control:focus {
	outline: 0;
	box-shadow: none;
}
.homepage {
	background: url(../images/home-bg.jpg) no-repeat top center / cover;
	padding-top: 145px;
} 
body.post-template-default.single.single-post .common-header {
    background: url(../images/common-header.png) center top / cover no-repeat;
}
.blog-detail .common-header {
	background:#f2eae3 url(../images/common-header.png) no-repeat top center;
}
.blog-detail header.dark-header,
body.post-template-default.single.single-post header.dark-header{
    background: rgb(98 9 8 / 80%);
    transition: 0.4s;
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(255 255 255 / 20%);
    border-bottom: 1px solid #f3b979;
    transition: 0.4s;
    z-index: 3;
}

    header.dark-header {
        background: rgb(98 9 8 / 80%);
        transition: 0.4s;
    }

        header.dark-header .timlogo {
            width: 100px;
            padding: 20px 0 10px;
            transition: 0.4s;
        }

.main-header {
    /*  position: relative;*/
    padding: 0;
    text-align: center;
}
.main-header>a{
    display: inline-block;
}
.timlogo {
    width: 150px;
    display: block;
    margin: 0 auto;
    padding: 20px 0 15px;
    transition: 0.4s;
}

.head {
    position: absolute;
    top: 0;
    left: 15.5%;
    bottom: 0;
    height: 50px;
    margin: auto;
}

    .head .tile {
        display: inline-block;
        height: 50px;
        width: 60px;
        margin-left: 5px;
        transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
    }

    .head .burger {
        margin-left: 0;
        padding: 5px;
        cursor: pointer;
        background-color: transparent;
    }

.meat {
    height: 40px;
    width: 50px;
    position: relative;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

header.clicked .head .burger .meat {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.meat .line {
    height: 5px;
    width: 50px;
    background-color: #f2eae3;
    border-radius: 1px;
    position: absolute;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

    .meat .line.one {
        top: 5px;
        left: 0px;
    }

    .meat .line.two {
        top: 20px;
        left: 0px;
    }

    .meat .line.three {
        top: 35px;
        left: 0px;
    }

header.clicked .burger .line {
    background-color: white;
}

    header.clicked .burger .line.one {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 18px;
    }

    header.clicked .burger .line.two {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 18px;
    }

    header.clicked .burger .line.three {
        opacity: 0;
    }

header.clicked .burger:hover .meat {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

.nav-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    pointer-events: none;
    padding: 0;
}

header.clicked .nav-modal {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
}

.nav-modal .blob {
    display: block;
    width: 0;
    height: 100vh;
    margin: 0;
    background-color: rgb(105 31 29 / 90%);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all .3s ease-in;
}

header.clicked .nav-modal .blob {
    width: 55vw;
    height: 100vh;
    border-radius: 0px;
}

nav {
    position: fixed;
    left: 15.5%;
    top: 20%;
    color: #f2eae3;
    width: 100%;
    max-width: 480px;
}

    nav a {
        color: #f2eae3;
        text-decoration: none;
        font-family: Times-Roman;
        font-size: 18px;
        text-transform: uppercase;
    }

    nav ul li:hover a {
        color: #f2eae3;
    }

    nav ul li {
        list-style: none;
        text-align: left;
        padding-bottom: 10px;
        position: relative;
    }

    nav ul li.nav-dropdown:after {
        content: '';
        position: absolute;
        top: 13px;
        right: 5px;
        z-index: 2;
        width: 25px;
        height: 20px;
        background: url(../images/down-arrow-w.png) no-repeat center center / 18px;
        transition: 0.4s;
    }
        nav ul li.nav-dropdown.nav-dropdown-active:after {
            transform: rotate( 180deg);
            transition: 0.4s;
        }

        nav ul li.nav-dropdown-active > a {
            color: #c77e4e;
        }

.nav-modal nav ul {
    padding-left: 0;
}

.activeNav {
    color: #691f1d !important;
}

header.clicked nav > ul {
    padding: 0;
    margin: 0;
    max-height: 63.5vh;
    overflow: auto;
}

header.clicked nav ul li ul {
    padding: 0;
    margin: 5px 0 0;
}

nav ul li ul li a:hover {
    color: #c77e4e;
}

nav {
    opacity: 0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

header.clicked nav {
    opacity: 1;
}

nav ul li ul {
    position: relative;
    left: 0;
    top: 0;
    display: none;
}

    nav ul li ul li {
        border: none;
        padding-left: 0;
        padding-bottom: 0;
    }

        nav ul li ul li a {
            display: block;
            font-size: 18px;
            text-align: left;
            font-family: 'Mulish-Regular';
            text-transform: none;
        }

 

.login-nav {
    display: block;
    position: fixed;
    bottom: 10px;
    width: 100%;
    max-width: 480px;
}

    .login-nav a {
        display: flex;
        position: relative;
        padding: 25px 0;
        align-content: center;
        align-items: center;
    }

        .login-nav a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 100%;
            height: 2px;
            background: url(../images/login-bord.png) no-repeat center center / 480px;
        }

        .login-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 100%;
            height: 2px;
            background: url(../images/login-bord.png) no-repeat center center / 480px;
        }

span.login-nav-icon {
    display: inline-block;
}

span.login-nav-txt {
    background: url(../images/clip-mask.png) no-repeat center center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-left: 15px;
}

.header-rt {
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 36px;
}

.lets-connect {
    font-size: 18px;
    color: #f2eae3;
    font-family: Montserrat-Regular;
    text-decoration: none;
    transition: .4s;
    font-weight: 600;
}

    .lets-connect:hover {
        color: #f3b979;
        transition: 0.4s;
    }
.click-here {
	display: inline-block;
	background: #641c1a;
	color: #f2eae3;
	border: 1px solid #641c1a;
	text-decoration: none;
	font-size: 14px;
	font-family: 'Times-Roman';
	letter-spacing: 2px;
	padding: 10px 25px;
	transition: 0.4s;
	text-transform: uppercase;
}
.click-here:hover {
	background: rgb(100 28 26 / 0%);
	color: #641c1a;
	border: 1px solid #641c1a;
	transition: 0.4s;
}
.apply-now {
	display: inline-block;
	background: #f2eae3;
	color: #641c1a;
	border: 1px solid #641c1a;
	text-decoration: none;
	font-size: 14px;
	font-family: 'Times-Roman';
	letter-spacing: 2px;
	padding: 10px 25px;
	transition: 0.4s;
	text-transform: uppercase;
}
.apply-now:hover {
	background: #641c1a;
	color: #f2eae3;
	border: 1px solid #641c1a;
	transition: 0.4s;
}
.read-more {
	position: relative;
	transition: 0.4s;
}
.read-more:after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 2px;
	width: 0%;
	background: #641c1a;
	border-radius: 50%;
	transition: 0.4s;
	margin: auto;
}
.read-more:hover:after {
	width: 100%;
	transition: 0.4s;
}
footer {
	background-color: rgb(255 255 255 / 20%);
	border-top: 1px solid #f3b979;
	padding: 70px 0 50px;
}
.foot-social {
	display: inline-block;
	width: 50%;
	padding-top: 14%;
	padding-right: 30px;
}
.foot-social ul {
	list-style: none;
	display: table;
	padding: 0;
	margin: 0;
	width: 100%;
}
.foot-social ul li {
	display: inline-block;
	margin-right: 10px;
}
.foot-location {
	display: inline-block;
	width: 40%;
}
.foot-location ul {
	padding: 0;
	list-style: none;
	display: table;
	color: #f2eae3;
	width: 100%;
	margin: 0 0 0 auto;
	text-align: left;
}
.foot-location ul li {
	width: 50%;
	display: inline-block;
	margin-bottom: 3px;
	font-size: 18px;
	text-transform: uppercase;
}
.common-footer {
	background: url(../images/common-footer.png) no-repeat top center / cover;
}
.blog-detail-first-fold h3 {
    color: #1d184c;
    font-size: 32px;
    font-family: 'Times-Roman';
    margin-bottom: 40px;
}
.blog-detail-first-fold p {
	color: #21215c;
	font-size: 18px;
	font-family: 'Mulish-Regular';
	margin-bottom: 20px;
}
.blog-detail-first-fold p span {
	display: block;
	margin-bottom: 5px;
	font-style: italic;
}
.blog-detail-first-fold {
	padding-top: 100px;
	background: url(../images/blog-left.png) no-repeat left 12%, url(../images/blog-right.png) no-repeat bottom right;
}
.blog-detail-first-fold-inner {
	max-width: 860px;
	margin: 0 auto;
}
button.login-btn {
	color: #691f1d;
	font-size: 18px;
	font-family: 'Times-Roman';
	border: 0;
	background: rgb(244,189,126);
	background: -webkit-linear-gradient(left, rgba(244,189,126,1) 0%, rgba(239,160,94,1) 50%, rgba(237,147,80,1) 100%);
	background: -o-linear-gradient(left, rgba(244,189,126,1) 0%, rgba(239,160,94,1) 50%, rgba(237,147,80,1) 100%);
	background: linear-gradient(to right, rgba(244,189,126,1) 0%, rgba(239,160,94,1) 50%, rgba(237,147,80,1) 100%);
 	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4bd7e", endColorstr="#ed9350", GradientType=1);
	border-radius: 0;
	padding: 7px 10px;
	width: 100%;
	max-width: 175px;
	margin: 0 auto;
	display: block;
}
.blog-page{
	background: url(https://www.vowsforeternity.com/blog/wp-content/uploads/blog-bg.jpg) no-repeat top center;
	background-color:  #f2eae3;
}

.page-template-templatetpl-press_coverage-php {
    background: url(https://www.vowsforeternity.com/blog/wp-content/uploads/blog-bg.jpg) no-repeat top center;
    background-color: #f2eae3;
}

.blog-page-last-fold img{
	padding: 0;
}
.blog-videos {
    padding-top: 375px;
}
.blog-videos-head {
    text-align: center;
}
.blog-videos-large-area {
    max-width: 1200px;
    margin: 0 auto;
}
.blog-videos-head h2{
	color: #1d194d;
    font-size: 45px;
    text-transform: uppercase;
    font-family: 'Times-Roman';
    margin-bottom: 40px;
}
.blog-videos-large-player {
    border: 5px solid #e59657;
    padding: 10px;
	margin-bottom: 15px;
}
.videos-large-text-right {
    padding-left: 20px;
}
.videos-large-text-right p {
    color: #1d184c;
    font-size: 18px;
	font-family: 'Mulish-Regular';
	margin: 0; 
}
.videos-large-text-right span{
	color: #1d184c;
	font-family: 'Times-Roman';
	font-size: 16px;
}
.videos-large-text-left h3 {
	color: #1d184c;
    font-size: 45px;
    font-family: 'Times-Roman';
    border-right: 2px solid #1d184c;
    margin: 0;
    height: 100%;
}
.blog-videos-large-text {
    display: flex;
}
.videos-large-text-left {
    min-width: 280px;
}
.blog-videos-thumb-area {
    padding-top: 100px;
}
.videos-thumb-player {
    border: 3px solid #e59657;
    padding: 5px;
	margin-bottom: 20px;
}
.blog-videos-thumb-col {
    margin-bottom: 30px;
}
.videos-thumb-head h5 {
    color: #1d184c;
    font-size: 22px;
    margin: 0 0 25px;
	font-family: 'Mulish-Bold';
	line-height: 32px;
}
.videos-thumb-text p {
    color: #1d184c;
    font-size: 22px; 
	font-family: 'Mulish-Regular';
	margin: 0;
}
.videos-thumb-text span {
    color: #1d184c;
    font-size: 18px; 
	font-family: 'Times-Roman'; 
}
.load-more-btn{
	border: 1px solid #641c1a;
	color: #f2eae3;
	background: #641c1a;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'Times-Roman'; 
	transition: 0.4s;
	padding: 8px 35px;
}
.load-more-btn:hover{
	color: #641c1a;
	background: #f2eae3;
	border: 1px solid #641c1a;
	transition: 0.4s;
}
.blog-page-second-fold{
	/*background: url(../images/blog-blogs-bg.png) no-repeat 0% -400%;*/
}
.blog-podcasts{
	padding-top: 375px;
}
.blog-podcasts-head{
	text-align: center;
}
.blog-podcasts-head h2{
	color: #1d194d;
    font-size: 45px;
    text-transform: uppercase;
    font-family: 'Times-Roman';
    margin-bottom: 40px;
}
.blog-podcasts-img {
    border: 3px solid #e59657;
    padding: 5px;
}
.blog-podcasts-img img {
    border-radius: 8px;
    width: 100%;
}
.blog-podcasts-right-text p {
    color: #1d184c;
    font-size: 18px;
    font-family: 'Mulish-Medium';
    margin: 0;
}
.read-more-link {
    color: #1d184c;
    font-family: 'Times-Bold';
    font-size: 18px;
    text-transform: capitalize;
    text-decoration: none;
    float: right;
    margin-top: -30px;
}
.blog-podcasts-right-list {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.blog-podcasts-right-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-podcasts-right-list ul li {
    color: #1d184c;
    font-size: 18px;
	font-family: 'Mulish-Regular';
	margin-bottom: 25px;
	position: relative;
	padding-left: 30px;
}
.blog-podcasts-right-list ul li a{
    color: #1d184c;
    font-size: 18px;
	font-family: 'Mulish-Regular';
	margin-bottom: 25px;
	position: relative; 
	text-decoration: none;
}
.blog-podcasts-right-list ul li:before {
    content: '';
	width: 20px;
	height: 24px;
	position: absolute;
	top: 5px;
	left: 0;
	margin: auto;
	background: url(../images/podcast-mic-icon.png) no-repeat center center / 20px;
}
.blog-podcasts-right {
    padding: 10px;
}
.blog-podcasts-area .owl-nav {
    position: absolute;
    top: 185px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.blog-podcasts-area .owl-nav button.owl-prev {
    margin-left: -30px;
    width: 25px;
    height: 25px;
	background: url(../images/left-carousel-icon.png) no-repeat center center / 13px;
}
.blog-podcasts-area .owl-nav button.owl-next {
    margin-right: -30px;
    width: 25px;
    height: 25px;
	background: url(../images/right-carousel-icon.png) no-repeat center center / 13px;
}
.blog-podcasts-area .owl-nav button span {
    opacity: 0;
}
.blog-page-second-fold {
    padding-bottom: 200px;
    position: relative;
}
.blog-page-second-fold:before {
    content: '';
   /* background: url(../images/blog-blogs-bg.png) no-repeat 0% 0%;*/
    position: absolute;
    top: -450px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: auto;
}
.blog-blogs-col{
	color: #1d184c;
}
.blog-blogs-col-text h6 {
    font-size: 22px;
    font-family: 'Times-Bold';
    letter-spacing: 2px;
}
.blog-blogs-col-text p {
    font-size: 18px;
    font-family: 'Mulish-Regular';
}
.blog-blogs-col-text2 .read-more-link2{
	font-family: 'Times-Bold';
    font-size: 18px;
    text-decoration: none;
    color: #1d184c;
}
.blog-blogs-col-text2 span{
	font-family: 'Times-Roman';
	font-size: 16px;
	text-transform: uppercase;
	display: block;
}
.blog-blogs-col-img {
    border: 3px solid #e59657;
    padding: 5px;
    margin-bottom: 15px;
}
.blog-blogs-col-img img {
    width: 100%;
    max-height: 256px;
    height: 300px;
    object-fit: cover;
    font-family: "object-fit: cover"; 
    object-position: center; 
}
.blog-blogs-col-text {
    max-width: 330px;
}
.blog-blogs-head h2 {
    color: #1d194d;
    font-size: 45px;
    text-transform: uppercase;
    font-family: 'Times-Roman';
    margin-bottom: 40px;
}
.blog-blogs-head {
    text-align: center;
}
.blog-blogs-col {
    color: #1d184c;
    margin-bottom: 55px;
}
.blog-page-first-fold{
	background: url(../images/blog-videos-bg.png) no-repeat 0% 17%;
} 
a.rm-line {
    color: #1d184c !important;
    text-decoration: none !important;
}