/*-----------------Font Family-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');
/*.header {
	display: none;
}*/

* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0px;
	padding: 0pc;
	font-family: 'Nunito Sans', sans-serif; 
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito Sans', sans-serif; 
	font-weight: 700;
	margin: 0px;
}
h1 {
	font-size: 31px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 23px;
}
h4 {
	font-size: 21px;
}
h5 {
	font-size: 19px;
}
h6 {
	font-size: 16px;
}
p{
	margin: 0px 0px 10px 0px;
	font-size: 16px;
	line-height: 22px;
}

/*---------------header css start----------------*/
.header {
	background-color: #ffffff;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.header a.navbar-brand{
	margin: 0px;
	text-align: center;
}
.header a.navbar-brand img {
	width: 18%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.header  ul.my-nav {
 	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    background-color: #152742;
}
.header .navbar ul.my-nav li  {
	padding: 0px 10px;
	text-transform: uppercase;
}
.header .navbar ul.my-nav li:hover {
	background-color: #db2029;
}
.header .navbar ul.my-nav li a {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
}
.header .navbar ul.my-nav li.active a {
	color: #ffffff;
	font-size: 16px;
}
.header .navbar ul.my-nav li a:hover,
.header .navbar ul.my-nav li a:active,
.header .navbar ul.my-nav li a:focus {
	color: #ffffff;
}
.header .navbar ul.my-nav li.dropdown .dropdown-menu {
	background-color: #152742;
	color: #ffffff;
	text-align: center;
	width: 100%;
}
.header .navbar ul.my-nav li.dropdown .dropdown-menu .dropdown-item {
    padding: 5px 0 !important;
}
.header .navbar ul.my-nav li.dropdown .dropdown-menu a:hover {
	background-color: #db2029;
	transition: all 0.5s;
}
.header .navbar-light .navbar-nav .show>.nav-link {
	color: #ffffff;
	text-align: center;
}
/*---------------header css End----------------*/

/*---------------Main Area CSS Start-----------------*/
/*.main-area {
	margin-top: 165px;
}*/
/*---------------Main Area CSS End-----------------*/

/*---------------Banner css Start----------------*/
.banner{
	width: 100%;
	height: 505px;
	position: relative;
	overflow: hidden;
	margin-top: 179px;
}
.banner .bg-img{
	position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   	object-fit: cover;
    -o-object-position: center;
   	object-position: center;
}
.banner .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #212d3d;
	opacity: 80%;
}
.banner .banner-text h1{
	font-family: 'Yellowtail', cursive;
	font-weight: 400;
	font-size: 61px;
	color: #ffffff;
	text-align: center;
	margin: 3px 0px 17px;
}
/*---------------Banner css End----------------*/

/*---------------Offer Section CSS Start----------------*/
.offer-sec {
	margin: 20px 0px;
	background-color: #db2029;
	display: -webkit-box;
    display: -ms-flexbox;
    padding: 25px 0;
}
.offer-sec .offer-text{
	max-width: 423px;
	width: 100%;
	color: #ffffff;
	display: flex;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
            
}
.offer-sec .offer-text h1{
	color: #ffffff;
    font-size: 50px;
    font-weight: 400;
    font-family: 'Noto Serif', serif;
}
/*---------------Offer Section CSS End----------------*/

/*---------------New Home Section CSS Start----------------*/
.newHome .text-sec{
	color: #152742;
	text-align: center;
	padding: 30px 0px;
}
.newHome .text-sec h2{
	font-size: 45px;
	font-weight: 400;
}
.newHome .text-sec p{
	font-size: 20px;
	font-weight: 700;
}
.newHome .img-wrapper {
	position: relative;
	height: 460px;
	overflow: hidden;
}
.newHome .img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #161616,transparent, transparent,transparent);
}
.newHome .img-wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   	object-fit: cover;
    -o-object-position: center;
   	object-position: center;
}
.newHome .img-wrapper h3 {
	position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-size: 37px;
    font-weight: normal;
}
.newHome .img-wrapper a:hover h3 {
	color: #db2029;
}
/*---------------New Home Section CSS End----------------*/

/*-------------------Pet/Staff Section CSS Start--------------*/
.pet_staff {
	position: relative;
	display: block;
	padding: 65px 0px;
}
.pet_staff .inner-wrapper {
	position: relative;
	overflow: hidden;
}
.pet_staff .inner-wrapper .content-wrapper{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
    text-align: center;
 	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
} 
.pet_staff .inner-wrapper .content-wrapper{
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	width: 45%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    color: #ffffff;
} 
.pet_staff .inner-wrapper .content-wrapper h1{
	position: relative;
	font-size: 34px;
	margin-bottom: 30px;
	font-weight: normal;
	text-transform: uppercase;
}
.pet_staff .inner-wrapper .content-wrapper h1:after {
	position: absolute;
    content: '';
    width: 113px;
    height: 2px;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #ffffff;
}
.pet_staff .inner-wrapper .content-wrapper p {
	font-size: 14px;
}
/*---------------Pet/Staff Section CSS End----------------*/

