

html,
body {
	height: 100%;
	font-family: "Cairo", sans-serif;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;	
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Cairo", sans-serif;
}
h1 {
	font-size: 70px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
	font-size: 15px;
	font-family: "Cairo", sans-serif;
	color: #707070;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}
img {
	max-width: 100%;
}
input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 40px;
	text-align: center;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 700;
	color: #323232;
	margin-bottom: 10px;
}

.section-title P {
	color: #707070;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 12px 30px 10px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #f03250;
	border-radius: 2px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: #f03250;
	border: none;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}
.header {
    position: relative;
    background: #222222;
    border-top: 2px solid #d1ae32;
}

.header.header--normal {
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	position: fixed;
}

.header.header--normal .header__menu ul li a {
	color: #323232;
}

.header.header--normal .login-btn {
	color: #707070;
	border-color: #e1e1e1;
}

.header__logo {
	padding: 7px 0 0 0;
    text-align: center;
}
.header__logo img{
	width: 250px;    
}
.header__nav {
	text-align: right;
	padding: 18px 0;
}

.header__menu {
	display: inline-block;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 55px;
	position: relative;
}

.header__menu ul li:hover .dropdown {
	top: 32px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a {
	color: #ffffff;
}

.header__menu ul li:hover .dropdown li a:after {
	display: none;
}

.header__menu ul li:hover>a:after {
	opacity: 1;
	width: 100%;
}



.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	width: 180px;
	background: #222222;
	text-align: left;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
	padding: 5px 0;
}

.header__menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .dropdown li a {
	padding: 6px 15px;
	font-weight: 400;
	font-size: 14px;
}

