:root{
	--primary-color:#001f51;
	--secondary-color:#e5d367;
	--dark-rose:#421f38;
	--green:#2b3d2d;
	--body-color: #191919;
	--primary-grad: linear-gradient(45deg, #00193c, #00193c, #002d6c, #002d6c, #002d6c, #002d6c, #00193c, #00193c);
	--secondary-grad: linear-gradient(45deg, var(--secondary-color), #ffdb79, var(--secondary-color));
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1320px;
    }
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #e8e8e8
}

::-webkit-scrollbar-thumb {
    background: #2e1e0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #1f74db;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

.agent-photo,
.amenities-card,
.cta,
.fixed-top,
.floor-plans,
.form-block button,
.form-block input,
.gallery-,
.nav-item a,
.project-card-,
.reviews-card,
.top-header .nav-link,
.top-header .nav-link:hover,
.top-header .sticky {
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s
}

body {
    font-family: Assistant, sans-serif;
    color: #0a2233;
    font-weight: 400;
    font-style: normal;
    font-size: 18px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Merriweather, serif;
    font-weight: 900
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .1px
}

ul {
    list-style: none
}

a:hover {
    text-decoration: none
}

button:focus {
    outline: 0 !important
}

.padbtm0 {
    padding-bottom: 0 !important
}

.mt45 {
    margin-top: 45px
}

.mt15 {
    margin-top: 15px
}

.pad-tb {
    padding-top: 50px;
    padding-bottom: 50px
}

.common-heading {
    padding: 0;
    text-align: center
}

.common-heading h2 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px
}

.common-heading p {
    font-size: 18px
}

.v-center {
    align-self: center
}

img {
    width: 100%;
}

.navbar-toggler {
    background-color: #fff;
    border: 1px solid #fff
}

/*header*/
.header {
	width: 100%;
	top: 0;
	z-index: 999;
	padding:  0;
	transition: all 300ms ease-in-out;
	background: #fff;
}

.logo {
	width: 90px;
	padding: 5px;
	position: relative;
	left: 0;
	/* background-color: var(--secondary-color); */
	min-height: 1px;
	transition: all 300ms ease-in-out;
	z-index: 2;
}

.logo1 {
	width: 181px;
}

.header.fixed .logo {
	width: 90px;
}

/* .header.fixed .logo img{
	padding: 0 10px;
  } */

.logo img {width: auto;height: 40px;}

.header .nav>ul {
	display: flex;
	align-items: center;
	position: relative;
	font-variant: all-petite-caps;
	margin: 0;
}

.header .nav>ul>li>a {
	color: var(--body-color);
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0 10px;
	position: relative;
	transition: all 300ms ease-in-out;
	padding: 1rem;
	z-index: 1;
	color: #2e1e0a;
	font-size: 1.3rem;
}

.header .nav>ul>li:hover>a {
	color: #000000;
	text-decoration: none;
}

.header .nav ul li a i {
	font-size: 75%;
}

.header .nav>ul>li>a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 1px solid #fff;
	transition: all 300ms ease-in-out;
	z-index: -1;
}

.header.fixed .nav>ul>li>a::before {
	border-bottom-color: var(--primary-color);
}

.header .nav ul li>a.active::before,
.header .nav ul li:hover>a::before {
	width: 100%;
}

.header .nav ul li .dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background-color: #fff;
	border-top: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	translate: 0 20px;
	pointer-events: none;
	transition: all 300ms ease-in-out;
}

.header .nav ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
	pointer-events: all;
}

.header .nav ul li .dropdown.dropdown-sm {
	width: max-content;
	padding: 10px 20px;
}

.header .nav ul li .dropdown.dropdown-sm ul li a {
	font-size: 15px;
	display: block;
	color: var(--primary-color);
	padding: 10px 0;
	border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.header .nav ul li .dropdown.dropdown-sm ul li:last-of-type a {
	border-bottom: none;
}

.header .nav ul li .dropdown.dropdown-sm ul li a.active,
.header .nav ul li .dropdown.dropdown-sm ul li a:hover {
	color: var(--secondary-color);
}

.header .nav ul li .dropdown.dropdown-sm ul li a.btn.disabled {
	font-size: 15px;
	border-radius: 0;
	border: none;
	line-height: normal;
}

.header .nav ul li .dropdown .drop-section {
	display: flex;
	justify-content: center;
	border-right: 1px solid rgb(0 0 0 / 20%);
}

.header .nav ul li .dropdown .drop-section:last-child {
	border-right: none;
}

.header .nav ul li .dropdown .drop-section h5 {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1rem;
}

.header .nav ul li .dropdown .drop-section ul {
	padding-left: 15px;
}

.header .nav ul li .dropdown .drop-section li {
	margin: 8px 0;
}

.header .nav ul li .dropdown .drop-section li::marker {
	color: var(--primary-color)
}

.header .nav ul li .dropdown .drop-section li a {
	color: #828282;
	display: block;
	font-weight: 600;
	font-size: 13px;
}

.header .nav ul li .dropdown .drop-section li a:hover {
	color: var(--primary-color);
}

.header.fixed .menuBtn span::before {
	background: var(--primary-color);
}
.menuContainer {
	position: fixed;
	top: 0;
	width: 300px;
	right: 0;
	bottom: 0;
	height: 100%;
	overflow: auto;
	background-color: #fff;
	padding: 70px 20px 20px;
	display: none;
	z-index: 9999;
}

.menuContainer ul li a {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray);
	padding: 10px;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.menuBtn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	position: relative;
	cursor: pointer;
}

.header.fixed .menuBtn {
	width: 40px;
	height: 40px;
}

.menuBtn div {
	position: relative;
	width: 50%;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	transition: all 300ms ease-in-out;
}

.menuBtn span {
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.header .readmore .button {
    border: none;
    background-color: #ffd187;
    color: #000000;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}
.top-header .sticky {
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px 0 rgba(189 188 188 / 34%);
    box-shadow: 0 4px 5px 0px rgb(189 188 188 / 34%);
    position: fixed;
    z-index: 9;
}

html body .top-header.header-2 .sticky .nav-link:hover {
    color: #000000
}

.top-header .nav-link:hover .nav-number {
    color: #f85359 !important
}

.top-header .nav-link {
    font-weight: 600;
    font-size: 17px;
    color: #0a2233
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(10 34 51)
}

.top-header .nav-link.active {
    color: #ba8d2c !important
}

.top-header .nav-link.active:after {
    transition: all .2s linear 0s;
    background: #ba8d2c;
    width: 90%
}

.top-header .nav-link:after {
    content: '';
    display: block;
    height: 2px;
    text-align: center;
    left: 0;
    right: 0;
    width: 0;
    float: none;
    background: #ba8d2c;
    transition: width .4s ease, background-color .4s ease;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    margin: 0 auto 0;
    position: relative;
    bottom: -4px
}

.fixed-top {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding-top: 0;
    padding-bottom: 0;
}

.brand-logo a {
    display: block
}
a.navbar-brand img {
    width: auto;
    height: 65px;
}
.top-header .sticky a.navbar-brand img {
    height: 50px;
}
.header-right ul li:after {
    content: "";
    position: absolute;
    border-right: 1px solid #eee;
    height: 30px;
    right: -12px;
    top: 10px
}

.header-right ul li:last-child:after {
    content: "";
    position: absolute;
    border-right: 0 solid #eee
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: url(../images/hero/hero-bg.png) #fff;
    padding-top: 170px;
    padding-bottom: 170px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover
}

.header-heading {
    margin: 0 50px 0 0
}

.header-heading h1 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1.3;
    margin-bottom: 25px
}

.header-heading p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
    font-weight: 500
}