/*-------------------Team Section CSS Start--------------*/
.Team .team-content{
	height: 363px;
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: #152742;
}
.Team .team-content img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   	object-fit: cover;
    -o-object-position: center;
   	object-position: center;
   	opacity: 10%;
}
.Team .overlay{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #152742;
}
.Team .team-text{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.Team .text-wrap {
	width: 78%;
	margin: 0 auto;
	color: #ffffff;
	text-align: center;
}
.Team .text-wrap h1{
	font-family: 'Yellowtail', cursive;
	font-weight: normal;
	font-size: 60px;
} 
.Team .text-wrap p{
	font-size: 24px;
	margin: 30px 0;
}
.Team .read-btn{
	border-radius: 100px;
	background-color: #db2029;
	text-transform: uppercase;
	font-size: 20px;
	color: #ffffff;
	padding: 7px 34px;
	font-weight: bold;
}
.Team .read-btn:hover{
	background-color: #ffffff;
	color: #152742;
	text-decoration: none;
	transition: all 0.7s;
}
/*-------------------Team Section CSS End--------------*/

/*=======================Property Page CSS========================*/
.property-sec {
	padding: 40px 0px;
}
.property-sec .inner-card {
	position: relative;
	border: 0;
    box-shadow: 0px 3px 4px #eae7e7;
}
.property-sec .inner-card .img-wrapper {
    height: 204px;
    overflow: hidden;
}
.property-sec .inner-card .img-wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
   	object-fit: cover;
	-o-object-position: center;
   	object-position: center;
}
.property-sec .inner-card h5.card-title{
	position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #152742;
    color: #ffffff;
    padding: 6px 0px;
    font-family: 'Yellowtail', cursive;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 0.8px;

}
.property-sec .card-body {
	padding: 2rem 1.25rem;
}
.property-sec .read-btn:hover{
	background: rgba(21,39,66,0.8);
	color: #ffffff;
	text-decoration: none;
	transition: all 0.7s;
}
.property-sec .read-btn{
	background-color: #db2029;
	font-size: 20px;
	color: #ffffff;
	padding: 7px 20px;
	border: 0px;
	box-shadow: 0px 2px 4px #908e8e;
}
/*=======================Property Page CSS========================*/

/*============About Page CSS Start==================*/
.property_banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #333333;
    background-image: url('../images/property_banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Noto Serif', serif;
}
.property_banner  h1 {
    background-color: #3c419d;
    font-weight: normal;
    text-align: center;
    padding: 30px 0px;
    color: #ffffff;
    font-size: 26px;
}
.property_banner .map_area,
.property_banner .content-wrapper {
	position: relative;
    display: block;
    width: 100%;
    height: 470px;
    overflow: hidden;
    background-color: #929191;
    margin: 0 auto;
}
.property_banner .slider_wrapper{
	width: 300px;
    height: 200px;
    margin: 0 auto;
}
.property_banner .content-wrapper:hover .carousel-control-prev,
.property_banner .content-wrapper:hover .carousel-control-next {
    visibility: visible;
}
/*.property_banner .carousel-control-prev,
.property_banner .carousel-control-next {
    visibility: hidden;
}*/
.property_banner .slider_wrapper .carousel-control-prev,
.property_banner .slider_wrapper .carousel-control-next{
    font-size: 35px;
    background: #333;
    width: 50px;
    height: 50px;
    top: 45%;
    bottom: 0;
    margin: 0 auto;
}
.property_banner .slider_wrapper .carousel-control-prev{
    left: -70px;
}
.property_banner .slider_wrapper .carousel-control-next{
	right: -70px;
}
.property_banner .bottom-details {
	background-color: #3c419d;
	color: #ffffff;
	text-align: right;
	padding: 10px 20px;
	margin-top: 10px;
}
.property_banner .bottom-details span .contact{
	font-size: 23px;
	padding-left: 20px;
}
.property_banner .slider_wrapper .image-wraper{
	width: 350px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}