.header__menu ul li a {
	font-size: 16px;
    color: #ecd96b;
    font-weight: 500;
    padding: 5px 0;
    display: block;
    position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0%;
	background: #c6a242;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}
.header__menu ul li a::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 3px;
	width: 0%;
	background: #c6a242;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}
.header__menu ul li.active a:after,.header__menu ul li:hover a::before {
	opacity: 1;
	width: 100%;
}
.header__menu__right {
	display: inline-block;
}

.header__menu__right .primary-btn {
	margin-right: 15px;
}

.header__menu__right .login-btn {
	font-size: 20px;
	color: #ffffff;
	height: 42px;
	width: 42px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	line-height: 38px;
	text-align: center;
	display: inline-block;
}

.slicknav_menu {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
min-height: 850px;
background: url(../img/slider-img-2.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: top center;

}

.title-new{
	position: relative;
	width: 100%;

}

.title-new .h11{	
font-size: 45px;
color: #222;
}
.title-new .h11 .title-new-sab{
    display: block;
    font-size: 25px;
}
.about-p{
	font-size: 20px;
    text-align: justify;
    line-height: 2;
}

.bg-line{
	background-image: url(../img/bg-img.png); background-repeat: repeat-x; background-position: left bottom -37px;
}

.specifications-sec{
	position: relative;
    margin: 0;
    overflow: hidden;
    padding: 0px 0 95px;
    background: #060e26;
}
.specifications-sec::before{
	position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    padding: 48px 0;
    padding: 3rem 0;
    content: '';    
    transform: skewY(-2deg) translate3d(0, 22%, 0) !important;
    background: white;
}
.specifications-icon-div{
	width: 100px;
    height: 100px;
    /* line-height: 119px; */
    text-align: center;
    border-radius: 50%;
    /* font-size: 27px; */
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1400px) and (max-width: 1920px) {
	.header {
		padding: 0 60px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media only screen and (max-width: 1366px) {
	.listing {
		width: 65%;
	}
	.listing__map {
		width: 35%;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 26px;
	}
	.listing {
		width: 60%;
	}
	.listing__map {
		width: 40%;
	}
	.listing .listing__list {
		display: block;
		margin-right: 0;
	}
	.listing .listing__list .listing__item {
		max-width: 100%;
	}
	.listing__hero__btns .primary-btn {
		padding: 12px 22px 10px;
	}
	.listing__details__rating__bar__item .barfiller {
		width: 340px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu__right .primary-btn {
		display: none;
	}
	.header__menu ul li {
		margin-right: 25px;
	}
	
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.header .container-fluid {
		position: relative;
	}
	.header__menu {
		display: none;
	}
	.header__nav {
		text-align: right;
		padding: 30px 0;
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		display: block;
	}
	.header__menu__right {
		display: none;
	}
	.slicknav_nav {
		background: #222;
	}
	.slicknav_nav ul {
		margin: 5px 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 25px;
		margin: 0;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #f03250;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #f03250;
	}
	.slicknav_btn {
		margin: 0;
		border-radius: 0;
		background: #be986300;
		position: absolute;
		right: 28px;
		top: 5px;
	}
	.slicknav_menu .slicknav_icon-bar {
		display: block;
		width: 2.125em;
		height: 0.25em;
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
		-webkit-box-shadow: 0 1px 0 rgba(0,0,0,.25);
		-moz-box-shadow: 0 1px 0 rgba(0,0,0,.25);
		box-shadow: 0 1px 0 rgba(0,0,0,.25);
	}
	.footer__copyright {
		text-align: center;
	}
	.footer__copyright__text {
		float: none;
		margin-bottom: 10px;
	}
	.footer__copyright__links {
		float: none;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.header__logo {
		padding: 38px 0 30px;
		max-width: 140px;
	}
	
}

.cta {
  background: #f3f1f0;
  padding: 60px 0;
  color: #574741;
}

.cta .nh1 {
  font-size: 28px;
  font-weight: 700;
}

.cta .nh1 span {
  color: #f03c02;
}

.cta p {
  padding: 0;
  margin: 0;
}

.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 2px;
  transition: 0.4s;
  margin: 10px;
  border-radius: 4px;
  border: 2px solid #f03c02;
  color: #f03c02;
  background: #fff;
}

.cta .cta-btn:hover {
  background: #f03c02;
  color: #fff;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.section-tittle2 span {
    margin-left: 72px;
}
.section-tittle span {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #292c37;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    letter-spacing: 0.05em;
}
.section-tittle span::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #292c37;
    top: 0;
    left: -67px;
    top: 50%;
    transform: translateY(-50%);
}
.section-tittle h2 {
    font-size: 30px;
    display: block;
    color: #1d2434;
    font-weight: 800;
    text-transform: uppercase;
}
.section-tittle .nh22 {
    font-size: 50px;
    display: block;
    color: #1d2434;
    font-weight: 800;
    text-transform: uppercase;
}
.btn-dk {
    background: #ff1313;
    font-family: "Rajdhani",sans-serif;
    text-transform: uppercase;
    padding: 30px 37px 30px 97px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    border-radius: 0px;
    line-height: 1;
    -moz-user-select: none;
    letter-spacing: 1px;
    line-height: 0;
    margin-bottom: 0;
    margin: 10px;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
}
.btn-dk::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: #dd1313;
    z-index: 1;
    border-radius: 5px;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
    border-radius: 0px;
}

.about-style {
    position: relative;
    background: #fdfdfdf0;
    padding: 70px 0px 0px 0px;
    margin: auto;
}
.about-style p{
	font-size: 20px;
    text-align: justify;
    line-height: 1.8;
    color: #5a595a;
}
.about-style::before{
	content: '';
    position: absolute;
    left: -10px;
    width: 100%;
    max-width: 200px;
    top: 5px;
    min-height: 100%;
    background: url(../img/flower-shape.png);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}
.about-style::after{
	content: '';
    position: absolute;
    right: 0px;
    width: 100%;
	max-width: 200px;
	transform: revert;
    top: 5px;
    min-height: 100%;
    background: url(../img/flower-shape.png);
    background-repeat:repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.5;
}

.one-section-title {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 40px;
    text-align: center;
    color: #353435 !important;
    /* text-shadow: 5px 7px 7px rgb(0 0 0 / 30%); */
}
.one-section-title .sub-title {
    display: inline-block;
    font-weight: 600;
    font-size: 35px !important;
    background: url(../img/text-style.png);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    background-size: cover;
    margin-bottom: 5px;
    -webkit-text-stroke: 1px #ffffff;
    text-shadow: 2px 5px 5px rgb(0 0 0 / 54%);
}


.three-faq-area {
    position: relative;
}
.three-faq-area .faq-shape img {
    position: absolute;
}
.three-faq-area .faq-shape img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: -1;
}
.three-faq-area .faq-shape img:nth-child(2) {
    bottom: 0;
    right: 0;
}
.three-faq-area .faq-shape img:nth-child(3) {
    top: 80px;
    left: 0;
}
.min-he300 {
    margin-bottom: 30px;
}
.section_gap-sm{
	margin: 50px 0px;
}

video {
    cursor: pointer;
}
.video-icon {
    position: relative;
}

.video-icon span {

	position: absolute;

	top: 50%;

	left: 50%;

	font-size: 100px;

	-webkit-transform: translate(-50%, -50%);

	-ms-transform: translate(-50%, -50%);

	transform: translate(-50%, -50%)

}



.video-play-button {

	position: absolute;

	z-index: 10;

	top: 50%;

	left: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	-webkit-box-sizing: content-box;

	box-sizing: content-box;

	display: block;

	width: 32px;

	height: 44px;

	border-radius: 50%;

	padding: 18px 20px 18px 28px

}



.video-play-button:before {

	content: "";

	position: absolute;

	z-index: 0;

	left: 50%;

	top: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	display: block;

	width: 80px;

	height: 80px;

	background: #ba1f24;

	border-radius: 50%;

	-webkit-animation: pulse-border 1.5s ease-out infinite;

	animation: pulse-border 1.5s ease-out infinite

}



.video-play-button span {

	display: block;

	position: relative;

	z-index: 3;

	width: 0;

	height: 0;

	border-left: 32px solid #fff;

	border-top: 22px solid transparent;

	border-bottom: 22px solid transparent

}



.video-icon span {

	position: absolute;

	top: 47%;

	left: 50%;

	font-size: 100px;

	-webkit-transform: translate(-50%, -50%);

	-ms-transform: translate(-50%, -50%);

	transform: translate(-50%, -50%)

}



.video-play-button:after {

	content: "";

	position: absolute;

	z-index: 1;

	left: 50%;

	top: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	display: block;

	width: 80px;

	height: 80px;

	background: #fa183d;

	border-radius: 50%;

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s

}



.video-play-button {

	position: absolute;

	z-index: 10;

	top: 50%;

	left: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	-webkit-box-sizing: content-box;

	box-sizing: content-box;

	display: block;

	width: 32px;

	height: 44px;

	border-radius: 50%;

	padding: 18px 20px 18px 28px

}



.video-play-button:before {

	content: "";

	position: absolute;

	z-index: 0;

	left: 50%;

	top: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	display: block;

	width: 80px;

	height: 80px;

	background: #ba1f24;

	border-radius: 50%;

	-webkit-animation: pulse-border 1.5s ease-out infinite;

	animation: pulse-border 1.5s ease-out infinite

}



.video-play-button:after {

	content: "";

	position: absolute;

	z-index: 1;

	left: 50%;

	top: 50%;

	-webkit-transform: translateX(-50%) translateY(-50%);

	-ms-transform: translateX(-50%) translateY(-50%);

	transform: translateX(-50%) translateY(-50%);

	display: block;

	width: 80px;

	height: 80px;

	background: #fa183d;

	border-radius: 50%;

	-webkit-transition: all .2s;

	-o-transition: all .2s;

	transition: all .2s

}



.video-play-button:hover:after {

	background-color: #da0528

}



.video-play-button span {

	display: block;

	position: relative;

	z-index: 3;

	width: 0;

	height: 0;

	border-left: 32px solid #fff;

	border-top: 22px solid transparent;

	border-bottom: 22px solid transparent

}

@-webkit-keyframes pulse-border {

	0% {

		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

		opacity: 1

	}

	100% {

		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

		opacity: 0

	}

}



@keyframes pulse-border {

	0% {

		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

		opacity: 1

	}

	100% {

		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

		opacity: 0

	}

}

.container-2{
	max-width: 1500px;
	margin: auto;
}
.icon-slide-sec{
	position: relative;
	width: 100%;
	padding-bottom: 100px;
}
.icon-slide-item{
	text-align: center;
    margin-top: 35px;
}
.icon-slide-item img{
	max-width: 80px;
    margin: auto;
}
.icon-slide-item-title{
	font-size: 20px;
    text-align: center;
    margin-top: 11px;
    margin-bottom: 4px;
    color: #9e8220;
}
.icon-slide-item-title-sub{
	font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
}


.advisor-content ul {
    margin: 0;
    padding: 0;
    margin-bottom: 22px;
}
.advisor-content ul li {
    list-style-type: none;
    display: block;
    color: #444444;
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    display: flex;
    border-bottom: 1px solid #eeecec;
    padding-bottom: 20px;
}
.advisor-content ul li:before {
    left: 0;
    color: #c42052;
    content: "\f101";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    /* position: absolute; */
    top: 17px;
    font-weight: 100;
	margin-right: 9px;
	margin-top: 2px;
	
}
.innerPage {
    padding-top: 0px !important;
}
 .text1, .text2 , .text3, .text4 {
	display: inline-block;
  }
  .btn-dk-read-more {
	background:none;
	color: red;
	position: relative;
	padding: 0px;
	margin: 0px;
  }
  .btn-dk-read-more1, .btn-dk-read-more {
	display: none;
  }
  .title-new-sub{
	font-size: 19px;
    text-align: center;
    margin-bottom: 30px;
  }
.max-h2{
	max-height: 540px;
	overflow: hidden;
	overflow-y: scroll;
}
.owl-carousel, .owl-carousel .owl-item{
	-webkit-tap-highlight-color: transparent;
    position: relative;
    width: 100%;
    margin: auto;
    text-align: center;
}
.owl-carousel button.owl-dot{
	background: #060e26;
    border: none;
    padding: 5px!important;
    font: inherit;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px;
    text-align: center;
}



.about-con-bg{
    background: #060e26;
    padding: 100px 25px;
}
.about-area .about-img {
    position: relative;
}
.about-font-img img{
/*    max-height: 600px;
    width: 100%;*/
}
.section_gap{
    padding-top:  50px;
}
.section_gap-sm{
  padding: 0px 0;  
}
.three-faq-area {
    position: relative;
}
.three-faq-area .faq-shape img {
    position: absolute;
}
.three-faq-area .faq-shape img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: -1;
}
.three-faq-area .faq-shape img:nth-child(2) {
    bottom: 0;
    right: 0;
}
.three-faq-area .faq-shape img:nth-child(3) {
    top: 80px;
    left: 0;
}


.advisor-content ul {
    margin: 0;
    padding: 0;
    margin-bottom: 22px;
}
.advisor-content ul li {
    list-style-type: none;
    display: block;
    color: #060e26;
    margin-bottom: 12px;
    font-size: 16px;
    position: relative;
    display: flex;
    border-bottom: 1px solid #1d2434;
    padding-bottom: 20px;
}
.advisor-content ul li:before {
    left: 0;
    color: #060e26;
    content: "\f1ce";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    /* position: absolute; */
    top: 17px;
    font-weight: 100;
    margin-right: 9px;
}
.ul-style-new li{
	color: #cfcfcf !important;
    border-bottom: 1px solid #464646 !important;
}
.ul-style-new li::before{
	color: #c9b353 !important;
}
.three-among-area .two-section-title {
    position: relative;
}
.one-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.two-section-title .sub-title {
    margin-bottom: 7px;
    padding-bottom: 7px;
}
.one-section-title .sub-title {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;    
    background: radial-gradient(rgb(6 14 38) 0%,rgb(6 14 38) 29%,rgb(6 14 38) 75%,rgb(235 226 226) 89%,rgb(0 101 32) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 5px;
}
/* .one-section-title .sub-title:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    right: -48px;
    bottom: 7px;   
    background: linear-gradient(90deg, #cc2795 23%, #d72328 64%);
} */
.mt-50{
	margin-top: 50px;
}
#floor-plan .item img{
	border: 2px solid #d6c08475;
}
.max-h1{
	max-height: 400px;
    overflow-y: scroll;
    padding-bottom: 0;
    margin-bottom: 0;
}


.two-section-title .sub-title:before {
    left: 32px;
    right: unset;
    bottom: 0;
    width: 65px;
}
.two-section-title  {
    font-size: 40px;
}
.one-section-title {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 40px;
}

.min-he300{
	margin-bottom: 30px;
}

.clubhouse-title{
	font-size: 21px !important;
    color: #691113;
}
.clubhouse-title::before{
	display: none !important;
	content: '';
}
.d-none-dextop{
	display: none !important;
}

/* about-back-image */

.about-back-image{
    background: url('../img/banner-bg.jpg');
    width: 100%;
    background-size: cover;
    position: relative;    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}
.about-back-image::before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: rgb(0 0 0 / 77%);
    top: 0px;
    left: 0px;
}
.text-white{
	color: #fff !important;
}


