/** SANSSERIF **/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/** SERIF **/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
	--colorPrim: #737373;
	--colorSec: #4d6051 /* #9a9a9a*/;
	--colorTert: #49564c;
	--colorLGreen: #9eb7a4;
	
	--sansSerifFont: 'Montserrat', sans-serif;
	--serifFont: 'Playfair Display', serif;
}

html {
	scroll-behaviour: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--sansSerifFont);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--serifFont);
}

h1 {
    font-size: 4rem;
    text-align: center;
}


/** BUTTONS **/
.btn {
    border-radius: 0;
    padding: 10px 15px;
    transition: 0.5s;
}

.btn-primary {
    background: var(--colorSec);
}

.btn-primary:hover {
    background: var(--colorPrim);
}


/** TOP NAV **/
.topnav-container
 {
	background: var(--colorSec);
	padding: 0;
}
.navbar-default {
	background: var(--colorSec);
	padding: 0;
}
.topnav-container .container-fluid,
#navbar {
	padding: 0;
}

.head-container {
    background: var(--colorTert);
    box-shadow: none;
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a.current,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.addressData a,
.addressData a:visited {
    color: #fff;
    transition: 0.5s;
}

.addressData a:hover {
	color: var(--colorLGreen);
}

.navbar-right {
    border: none;
    background: var(--colorTert);
}

.navbar-default .navbar-nav > li > a:before {
    content: '';
    display: inline-block;
    height: 10px;
    width: 1px;
    background: #ffffff00;
    margin-right: 5px;
    transition: 0.5s;
}

.navbar-default .navbar-nav > li > a.current:before,
.navbar-default .navbar-nav > li > a:hover:before {
    background: #fff;
}

.btn-header {
    border: none;
}

#customTop {
    width: 100%;
    padding: 0;
}

.navbar-header {
    margin-top: 0;
}


/** LOGO **/
.navbar-brand > img {
    max-height: 140px;
}