.single-image .item {
    border-radius: 6px 6px 6px 50px;
    overflow: hidden
}

.owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #f85359;
    transform: translate3d(0, -50%, 0) scale(.7);
    transition: all 250ms ease-out 0s
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 20px 0 0 0;
    position: absolute;
    transition: all 250ms ease-out 0s
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block
}

.owl-carousel .owl-dots .owl-dot span {
    background: #f85359;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0, -50%, 0) scale(.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px
}

.project-card-:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.project-card- {
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    top: 0;
    position: relative
}

.project-card img {
    width: 100%
}

.apartments-list {
    overflow-x: hidden;
    background: #fff;
    padding-bottom: 80px
}

.apartments-list .mt45 {
    margin-top: 35px
}

.apartments-list .owl-stage {
    padding-bottom: 10px;
    padding-top: 10px
}

.apartments-list .owl-stage-outer {
    position: relative
}

.home-details {
    padding: 20px;
    border: 1px solid #e8e8ef;
    border-radius: 0 0 6px 6px
}

.home-details h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 4px 0
}

.feature-list {
    margin: 10px 0 0 0;
    color: #0a2233
}

.feature-list li {
    display: inline-block;
    padding: 0 15px 0 0
}

.feature-list li i {
    padding: 0 5px 0 0;
    font-size: 16px
}

.feature-section {
    background: url(../images/common/dot.png) #cbcbcb;
}

.feature-image {
    border-radius: 6px 6px 6px 50px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08)
}

.amenities-section {
    background-image: url(../images/amenities-bg.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
    padding: 70px 0px 50px;
}

.amenities-section:before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}

.amenities-section .common-heading h2 {
    /* background: linear-gradient(45deg, #ffffff, #fffefb, #fdedbf, #ffd187, #f3e3c8, #efe1c9, #dbcca2, #ffc107);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; */
    color: #fff;
}

.amenities-card:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.amenities-card {
    text-align: center;
    background: #fffdfa;
    border-radius: 6px;
    padding: 20px;
    margin: 5px 0;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    top: 0;
    position: relative;
    border: 1px solid #f7e4c3;
    cursor: grab;
}

.amenities-card-icon-section {
    width: 70px;
    margin: 0 auto 15px;
    background: rgb(255 242 220);
    border-radius: 32% 68% 64% 36%/39% 58% 42% 61%;
    padding: 8px
}

.amenities-card h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 4px 0
}

.amenities-card p {
    font-size: 16px
}

.floor-plans:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.floor-plans {
    text-align: center;
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(45deg, rgb(0 31 81), rgb(45 86 152), rgb(0 31 81));
    -webkit-box-shadow: 0 3px 6px rgba(45 86 152, .08);
    box-shadow: 0 3px 6px rgba(45 86 152, .08);
    top: 0;
    position: relative;
    border: 1px solid #000000;
    padding-bottom: 10px;
}

.floor-plans h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    /* padding: 10px; */
    /* border-top: 1px solid #e8e8ef;
    border-radius: 0 0 6px 6px; */
    border-top: 1px solid #c39660;
    border-radius: 0 0 6px 6px;
    /* background: linear-gradient(45deg, #6d9dbd, #00345b); */
    color: var(--white);
    padding-top: 10px;
}

.floor-plans p {
    color: var(--white);
    font-weight: 600;
}

.floor-plans a {
    display: block
}

.floor-img {
    display: block;
    border-radius: 6px;
    width: 100%
}

.floor-img img {
    width: 100%
}

.nav-filter {
    margin: 45px auto 0;
    display: table
}

.nav-filter .nav-tabs {
    border-bottom: 0 solid #dee2e6
}

.nav-filter .nav-item .nav-link1.active {
    color: #fff;
    background: #f85359
}

.nav-tabs .nav-item {
    margin: 0 10px 10px 10px
}

.nav-filter .nav-item .nav-link1 {
    color: #0a2233;
    line-height: 1;
    font-family: Merriweather;
    padding: 10px 20px;
    border: 0;
    background: #ffd9d5;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    display: block
}

.specification-section {
    background: #fff
}

.list-features li {
    /* background: url(../images/common/check-mark.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 10px 15px; */
    color: #ffffff;
    padding: 15px 5px 15px 20px;
    display: flex;
    align-items: center;
    /* text-indent: -10px; */
}
.list-features li:first-child {
    background-color: #0d57a6;
    border-bottom: 1px dashed #ccc;
}
.list-features li:first-child img {
    height: 35px;
}
.list-features li:nth-child(2) {
    background-color: #724f23;
    border-bottom: 1px dashed #ccc;
}
.list-features li:nth-child(3) {
    background-color: #253949;
    border-bottom: 1px dashed #ccc;
}
.list-features li:nth-child(4) {
    background-color: #7a4200;
    /* border-bottom: 1px dashed #ccc; */
}
.list-features li img {
    width: auto;
    height: 40px;
    margin-right: 8px;
    /* filter: drop-shadow(0px 3px 10px black); */
}
ul.list-features p {
    line-height: normal;
    font-size: 17px;
}

.h4-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0
}

.cta-section:before {
    content: "";
    position: absolute;
    background: rgba(10, 34, 51, .9);
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0
}

.cta-section {
    background: url(../images/common/dots.png);
    position: relative
}

.mt30 {
    margin-top: 30px
}

.mt30a {
    margin-top: 30px
}

.cta-heading p {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.5;
    font-family: Merriweather
}

.cta:hover {
    /* background-color: #05499c; */
    background: linear-gradient(45deg,rgb(216 172 66),rgb(245 217 118),rgb(200 148 44)) !important;
    color: #000000 !important;
    top: -5px;
    box-shadow: 0 5px 10px rgb(5 73 156 / 20%);
}

.cta {
    font-size: 16px;
    font-weight: 700;
    font-family: Merriweather;
    padding: 8px 45px;
    text-align: center;
    outline: 0;
    color: #000000;
    /* background-color: #ffd187; */
    background: linear-gradient(45deg,rgb(200 148 44),rgb(245 217 118),rgb(216 172 66)) !important;
    border: none;
    border-radius: 25px;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    top: 0;
    position: relative
}

.cta:hover {
    color: #fff
}

.mt20 {
    margin-top: 12px
}

.cta-text {
    align-self: center
}

/* .gallery-section {
    background: #f4f6f8
} */

.gallery-section .col-lg-4.col-md-4.col-6 {
    padding-right: 0px;
    padding-left: 5px;
}

.gallery-:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.gallery- {
    position: relative;
    top: 0;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    margin: 5px 0 0 0
}

.gallery- a img {
    display: block;
    border-radius: 6px;
    width: 100%;
    border: 3px solid #f7e4c3;
}

/* .location-section {
    background: url(../images/common/dot.png) #cbcbcb;
} */

.location-section iframe {
    width: 100%;
    height: 300px;
    border-radius: 6px
}

.loc-adlit li {
    list-style: none;
    padding: 0 0 5px 0;
    font-size: 16px
}

.loc-adlit li span {
    list-style: none;
    text-align: right;
    float: right;
    font-weight: 700
}

.agent-section {
    background: #fff5f5
}

.agent-photo img {
    width: 200px;
    border-radius: 6px
}

.social-links- a {
    color: #0a2233;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    border: 1px solid #e8e8ef;
    padding: 8px;
    width: 32px;
    height: 32px;
    text-align: center;
    margin: 0 10px 0 0;
    border-radius: 4px
}

.social-links- {
    margin: 10px 0 0 0
}

.agent-details h5 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5
}

.agent-details p {
    font-size: 16px;
    padding: 0 0 10px 0
}

.agent-details p span {
    font-weight: 600
}

