::selection{background:#003264;color:#fff;}
::-webkit-scrollbar {width: 5px;}
/* Track */
::-webkit-scrollbar-track {background:#fff;}
/* Handle */
::-webkit-scrollbar-thumb {background: #08529c;}
::-webkit-scrollbar-thumb:window-inactive {background: #08529c;}
body,html{padding:0px;margin:0px;height:100%;font-size: 14px;color: #202020;font-family: 'Poppins', sans-serif;font-weight:400;}
.exo2Font {
  font-family: "Exo 2", serif;
}

.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../images/loading.webp) 50% 50% no-repeat rgb(255 255 255 / 75%);
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  font-size: 18px;
  outline: none;
  cursor: pointer;
}
#myForm {
  display: block;
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 99;
  font-size: 15px;
  outline: none;
  cursor: pointer;
}

.navbar
{
	z-index:5;
	flex-wrap: wrap !important;
	animation: .25s ease-in-out 0s normal none 1 running fadeInUp;
	font-family: "Exo 2", serif;
}
.navbar-expand-md .navbar-nav .nav-link
{
	font-size:15px;
	color:#fff;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover 
{
	color: #efd622;
}
.nav-link:focus, .nav-link:hover 
{
    color: #efd622;
}
.fixed-top-own 
{
    animation: .25s ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
	top:0;
	background-image: linear-gradient(to right, #08529c , #08529c);
	box-shadow: 0 .2rem 0.4rem rgba(0,0,0,.15)!important;
}


.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item.active {
    color: #fff;
}


.carousel-control-next, .carousel-control-prev 
{
	background-color: #08529c;
	width:30px;
	height: 80px;
	margin: auto 0px;
}
.carousel-item img
{
	animation: zoom-in-zoom-out 10s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}



.theme-blue
{
	color:#08529c;
}
.theme-yellow
{
	color:#efd622;
}
.theme-light
{
	color:#fff;
}
.bg-gradientBlue
{
	background-image: linear-gradient(to right, #22a6ef , #08529c);
}
.bg-blue
{
	background-color:#08529c !important;
}
.bg-yellow
{
	background-color:#efd622 !important;
}
.bg-dark
{
	background-color:#0d1820 !important;
}
.bg-light
{
	background-color:#fff !important;
}
.bg-lightBlue
{
	background-color:#f1f9fd;
}
.bg-offwhite
{
	background-color:rgb(0 0 0 / 35%);
}

.c-pointer
{
	cursor:pointer;
}
.list-group-horizontal .list-group-item, .list-group-item 
{
	background-color: transparent; 
	border: 1px solid rgba(0, 0, 0, 0);
	padding: 0.5rem 0rem;
}
.inline-block
{
	display:inline-block;
}
.word-space
{
	letter-spacing:5px;
}
.border-y-yellow
{
	border-right:5px solid #efd622;
	border-left:5px solid #efd622;
}
.fw-custom
{
	font-weight:500;
}
.heading-border h6:before {
    content: "";
    width: 60px;
    height: 3px;
    display: inline-block;
    background: linear-gradient(to right, #1868aa, #1868aa);
    margin: 4px 0px;
    margin-right: 10px;
}
.heading-border1 h6:before {
    content: "";
    width: 60px;
    height: 3px;
    display: inline-block;
    background: linear-gradient(to right, #efd622, #efd622);
    margin: 4px 0px;
    margin-right: 10px;
}
.fw-small
{
	font-size:10px;
	
}


.btn-blue 
{
    border: none;
    background-size: 200%, 1px;
    transition: all 200ms linear 0ms;
    background-image: linear-gradient(90deg, #08529c 0%, #08529c 50%, #08529c);
	color:#fff;
}
.btn-blue:hover 
{
    color: #000;
    transition: all 200ms linear 0ms;
    background-position: 120%;
}
.btn-check:focus+.btn-blue, .btn-blue:focus 
{
    color: #000;
    background-position: 120%;
}


.btn-outline-blue {
    color: #08529c;
    border-color: #08529c;
}
.btn-outline-blue:hover {
    color: #fff;
    background-color: #08529c;
    border-color: #08529c;
}
.btn-check:active+.btn-outline-blue, .btn-check:checked+.btn-outline-blue, .btn-outline-blue.active, .btn-outline-blue.dropdown-toggle.show, .btn-outline-blue:active {
    color: #fff;
    background-color: #08529c;
    border-color: #08529c;
}
.btn-check:focus+.btn-outline-blue, .btn-outline-blue:focus {
    box-shadow: 0 0 0 .25rem rgb(8 82 156 / 50%);
}

.btn-outline-yellow {
    color: #efd622;
    border-color: #efd622;
}
.btn-outline-yellow:hover {
    color: #000;
    background-color: #efd622;
    border-color: #efd622;
}
.btn-check:active+.btn-outline-yellow, .btn-check:checked+.btn-outline-yellow, .btn-outline-yellow.active, .btn-outline-yellow.dropdown-toggle.show, .btn-outline-yellow:active {
    color: #000;
    background-color: #efd622;
    border-color: #efd622;
}
.btn-check:focus+.btn-outline-yellow, .btn-outline-yellow:focus {
    box-shadow: 0 0 0 .25rem rgb(239 214 34 / 49%);
}

.text-justify
{
	text-align:justify;
}
.text-center-justify
{
	text-align:justify;
	text-align-last:center;
}

a:hover {
    color: #00a5ff;
}

.bg-banner
{
	background-image: url(../images/banner.webp);
    height: auto;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-amenities
{
	background-image: url(../images/about.webp);
    height: auto;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.owl-dots, .owl-nav
{
	display:none;
}



/*******************  Start Why Choose Us  ****************/

.projectPlans .item
{
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: auto;
	overflow: hidden;
	cursor:pointer;
}
.content .content-overlay {
	background: rgb(0 25 38 / 48%);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	border-radius: 0.25rem!important;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
	opacity: 1;
}

.content-image{
	width: 100%;
}

.content-details {
	position: absolute;
	text-align: center;
	padding-left: 2em;
	padding-right: 2em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	border-radius: 0.25rem!important;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
	top: 70%;
	left: 50%;
	opacity: 1;
}

.content-details h4{
	color: #fff;
	font-weight: 500;
	margin-bottom: 0.3em;
	word-break: break-all;
}


.fadeIn-bottom{
	top: 80%;
}

/*******************  End Why Choose Us  ****************/





.enquiryForm .form-label {
    margin-bottom: 2px;
    font-size: 12px;
    color: #6c757d;
    padding: 0px 5px;
}
.enquiryForm .form-control 
{
    color: #6c757d;
    background-color: #f3f3f3;
    border: 1px solid #ffffff;
}
.enquiryForm .form-control:focus {
    color: #6c757d;
    background-color: #f3f3f3;
    border: 1px solid #ffffff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
.enquiryForm .form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c757d;
    background-color: #f3f3f3;
    border: 1px solid #ffffff;
}
.enquiryForm .form-select:focus {
    border-color: #6c757d;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%)
}




@media screen and (min-width: 768px) and (max-width: 1100px)
{ 
	
}

@media (min-width: 1200px)
{
	
}

@media screen and (max-width: 520px)
{ 
	.fixed-top-own {margin-top:0px;}
	.navbar-light .navbar-toggler {color: rgb(0 0 0 / 0%);border-color: rgb(0 0 0 / 0%);width: 10%;}
	.navbar-expand-md .navbar-nav .nav-link{font-size:14px;}
	.dropdown-menu {
		box-shadow: 0 0rem 0rem rgba(0,0,0,0)!important;
	}
	.navbar .navbar-brand .w-auto{
		width:50% !important;
	}
	
	.carousel-item img {
        height: 70vh;
        width: auto !important;
        display: flex !important;
        align-items: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}