/* highlight icon sec */

.highlight-icon-sec{
	position: relative;
	padding: 50px 0px;
	background: #060e26;	
}
.highlight-icon{
	text-align: center;
	padding: 10px 0;
}
.highlight-icon img{
	padding: 8px 0;
}
.highlight-icon .highlight-icon-con{
	color: rgba(171, 147, 94, 1);
	font-size: 16px;
}
.highlight-icon-heading{
	font-weight: 700;
    font-size: 25px;
    margin-bottom: 5px;
	text-align: center;
}
.highlight-icon-heading .sub-title {
    display: inline-block;
    font-weight: 600;
    font-size: 35px;
    background: radial-gradient(rgb(176, 151, 76) 0%,rgb(250, 220, 130) 29%,rgb(145, 121, 49) 75%,rgb(250, 220, 130) 89%,rgb(145, 121, 49) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 5px;
}

.highlight-carousel-span{
	display: block;
    background: #060e26;
    color: #fff;
}

@media (max-width: 1280px) {
.max-h2 {
    max-height: 310px;
    overflow: hidden;
    overflow-y: scroll;
}

}
@media (max-width: 768px) {
	.d-none-mobile{
		display: none !important;
	}
	.d-none-dextop{
		display: block !important;
	}
	.about-style::after,.about-style::before{
		display: none;
	}
	.one-section-title .sub-title{
		font-size: 25px !important;
		-webkit-text-stroke:0px
	}
	.header{
		padding: 10px 0px;
	}
	.header__logo img {
		max-width: 150px;
	}
 	#owl-demo{
		margin-top: 58px;
	}
	.title-new .h11 {
		font-size: 22px;
		color: #222;
	}
	.title-new .h11 .title-new-sab {		
		font-size: 14px;
	}
	.about-p{
		font-size: 15px;
	}
	.advisor-content ul li{
		text-align: justify;
	}
	.header__logo{
		padding: 0px!important;
	}
	.section_gap {
		padding-top: 10px;
	}
	.one-section-title{
		margin-bottom: 10px !important;
	}
	.one-section-title .sub-title:before{
		left: 63%;
		top: -23px;
	}
	.text, .text1, .text2 , .text3, .text4 {
		display: none;
	}
	.btn-dk-read-more1, .btn-dk-read-more {
	  display: block;
	  padding: 10px;
	}
	#icon-slide{
	background: antiquewhite;
    padding: 11px 0px;
	}
	.section_gap-sm {
		margin: 10px 0px;
	}
	.one-section-title .sub-title{
		text-shadow: 2px 5px 5px rgb(0 0 0 / 16%);
	}
	.about-con-bg {
		background: linen;
		padding: 20px 25px;
	}
	.section-tittle h2{
		font-size: 28px;
	}
	.section-tittle span{
		margin-top: 15px;
	}
}