.agent-photo:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.agent-photo {
    text-align: left;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    position: relative;
    top: 0;
    border: 1px solid #e8e8ef
}

.reviews-card:hover {
    box-shadow: 0 0 10px #e6e3e3;
    top: -5px
}

.reviews-section .owl-carousel .owl-dots {
    margin: 5px 0 0 0
}

.reviews-card span {
    font-size: 30px;
    color: #f85359
}

.reviews-card {
    text-align: center;
    background: url(../images/common/pricing-bottom-bg.png) #fff;
    border-radius: 6px;
    padding: 30px;
    margin: 5px 0;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    position: relative;
    top: 0;
    border: 1px solid #e8e8ef;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: grab
}

.reviews-card img {
    border-radius: 100px;
    max-width: 140px;
    margin: 0 auto 15px
}

.reviews-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 0 0
}

.reviews-card h4 span {
    font-weight: 400;
    display: block;
    font-size: 16px;
    margin: 8px 0 20px 0;
    color: #0a2233;
    font-family: Assistant, sans-serif
}

.project-logo-section {
    background: #f4f6f8
}

.project-logo img {
    margin: 0 auto;
    display: block;
    width: auto;
    height: 100px;
    filter: grayscale(1);
}
.project-logo img:hover {
    filter: grayscale(0);
}
.opl ul {
    overflow: hidden
}

.opl ul li:before {
    content: "";
    height: 100%;
    top: 0;
    left: -1px;
    position: absolute;
    border-left: 1px solid #e6e6e6
}

.opl ul li {
    width: 20%;
    float: left;
    position: relative;
    padding: 0 30px
}

.enquire-form {
    background: url(../images/common/buildings.png);
    background-repeat: no-repeat;
    background-position: center bottom
}

.cta-heading-2 img {
    margin: 0 0 20px 0
}

.cta-heading-2 {
    margin-right: 50px
}

.cta-heading-2 h2 {
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    padding-bottom: 20px;
    color: #0a2233
}

.cta-heading-2 p {
    padding-bottom: 20px
}

.form-block {
    background: rgba(255, 255, 255, .85);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    border: 1px solid #e8e8ef
}

.form-block form {
    padding: 0px 20px 15px 20px;
}

.form-block input:focus,
.form-block textarea:focus {
    border: 1px solid #f85359
}

.form-block input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 10px 0;
    border-radius: 6px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    border: 1px solid #e6e6e6
}

.form-block textarea {
    max-height: 200px;
    width: 100%;
    padding: 15px;
    margin: 0 0 10px 0;
    border-radius: 6px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    border: 1px solid #e6e6e6
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #f85359;
    background-color: #f85359
}

.custom-control-input:focus~.custom-control-label::before {
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #ffbc80
}

.custom-control-label::before {
    position: absolute;
    top: -1px;
    left: -1.5rem;
    display: block;
    width: 20px;
    height: 20px;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px
}

.custom-control-label::after {
    position: absolute;
    top: -3px;
    left: -26px;
    display: block;
    width: 25px;
    height: 25px;
    content: "";
    background: no-repeat 50%/50% 50%
}

.custom-control {
    margin-bottom: 10px
}

.form-block label input {
    height: 20px;
    width: 20px;
    position: relative;
    top: 5px;
    margin: 0 5px 0 0
}

.fieldsets label {
    position: relative;
    top: -10px;
    font-size: 14px;
    color: #f85359;
    margin: 0;
    padding: 0
}

.custom-control label {
    text-indent: -21px;
    padding: 0 0 0 21px;
    font-size: 13px
}

.form-block label a {
    color: #000
}

.form-header {
    text-align: center;
    border-bottom: 3px solid #f85359;
    padding: 15px 0 15px 0;
    margin: 0 0 20px 0;
    background-color: #fff5f5
}

.form-header h2 span {
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: #0a2233
}

.form-header p {
    text-align: center
}

.form-block p.trm {
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0
}

.form-block p.trm i {
    padding: 5px 5px 0 0
}

.form-block button:hover {
    background-color: #ffd187;
    color: #000000;
}

.form-block button:focus {
    box-shadow: none;
}

.form-block button {
    font-size: 16px;
    font-weight: 500;
    font-family: Merriweather;
    padding: 0 40px;
    line-height: 50px;
    text-align: center;
    outline: 0;
    color: #fff;
    background-color: #2e1e0a;
    border: none;
    border-radius: 25px;
    width: 100%;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08)
}

.pl0 {
    padding-left: 0 !important
}

footer {
    background: #00112b;
    /* padding: 90px 0 25px 0; */
    color: #fff
}

.footer- a img {
    width: 100px
}

footer h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700
}

.footer- p {
    text-align: center;
    padding: 25px 0 0 0;
    font-size: 15px;
    font-weight: 500;
    color: #fff
}

.footer- a {
    display: block;
    margin: 0 0 25px 0
}

.footer-block {
    padding: 20px 0
}

.social-links {
    text-align: right
}

.social-links a {
    color: #0a2233;
    font-size: 25px;
    line-height: 1
}

.footer-address-list li i {
    margin: 0 5px 0 0
}

.copyright {
    /* border-top: 1px solid #13334a;
    margin-top: 90px */
    padding: 10px 0px;
}
.copyright p {color: #cccccc; font-size: 14px;}
.copyright .disclaimer {
    font-size: 14px;
    text-align: end;
}

.footer-address-list li {
    font-size: 16px;
    text-indent: -12px;
    padding-left: 25px;
    line-height: 35px
}

.footer-social-media-icons a {
    color: #fff;
    font-size: 16px;
    border: 1px solid #cacaca;
    border-radius: 4px;
    margin: 0 2px;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 34px
}

.footer-social-media-icons a.facebook {
    background: #0069f7;
    border-color: #0069f7
}

.footer-social-media-icons a.twitter {
    background: #00c6f7;
    border-color: #00c6f7
}

.footer-social-media-icons a.instagram {
    background: #d62977;
    border-color: #d62977
}

.footer-social-media-icons a.linkedin {
    background: #0e72a3;
    border-color: #0e72a3
}

.footer-address-list li a {
    color: #fff
}

.v-center {
    align-items: center;
    align-self: center
}

.index2 h1,
.index2 h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 700
}

.common-heading-2 p {
    font-size: 18px;
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4
}

.h1 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 800
}

.h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 800
}

.h3 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 800
}

.h4 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600
}

.h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600
}

.h6 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px
}

html .mr5 {
    margin-right: 5px
}

html .m0 {
    margin: 0 !important
}

html .mt0 {
    margin-top: 0
}

html .mt5 {
    margin-top: 5px
}

html .mt10 {
    margin-top: 10px
}

html .mt15 {
    margin-top: 15px
}

html .mt20 {
    margin-top: 20px
}

html .mt25 {
    margin-top: 25px
}

html .mt30 {
    margin-top: 30px
}

html .mt35 {
    margin-top: 35px
}

html .mt40 {
    margin-top: 40px
}

html .mt45 {
    margin-top: 45px
}

html .mt50 {
    margin-top: 50px
}

html .mt55 {
    margin-top: 55px
}

html .mt60 {
    margin-top: 60px
}

html .mt65 {
    margin-top: 65px
}

html .mt70 {
    margin-top: 70px
}

html .mt75 {
    margin-top: 75px
}

html .mt80 {
    margin-top: 80px
}

html .mt85 {
    margin-top: 85px
}

html .mt90 {
    margin-top: 90px
}

html .mt95 {
    margin-top: 95px
}

html .mt100 {
    margin-top: 100px
}

html .mt106 {
    margin-top: 105px
}

html .mt110 {
    margin-top: 110px
}

