/* DETAILS
==================================================
	Theme Name: MKD	
==================================================
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--Poppins: 'Poppins', sans-serif;
	--font-awesome: 'Font Awesome 6 Free';
	--common-transition: all 0.3s ease 0s;

	--clr-theme: #0b3e63;
	--clr-text: #636363;
	--clr-black: #0a0a0a;
	--clr-white: #ffffff;
	--clr-sky:#e8f5ff;
	--f-size-S:16px;
	--f-size-M:19px;
	--f-size-L:21px;
	--f-size-XL:23px;
	--f-size-XXL:39px;
	--f-size-XXXL:65px;
}

/* =========== global adjustments =========== */
html {
	overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	font-family: var(--Poppins);
	font-weight: 300;
	font-size: var(--f-size-S);
	line-height: 1.5;
	color: var(--text-color);
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin: 0 0 20px;
	padding: 0;
	font-family: var(--Poppins);
}
/* h1 {
	font-size: 65px;
	line-height: 1.15;
	font-weight: 600;
}
h2 {
	font-size: 40px;
	line-height: 1.34;
	font-weight: 600;
}
h3 {
	font-size: 33px;
	line-height: 1.33;
	font-weight: 600;
}
h4 {
	font-size: 24px;
	line-height: 1.41;
}
h5 {
	font-size: 20px;
	line-height: 1.5;
} */
p {
	margin-bottom: 20px;
}
img {
	max-width: 100%;
}
a,
img {
	border: 0;
	text-decoration: none;
	outline: none;
}
a {
	color: var(--red);
}
a:link,
a:visited,
a:focus,
a:hover {
	outline: none;
	text-decoration: none;
	transition: var(--common-transition);
}
a:hover {
	text-decoration: none;
}
strong {
	font-weight: 700;
	color: var(--clr-black);
}
.btn,
a.btn {
	font-size: var(--f-size-XL);
	line-height: 1;
	font-weight: 600;
	padding: 21px 69px;
	background: var(--clr-white);
	color: var(--clr-black);
	border-radius: 10px;
	border: 1px solid transparent;
}
.btn:hover {
	background: var(--clr-theme);
	color: var(--clr-white);
	/* border: 1px solid var(--clr-white); */
}
.img-resize {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.input-each {
	margin-bottom: 15px;
}

.form-control {
	border-radius: 10px;
	border: 1px solid #343434;
	background: #141414;
	padding: 27px 30px;
	font-size: var(--f-size-XL);
	line-height: 1;
	color: #848484;
}
textarea.form-control {
	height: 160px;
	resize: none;
}

/* =========== Common Padding =========== */
.pt-50 {
	padding-top: 50px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pt-100 {
	padding-top: 100px;
}
.pb-100 {
	padding-bottom: 100px;
}
.common-padding {
	padding-top: 100px;
	padding-bottom: 100px;
}
.common-padding-small {
	padding-top: 70px;
	padding-bottom: 70px;
}

/* ======== pagination Styles ======== */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
	width: 100%;
}
.pagination ul li {
	list-style: none;
}
.pagination .page-numbers {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #ffe4aa;
	font-size: 18px;
	color: #080a0a;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}
.pagination .current > .page-numbers,
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	color: #ffffff;
	background: #ffae00;
}
.pagination .next.page-numbers,
.pagination .prev.page-numbers {
	border: 1px solid #ffae00;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

/* =========== container adjustments =========== */
/* @media only screen and (min-width: 1499px) {
	.container {
		max-width: 1324px;
	}
} */

/* @media only screen and (min-width: 1700px){
    .container{ max-width: 1624px;}
} */

/* ============ header Start ============ */
.main-header {
	position: relative;
	z-index: 100;
	background: var(--clr-theme);
	padding: 15px 0 10px;
}

.logo {
	width: 100%;
}
.main-header .navigation {
	position: relative;
}
.mobile-menu {
	/*position: fixed;*/
	top: -100vh;
	right: 0;
	left: 0;
	z-index: 9999;
	height: 100vh;
	display: none;
	transition: all 0.45s ease-in-out;
	background: var(--clr-theme);
}
.logo-block a {
	display: block;
	width: auto;
	height: 75px;
}
.logo-block img {
	width: 100%;
	height: 100%;
}
.main-menu ul {
    display: flex;
    gap: 30px;
}
.main-menu ul li:last-child {
	margin-right: 0;
}

.main-menu ul li a {
	font-size: var(--f-size-S);
	line-height: 1.2;
	font-weight: 500;
	color: var(--clr-white);
	padding: 20px 0 25px;
	display: block;
	text-transform: capitalize;
	border-bottom: 2px solid transparent;
}
.main-menu ul li a:hover {
	color: var(--clr-sky);
	border-bottom: 2px solid var(--clr-white);
}

/* ========== Responsive Menu Icon ========== */
.nav-btn {
	width: 24px;
	height: 22px;
	position: absolute;
	transform: rotate(0deg);
	transition: 0.5s ease-in-out;
	cursor: pointer;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: none;
}
.nav-btn span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 5px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
	background: var(--clr-sky);
}
.nav-btn span:nth-child(1) {
	top: 0px;
}
.nav-btn span:nth-child(2) {
	top: 8px;
}
.nav-btn span:nth-child(3) {
	top: 17px;
}
/* .nav-btn.open span:nth-child(1) { top: 14px; transform: rotate(135deg); }
	.nav-btn.open span:nth-child(2) { opacity: 0; left: -30px; }
	.nav-btn.open span:nth-child(3) {  top: 14px; transform: rotate(-135deg); } */
.mobile-menu .nav-btn-close {
	position: relative;
	width: 30px;
	height: 24px;
	vertical-align: top;
	cursor: pointer;
	z-index: 9;
	transition: all 0.45s ease-in-out;
	display: none;
}
.mobile-menu .nav-btn-close .top {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 2px;
	background: var(--clr-white);
	transform: rotate(45deg);
	z-index: 99;
}
.mobile-menu .nav-btn-close .bottom {
	position: absolute;
	top: 10px;
	width: 100%;
	height: 2px;
	background: var(--clr-white);
	transform: rotate(-45deg);
	z-index: 99;
}
.mobile-mid-section {
	display: flex;
	align-items: start;
	height: calc(100vh - 144.7px);
	overflow-y: auto;
	transition: all 0.45s ease-in-out;
	padding-top: 0px;
}
.open .mobile-menu .main-menu {
	display: block;
}
.mobile-mid-section .main-menu ul {
	display: block;
}
.mobile-mid-section .main-menu ul li {
	display: block;
	font-size: var(--f-size-S);
	line-height: 1.2;
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin: 0;
}
.mobile-mid-section .main-menu ul li a {
	text-transform: uppercase;
	display: block;
	color: var(--clr-white);
	padding: 10px 0;
	font-size: 14px;
}

/* ========== Sticky Header ========== */

.header-sticky .navigation-bar {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.1);
	animation: slide-down 0.5s;
	transition: var(--common-transition);
	z-index: 11;
}
.header-sticky .top-block {
	display: none;
}
.header-sticky main {
	padding-top: 187.19px;
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Home Page Start */
.banner {
	overflow: hidden;
}
.banner .item,
.banner {
	position: relative;
	background: #000;
}
.banner .image {
    position: relative;
    padding-bottom: 39.8%;
    background: #000;
}
.banner .image img {
	opacity: 0.14;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-info-wrap {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 2;
}
.banner-info {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.banner-info h2 {
	font-size: var(--f-size-XXXL);
	font-weight: 900;
	color: var(--clr-white);
	line-height: 1.2;
	margin-bottom: 15px;
}
.banner-info p {
	font-size: var(--f-size-M);
	font-weight: 400;
	color: var(--clr-white);
	margin: 0;
}

.banner-slider {
	position: relative;
	z-index: 2;
}

.banner-slider .slick-prev,
.banner-slider .slick-prev:hover {
	left: 0px !important;
	background: url('../images/banner-prev.svg')
		no-repeat !important;
	width: 50px;
	height: 78px;
	z-index: 2;
	background-size: contain !important;
}
.banner-slider .slick-next,
.banner-slider .slick-next:hover {
	right: 0px !important;
	background: url('../images/banner-next.svg')
		no-repeat !important;
	width: 50px;
	height: 78px;
	z-index: 2;
	background-size: contain !important;
}
.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
	display: none;
}

/*======= About Start =======*/

.about-info h2 {
	font-size: var(--f-size-XXL);
	font-weight: 700;
	margin-bottom: 34px;
	color: var(--clr-black);;
}
.about-info p {
	font-size: var(--f-size-S);
	font-weight: 400;
	margin-bottom: 0px;
	color: var(--clr-black);;
}
.about-img {
	text-align: right;
}
.about-img-holder {
	text-align: right;
	position: relative;
	padding-bottom: 74%;
	margin-right: 30px;
}
.about-img-holder img{
	border-radius: 15px;
	overflow: hidden;
	z-index: 2;
}
.about-img-holder:after {
    position: absolute;
    right: -30px;
    bottom: -20px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 4px solid var(--clr-theme);
    content: '';
    z-index: 1;
}

.info-graphics-wrap{
	background: var(--clr-sky);
}
.info-graphics-wrap .row{
	align-items: center;
	justify-content: center;
}
.info-graphics-each{
	text-align: center;
}
.info-graphics-each img{
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #9bb3c6;
}
.amenities-left {
    padding-right: 0;
	position: relative;
}
.amenities-left .amenities-title {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	position: relative;
}
.amenities-left .amenities-title:after {
    position: absolute;
    right: 0;
    top: 0px;
    width: 34px;
    height: 100%;
    content: '';
    background: url(../images/title-after.png) no-repeat;
    z-index: 1;
    object-fit: contain;
}
.amenities-right {
    padding-left: 0;
}
.amenities-right .amenities-title {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.amenities-title h2{
	padding: 28px 36px;
	margin: 0;	
	color: var(--clr-white);
}
.amenities-title{
	background: var(--clr-theme);
	border-radius: 10px;
	margin-bottom: 58px;
}
.amenities-wrap ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}
.amenities-wrap ul li {
    position: relative;
    font-weight: 500;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 38px;
    width: 100%;
}
.amenities-wrap ul li::before{
	background: url(../images/list-style.png) no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 29px;
	height: 29px;
	content: '';
	z-index: 1;
}
.solution-wrap{
	background: var(--clr-sky);
}
.solution-wrap .about-info {
    padding-left: 100px;
}
.solution-wrap .about-img-holder{
	margin-right: 0px;
	margin-left: 30px;
}
.solution-wrap .about-img-holder:after {   
    right: auto;
	left: -30px;
    bottom: -20px;
}


.partnership-wrap h2{
	font-size: var(--f-size-XXL);
	font-weight: 700;
	margin-bottom: 50px;
}
.partnership-each{
	background: var(--clr-theme);
	border-radius: 10px;
	padding: 44px 35px 50px;
	height: 100%;
}
.partnership-icon{
	width: 83px;
	height: 83px;
	border-radius: 50%;
	background: var(--clr-white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 29px;
}
.partnership-each h3{
	font-size: var(--f-size-XL);
	font-weight: 600;
	color: var(--clr-white);
}
.partnership-each p{
	font-size: var(--f-size-M);	
	color: var(--clr-white);
	margin-bottom: 0;
}

.options-wrap{padding-bottom: 100px;}
.options-each{
	background: var(--clr-sky);
	border: 1px solid #cbe0ef;
	border-radius: 10px;
	padding: 40px 30px 32px;
	margin-bottom: 13px;
}
.options-each:last-child{margin: 0;}

.options-each h3, .options-md h3{
	font-size: var(--f-size-XL);
	font-weight: 500;
	color: var(--clr-black);
}
.options-each p{
	font-weight: 500;
	margin-bottom: 0;
}

.options-md{
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	padding: 35px 24px 24px;
}
.options-md h3{margin: 15px 0 0 0;}

.gallery-wrap{
	background: var(--clr-sky);
}
.gallery-wrap ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.gallery-wrap h2{
	font-size: var(--f-size-XXL);
	margin-bottom: 16px;
	font-weight: 700;
}
.gallery-wrap p{
	font-size: var(--f-size-L);
	margin-bottom: 65px;
}

.branding-wrap-title h3{
	font-size: var(--f-size-L);
	margin-bottom: 22px;
	font-weight: 700;
}
.branding-wrap-title h2{
	font-size: var(--f-size-XXL);
	font-weight: 700;
	margin-bottom: 0px;
}
.branding-wrap-title{
	margin-bottom: 40px;
}
.customize-slider .item{
	border-radius: 10px;
	border: 1px solid var(--clr-theme);
}
.customize-img-holder{
	position: relative;
	padding-bottom: 39%;
}
.customize-info{
	padding: 30px 120px 30px 40px;
}
.customize-info h3{
	font-size: var(--f-size-XL);
	font-weight: 600;
	margin-bottom: 20px;
}
.customize-info p{
	font-size: var(--f-size-M);
	font-weight: 400;
	margin-bottom: 0px;
}
.customize-slider .slick-dots {
    bottom: 70px;
    right: 50px;
    width: max-content;
}
.customize-slider .slick-dots li{
	width: 11px;
    height: 11px;
	margin: 0 4px;
}
.customize-slider .slick-dots li button {
    background: #838383;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.slick-dots li button:before{display: none;}
.customize-slider .slick-dots li.slick-active button {
    background: #323232;
}

.experience-wrap{
	background: var(--clr-sky);
}
.experience-wrap h2{
	margin-bottom: 58px;
	font-size: var(--f-size-XXL);
	font-weight: 700;
}
.experience-each{
	padding: 50px 30px 25px;
	border-radius: 10px;
	background: var(--clr-white);
	height: 100%;
}
.experience-each h3{
	font-size: var(--f-size-XL);
	font-weight: 700;
	margin-bottom: 20px;
}
.experience-each p{
	margin: 0;
}
.experience-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--clr-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.market-info-img-holder {
    position: relative;
    /* padding-bottom: 86%; */
    border-radius: 15px;
    overflow: hidden;
}
.market-info-img-holder img{
	width: 100%;
	object-fit: cover;
}
.market-info-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 28px 0 26px;
    text-align: center;
    background: var(--clr-theme);
}
.market-info-title h3{
	color: var(--clr-white);
}
.market-info-each-wrap:not(:last-child) .market-info-each{
	margin-bottom: 20px;
}

/* ======= Footer Start ======= */
.ftr-btm {
	background: var(--clr-black);
	padding: 30px 0;	
}
.ftr-btm p {
	color: #848484;
	margin: 0;
}

.ftr-top {
	padding: 85px 0 130px;
	background: #1c1c1c;
}

.ftr-each h3 {
	color: var(--clr-white);
	margin-bottom: 70px;
	font-weight: 400;
}
.ftr-each h3 span{display: block;}
.ftr-each h3 a{color: var(--clr-white);}
.ftr-top ul {
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 11px;
}
.ftr-top ul a {
	display: block;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: var(--clr-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--clr-black);
}

footer a:hover,
.ftr-btm ul li a:hover {
	background: var(--clr-theme);;
	color: var(--clr-white);
}
.ftr-contact-frm .btn{width: 100%;}


/*========================================
        Responsive Start
========================================== */
@media only screen and (max-width: 1599px) {
}

@media only screen and (max-width: 1499px) {
	h1 {
		font-size: var(--f-size-XXXL);
	}
	h2 {
		font-size: var(--f-size-XXL);
	}
	h3 {
		font-size: var(--f-size-XL);
	}
	h4 {
		font-size: var(--f-size-M);
	}
	h5 {
		font-size: var(--f-size-S);
	}
	.header-top .container {
		padding-top: 15px;
		padding-bottom: 17px;
	}
	.main-menu ul li a {
		padding: 15px 0;
	}

	.banner-info h2 {
		font-size: 50px;
		max-width: 500px;
		margin: 0 auto;
	}
	
}

@media only screen and (max-width: 1199px) {
	p,
	body {
		font-size: 14px;
		line-height: 1.7;
	}
	:root{
		--f-size-S:14px;
		--f-size-M:17px;
		--f-size-L:19px;
		--f-size-XL:21px;
		--f-size-XXL:26px;
		--f-size-XXXL:45px;
	}
	.btn,
	a.btn {
		padding: 16px 40px;
	}
	.common-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.logo img {
		width: auto;
		height: 50px;
	}

	.main-menu ul li a {
		font-size: var(--f-size-S);
		padding: 20px 0;
	}
	.main-menu ul {
		gap: 20px;
	}
	.banner-info h2 {
		font-size: 40px;
		max-width: 500px;
		margin: 0 auto;
	}
	.inner-banner .banner-info h2 {
		font-size: 45px;
	}
	.form-control {
		padding: 10px 25px;
		font-size: var(--f-size-S);
		height: 50px;
	}
	.about-info h2 {
		margin-bottom: 15px;
	}
	
	.ftr-top {
		padding: 40px 0 40px;
	}
	.ftr-logo p {
		margin: 20px 0 0;
	}
	
	.ftr-contact-info-each:not(:last-child) {
		margin-bottom: 14px;
	}
	
}

@media only screen and (max-width: 991px) {
	.container,
	.container-sm {
		max-width: 96%;
	}
	
	.mobile-logo img {
		height: 70px;
		width: auto;
	}
	.mobile-menu .menu-inner .mobile-top-section {
		padding: 15px 0;
		transition: all 0.45s ease-in-out;
	}
	.mobile-menu .menu-inner .mobile-top-section .inner-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.main-menu {
		display: none;
	}
	.mobile-menu {
		display: block;
		position: fixed;
	}
	.open .mobile-menu {
		display: block;
		top: 0;
		transition: all 0.45s ease-in-out;
	}
	.nav-btn,
	.mobile-menu .nav-btn-close {
		display: block;
	}

	h1 {
		font-size: var(--f-size-XXL);
	}
	h2 {
		font-size: var(--f-size-XL);
	}
	h3 {
		font-size: var(--f-size-L);
	}
	h4 {
		font-size: var(--f-size-M);
	}
	h5 {
		font-size: var(--f-size-S);
	}
	.btn,
	a.btn {
		padding: 13px 35px;
		font-size: 14px;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0 0 15px;
	}

	.logo {
		text-align: left;
	}
	
	.banner-info h2 {
		font-size: 30px;
	}
	
	.work-wrap {
		padding: 20px 0 40px;
	}
	
	.ftr-btm p,
	.ftr-btm ul li a {
		font-size: 12px;
	}
	.amenities-title h2 {
		padding: 26px 20px;
		
	}
	
}

@media only screen and (max-width: 767px) {
	:root {
		--f-size-S: 14px;
		--f-size-M: 16px;
		--f-size-L: 18px;
		--f-size-XL: 20px;
		--f-size-XXL: 22px;
		--f-size-XXXL: 35px;
	}
	
	.ftr-top .row {
		row-gap: 20px;
	}
	.ftr-each h4 {
		margin-bottom: 10px;
	}
	
	.ftr-btm {
		padding: 15px 0;
	}
	.ftr-btm .container {
		justify-content: center;
		flex-wrap: wrap;
	}
	.ftr-btm p,
	.ftr-btm ul {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.ftr-btm p {
		margin-bottom: 7px;
	}
	.ftr-logo {
		width: 100%;
	}
	.ftr-logo p {
		max-width: 100%;
	}
	.ftr-logo img {
		margin: 0 auto;
		display: block;
	}
	.ftr-menu,
	.ftr-contact {
		width: 50%;
	}
	

	.banner {
		border-radius: 0 0 15px 15px;
	}
	.banner-slider .slick-next,
	.banner-slider .slick-next:hover,
	.banner-slider .slick-prev,
	.banner-slider .slick-prev:hover {
		width: 32px;
		height: 48px;
	}
	.amenities-left .amenities-title:after{
		display: none;
	}
	.amenities-title {
		margin-bottom: 28px;
	}
	.amenities-left .amenities-title {
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;		
	}
	.amenities-right .amenities-title {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.amenities-left{
		margin-bottom: 30px;
	}
	.about-img-holder {
		padding-bottom: 100%;
		margin-right: 0px;
	}
	.about-info {
		width: 100%;
		margin-bottom: 25px;
	}
	.about-img {
		text-align: center;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	.about-img-holder:after {		
		right: -15px;
		bottom: -15px;		
		border-radius: 15px;
		border: 2px solid var(--clr-theme);		
	}
	.solution-wrap .about-img-holder:after {
		right: auto;
		left: -15px;
		bottom: -15px;
	}
	.solution-wrap .about-info {
		padding-left: 0;
		margin: 50px 0 0;
	}
	.solution-wrap .about-img-holder {
		margin-right: 0px;
		margin-left: 0;
	}
	.partnership-wrap h2, .gallery-wrap p {	
		margin-bottom: 20px;
	}
	.partnership-wrap .col-md-4, .experience-wrap .col-md-4 {
		margin-bottom: 25px;
	}
	.gallery-wrap ul {
		gap: 30px;
		justify-content: center;
	}
	.branding-wrap-title h3 {	
		margin-bottom: 8px;	
	}
	.customize-info {
		padding: 20px 20px 50px;
	}
	.customize-info p{
		font-size: 14px;
	}
	.customize-info h3 {
		margin-bottom: 10px;
	}
	.ftr-each h3 {
		margin-bottom: 30px;
	}
	.ftr-top ul a {
		width: 35px;
		height: 35px;
		font-size: 17px;
	}
	.ftr-top {
		padding: 40px 0 0px;
	}
	.partnership-each {
		text-align: center;
	}
	.partnership-icon {
		
		margin: 0 auto 25px;
	}
	.options-each {
		padding: 20px;
	}
	.customize-slider .slick-dots {
		bottom: 20px;
		right: 0;
		left: 0;
		margin: 0 auto;
		width: max-content;
	}
}



@media screen and (max-width: 575px) {
	.banner-info h2 {
		font-size: 24px;
		letter-spacing: 1.2px;
		color: var(--clr-black);
	}
	
	.banner-info-wrap {
		position: relative;
		top: auto;
		transform: translateY(0%);
		background: #f5f5f5;
		padding: 20px 0;
	}

	.banner-info p {
		color: var(--clr-black);
		font-size: 14px;
		line-height: 1.3;
		margin-top: 20px;
	}
	.banner .image {
		padding-bottom: 40%;
	}
	.banner .image img {
		opacity: 1;
	}
	.info-graphics-wrap .row {
		gap: 30px;
	}
	.amenities-title h2 {
		padding: 13px 12px;
		font-size: 18px;
	}
	.ftr-each h3 {
		margin-bottom: 30px;
		font-size: 14px;
	}
	.gallery-wrap p {
		font-size: 14px;
		line-height: normal;
	}
	.experience-wrap h2, .branding-wrap-title {
		margin-bottom: 30px;
	}
	.gallery-wrap h2 {
		margin-bottom: 10px;
	}
}