.property_banner .map_area iframe{
	width: 100%;
}
.property_banner .slider_wrapper .image-wraper img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.abt_property {
	padding: 20px 0px;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Noto Serif', serif;
	margin-bottom: 7px;
}
.abt_property .abt_intro h1 {
    color: #152742;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 22px;
}
.abt_property .abt_intro p{
	text-align: justify;
}
.abt_property .tab_sec {
	margin: 20px 0px; 
}
.abt_property .abt_nav .nav-tabs{
	border: 0px;
}
.abt_property .tab-content {
	border: 1px solid #dee2e6;
}
.abt_property .abt_nav .nav-link {
	font-size: 18px;
	color: #000000;
    border: 1px solid #dee2e6;
    margin-right: 10px;
}
.abt_property .abt_nav .nav-link.active {
	border-bottom: 0px;
	color: #db2029;
    font-weight: bold;
}
.abt_property .utilities {
	background: rgb(183 193 210 / 20%);
    padding: 10px 7px;
    margin: 10px 0px;
	-webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.abt_property .utilities .utlt_options {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.abt_property .utlt_options .optionss {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 20px;
}
.abt_property .utilities,
.abt_property .utilities .utlt_options{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.abt_property .utlt_options .optionss .svg-inline--fa{
    font-size: 14px;
}
.abt_property .utlt_options .optionss p {
	margin: 0;
}
.abt_property .amenities{ 
	padding: 12px 8px;
}
.abt_property .amenities h5{
	font-size: 18px;
}
.abt_property .amenities ul.suite{
	display: block;
    list-style: none;
}
.abt_property .amenities ul.suite li{
	font-size: 15px;
}
.abt_property .neighbourhood{
	padding: 10px;
}
.abt_property .neighbourhood iframe {
	width: 100%;
}
.abt_property .right-side .card-head {
	padding: 15px 18px;
	background-color: #e2e2e2;
}
.abt_property .right-side .card-head .card-text {
    font-size: 18px;
    text-transform: uppercase;
}
.abt_property .right-side .card-body {
	padding: 14px 14px;
}
.abt_property .right-side .card-body ul.listing {
	display: block;
	list-style-type: none;
}
.abt_property ul.listing li.available {
	margin-bottom: 10px;
}
.abt_property ul.listing li.available a.my-btn{
	background-color: #eaab1b;
	color: #000000;
    line-height: 1.4;
}
.abt_property .right-side .card-body li a.my-btn {
	color: #ffffff;
	font-size: 12px;
	padding: 4px 10px 4px 10px;
    background-color: #152742;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 10px;
}
.abt_property .right-side .card-body li a.my-btn:hover {
	text-decoration: none;
}
.abt_property .right-side .card-body li a.pay-btn {
	text-transform: uppercase;
	font-size: 12px;
}
.abt_property .right-side .card-body .card_bttns a{
    margin: 0 5px;
}
.abt_property .right-side .card-body .card_bttns a.btn{
	border: 1px solid #152742;
	color: #152742;
	text-transform: uppercase;
    font-size: 12px;
}
.abt_property .right-side .card-body .card_bttns a.btn:hover {
	background-color: #152742;
	color: #ffffff;
	transition: all 0.5s;
}
.thumbnail_slider .img-wraper {
    overflow: hidden;
}
.thumbnail_slider .img-wraper img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	margin: 0 auto;
}
.thumbnail_slider .img-wraper,
.thumbnail_slider .img-wraper img{
	width: 200px;
    height: 150px;
}
.gallery_sec .carousel-control-prev,
.gallery_sec .carousel-control-next {
	opacity: 1;
}
.abt_property .video-sec h2{
	color: #152742;
	margin-bottom: 20px;
}
.abt_property .video-wrapper {
	width: 100%;
    height: 500px;
    overflow: hidden;
	padding: 10px;
	border: 1px solid #333333;
}
.abt_property .video-sec iframe{
	width: 100%;
	height: 100%;
}
/*============About Page CSS End====================*/

/*===========Career Page Css Start===============*/
/*.careers{
	font-family: 'Noto Serif', serif;
}
.careers .career_banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 100px;
}*/
.property_banner img.tp-img,
.careers .career_banner  img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
/*.careers .career_banner .overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgb(21 26 37 / 70%);
}
.careers .career_banner .banner-text h1 {
	text-align: center;
	color: #ffffff;
	font-size: 65px;
	text-transform: uppercase;
	letter-spacing: 5px;
	transition: transform 0.6s;
}
.careers .career_banner .banner-text h1:hover {
	transform: scaleY(1.4);
}
.careers_sec {
	padding: 25px 25px;
}
.careers_sec .heading_wrapper p {
	font-size: 23px;
	font-weight: 600;
	text-align: justify;
}
.careers_sec .heading_wrapper p .svg-inline--fa {
	margin-right: 10px;
}
.careers_sec .data_wrapper .card{
	border: 0px;
}
.careers_sec .data_wrapper .card-header{
	background-color: transparent;
	border-bottom: 0px;    
	border-top: 1px solid rgba(0,0,0,.125);
}
.careers_sec .data_wrapper button.btn-link {
	color: #000000;
	font-size: 18px;
	font-weight: 600;
	position: relative;
    width: 100%;
    text-align: left;
}
.careers_sec .data_wrapper button.btn-link:hover,
.careers_sec .data_wrapper button.btn-link:focus{
	text-decoration: none;
}
.careers_sec .data_wrapper button.btn-link .svg-inline--fa {
    position: absolute;
    right: 0;
    top: 10px;
    margin: 0 auto;   
}
.careers_sec .data_wrapper button.btn-link[aria-expanded="false"] .svg-inline--fa{
	transform: rotate(0deg);
	transition: all 0.5s;
}
.careers_sec .data_wrapper button.btn-link[aria-expanded="true"] .svg-inline--fa{
	transform: rotate(-45deg);
	transition: all 0.5s;
}
.careers_sec .data_wrapper .card-body ul.points_wrapper {
	display: block;
	list-style: disc;
	padding: 20px 40px;
    margin: 0;
}
.careers_sec .data_wrapper .body_wrapper {
    max-height: 400px;
    height: 100%;
}
.careers_sec .data_wrapper div.collapse .body_wrapper {
    overflow-x: hidden;
    overflow-y: scroll;
}*/
/*===========Career Page Css End===============*/

/*==============Contact CSS Start=========================*/
.contact-sec .top-sec{
    text-align: center;
    padding: 40px 0 50px;
}
.contact-sec .top-sec h1{
	font-size: 43px;
	font-family: 'Yellowtail', cursive;
	letter-spacing: 0.02em;
	font-weight: normal;
	font-size: 54px;
}
.contact-sec .top-sec p {
	font-size: 20px;
	letter-spacing: 0.08em;
	margin-top: 8px;
}
.contact-sec .career-text {
	position: relative;
}
.contact-sec .career-text .img-wrapper {
	width: 100%;
	height: 400px;
	overflow: hidden;
	margin: 0 auto;
}
.contact-sec .career-text .img-wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;	
}
.contact-sec .career-text .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.contact-sec .career-text .overlay-A{
	background: rgba(184,183,183,0.7);
}
.contact-sec .career-text .overlay-B {
	background: rgba(226,28,33,0.7);
}
.contact-sec .career-text .overlay-C{
	background: rgba(12,74,117,0.7);
}
.contact-sec .career-text .inner-wrapper {
	color: #ffffff;
	width: 321px;
    margin: 0 auto;
}
.contact-sec .career-text .inner-wrapper .svg-inline--fa {
	font-size: 50px;
    margin-bottom: 20px;
}
.contact-sec .career-text .inner-wrapper p.call{
	font-size: 24px;
    font-weight: bold;
    margin: 15px 0px;
    color: #ffffff;
}
.contact-sec .career-text .inner-wrapper .call-res,
.contact-sec .career-text .inner-wrapper p.cntct{
	font-size: 25px;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}
.contact-sec .career-text .inner-wrapper .call-res:hover,
.contact-sec .career-text .inner-wrapper .call-res:focus{
	text-decoration: none;
}
/*==============Contact CSS End=========================*/

/*===============About Us Page Start====================*/
.cards-sec {
	padding: 50px 0px 100px;
}
.cd-wrapper {
	margin-top: 95px;
}
.cards-sec .card {
	position: relative;
	background-color: #fafafa;
	border: none;
	width: 100%; float: left; padding: 2%;
}
.cards-sec .card .avatar {
	position: absolute;
	top: -42px;
	left: 0;
	right: 0;
	margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #cccccc;
    font-size: 40px;
    color: #ffffff;
    line-height: 2.2em;
    text-align: center;
}
.cards-sec .card .avatar:hover{
	background-color: #d62126;
}
.cards-sec .card .avatar:hover .svg-inline--fa:hover  {
	-ms-transform: scale(1.2,1.2); /* IE 9 */
  	transform: scale(1.2,1.2);
  	transition: all 0.5s;
}
.cards-sec .card .card-body{
	margin-top: 35px;
	color: #1a4058;
    padding-bottom: 50px;
}
.cards-sec .card .card-body .card-title {
	font-family: 'Yellowtail', cursive;
	font-size: 50px;
	font-weight: normal;
    margin-bottom: 70px;
    position: relative;
}
.cards-sec .card .card-body .card-title:after{
    position: absolute;
    content: '';
    width: 60px;
    height: 6px;
    background-color: #d62126;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: 0 auto;
}
.cards-sec .card .card-body p {
	font-size: 18px;
	font-weight: 400;
}
/*===============About Us Page End====================*/

/*=====================SWIPER SLIDER Start=====================*/
.gallery_sec .wraapp {
	background-color: #808080;
	text-align: center;
}
.gallery_sec .wraapp img {
	width: 100%;
    height: 100%;
	-o-object-fit: contain;
      object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
.gallery_sec .gallery-thumbs p {
	text-align: center;
	color: #333333;
	font-weight: bold;
    background-color: #ffffff;
}
.gallery_sec .img-wraper,
.gallery_sec .wraapp {
    max-width: 1200px;
    height: 500px;
    width: 100%;
    overflow: hidden;
}
.gallery_sec .img-wraper img,
.gallery_sec .swiper-img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
      object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.gallery_sec .swiper-img-wrap {
    max-width: 200px;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin: 0 auto;
}
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.gallery-top {
  height: 80%;
  width: 100%;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-thumbs .swiper-wrapper .swiper-slide:last-child {
	margin-right: 0px !important;
}
/*=====================SWIPER SLIDER End=====================*/

.about-page {
	padding: 60px 40px;
}
.about-page .abt-title {
	color: #dc212a;
	margin-bottom: 1rem;
}
.about-page .line-bar {
	width: 100px;
	border-bottom: 3px solid #152742; 
	margin-bottom: 2rem;
}
.about-page .abt-text b {
	text-transform: uppercase;
}
.about-page .abt-text .img-wrapp {
	width: 34%;
    margin: 0px 0 0 16px;
	float: right;
}
.about-page .abt-text .img-wrapp img {
	width: 100%;
}
/*.about-page .abt-img-wrap img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}*/
.about-page p.title-line {
	/*letter-spacing: 2px;*/
	/*font-weight: 600;*/
	text-transform: uppercase;
}
.resouces-page {
	padding: 80px 50px 10px;
}
.resouces-page .resource-listing {
	text-align: center;
	border: 1px solid #152742;
	position: relative;
	padding: 12px 30px 12px 0px;
}
.resouces-page .resource-listing a {
	font-size: 18px;
	color: #152742;
}
.resouces-page .resource-listing .border-lft {
	width: 1px;
    height: 52px;
    background-color: #333333;
    position: absolute;
    top: 0;
    right: 48px;	
}
.resouces-page .resource-listing span {
	position: absolute;
	top: 14px;
	right: 19px;
}
/*.resouces-page .resource-listing {
	margin: 0px;
	list-style: none;
}
.resouces-page .resource-listing li {
	border: 1px solid #152742;
	padding: 8px 12px;
	text-align: center;
}
.resouces-page .resource-listing li:hover {
	border-color: #dc212a;
}
.resouces-page .resource-listing li a{
	font-size: 18px;
	color: #152742;
}
.resouces-page .resource-listing li:hover a {
	text-decoration: none;
	color: #dc212a;
}
.resouces-page .resource-listing .download-pdf{
    width: 6%;
    float: right;
}*/
/*-------------------Career Page Start------------------*/
.career-pg h2 {
	font-size: 48px;
	color: #152742;
	font-weight: 400;
}
.career-pg p {
	font-size: 18px;
	color: #152742;
}
.career-pg a {
	color: #152742;
	/*text-transform: uppercase;*/
}
.career-pg a:hover {
	color: #db2029;
	text-decoration: none;
}
/*-------------------Career Page End------------------*/
/*-----------------Form CSS-----------------------*/
.online_form-pg {
	padding-left: 100px;
	padding-right: 100px;
}
.online_form-pg .stepwizard-step p {
    margin-top: 4px;
    color:#152742;
}
.online_form-pg .stepwizard-row {
    display: table-row;
}
.online_form-pg .stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.online_form-pg .stepwizard-step button[disabled] {
    /*opacity: 1 !important;
    filter: alpha(opacity=100) !important;*/
}
.stepwizard .btn.disabled, .stepwizard .btn[disabled], 
.online_form-pg .stepwizard fieldset[disabled] .btn {
    opacity:1 !important;
    color:#152742;
}
.online_form-pg .stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content:" ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}
.online_form-pg .stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}
.online_form-pg .btn-default-step {
	background-color: #ffffff;
	color: #152742;
}
.online_form-pg .btn-success-step {
	background-color: #152742;
	color: #ffffff !important;
}
.online_form-pg .btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.428571429;
    border-radius: 15px;
    border: 1px solid #152742;
}
.online-form-title h1{
	font-family: 'Noto Serif', serif;
}
.online_form-pg .radio-grp .form-check .form-check-label::before{
	position: absolute;
    content: '';
    top: 5px;
    left: 3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #152742;
}
.online_form-pg .radio-grp .form-check input[type="radio"] {
 	display: none;
}
.online_form-pg .radio-grp .form-check input[type="radio"]:checked ~ .form-check-label::before {
  	background-color: #152742;
}
.online_form-pg .check-grp .form-check .form-check-label::before{
	position: absolute;
    content: '';
    top: 5px;
    left: 3px;
    width: 13px;
    height: 13px;
    border: 1px solid #152742;
}
.online_form-pg .check-grp .form-check input[type="checkbox"] {
 	display: none;
}
.online_form-pg .check-grp .form-check input[type="checkbox"]:checked ~ .form-check-label::before {
  	background-color: #152742;
}
.online_form-pg .panel-title {
	color: #152742;
}
.online_form-pg .nextBtn {
	background-color: #152742;
	border: 0;
}
.online_form-pg .nextBtn:focus {
	outline: none;
	box-shadow: 0;
	border: 0;
}
.contact-pg {
	padding: 3rem 3rem;
}
.contact-pg h1,
.contact-pg .contact-details h5 {
	color: #dc212a;
}
.contact-cards {
	    padding: 20px 33px;
	    background-color: #ffffff;
	    border-radius: 8px;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 8%);
}
.contact-pg .line-bar {
	width: 100px;
	border-bottom: 3px solid #152742; 
	margin: 17px auto;
}
.contact-pg .svg-inline--fa {
	font-size: 13px;
}
.contact-pg .contact-headings p {
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.contact-pg .contact-details h5 {
	margin-bottom: 1rem;
}
.contact-pg .contact-details p,
.contact-pg .contact-details p a{
	color: #152742;
}
.contact-pg .contact-details p b {
	text-decoration: underline;
	color: #152742;
	margin-top: 20px;
}
.contact-pg .contact-details p a:hover {
	color: #dc212a;
	text-decoration: none;
}
/*-----------------404 Page CSS Start---------------*/
.error-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.error-wrapper {
	margin: 84px auto 0;
}
.error-wrapper h1, .error-wrapper p {
	letter-spacing: 1px;
}
.error-wrapper h1, .error-wrapper p .error-wrapper a {
	font-family: 'Nunito Sans', sans-serif; 
}
.error-wrapper h1 {
	margin-top: 62px;
    color: #152742;
    font-size: 66px;
    line-height: 90px;
}
.error-wrapper p {
	margin-top: 19px;
    font-size: 20px;
    line-height: 39px;
    color: #184a56;
}
.error-wrapper a {
	display: inline-block;
    margin-top: 37px;
    outline: 0;
    height: 56px;
    letter-spacing: .8px;
    line-height: 50px;
    font-size: 22px;
    text-align: center;
    border-radius: 28px;
    cursor: pointer;
    border: 2px solid #152742;
    background-color: #fff;
    color: #152742;
    box-sizing: border-box;
    transition-property: color,background-color;
    transition-duration: .2s;
    padding: 0 20px;
}
.error-wrapper a:hover {
	text-decoration: none;
	background-color: #152742;
	color: #ffffff;
}
/*-----------------404 Page CSS End---------------*/
/*-------------------Footer Section CSS Start--------------*/
.footer .content{
	padding: 40px 0px 25px;
}
.footer .footer-text {
	text-align: center;
	/*text-transform: uppercase;*/
	font-size: 18px;
	color: #152742;
	font-weight: bold;
}
.footer .footer-text.leftSide img{
	width: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.footer .footer-text.leftSide {
	border-right: 3px solid #a3a3a3;
}
.footer .footer-text h3,
.footer .footer-text h4 {
	color: #db2029;
	font-family: 'Noto Serif', serif;
	font-size: 25px;
}
.footer .footer-text h4 {
	font-size: 20px;
	margin: 20px 0 17px;
}
.footer ul.social-links{
	list-style-type: none;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer ul.social-links li{
	border-radius: 50%;
	background-color: #efefef;
	width: 36px;
	height: 36px;
	line-height: 2;
	margin: 0px 6px;
}
.footer ul.social-links li:hover {
	background-color: #152742;
	transition: all 0.7s;
}
.footer ul.social-links a {
	color: #969696;
}
.footer ul.social-links li:hover a {
	color: #ffffff;
}
.footer .footer-text h3 {
	font-size: 25px;
	margin-bottom: 20px;
}
.footer .footer-text a.addr {
	display: block;
	color: #152742;
	margin: 10px 0;
	font-size: 16px;
}
/*.footer .footer-text p:hover,*/
.footer .footer-text a.addr:hover {
	text-decoration: none;
	color: #db2029;
}
/*------------------Copyright CSS---------------------*/
.footer .copyright {
	background-color: #152742;
	text-align: center;
	padding: 20px 0px;
}
.footer .copyright p {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 0px;
}
/*-------------------Footer Section CSS End--------------*/

/*-----------CastleBury Siteplan-------*/
.siteplan-top {
	width: 100%;
	margin-top: 179px;
}
.siteplan-top img,
.castlebury-pg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.castlebury-pg .carousel-inner {
	padding-bottom: 75px;
}
.castlebury-pg .carousel-caption {
	color: #000000;
	background-color: rgba(266 266 266 / 30%);
	box-shadow: 0px 0px 12px rgba(0 0 0 / 30%);
	bottom: -55px;
}
.castlebury-pg .carousel-control-next .carousel-control-next-icon {
	background-image: url('../images/right-arrow1.png');
}
.castlebury-pg .carousel-control-prev .carousel-control-prev-icon {
	background-image: url('../images/left-arrow1.png');
}
/*.castlebury-pg .carousel-control-next .carousel-control-next-icon, .castlebury-pg .carousel-control-prev*/

/*--------------Weyburn SK Css Starts----------------*/
.capilano-video-sec video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
/*--------------Weyburn SK Css Ends----------------*/

/*---------------Media Query CSS----------*/
@media screen and (max-width: 320px) {
	.banner .banner-text h1, .Team .text-wrap h1 {
		font-size: 40px !important;
	}
	.Team .text-wrap p {
		font-size: 18px !important;
	}
	.Team .text-wrap .read-btn {
		font-size: 16px;
	}
	.footer .content {
		padding: 18px 0px 0px;
	}
}
/*@media screen and (min-width: 350px) and  (max-width: 455.99px) {
	.gallery-thumbs .swiper-slide {
		width: 156px !important;
	}
}
@media screen and (min-width: 456px) and  (max-width: 479.99px) {
	.gallery-thumbs .swiper-slide {
		width: 200px !important;
	}
}*/
/*@media screen and (max-width: 475px) {
	.gallery-thumbs .swiper-slide {
		width: 200px !important;
	}
}*/
@media screen and (max-width: 480px) {
	.navbar.my-main-navv {
		padding: 0px 0px;
	}
	.offer-sec .offer-text img {
		width: 40%;
	}
	.abt_property .utilities .utlt_options{
		margin-top: 7px;
	}
	.abt_property .utilities, 
	.abt_property .utilities .utlt_options{
		display: block;
	}
	.footer .footer-text h4 {
		font-size: 18px;
	}
	.footer .footer-text h3 {
		font-size: 22px;
	}
	.footer .footer-text {
		font-size: 14px;
	}
	.footer ul.social-links li {
		line-height: 3;
	}
	.contact-sec .top-sec{
		padding: 20px 0px;
	}
	.contact-sec .top-sec h1 {
		font-size: 40px;
	}
	.contact-sec .top-sec p {
		font-size: 16px;
	}
	.gallery_sec .img-wraper
	/*.gallery_sec .wraapp */
	{
	    height: 245px;
	}
	.resouces-page .resource-listing a {
		font-size: 13px;
	}
	.resouces-page {
		padding-top: 40px;
	}
	.cntct {
		padding: 3rem 1rem !important;
	}
	/*.gallery-thumbs .swiper-slide {
		width: 200px !important;
	}*/
}
@media screen and (max-width: 576px) {
	.property_banner {
		margin-top: 93px;
		height: 100%;
	}
	.property_banner .map_area, 
	.property_banner .content-wrapper{
		height: 100%;
	}
	.property_banner .slider_wrapper {
		height: 100%;
	}

}
@media screen and (min-width: 577px) and (max-width: 625px) {
	.property_banner {
		margin-top: 93px;
	}
	.gallery_sec .img-wraper, .gallery_sec .wraapp {
		height: 350px;
	}
}
@media screen and (min-width: 626px) and (max-width: 767px) {
	.property_banner {
		margin-top: 125px;
	}
	.gallery_sec .img-wraper, .gallery_sec .wraapp {
		height: 375px;
	}
}
@media screen and (min-width: 768px) and (max-width: 800px) {
	.property_banner {
		margin-top: 130px;
	}
}
@media screen and (min-width: 801px) and (max-width: 822px) {
	.property_banner {
		margin-top: 130px;
		height: 100%;
	}
}
@media screen and (min-width: 823px) and (max-width: 991px) {
	.property_banner {
		margin-top: 145px;
		height: 100%;
	}
}
@media screen and (min-width: 992px) and (max-width: 1100px) {
	.main-area {
		margin-top: 149px !important;
	}
	.property_banner {
		margin-top: 145px;
		height: 100%;
	}
}
@media screen and (min-width: 1012px) and (max-width: 1054px) {
	.property_banner {
		margin-top: 151px;
		height: 100%;
	}
}
@media screen and (min-width: 1055px) and (max-width: 1100px) {
	.property_banner {
		margin-top: 154px;
		height: 100%;
	}
}
@media screen and (min-width: 1100px) and (max-width: 1200px) {
	.main-area {
		margin-top: 158px !important;
	}
}
@media screen and (min-width: 1201px) and (max-width: 1276px) {
	.main-area {
		margin-top: 166px !important;
	}
}
@media screen and (min-width: 1277px) and (max-width: 1366px) {
	.main-area {
		margin-top: 170px !important;
	}
}
@media screen and (max-width: 600px) {
	.property_banner h1 {
		padding: 20px 0px;
		font-size: 19px;
	}
	.property_banner .bottom-details span .contact {
		font-size: 16px;
	}
	.abt_property .abt_intro h1 {
		font-size: 25px;
	}
	.abt_property .abt_intro h1 {
	    margin-bottom: 15px;
	}
	.banner .banner-text h1,
	.Team .text-wrap h1 {
		font-size: 41px;
	}
	.property_banner .content-wrapper
	.property_banner .slider_wrapper .image-wraper {
		height: 100%;
	}
	.offer-sec .offer-text h1 {
		font-size: 35px;
		text-align: center;
	}
	.newHome .text-sec h2 {
		font-size: 31px;
	}
	.newHome .text-sec p {
		font-size: 17px;
	}
	.Team .text-wrap p {
		font-size: 20px;
	}
	.property_banner .slider_wrapper {
		width: unset;
	}
	.about-page .abt-text .img-wrapp {
		width: 100%;
		margin-bottom: 12px;
	}
}
@media screen and (min-width: 320px) and (max-width: 540px) {
	.banner {
		margin-top: 93px;
		height: 250px;
	}
	.siteplan-top {
		margin-top: 93px;
	}
	.newHome .img-wrapper {
		height: 253px;
	}
	.newHome .img-wrapper h3 {
		font-size: 27px;
	}
	.offer-sec .offer-text h1 {
		font-size: 31px;
	}
	.newHome .text-sec h2 {
		font-size: 25px;
	}
	.pet_staff .inner-wrapper .content-wrapper h1 {
		font-size: 26px;
	}
	.Team .team-content {
		height: 315px;
	}
	.Team .read-btn {
		font-size: 14px;
	}
	.about-page {
		padding: 20px 40px 10px;
	}
	.about-page .abt-title {
		font-size: 22px;
	}
	.gallery_sec .img-wraper, .gallery_sec .wraapp {
		height: 300px;
	}
	.abt_property .video-wrapper {
		height: 322px;
	}
	.career-pg h2 {
		font-size: 35px;
	}
	.career-pg p {
		font-size: 15px;
	}
	.error-page-main {
		margin-top: 2rem;
	}
	.error-wrapper {
		text-align: center;
		margin-bottom: 24px;
	}
	.error-wrapper img {
		width: 55%;
	}
	.error-wrapper h1 {
		font-size: 27px;
		margin-top: 15px;
		line-height: unset;
	}
	.error-wrapper p {
		font-size: 14px;
		line-height: 28px;
		margin-top: 0;
	}
	.error-wrapper a {
	    margin-top: 15px;
	    height: 40px;
	    line-height: 37px;
	    font-size: 15px;
	}
}
@media screen and (min-width: 540px) and (max-width: 767px) {
	.banner {
		height: 295px;
	}
	.newHome .img-wrapper {
		height: 400px;
	}
	.error-page-main {
		margin-top: 6rem;
	}
	.error-wrapper {
		text-align: center;
		margin-bottom: 24px;
	}
	.error-wrapper img {
		width: 65%;
	}
	.error-wrapper h1 {
		font-size: 37px;
		margin-top: 15px;
		line-height: unset;
	}
	.error-wrapper p {
		font-size: 16px;
		line-height: 28px;
		margin-top: 15px;
	}
	.error-wrapper a {
	    margin-top: 30px;
	    height: 40px;
	    line-height: 37px;
	    font-size: 16px;
	}
}
@media screen and (min-width: 320px) and (max-width: 767px){
	/*.header a.navbar-brand {
		padding: 5px 0px 5px 15px;
    	text-align: left;
    	width: 85%;
	}*/
	
	.newHome .text-sec {
		padding: 0px;
	}
	.pet_staff {
		padding: 20px 0px;
	}
	.pet_staff .inner-wrapper {
		margin-bottom: 15px;
	}
	.footer .footer-text.leftSide {
		border-right: 0px;
		position: relative;
		margin-bottom: 35px;
	}
	.footer .footer-text.leftSide:after {
		position: absolute;
		content: '';
		left: 0;
		right: 0;
		bottom: -15px;
	    width: 220px;
    	height: 3px;
		margin: 0 auto;
		background-color: #a3a3a3;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	.error-page-main {
		margin-top: 7rem;
	}
	.error-wrapper {
		text-align: center;
		margin-bottom: 24px;
	}
	.error-wrapper img {
		width: 70%;
	}
	.error-wrapper h1 {
		font-size: 40px;
		margin-top: 15px;
		line-height: unset;
	}
	.error-wrapper p {
		font-size: 18px;
		line-height: 28px;
		margin-top: 20px;
	}
	.error-wrapper a {
	    margin-top: 25px;
	    height: 40px;
	    line-height: 37px;
	    font-size: 18px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1920px) {
	.header .navbar.my-main-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 1rem 0px 0px 0px;
	}
	.contact-cards {
		padding: 20px 20px;
	}
	.error-page-main {
		margin-top: 14rem;
	}
	.error-wrapper {
		margin-bottom: 10rem;
	}
	.error-wrapper img {
		width: 85%;
	}
	.error-wrapper h1 {
		font-size: 45px;
		margin-top: 15px;
		line-height: unset;
	}
	.error-wrapper p {
		font-size: 18px;
		line-height: 28px;
		margin-top: 20px;
	}
	.error-wrapper a {
	    margin-top: 25px;
	    height: 55px;
	    line-height: 51px;
	    font-size: 20px;
	}
}
@media screen and (min-width: 320px) and (max-width: 991px){
	/*.navbar{
		padding-right: 3rem;
	}*/
	.header a.navbar-brand {
		padding: 5px 0px 5px 15px;
    	text-align: left;
    	width: 85%;
	}
	.pet_staff .inner-wrapper .content-wrapper {
		right: 0px;
		width: auto;
		background: rgba(22,39,67,0.8);
		padding: 20px;
		margin: 20px;
		left: 0px;
	}
	.abt_property .right-side .card-body .card_bttns {
		display: block;
	}
	.property_banner .slider_wrapper .carousel-control-prev{
		left: 0px;
	}
	.property_banner .slider_wrapper .carousel-control-next{
		right: 0px;
	}
	/*.property_banner .carousel-control-prev, 
	.property_banner .carousel-control-next{
		visibility: visible !important;
	}*/
	.header a.navbar-brand img {
		width: 35%;
	}
	.main-area {
		margin-top: 70px !important;
	}

	.thumbnail_slider .img-wraper {
	    height: 95px;
	    overflow: hidden;
	}
	.thumbnail_slider .img-wraper img {
	    width: 100%;
	    height: 100%;
	    object-fit: contain;
	    object-position: center;
	    margin: 0 auto;
	}
	.online_form-pg {
		padding-left: 25px;
		padding-right: 25px;
	}
}
@media screen and (max-width: 768px) {
	
	.header .navbar ul.my-nav li.show:hover {
		background-color: #152742;
	}
	.header .navbar ul.my-nav li.dropdown .dropdown-menu {
		border: 0;
		background-color: #db2029;
	}
	.online_form-pg .stepwizard {
		display: none;
	}
}
@media screen and (max-width: 900px) {
	.header .navbar .navbar-toggler{
	    border: 0px;
	    outline: none;
	    padding-left: 0px;
	    padding-right: 8px;
	}
	.offer-sec .offer-text {
		width: 100%;
		height: 100%;
		-webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
	.gallery-thumbs .swiper-wrapper {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
}
@media screen and (min-width: 1366px) and (max-width: 1920px) {
	.pet_staff .inner-wrapper img {
		width: 100%;
	}
	.banner {
		margin-top: 14rem;
	}
}