html .mt115 {
    margin-top: 115px
}

html .mt120 {
    margin-top: 120px
}

html .mt125 {
    margin-top: 125px
}

html .mt130 {
    margin-top: 130px
}

html .mt135 {
    margin-top: 135px
}

html .mt140 {
    margin-top: 140px
}

html .mt145 {
    margin-top: 145px
}

html .mt150 {
    margin-top: 150px
}

html .mb0 {
    margin-bottom: 0
}

html .mb5 {
    margin-bottom: 5px
}

html .mb10 {
    margin-bottom: 10px
}

html .mb15 {
    margin-bottom: 15px
}

html .mb20 {
    margin-bottom: 20px
}

html .mb25 {
    margin-bottom: 25px
}

html .mb30 {
    margin-bottom: 30px
}

html .mb35 {
    margin-bottom: 35px
}

html .mb40 {
    margin-bottom: 40px
}

html .mb45 {
    margin-bottom: 45px
}

html .mb50 {
    margin-bottom: 50px
}

html .mb55 {
    margin-bottom: 55px
}

html .mb60 {
    margin-bottom: 60px
}

html .mb65 {
    margin-bottom: 65px
}

html .mb70 {
    margin-bottom: 70px
}

html .mb75 {
    margin-bottom: 75px
}

html .mb80 {
    margin-bottom: 80px
}

html .mb85 {
    margin-bottom: 85px
}

html .mb90 {
    margin-bottom: 90px
}

html .mb95 {
    margin-bottom: 95px
}

html .mb100 {
    margin-bottom: 100px
}

html .ml5 {
    margin-left: 5px
}

html .ml10 {
    margin-left: 10px
}

html .ml15 {
    margin-left: 15px
}

html .ml20 {
    margin-left: 20px
}

html .ml25 {
    margin-left: 25px
}

html .ml30 {
    margin-left: 30px
}

html .ml35 {
    margin-left: 35px
}

html .ml40 {
    margin-left: 40px
}

html .ml45 {
    margin-left: 45px
}

html .ml50 {
    margin-left: 50px
}

html .mr5 {
    margin-right: 5px
}

html .mr10 {
    margin-right: 10px
}

html .mr15 {
    margin-right: 15px
}

html .mr20 {
    margin-right: 20px
}

html .mr25 {
    margin-right: 25px
}

html .mr30 {
    margin-right: 30px
}

html .mr35 {
    margin-right: 35px
}

html .mr40 {
    margin-right: 40px
}

html .mr45 {
    margin-right: 45px
}

html .mr50 {
    margin-right: 50px
}

html .pt0 {
    padding-top: 0
}

html .pt5 {
    padding-top: 5px
}

html .pt10 {
    padding-top: 10px
}

html .pt15 {
    padding-top: 15px
}

html .pt20 {
    padding-top: 20px
}

html .pt25 {
    padding-top: 25px
}

html .pt30 {
    padding-top: 30px
}

html .pt35 {
    padding-top: 35px
}

html .pt40 {
    padding-top: 40px
}

html .pt45 {
    padding-top: 45px
}

html .pt50 {
    padding-top: 50px
}

html .pt55 {
    padding-top: 55px
}

html .pt60 {
    padding-top: 60px
}

html .pt65 {
    padding-top: 65px
}

html .pt70 {
    padding-top: 70px
}

html .pt75 {
    padding-top: 75px
}

html .pt80 {
    padding-top: 80px
}

html .pt85 {
    padding-top: 85px
}

html .pt90 {
    padding-top: 90px
}

html .pt95 {
    padding-top: 95px
}

html .pt100 {
    padding-top: 100px
}

html .pb0 {
    padding-bottom: 0
}

html .pb5 {
    padding-bottom: 5px
}

html .pb10 {
    padding-bottom: 10px
}

html .pb15 {
    padding-bottom: 15px
}

html .pb20 {
    padding-bottom: 20px
}

html .pb25 {
    padding-bottom: 25px
}

html .pb30 {
    padding-bottom: 30px
}

html .pb35 {
    padding-bottom: 35px
}

html .pb40 {
    padding-bottom: 40px
}

html .pb45 {
    padding-bottom: 45px
}

html .pb50 {
    padding-bottom: 50px
}

html .pb55 {
    padding-bottom: 55px
}

html .pb60 {
    padding-bottom: 60px
}

html .pb65 {
    padding-bottom: 65px
}

html .pb70 {
    padding-bottom: 70px
}

html .pb75 {
    padding-bottom: 75px
}

html .pb80 {
    padding-bottom: 80px
}

html .pb85 {
    padding-bottom: 85px
}

html .pb90 {
    padding-bottom: 90px
}

html .pb95 {
    padding-bottom: 95px
}

html .pb100 {
    padding-bottom: 100px
}

.hero-slider {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0
}

.hero-slider .slide-inner {
    position: relative
}

.hero-slider .slide-inner:before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: .25;
    top: 0;
    left: 0;
    right: 0
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    background: 0 0;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px)
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px)
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    font-weight: 900
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: .3;
    background: #fff;
    transition: all .2s ease
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px
}

.swiper-pagination {
    text-align: left
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.hero-style .slide-btns,
.hero-style .slide-text,
.hero-style .slide-title {
    max-width: 690px
}

.hero-style .slide-title h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    color: #fff;
    margin: 0 0 20px;
    transition: all .4s ease;
    font-family: 'DM Serif Display', serif
}

.hero-style .slide-text p {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: normal;
    color: #fff;
    margin: 0 0 30px;
    transition: all .4s ease
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px
}

html body .top-header.header-2 .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: #2e1e0a;
    font-size: 16px;
    transition: all 300ms ease-in-out;
    padding: 1rem;
}

html body .top-header.header-2 .sticky .nav-link {
   color: #2e1e0a;
}

.form-block select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 10px 0;
    border-radius: 6px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    border: 1px solid #e6e6e6
}

.form-block textarea {
    max-height: 100px
}

.featurelistgere {
    display: grid;
    grid-template-columns: 75% auto
}

.featurelist-1 {
    background: #0a2233;
    color: #fff;
    display: grid;
    grid-template-columns: auto auto auto auto
}

.featurelist-2 {
    background: #f85359;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.flst {
    padding: 30px
}

.icon- {
    width: 50px;
    height: 50px;
    display: flex;
    text-align: center;
    font-size: 20px;
    margin-right: 15px;
    border-radius: 100px;
    border: 1px solid #fff;
    align-items: center;
    justify-content: center
}

.icon- img {
    width: 100%
}

.icondata p span {
    font-size: 28px;
    font-weight: bolder;
    display: block
}

.flst2 p {
    text-align: left
}

.flst2 p span {
    display: block;
    font-size: 25px;
    font-weight: 700
}

.whatwedonw {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 30px
}

.itawastats p:first-child {
    font-size: 45px;
    margin-bottom: 15px;
    color: #ff5722
}

.itawastats P:last-child {
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 600
}

.crdinfo h3 {
    font-size: 20px;
    font-family: Merriweather, serif;
    margin-bottom: 10px
}

.halfsec {
    display: grid;
    grid-template-columns: 50% 50%
}

.bghalfimg {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover
}

.content-column {
    background: #fff5f5;
    padding: 70px 40px
}

.innnerclm {
    max-width: 600px
}

.fltwithiconss .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row
}

.fltwithiconss .nav-link1 {
    display: block;
    text-align: center;
    color: #0a2233;
    font-weight: 600
}

.fltwithiconss .nav-link1.active {
    color: #f85359
}

.fltwithiconss .nav-item a:hover {
    color: #f85359
}

