:root {
	--c-bg-light:#f2f4f7;
	--c-blue-dark:#013762;
	--c-blue-middle:#5e7491;
	--c-blue-middlelight:#788aa3;
	--c-blue-light:#99a7ba;
	--c-text:#1c1e21;
	--c-text-light:#707173;
	--c-lightblue:#ECEFF3;
	--c-red:#dc3545 ;
	--c-red-hover:#E25A68;
	--c-green:#28a745 ;
	--c-green-hover:#2FC451;
}

@font-face {
	font-family:'Cabin_Condensed-Regular';
	src:url('../font/Cabin_Condensed-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
}

@font-face {
	font-family:'Cabin-Regular';
	src:url('../font/Cabin-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
}

* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

html, body {
	margin:0px;
	padding:0px;
	font-family:'Cabin_Condensed-Regular',sans-serif;
	font-size:16px;
	line-height:1.42857143;
}

body {
	
}

ul {
	margin:0px;
	padding:0px;
	list-style:none;
}

.hidden {
	display:none !important;
}

.center {
	text-align:center;
}

.flex {
	display:flex;
}

.flex-j-sb {
	justify-content:space-between;
}

.flex-j-sa {
	justify-content:space-around;
}

.flex-aic {
	align-items:center;
}

.container {
	margin:0px auto;
	width:100%;
	padding-left:calc(1rem*.5);
	padding-right:calc(1rem*.5);
}

@media (min-width: 1024px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1200px;
	}
}

@media (min-width: 1600px) {
	.container {
		max-width:1548px;
	}
}

.navbtn {
	border:none;
	background:none;
	width:40px;
	height:40px;
	padding:0px;
	margin:0px;
	display:none;
	align-items:center;
	justify-content:center;
}

.navbtn span {
	height:20px;
	flex-direction:column;
}

.navbtn i {
	width:22px;
	height:1px;
	margin:0px auto;
	background-color:#ffffff;
	display:inline-block;
}

.menu .navbtn i {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu .navbtn i:before {
	width:22px;
	height:1px;
	background-color:#ffffff;
	display:inline-block;
	content:"";
	-webkit-transform: translate(0,-12px) rotate(-90deg);
	transform: translate(0,-12px) rotate(-90deg);
}

@media (min-width: 1280px) {
	header {
		border-bottom: 1px solid rgba(0,0,0,0);
		border-bottom-color: rgba(0, 0, 0, 0);
		top: -40px;
		-webkit-transition: all .3s ease-out;
		transition: all .3s ease-out;
  }
}


@media (min-width: 1280px) {
	header:not(.sticky) {
		border-color: #ffffff;
  }
}

header {
	position:sticky;
	z-index:50;
	top:0;
}

@media (max-width: 1000px) {
	header.sticky {
		top:0px !important;
	}
}

.header_top {
	padding: 8px 0;
	background-color:#4c4948;
	color:#ffffff;
}

.header_top a {
	color:#ffffff;
	text-decoration:none;
}

.social_link {
	font-size:0px;
}

.social_link a {
	margin-right:20px;
}

.header_top .icon,
.header_bottom .icon {
	color:#ffffff;
	width:16px;
	height:16px;
	fill: currentColor;
}

.header_top .phone {
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 3px
}

.header_top .phone a {
	margin-left:15px;
}

.header_top .language {
	margin-right:20px;
}

.header_top .active {
	border-bottom:1px solid #ffffff;
}

.header .header__bottom {
	padding: 10px 0;
	background-color:#ab9f97;
}

@media (min-width: 1280px) {
	.header_bottom {
		padding: 16px 0;
		-webkit-transition: all .3s ease-out;
		transition: all .3s ease-out;
	}
	
	header:not(.sticky) .header_bottom {
		background-color: rgba(0,0,0,0);
	}
}

.header_bottom {
	font-size: 1.125rem;
	line-height: 1.11112;
	text-transform: uppercase;
	background:#ab9f97;
}

header.dark .header_bottom {
	background:#ab9f97 !important;
}

.header_bottom .logo {
	padding:5px;
	border-radius:3px;
	background:rgba(255,255,255,0.5);
}

.header_bottom .logo img {
	height:45px;
	vertical-align:middle;
}

.header_bottom ul li {
	position:relative;
}

.header_bottom ul li ul {
	position:absolute;
	width:180px;
	padding:16px 20px 20px;
	background:#4c4948;
	visibility:hidden;
	top: calc(100% + 32px);
	left: 0;
}

.header_bottom ul li ul::before {
	display: block;
	width: 100%;
	height: 32px;
	position: absolute;
	left: 0;
	top: -32px;
	content: "";
}

.header_bottom .menu,
.header_bottom .menu ul {
	column-gap:20px;
}

.header_bottom a {
	color:#ffffff;
	text-decoration:none;
}

.header_bottom ul li a::after {
	display: block;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background-color: #fff;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.header_bottom ul li:hover > a::after {
	width:100%;
}

.header_bottom ul li:hover > ul {
	opacity: 1;
	visibility: visible;
}

.header_bottom ul li ul li {
	margin-top:12px;
}

.header_bottom ul li ul li:first-child {
	margin-top:0px;
}

.header_bottom .highlighted {
	padding:0.75rem 1.25rem;
	border:1px solid #ffffff;
	transition: all .3s ease-out;
}

.header_bottom .highlighted:hover {
	background:#ffffff;
	color:#000000;
}

.header_bottom .social_link,
.header_bottom .language,
.header_bottom .phone {
	display:none;
}

@media (max-width: 1000px) {
	.header_bottom {
		padding:10px 0px;
	}
	
	.header_bottom .container {
		padding:0px 1.5rem;
	}
	
	.header_bottom .logo {
		padding:0px;
		background:none;
	}
	
	.header_bottom .logo img {
		height:40px;
	}
	
	.navbtn {
		display:flex;
	}
	.header_top {
		display:none;
	}
	
	.menu .navbtn {
		position:absolute;
		top:20px;
		right:30px;
	}
	
	.menu {
		display:none;
		position:absolute;
		left:0px;
		top:0px;
		right:0px;
		flex-direction:column;
		background:#ab9f97;
		padding:48px 24px 24px;
		height:100vh;
		overflow-y:scroll;
	}
	
	.menu.active {
		display:block;
	}
	
	.menu ul {
		flex-direction:column;
		align-items:start;
	}
	
	.menu ul li {
		margin-top:26px;
	}
	
	.menu ul li ul {
		position:relative;
		visibility:visible;
		background:none;
		padding-top:0px;
		padding-bottom:0px;
	}
	
	.menu ul li ul li,
	.menu ul li ul li:first-child {
		margin-top:26px;
	}
	
	.header_bottom .highlighted {
		display:block;
		width: 100%;
    margin-top: 26px;
    padding: 16px 0;
    border: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: left;
	}
	
	.header_bottom .social_link {
		display:block;
		padding: 16px 0;
	}
	
	.header_bottom .language,
	.header_bottom .phone {
		border-top: 1px solid #fff;
		display:block;
		padding: 16px 0;
		color:#ffffff;
		letter-spacing:3px;
	}
	
	.header_bottom .phone a {
		margin-left:10px;
	}
	
	.header_bottom .language a.active {
		border-bottom:1px solid #ffffff;
	}
}



main {
	min-height:100vh;
}

@media (min-width: 1280px) {
  .section-hero {
    margin-top: -88px;
  }
}

.section-hero {
	overflow:hidden;
	position:relative;
	background:#2e271d;
	max-height:100vh;
	margin-bottom:80px;
}

.section-hero::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 280px;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#2e271d),to(rgba(46,39,29,0)));
	background-image: linear-gradient(180deg,#2e271d 0%,rgba(46,39,29,0) 100%);
	z-index: 1;
	pointer-events: none;
}

.section-hero video {
	width:100%;
	height:auto;
	object-position:center -600px;
	object-fit:cover;
}

.section-hero .hero-text-holder {
	position:absolute;
	left:0px;
	top:0px;
	color:#ffffff;
	padding:265px 24px 0px 24px;
	bottom:0px;
	background:rgba(0,0,0,0.1);
	width:100%;
	max-width:40%;
	z-index:2;
}

.section-hero .hero-title {
	font-size:6.75rem;
	font-weight:300;
	margin-bottom:25px;
	font-family:'Cabin-Regular', sans-serif;
	line-height:1;
}

.section-hero .hero-description {
	position:relative;
	padding:45px 0px;
	font-size:1.5rem;
}
.section-hero .hero-description::before {
	width:270px;
	display:block;
	position:absolute;
	top:0;
	left:0;
	height:1px;
	background-color:#ffffff;
	content:"";
}

@media (max-width: 1300px) {
	.section-hero .hero-text-holder {
		padding-top:120px;
	}
	.section-hero .hero-title {
		font-size:4.5rem;
	}
	.section-hero .hero-description {
		font-size:1.25rem;
	}
}

@media (max-width: 1000px) {
	.section-hero video {
		object-position:center;
	}
	
	.section-hero .hero-text-holder {
		max-width:100%;
	}
}


.section-collection {
	margin-top:80px;
	margin-bottom:80px;
	gap:1.5rem;
}

.collection-card {
	flex:1;
	position:relative;
	color:#3e3e3e;
	font-family:'Cabin-Regular', sans-serif;
}

@media (max-width: 1000px) {
	.section-collection {
		flex-direction:column;
		padding-left: 1.5rem;
  	padding-right: 1.5rem;
	}
}

.collection-card > div {
	position:absolute;
	bottom:-1px;
	left:0px;
	right:0px;
	height:30%;
	padding: 0 60px 60px;
	transition: all .3s ease-out;
	background-image:linear-gradient(180deg,rgba(255,255,255,0) 0%,white 100%);
  pointer-events:none;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  text-transform:uppercase;
}

.collection-card video {
	display: block;
  aspect-ratio: 4/5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -30px;
}

.collection-card h2 {
	margin: 0;
	transition: all .3s ease-out;
	padding-bottom:8px;
  font-size:2rem;
  white-space: nowrap;
  position:relative;
}

.collection-card h2::after {
	display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #3e3e3e;
  max-width: 100px;
	transition: all .3s ease-out;
}

.collection-card > div > span {
	left: 60px;
  opacity: 0;
  visibility: hidden;
	transition: all .3s ease-out;
	display: flex;
  align-items: center;
  position: absolute;
  bottom: 60px;
  font-size: 1.125rem;
}

.collection-card > div > span .icon {
	width: 20px;
  height: 20px;
  margin-left: 12px;
  color: #3e3e3e;
  display: block;
  fill: currentColor;
}

.collection-card:hover h2 {
	margin-bottom:40px;
}

.collection-card:hover h2::after {
	max-width:100%;
}

.collection-card:hover > div > span {
	opacity: 1;
	visibility: visible;
}

.section-bride {
	margin-top:80px;
	//margin-bottom:80px;
	padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ab9f97;
  font-family:'Cabin-Regular', sans-serif;
}

.section-bride .headline {
	margin-bottom: 1rem;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color:#3e3e3e;
	margin:0px;
	margin-bottom:1rem;
}

.section-bride .title {
	color: #fff;
  font-size: 42px;
  text-transform: uppercase;
  margin:0px;
}

.section-bride .description {
	font-size: 18px;
  line-height: 24px;
  margin:0px;
	margin-bottom:1rem;
	color:#3e3e3e;
}

.section-bride .slider {
	margin-top:60px;
	margin-bottom:50px;
	padding:32px;
	background:#ffffff;
}

.card-bride {
	//box-shadow: 0 -12px 24px rgba(0,0,0,.15);
	display:flex;
	color:#3e3e3e;
}

.card-image {
	font-size:0;
	width:40%;
	gap:1rem;
}

.card-text {
	width:60%;
}

.card-image > div {
	aspect-ratio:3/4;
	width:50%;
	display:inline-block;
}

.card-image img {
	object-fit:cover;
	width:100%;
	height:100%;
}

.card-text {
	padding-left:64px;
	padding-top:16px;
}

.card-bride .bride_title {
	margin-bottom:32px;
	font-size:2.625rem;
}

.glide__bullets {
	text-align:center;
	margin-top:12px;
}

.glide__bullet {
	width:12px;
	height:12px;
	border:1px solid #3e3e3e;
	background:none;
	outline:none;
	border-radius:50%;
	cursor:pointer;
	margin:0px 5px;
}

.glide__bullet--active {
	background:#3e3e3e;
}

.bride-cta {
	padding:0.75rem 1.25rem;
	border:1px solid #3e3e3e;
	color:#3e3e3e;
	transition: all .3s ease-out;
	text-decoration:none;
	text-transform:uppercase;
}

.bride-cta:hover {
	color:#ffffff;
  background-color:#3e3e3e;
}

@media (max-width: 1000px) {
	.section-bride {
		padding-left: 1.5rem;
  	padding-right: 1.5rem;
	}
	
	.section-bride .title {
		font-size:30px;
	}
	
	.card-bride {
		flex-direction:column;
	}
	
	.card-image {
		width:100%;
	}
	
	.card-text {
		padding-left:0px;
		width:100%;
	}
	
	.card-bride .bride_title {
		font-size:1.625rem;
		margin-bottom:20px;
	}
	
	.card-bride .bride_description {
		font-size:12px;
	}
	
	.bride-cta {
		display:block;
	}
}

footer {
	background:#4c4948;
}

.footer_top {
	background:#88807c;
	padding: 48px 0;
	color:#3e3e3e;
	font-family:'Cabin-Regular', sans-serif;
}

footer .container {
	justify-content:center;
	max-width:1200px;
}

.footer_top .block-footer {
	padding: 0 32px;
	flex:1;
}

.footer_top .block-footer:first-child {
	padding-left:0px;
	border-right:1px solid #3e3e3e;
}

.footer_top .block-footer:last-child {
	padding-right:0px;
	border-left:1px solid #3e3e3e;
}

.block-footer-content {
	margin-left:32px;
}

.block-footer-content h3 {
	font-size:1.5625rem;
	margin:0 0 0.5rem 0;
}

.block-footer-content p {
	margin:0;
  line-height:1.33334;
  font-size:18px;
}

.block-footer-content p a {
	color:inherit;
}

@media (max-width: 1000px) {
	footer .container {
		flex-direction:column;
		padding-left: 1.5rem;
  	padding-right: 1.5rem;
	}
	
	.footer_top .block-footer {
		padding:32px 10px;
		border-bottom:1px solid #3e3e3e;
		border-top:1px solid #3e3e3e;
	}
	.footer_top .block-footer:first-child {
		padding-top:0px;
		border:none;
	}
	
	.footer_top .block-footer:last-child {
		padding-bottom:0px;
		border:none;
	}
	
}

.footer_bottom {
	padding:48px 0px;
	color:#AB9F97;
}

.footer_bottom .container {
	flex-direction:column;
	align-items:center;
}

.footer_bottom .logo-footer {
	margin-bottom: 28px;
}

.footer_bottom .social_link .icon {
	fill:currentColor;
	color:#AB9F97;
	width:26px;
	height:26px;
}

.footer_bottom .social_link a:last-child {
	margin:0px;
}

.footer_bottom .social_link {
	margin-bottom:40px;
}

.footer_bottom .link-footer {
	margin-bottom:40px;
}

.footer_bottom .link-footer a {
	text-decoration:none;
	color:#AB9F97;
	text-transform:uppercase;
	position:relative;
}

.footer_bottom .link-footer a:first-child {
	margin-right:40px;
}

.footer_bottom .link-footer a::after {
	display: block;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background-color: #AB9F97;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.footer_bottom .link-footer a:hover::after {
	width:100%;
}

.footer_bottom .copyright {
	margin:0;
  font-size: 12px;
  line-height:15px;
  letter-spacing:1.2px;
  text-align: center;
}

@media (max-width: 600px) {
	.footer_bottom .link-footer {
		display:flex;
		flex-direction:column;
		row-gap:20px;
		text-align:center;
	}
	
	.footer_bottom .link-footer a:first-child {
		margin-right:0px;
	}
}

.usefulBlock {
	margin-bottom:35px;
	color:#3e3e3e;
}


.contactHolder {
	margin:50px 0;
}

.contactLeft {
	width:calc(100% - 615px);
	border:1px solid #ab9f97;
}

.contactForm {
	background:#ab9f97;
	flex:0 0 auto;
	width: 615px;
	padding: 64px;
}

.contactForm h2 {
	margin-bottom: 25px;
	font-size: 3.75rem;
	line-height:1;
	color:#3e3e3e;
}

.contactForm div {
	position:relative;
}
.contactForm div span {
	color:#dc3545;
	display:block;
	text-align:right;
	position:absolute;
	bottom:-17px;
	right:0px;
	font-size:12px;
}

.contactForm input,
.contactForm textarea {
	display: block;
	width: 100%;
	padding: .5625rem 1.25rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	color:#3e3e3e;
	background-color:#ffffff;
	background-clip:padding-box;
	border:1px solid #3e3e3e;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	margin-bottom:25px;
	outline:none;
}

.contactForm textarea {
	resize:none;
	height:140px;
}

.contactForm input.has-error,
.contactForm textarea.has-error {
	border:1px solid #dc3545;
}

.right {
	text-align:right;
}

.contactResponse {
	display:inline-block;
	padding-right:10px;
}

.contactResponse.error {
	color:#dc3545;
}

.contactResponse.success {
	color:#35dc45;
}

.contactForm .btn {
	margin-top:10px;
	padding: 0.75rem 1.25rem;
	border: 1px solid #3e3e3e;
	transition: all .3s ease-out;
	text-decoration:none;
	color:#3e3e3e;
	text-transform:uppercase;
	display:inline-block;
}

.contactForm .btn:hover {
	color:#ffffff;
	background-color:#3e3e3e;
}

.reservForm {
	background:#ab9f97;
	padding:16px 16px 32px 16px;
}

.reservForm > h2 {
	color:#3e3e3e;
	font-size:36px;
	margin:0px;
	margin-bottom:16px;
	text-align:center;
}

.reservForm > div {
	text-align:center;
	background:#ffffff;
	padding:20px 0px;
}

.reservHolder {
	display:flex;
	gap:20px;
}

.reservHolder select option:disabled {
	display:none;
}

.reservHolder > div {
	width:50%;
}

.calendarBlock {
	background:#ffffff;
	display:inline-block;
	padding:4px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.35);
}

.calendarBlock .calendar {
	//width:100%;
}
.calendarBlock .calendar td {
	text-align:center;
	color:#3e3e3e;
	width:50px;
}

.calendarBlock .calendar th {
	font-weight:normal;
	color:#3e3e3e;
}

.calendarBlock .dayNum {
	width:50px;
	height:50px;
	line-height:50px;
	display:inline-block;
	text-align:center;
}

.calendarBlock div.dayNum {
	opacity:0.4;
}

.calendarBlock a.dayNum {
	border:1px solid #ab9f97;
	border-radius:3px;
	background:#f6f5f4;
	position:relative;
	color:#3e3e3e;
	text-decoration:none;
	font-size:18px;
}

.calendarBlock .dayNum span.dName {
	position:relative;
	z-index:2;
}

.calendarBlock .dayNum span.dRes {
	display:block;
	position:absolute;
	bottom:0px;
	left:0px;
	right:0px;
	z-index:1;
	background:#e0dbed;
}

.calendarBlock select.form-data {
	display:inline-block;
	padding:8px;
	font-size:14px;
	font-weight:400;
	line-height:1.25;
	color:#3e3e3e;
	background-color:#ffffff;
	background-clip:padding-box;
	border:1px solid #ab9f97;
	/*-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;*/
	-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	outline:none;
	margin:5px;
}

.timeHolder {
	max-width:400px;
}

.calBlock {
	width:100%;
	max-width:380px;
	height:50px;
	line-height:50px;
	display:inline-block;
	text-align:center;
	border:1px solid #ab9f97;
	border-radius:3px;
	background:#f6f5f4;
	position:relative;
	color:#3e3e3e;
	text-decoration:none;
	font-size:18px;
	margin:5px 0px;
}

.calBlock.disabled {
	opacity:0.3;
}

.clothText {
	text-align: left;
	margin: 15px;
	max-height: 300px;
	overflow-y: auto;
}

.btnRow {
	gap:20px;
	margin:0px 15px;
}

.reservDatas {
	padding:15px;
}

.reservDatas > div {
	position:relative;
}

.reservDatas div span {
	color:#dc3545;
	display:block;
	text-align:right;
	position:absolute;
	bottom:-17px;
	right:0px;
	font-size:12px;
}

.reservDatas input.form-data {
	display: block;
	width: 100%;
	padding: .5625rem 1.25rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	color:#3e3e3e;
	background-color:#ffffff;
	background-clip:padding-box;
	border:1px solid #3e3e3e;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	margin-bottom:25px;
	outline:none;
}

.reservDatas input.has-error,
.reservDatas textarea.has-error {
	border:1px solid #dc3545;
}


.bloglistBlock {
	color:#3e3e3e;
	margin-bottom:55px;
	margin-top:55px;
}

.bloglistBlock::after {
	clear:both;
	content:"";
	display:block;
}

.blogImage {
	width:30%;
	margin-bottom:20px;
}

.bloglistBlock.blogleft .blogImage {
	float:left;
	margin-right:20px;	
}

.bloglistBlock.blogright .blogImage {
	float:right;
	margin-left:20px;
}

.blogImage img {
	width:100%;
}

@media (max-width: 900px) {
	.bloglistBlock {
		display:flex;
		flex-direction:column;
	}
	
	.bloglistBlock > h2 {
		order:1;
	}
	
	.bloglistBlock > .blogImage {
		order:2;
		float:none;
		width:100%;
	}
	
	.bloglistBlock > .usefulText {
		order:3;
	}
}

.brandHolder {
	display:flex;
	flex-wrap:nowrap;
	margin-bottom:50px;
	margin-top:50px;
	gap:30px;
	color:#3e3e3e;
}

.brandLeft {
	width:20%;
	flex-shrink:0;
}

.galleryHolder {
	display:flex;
	flex-wrap:wrap;
	column-gap:1%;
	justify-content:center;
	row-gap:15px;
	margin-top:30px;
}

.galleryHolder a {
	width:24%;
	border:1px solid #ab9f97;
	padding:5px;
	font-size:0px;
}

.galleryHolder div {
	aspect-ratio:16/9;
	display:inline-block;
	text-align:center;
	font-size:0px;
}

.galleryHolder img {
	object-fit:cover;
	width:100%;
	height:100%;
}

.galleryHolder p {
	text-align:center;
	font-size:14px;
}

@media (max-width: 900px) {
	.galleryHolder a {
		width:49%;
	}
}

@media (max-width: 500px) {
	.galleryHolder a {
		width:100%;
	}
}

.storyHolder.section-bride {
	margin-top:0px !important;
	padding:0px !important;
	background:#ffffff;
}

.storyHolder .slider {
	border:1px solid #ab9f97;
}

.container-maintext {
	font-size:20px;
	color:#3e3e3e;
}