/** BANNER **/
.owl-carousel img,
.markZ,
.markB2 {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.owlDiv .owlCustom,
.owlCustom {
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bannerText {
    font-size: 2rem;
    text-align: left;
    padding: 20px 40px;
    color: #fff;
}

.bannerText h1 {
    color: #fff;
    font-size: 8rem;
    font-family: 'Dancing Script';
    transform: rotate(-4deg);
}

.owl-controls {
    display: block;
    margin-top: -30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.owl-dot {
    background: #ffffff69;
    width: 30px;
    height: 5px;
    z-index: 10;
    position: relative;
    padding: 0;
    margin: 0;
    transition: 0.5s;
}

.owl-dots {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.owl-dot.active {
    background: #fff;
}


/** HOMEPAGE **/
.homePanelRow {
    margin: auto;
    max-width: 1600px;
}

.homePanelText2 {
    position: absolute;
    top: 0;
    left: 10%;
    height: 100%;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    pointer-events: none;
    text-align: center;
    flex-direction: column;
}

.homePanelRow img {
	filter: brightness(.8);
	margin-bottom: 15px;
}

.homePanelRow img:hover {
	filter: brightness(1);
	transform: scale(1.1);
}

.homePanelRow h3 {
    margin: 0;
    color: #fff;
    filter: drop-shadow(2px 2px 10px #000000)
}

.homePanelText2 h3 {
    color: white;
}

.homePanel2 {
    height: 340px;
    overflow: hidden;
    margin: 30px 0px;
    box-shadow: 10px 10px 10px #00000024;
}

.homePanel2 img {
    height: 340px;
    width: 100%;
    object-fit: cover;
	transition: all .3s ease-in-out;
	opacity: .85;
	object-position: center;
}

.homePanel2 .btn {
    background: none;
    border: 1px solid white;
    margin-top: 20px;
    transition: .5s;
    border-radius: 0;
    color: white;
}

.homePanel2:hover .btn {
    background: var(--colorSec);
    color: #fff;
	border-color: var(--colorSec);
}


/** PRODUCTS **/
.designButton img,
.catImages img,
.promotionPanel img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: cover;
    transition: .7s;
    z-index: 1;
}

.designButton,
.catImages,
.promotionPanel {
    height: auto;
    max-width: 400px;
    margin: 25px auto;
    border: none;
    background: 0 0;
}

.catImages .img-responsive {
    max-height: none;
}

.designButton:hover,
.catImages:hover,
.catImages:hover h2,
.promotionPanel:hover {
    border: none;
    background: 0 0;
}

.designButton:hover img,
.catImages:hover img,
.promotionPanel:hover img {
    scale: 1.2;
	z-index: 1;
}

.designButton .panel-body,
.catImages .panel-body,
.promotionPanel .panel-body {
    padding: 0;
	overflow: hidden;
}

.designButton .title,
.promotionPanel .title,
.catImages h2 {
    font-size: 1.8rem;
    font-weight: 400;
    z-index: 10;
    position: relative;
    background: #fff;
    margin-top: 0;
    padding: 10px;
    color: var(--colorSec);
}

.designButton .price {
    font-size: 1.4rem;
}

.designList {
    max-width: 1300px;
    margin: auto;
}

.designButton .price {
	font-size: 1.8rem;
}

.promotionPanel .title {
    margin-top: 0 !important;
    font-size: 1.6rem !important;
}

.promotionPanel .title strong {
    font-weight: 500;
}

.catImages,
.designButton {
	height: auto;
	border: none;
	margin-bottom: 20px;
}

.catImages:hover,
.designButton:hover {
	border: none;
}

.designPrices {
    background: none;
    font-size: 1.6rem;
	border: none;
}

.catImages .panel-heading {
    background: #fff;
    z-index: 10;
    position: relative;
} 

@media (min-width:450px) and (max-width:767px) {
    .productCol {
        width: calc((100% / 2) - 15px);
        display: inline-flex;
    }
}


/** FOOTER **/
.footerContainer {
    background: var(--colorSec);
}

#footer dt,
#footer dd,
#footer a:link,
#footer a:visited {
	color: #fff;
}

#footer a:hover {
	color: #9eb7a4;
}

.footerContainer .container {
    width: 100%;
}


/** MOBILE **/
#mobilenav a,
.addressDataMobile a {
	color: #fff;
	transition: 0.5s;
}

.addressDataMobile a:hover {
	color: var(--colorSec);
}

.navbar-toggle {
	border: none;
}

/** MOBILE NAV IMPROVEMENTS **/
.mobile-nav {
	padding-left: 0px;
	text-align: center;
}

.mobile-nav > li > a {
	padding: 10px 0px;
	text-transform: uppercase;
}

.testLogin {
	text-align: center;
	padding-bottom: 10px;
}

/** MOBILE NAV OPEN/CLOSE ANIMATION **/
.navbar-toggle .icon-bar:nth-child(2) {
	transform: translate(0, 10px) rotate(-45deg);
}

.navbar-toggle .icon-bar:nth-child(4) {
	transform: translate(0, -2px) rotate(45deg);
}

.navbar-toggle .icon-bar:nth-child(3) {
	opacity: 0;
}

span.icon-bar {
	transition: 0.4s;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2) {
	transform: none;
}

.navbar-toggle.collapsed .icon-bar:nth-child(4) {
	transform: none;
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
	opacity: 1;
}

/** some pages are too wide **/

.page10 .content-container, .page9 .content-container{
max-width:1400px;
}

.navbar-brand img{max-height:95px;}

.weddingPackage {
  border-radius:0px;
  color:#fff;
  border:2px solid #27443c;
  min-height:450px;
  background: var(--colorSec);
}
.weddingPackageBody {padding:2rem;}
.weddingPackage h2 {color:#fff;font-size:2.5rem;border-bottom:2px solid #27443c;padding:2rem;margin-bottom:0px;}
.weddingPackagePrice {text-align:center;padding:1rem;background:#27443c;color:#f5ede2;position:absolute;bottom:0;border-radius:0px 0px 0px 0px;
left:0;right:0;width:auto;margin-right:15px;margin-left:15px;}

.weddingContainer {margin-bottom:3rem;max-width:70%;font-size:1.7rem;font-weight:300;}
#pageFilters.highlight {background:none;}
.packageRow .col {margin-bottom:2rem;}
h2.weddingSubTitle {font-size:2.8rem;margin-bottom:3rem;text-align:center;}
.weddingContainer .bigPara {max-width:100%;font-size:2.2rem;text-transform:none;}