.fltwithiconss .nav-link1 span {
    display: block;
    font-size: 44px;
    font-weight: 400
}

.loc-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 30px;
    justify-content: space-between;
    justify-items: stretch
}

.loc-list li {
    text-align: center;
    font-weight: 600
}

.loc-list li img {
    display: block;
    max-width: 65px;
    margin: 0 auto 15px
}

.loc-list li span {
    display: block
}

.cta-section-2.pad-tb {
    padding: 0px;
}

.cta-section-2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    background-image: url(../images/common/cta-1-bg-new.jpg);
    /* background-attachment: fixed; */
    height: 500px;
}
.cta-section-2.pad-tb .owl-slider {
    position: relative;
    bottom: -360px;
}
.cta-section-2 h2 {
    color: #fff;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 15px
}

.cta-section-1 {
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    background-image: url(../images/common/cta-bg.jpg);
    /* background-attachment: fixed; */
    padding: 100px 0px;
}

.cta-section-1 h2 {
    color: #fff;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 15px
}

.cta-section-1:before {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0
}

.callnow {
    color: #fff;
    display: block;
    font-size: 26px
}

.callnow:hover {
    color: #fff
}

.gallery-section2 {
    background: #fff5f5
}

.button1 {
    color: #000000;
    background-color: #ffd187
}

html body .button1:hover {
    color: #ffffff;
    background-color: #2e1e0a;
}

.button2 {
    color: #0a2233;
    background-color: #ffeba1
}

html body .button2:hover {
    color: #fff;
    background-color: #f85359
}

.bttn {
    font-size: 16px;
    font-weight: 400;
    font-family: Merriweather;
    padding: 0 45px;
    line-height: 60px;
    text-align: center;
    outline: 0;
    border: none;
    border-radius: 25px;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    box-shadow: 0 3px 6px rgb(91 130 148 / 8%);
    top: 0;
    position: relative
}

html body .top-header.header-2 .navbutton {
    line-height: normal;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    font-family: 'Assistant', sans-serif;
}

.icon-bar {
    width: 24px;
    height: 3px;
    background-color: #0a2233;
    display: block;
    transition: all .2s;
    margin-top: 4px
}

.index2 .icon-bar {
    background-color: #fff
}

.sticky .icon-bar {
    background-color: #000
}

.navbar-toggler {
    background-color: transparent;
    border: 0 solid transparent
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%
}

.navbar-toggler .middle-bar {
    opacity: 0
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%
}

.navbar-toggler.collapsed .bottom-bar,
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0)
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1
}

.nnv {
    display: flex
}
#formModal .form-block {
    border: none;
    background: #fff5f5;
}
#formModal .modal-body {
    padding: 10px 0px;
    background-color: #fff5f5;
}
#formModal .form-block form {
    padding: 0px 15px;
}
.getintouch_form .readmore .button {
    border: none;
    background-color: #ffd187;
    background: linear-gradient(45deg,rgb(200 148 44),rgb(245 217 118),rgb(216 172 66)) !important;
    color: #000000;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.getintouch_form .readmore .button:hover {
    background-color: #ffd187;
    background: linear-gradient(45deg,rgb(216 172 66),rgb(245 217 118),rgb(200 148 44)) !important;;
    color: black;
}
tr th {
    background-color: #2c485c;
    color: white;
}
.banner-details {
    width: 300px;
    position: absolute;
    inset: auto auto 0 0;
    background-color: rgb(7 81 160 / 75%);
    border-top: 4px solid #d6bb72;
    z-index: 9;
    padding: 15px 2rem;
    color: #fff;
    text-align: center;
}
.newlaunch {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, maroon, red, maroon);
    outline: 5px dotted #d6bb72;
    border: 4px solid rgb(255 255 255 / 75%);
    color: #fff;
    font-weight: 900;
    position: absolute;
    left: 20px;
    bottom: calc(100% + 20px);
    transform: rotate(-15deg);
    z-index: 9;
  }
.bannerBox {
    padding: 0px;
}

  .banner-details {
    width: auto;
    position: absolute;
    inset: auto auto 0 0;
    background-color: rgb(0 31 74 / 73%);
    /* background-color: rgb(0 0 0 / 33%); */
    border-top: 4px solid #d6bb72;
    z-index: 7;
    padding: 10px 1rem 10px 2rem;
    color: #fff;
    text-align: center;
    bottom: 5px;
    left: 10px;
    backdrop-filter: blur(3px);
  }
  .inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    /* border: solid rgb(255 255 255 / 50%);
    border-width: 1px 0;
    padding: 10px 0; */
}
.inner figcaption {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}
.inner figcaption img {
    width: 30px;
}
span.text-sans {
    font-family: 'Assistant', sans-serif;
    font-size: 17px;
    font-weight: 600;
}
.inner figcaption p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Merriweather', sans-serif;
}
.inner figcaption:first-child {
    border-right: 1px solid rgb(255 255 255 / 50%);
    padding-right: 0.5rem;
    margin-right: 0.5rem;
}
.inner figcaption:nth-child(2) {
    border-right: 1px solid rgb(255 255 255 / 50%);
    padding-right: 0.5rem;
    margin-right: 0.5rem;
}

  .banner-details .address {
    letter-spacing:3px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin-bottom: 20px;
  }
  /* .bannerBox p {
    background-color: #d6bb72;
    color: #191919;
    width: fit-content;
    margin: 0 auto 1rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 20px 3px;
    border-radius: 40px;
} */
.bannerBox h5 {
    font-size: 1.4rem;
    /* margin-bottom: 10px; */
    font-weight: 600;
}
.bannerBox h6 {
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70%;
  filter: invert(100%);
}
.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

/* -----------------------------------------------------
 banner
 ----------------------------------------------------- */
 .banner {
    position: relative;
    overflow: hidden;
    padding: 15px;
    background: linear-gradient(45deg, #00367e, #00040e);
    /* background-color: #2e1e0a; */
    /* background: url(../images/common/black-bg.jpg); */
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .banner .carousel .carousel-item::before{
    color: #fff;
    isolation: isolate;
    position: absolute;
    bottom: 0%;
    left: 0%;
    /* right: 0; */
    /* width: 100%; */
    /* height: 150px; */
    background: linear-gradient(to top, rgb(0 0 0), rgba(0, 0, 0, 0));
    /* background-color: #ffffff60; */

  }
  section.banner .col-lg-8 {
    max-width: 70%;
    padding-right: 0px;
  }
   section.banner .col-lg-4 {
       max-width: 30%;
   }
  .carouselbox{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .banner .banner-content {
    isolation: isolate;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    max-width: fit-content;
    width: calc(100% - 2rem);
    padding: 14px 20px 10px;
    background-color: rgb(0 0 0 / 33%);
    text-align: left;
    backdrop-filter: blur(3px);
    color: #fff;
  }


  .banner .banner-content h5 {
    font-size: 1.75rem;
    font-weight: 200;
  }

  .banner::after,
  .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .banner::after {
    background-color: #ffffff;
    clip-path: circle(50% at 80% -20%);
  }

  .banner img,
  .banner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

  }

  .bannerText {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    width: 95%;
    max-width: 700px;
    text-align: center;
    z-index: 99;
  }

  .bannerText .h1 {
    display: block;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 1px 3px 5px #000;
  }

  /* ------------------------------------------------
   banner form
   ------------------------------------------------ */
  .getintouch_bgImg {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .getintouch_main_form {
    padding: 0px 0px 0px;
    height: 100%;
    position: relative;
    background: #021534;
  }
  .main-heading {
    background-color: var(--primary-color) ;
    text-align: center;
    padding: 8px 8px;
    color: white;
  }
  .sub-heading {
    font-family: 'Merriweather';
    font-size: 16px;
    padding-top: 5px;
  }
  .price {
    padding: 5px;
    font-size: 18px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(45deg, #f2ad28, #f1e3bf);
    /* background: linear-gradient(45deg, rgb(0, 43, 92), rgb(39, 105, 181)); */
    color: #000000;
    width: 100%;
    font-weight: 700;
  }
  .address i {
    /* color: #d6bb72; */
    color: rgb(255, 255, 255);
    margin-right: 3px;
  }

  .address {
    padding: 8px;
    font-size: 18px;
    /* background: linear-gradient(45deg, #f2ad28, #f1e3bf); */
    width: auto;
    font-weight: 600;
    font-family: 'Assistant', sans-serif;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 999;
    color: white;
    filter: drop-shadow(2px 4px 6px black);
  }

  .getintouch_form {
    width: 100%;
    height: 100%;
    background: #fff;
    border-top: 4px solid #d6bb72;
  }

  .getintouch_form h5 {
    font-size: 30px;
    padding-bottom: 20px;
  }

  .getintouch_form blockquote {
    font-size: 18px;
  }

  .getintouch_form blockquote {
    font: var(--font24);
    text-align: center;
    margin: 1rem 0 2rem;
    border: none;
    padding: 0;
  }

  .getintouch_form .input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: #F8F8F9;
    position: relative;
  }

  .form-group input {
    font-size: 13px;
    width: 100%;
  }

  .form-control {
    border-radius: 0px;
    border: none;
    background-color: var(--light);
    --light: #f5f5f5;
    margin-bottom: 15px;
  }

  .form-control:focus {
    background-color: var(--light);
    outline: 0;
    box-shadow: none;
  }

  .form-select {
    background-color: var(--light);
    border: none;
    font-size: 13px;
    border-radius: 0;
    display: block;
    width: 100%;
    padding: .5rem .75rem;
  }

  .form-select:focus {
    background-color: var(--light);
    box-shadow: none;
  }

  .form-label {
    margin-bottom: 0.5rem;
    margin-left: 5px;
    font-size: 13px;
    opacity: 0.8;
  }

  .getintouch_form .input-group img {
    position: absolute;
    left: 2.6rem;
  }
  .main-heading h3 {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid rgb(191 191 191 / 50%);
    padding: 0px 0px 3px 0px;
    letter-spacing: 2px;
}

p.main-heading-para {
    text-align: center;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #000000;
}
.pay {
    font-weight: 600;
    padding-top: 15px;
}
span.visually-hidden {
    display: none;
}
.bglogo {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/logo-icon.png);
    position: relative;
    z-index: 0;
    height: 100%;
    align-content: center;
}
.bglogo:after {
    background: #ffffffe6 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.85;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.bglogo h2 {
    display: flex;
    flex-direction: column;
    color: #000000;
    font-size: 60px;
}

.sec-sub-title {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
hr.solid-sm {
    border-top: 3px solid #b0894f;
    width: 5%;
    margin: 20px auto;
    opacity: 1;
}
.section-title {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-top: 15px;
    color: #1b1b1b;
}
.ms-0 {
    margin-left: 0 !important;
}

.inner-border {
    border: 2px dashed #c59a68;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    margin: 0 auto;
    transform: translateY(60px);
}
.inner-border img {
    width: auto;
    height: 120px;
    margin: 3px auto;
}
.inner-border p {
    position: relative;
    /* font-size: 1.2em; */
    margin-top: -12px;
    text-align: center;
}
.inner-border p:before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: translateX(0px) translateY(10px) rotate(0deg);
}
.inner-border p:nth-child(2) {
    margin-top: 0px;
    letter-spacing: 1px;
    color: #bc902c;
}
.f-inner-border {
    width: 300px;
    height: 300px;
    border: 2px dashed #0d57a6;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    margin: 0 auto;
    transform: translateY(10px);
}
.f-inner-border p {
    position: relative;
    /* font-size: 1.2em; */
    margin-top: -20px;
    text-align: center;
}
.f-inner-border p:before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: translateX(0px) translateY(18px) rotate(0deg);
}
.f-inner-border p:nth-child(2) {
    margin-top: -5px;
    letter-spacing: 1px;
    color: #bc902c;
}
.s-inner-border {
    width: 400px;
    height: 400px;
    border: 2px dashed #c59a67;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    /* position: absolute; */
    align-items: center;
    margin: 0 auto;
    transform: translateY(-40px);
}
.s-inner-border p {
    position: relative;
    /* font-size: 1.2em; */
    margin-top: -20px;
    text-align: center;
}
.s-inner-border p:before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: translateX(0px) translateY(14px) rotate(0deg);
}
.s-inner-border p:nth-child(2) {
    margin-top: -5px;
    letter-spacing: 1px;
    color: #bc902c;
}
.t-inner-border {
    width: 500px;
    height: 500px;
    border: 2px dashed #0d57a6;
    border-radius: 50%;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    margin: 0 auto;
    transform: translateY(-90px);
}
.t-inner-border p {
    position: relative;
    /* font-size: 1.2em; */
    margin-top: -21px;
    text-align: center;
}
.t-inner-border p:before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    transform: translateX(0px) translateY(14px) rotate(0deg);
}
.t-inner-border p:nth-child(2) {
    margin-top: -5px;
    letter-spacing: 1px;
    color: #bc902c;
}
.circle_div {
    position: relative;
    justify-content: center;
    display: inline-flex;
    width: 100%;
    top: 60px;
}
.circle_div p {
    font-weight: 500;
    color: #000000;
}
section#location .container-fluid {max-width: 1250px;}

/**/

.history-tl-container{
  width: 100%;
  margin:auto;
  display:block;
  position:relative;
}
.history-tl-container ul.tl{
    margin:20px 0;
    padding:0;
    display:inline-block;

}
.history-tl-container ul.tl li{
    list-style: none;
    margin:auto;
    margin-left:73px;
    min-height:50px;
    /*background: rgba(255,255,0,0.1);*/
    border-left:1px dashed #5a7d46;
    padding:0 0 50px 30px;
    position:relative;
    color: black;
    font-weight: 600;
}
.history-tl-container ul.tl li:last-child{ border-left:0;}
.history-tl-container ul.tl li::before{
    position: absolute;
    left: -11px;
    top: 0px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #bf922c;
    height: 20px;
    width: 20px;
    transition: all 500ms ease-in-out;
}
.history-tl-container ul.tl li:first-child:before {
    background: #2580bf;
}
.history-tl-container ul.tl li:nth-child(2):before {
    background: #e01e57;
}
.history-tl-container ul.tl li:nth-child(3):before {
    background: #f1a91e;
}
.history-tl-container ul.tl li:hover::before{
    border-color:  #edd990;
    transition: all 1000ms ease-in-out;
}
.history-tl-container ul.tl li:first-child:hover::before {
    border-color: #96c9ed;
    transition: all 1000ms ease-in-out;
}
.history-tl-container ul.tl li:nth-child(2):hover::before {
    border-color: #f38baa;
    transition: all 1000ms ease-in-out;
}
.history-tl-container ul.tl li:nth-child(3):hover::before {
    border-color: #edd990;
    transition: all 1000ms ease-in-out;
}
ul.tl li .item-title{
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Merriweather';
    font-weight: 600;
    letter-spacing: 0.5px;
}
ul.tl li .item-detail{
    color: rgb(92 92 92);
    font-size: 16px;
}
ul.tl li .timestamp{
    color: #8D8D8D;
    position: absolute;
    width:100px;
    left: -50%;
    text-align: right;
    font-size: 12px;
}
.text-gradient {
	text-transform: uppercase;
    background: linear-gradient(to right, #c59a67 10%, #2c70bb 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5vw;
    margin-top: 20px;
    line-height: normal;
}
.text-gradient-2 {
	text-transform: uppercase;
    background: linear-gradient(to right, #2c70bb 20%, #c59a67 25%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.3vw;
    line-height: 64px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    --accent-color: #ffc75b;
  }
  .scroll-top i {
    font-size: 20px;
    color: var(--contrast-color);
    line-height: 0;
    --contrast-color: #000000;
  }
  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    --contrast-color: #000000;
    --accent-color: #ffd187;
  }
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }

/*--------------------------------------------------------------
  # Contact Us Section
--------------------------------------------------------------*/

.contact-section {background: linear-gradient(178deg, #273b5b, var(--primary-color));}
.section-contact {
    background-color: white;
    padding: 15px;
}
.section-contact .header-section .title {
	margin-bottom: 17px;
    position: relative;
    font-weight: 500;
    font-size: 30px;
}
.section-contact .header-section .title .dot {
    display: inline-block;
	position: absolute;
    bottom: 8px;
    width: 8px;
    height: 8px;
    margin-left: 3px;
    background-color: #c59a67;
}
.section-contact .header-section .description {
	font-family: "Roboto", sans-serif;
	color: #2a6287;
}
.section-contact .header-section .big-title {
	position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,70%);
    font-size: 90px;
    font-weight: 700;
    opacity: 0.15;
}
.section-contact .form-contact .single-input {
	position: relative;
    margin-top: 40px;
}
.section-contact .form-contact .single-input i {
	position: absolute;
    top: 5px;
    left: 15px;
    color: #215ab7;
}
.section-contact .form-contact .single-input input,
.section-contact .form-contact .single-input textarea {
	width: 100%;
    border: none;
    border-bottom: 2px solid #215ab7;
    padding-left: 50px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
	transition: border .3s;
    background: transparent;
}
.section-contact .form-contact .single-input input::placeholder,
.section-contact .form-contact .single-input textarea::placeholder {
	color: rgba(7, 57, 92, .3);
}
.section-contact .form-contact .single-input input:focus,
.section-contact .form-contact .single-input textarea:focus {
	border-color: #215ab7;
}
/* .section-contact .form-contact .single-input textarea {
	height: 150px;
	min-height: 50px;
} */
.section-contact .form-contact .submit-input input {
	margin-top: 40px;
    padding: 13px 45px;
    transition: background-color .3s;
    font-size: 16px;
    font-weight: 700;
    font-family: Merriweather;
    text-align: center;
    outline: 0;
    color: #000000;
    background-color: #ffd187;
    border: none;
    border-radius: 25px;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    top: 0;
    position: relative;
}
.section-contact .form-contact .submit-input input:hover {
	background-color: #07395c;
    color: white;
}
input:focus-visible {
    outline: none;
}
.cubeSwiper 
{
    height: 100%;
}
.cubeSwiper img
{
    height: 100%;
    object-fit: cover;
}
.banner-text
{    
    position: absolute;
    bottom: 30%;
    color: #fff;
    text-transform: uppercase;
    left: 3rem;
}
.banner-text h4
{    
    font-weight: 500;
}
.banner-text h5
{    
    font-weight: 500;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-top: 10px;
    padding: 10px 0;
}
@media (max-width: 1575.99px) {
    .pay{
        font-size: 16px;
    }
}
@media (max-width: 575.99px) {
	.section-contact .header-section .title {
	    font-size: 30px;
        margin-bottom: 0px;
	}

	.section-contact .header-section .big-title {
		display: none;
	}

	.section-contact .header-section .description {
		font-size: 14px;
	}
    .banner-text {
        bottom: auto;
        top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        left: 0;
    }
    .banner-text h4 {
        font-size: 17px;
        width: 100%;
        text-align: center;
    }
    .pay {
    padding-top: 10px;
    padding-bottom: 10px;
}
    .banner-text h5{
        font-size: 17px;
        padding: 5px 0;
        margin-top: 5px;
    }

}

@media (min-width: 576px) and (max-width: 767.99px) {
	.section-contact .header-section .title {
        font-size: 30px;
        margin-bottom: 0px;
	}

	.section-contact .header-section .big-title {
		font-size: 100px;
	}
}

@media (min-width: 768px) and (max-width: 991.99px) {

    .section-contact .header-section .title {
	    font-size: 30px;
        margin-bottom: 0px;
	}

	.section-contact .header-section .big-title {
		font-size: 100px;
	}
    .section-contact .header-section .title  {
        margin-bottom: 0px;
    }
    .section-contact .header-section .big-title {
		display: none;
	}
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/

  #blogcarousel .owl-nav button {
    position: absolute;
    top: 50%;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
    fill: #f3f3f3;
    transform: translateY(-50%);
    background: transparent !important;
  }
  #blogcarousel .owl-nav button.owl-prev {
    left: 0;
  }
  #blogcarousel .owl-nav button.owl-next {
    right: 0;
  }
  #blogcarousel .owl-dots {
    text-align: center;
    padding-top: 15px;
    display: none;
  }
  #blogcarousel .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
  }
  #blogcarousel .owl-dots button.owl-dot.active {
    background-color: #000;
  }
  #blogcarousel .owl-dots button.owl-dot:focus {
    outline: none;
  }
  #blogcarousel .owl-nav button:focus {
      outline: none;
  }
  .blog_sec h3 {color: black;}
  .blog_sec .hover14 figure {
    filter: none;
  }
  .blog_sec .hover14.column .text {
    opacity: 1;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding: 5px 15px;
    font-size: 25px;
    font-family: 'Merriweather';
    font-weight: 300;
    filter: drop-shadow(2px 4px 6px black);
  }

  /*------------------------------------------------------------------
 # Shine animation over Card
------------------------------------------------------------------*/

.hover14 figure {
    width: 100%;
    position: relative;
    z-index: 20;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(1);
    margin-bottom: 0px;
    overflow: hidden;
  }
  .hover14 figure::before {
      position: absolute;
      top: 0;
      left: -80%;
      z-index: 2;
      display: block;
      content: '';
      width: 50%;
      height: 100%;
      background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
      background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
      -webkit-transform: skewX(-25deg);
      transform: skewX(-25deg);
  }
  .hover14 figure:hover::before {
      -webkit-animation: shine .75s;
      animation: shine .75s;
  }
  .hover14 figure:hover {
    filter: grayscale(0);
  }
  .hover14.column .text {
    opacity: 0;
    z-index: 99;
    position: absolute;
    color: white;
    left: 0;
    bottom: 0;
    background-color: #000000b0;
    width: 80%;
    padding: 10px 15px;
    transition: all 0.8s ease;
    text-align: center;
    background: linear-gradient(#2e466d00, rgb(0 31 81), rgb(0 16 40)) 0 0 / 100% 200%;
  }
  .hover14 figure:hover .text {
    opacity: 1;
  }

  @-webkit-keyframes shine {
      100% {
          left: 125%;
      }
  }
  @keyframes shine {
      100% {
          left: 125%;
      }
  }

  .highlight-box {
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    /* padding: 1rem; */
  }
  .highlight-box ul.list-features li span {
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    margin-right: 2px;
    letter-spacing: 0.5px;
    line-height: normal;
  }

  .highlight-card {
    /* text-align: center;
    background: #0000008c;
    padding: 30px;
    margin: 5px 0;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    position: relative;
    top: 0;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: grab; */
    text-align: center;
    background: rgb(0 31 81 / 73%);
    padding: 10px;
    margin: 5px 0;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    cursor: grab;
    backdrop-filter: blur(2px);
}
.highlight-card p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    font-family: 'Merriweather', sans-serif;
    /* filter: drop-shadow(2px 4px 6px black); */
    letter-spacing: 0.3px;
    /* -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    background: linear-gradient(45deg, #2580bf, #f1a91e, #6db644, #e01e57); */
}
.common-heading-2 h2 {
    width: 25%;
    border-right: 1px solid #ccc;
    line-height: normal;
    text-transform: uppercase;
    font-family: 'Merriweather';
}
.about-para p {
    font-size: 17px;
    text-align: justify;
    line-height: 25px;
}
.common-heading-2 {
    display: flex;
    align-items: center;
}
.common-heading-2 h4 {
    margin-left: 15px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #003377, #003377, #00183d, #00183d, #003377, #00183d, #003377, #003377);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    border-left: 1px solid #ccc;
    padding-left: 15px;
}
.common-heading-2 img {
    margin-left: -10px;
    width: auto;
}

/*---------------------------------------------
 #New Amenities Section Start
---------------------------------------------*/

.featSlider{
	display:flex;
	flex-wrap:wrap;
}
.featBox{
	max-width:20%;
	flex:0 0 20%;
}
.featBox section{
	padding:20px;
}
.featBox section .img-fluid img {
	width: auto;
    /* filter: invert(1); */
    height: 50px;
    margin: 0px auto 15px;
    text-align: center;
    display: flex;
}
.featBox section p.text-uppercase{
	letter-spacing:1px;
	font-size:15px;
	margin-bottom:8px;
	color: #ffebc4;
    text-align: center;
}
.featBox section p{
	font-size:15px;
}

/*------------------------------------------------------
  #Price List Section Start
------------------------------------------------------*/

.pricelist-sec .single_price{
    /* box-shadow: 0 5px 25px rgb(0 0 0 / 5%); */
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    margin: auto;
  }
  .pricelist-sec .single_price p{
    margin-bottom: 0;
  }
  .pricelist-sec .single_price .typology{
    background: #e7e7e7;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding: 10px 20px;
    line-height: 22px;
    letter-spacing: 1px;
    max-width: calc(100% - 30px);
    margin: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0rem 0.5rem 1rem rgb(0 0 0 / 20%);
  }
  .my-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pricelist-sec .price_c{
    background:#fff;
    max-width: calc(100% - 30px);
    margin:auto;
    padding: 25px 10px 35px;
    box-shadow: 0rem 0.5rem 1rem rgb(0 0 0 / 20%);
  }
  
  .pricelist-sec .reqprice{
    color: #7a4c11;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 0;
    line-height: 34px;
    margin: auto;
    font-family: 'Assistant', sans-serif;
  }
  .pricelist-sec .reqprice sup{
    font-weight: 400;
  }
  .pricelist-sec .onw{
    font-size:14px;
    color:#797979;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .pricelist-sec .title{color:#555; font-size:14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}
  .pricelist-sec .sizes p{text-align: center;}
  .pricelist-sec .type{margin-top:20px;}
  .pricelist-sec .sizes p,
  .pricelist-sec .type p{font-size:18px; letter-spacing: 0.5px; font-weight: 700; margin-top: 2px; color:#333;}
  .pricelist-sec .call_btn {padding: 6px 24px; font-size: 14px; margin-top: 24px;
    min-height: 42px;
    width: 100%;
    box-shadow: 0 3px 7px rgb(0 0 0 / 25%);
  }
  .pricelist-sec .single_price .content{
    position: relative;
    z-index: 1;
    padding: 40px 10px 20px;
    max-width: calc(100% - 30px);
    margin: auto;
    background: #fff;
    box-shadow: 0rem 0.8rem 1rem rgb(0 0 0 / 20%);
  }
  
  .pricelist-sec .single_price .content:before{
    position: absolute;
    content: '';
    height: calc(100% + 50px);
    width: calc(100% + 30px);
    background: #fdfdfd;
    left: -15px;
    top: 0;
    z-index: -1;
    transform: skewY(-10deg);
    border-radius: 20px;
    background: linear-gradient(45deg,rgb(216 172 66),rgb(245 217 118),rgb(200 148 44)) !important;
  }
  
  .pricelist-sec .single_price .content:after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #e7e7e7;
    top: -10px;
    left:0;
    z-index: -2;
    transform: skewY(-10deg);
  }

  .pricelist-sec .readmore .button {
    border: none;
    background-color: #ffd187;
    background: linear-gradient(45deg, rgb(194 134 2), rgb(226 192 85), rgb(194 134 2)) !important;
    color: #000000;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricelist-sec .readmore .button:hover {
    background-color: #ffd187;
    background: linear-gradient(45deg, rgb(194 134 2), rgb(226 192 85), rgb(194 134 2)) !important;
    color: rgb(0, 0, 0);
}

/*======================== location-circle ===============================*/

#chart {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: auto auto 100px;
}

.locationcircle {
    position: absolute;
    border: 2px dashed #0d57a6;
    border-radius: 50%;
}
.locationcircle:nth-child(even) {
    border-color: #c59a67;
}
.center-logo {
    position: absolute;
    top: 52%;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
    transform: translateX(114px);
    left: 24%;
    right: 0px;
}

#chart .label {
    position: absolute;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transform: translate(-50%, -50%);
    white-space: pre-line;
}

#chart .label-1 {
    top: 5%;
    left: 50%;
}

#chart .label-2 {
    top: 30%;
    left: 70%;
}

#chart .label-3 {
    top: 30%;
    left: 30%;
}

#chart .label-4 {
    top: 60%;
    left: 50%;
}
#chart p {
    font-size: 17px;
}
#chart p:nth-child(2) {
    font-size: 15px;
}

#chart .label.label-1 p, #chart .label.label-2 p, #chart .label.label-3 p, #chart .label.label-4 p {
    position: relative;
    text-align: center;
}
#chart .label.label-1 p:before, #chart .label.label-2 p:before, #chart .label.label-3 p:before, #chart .label.label-4 p:before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0px;
}

#chart .label.label-4 p:nth-child(2):before, #chart .label.label-3 p:nth-child(2):before, #chart .label.label-2 p:nth-child(2):before, #chart .label.label-1 p:nth-child(2):before {
    background-color: transparent;
}
#chart .label.label-4 p:nth-child(2), #chart .label.label-3 p:nth-child(2), #chart .label.label-2 p:nth-child(2), #chart .label.label-1 p:nth-child(2) {
    letter-spacing: 1px;
    color: #bc902c;
}

#chart .label.label-1 p {
    transform: translate(40px, 6px);
}
#chart .label.label-1 p:nth-child(2) {
    transform: translate(40px, -25px);
}
#chart .label.label-2 p {
    transform: translate(-40px, -33px);
}
#chart .label.label-2 p:nth-child(2) {
    transform: translate(-40px, -64px);
}
#chart .label.label-3 p {
    transform: translate(120px, 35px);
}
#chart .label.label-3 p:nth-child(2) {
    transform: translate(120px, 3px);
}
#chart .label.label-4 p {
    transform: translate(40px, -32px);
}
#chart .label.label-4 p:nth-child(2) {
    transform: translate(40px, -64px);
}

.btn {
    font-size: 16px;
    font-weight: 700;
    font-family: Merriweather;
    padding: 8px 45px;
    text-align: center;
    outline: 0;
    color: #000000;
    /* background-color: #ffd187; */
    background: linear-gradient(45deg,rgb(200 148 44),rgb(245 217 118),rgb(216 172 66)) !important;
    border: none;
    border-radius: 25px;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    box-shadow: 0 3px 6px rgba(91, 130, 148, .08);
    top: 0;
    position: relative
}