:root {
    --building-color: #FF9800;
    --house-color: #0288D1;
    --shop-color: #7B1FA2;
    --warehouse-color: #558B2F;
    --theme-primary-clr: #00143F;
    --theme-secondary-clr: #63C2B7;
    --bg-clr: #F5F5F5;
    --text-clr: var(--theme-primary-clr);
    --header-bg: var(--theme-primary-clr);
    --sidebar-width: 385px;
    --sidebar-bg: var(--theme-primary-clr);   
    --pos-review-clr: var(--theme-secondary-clr);
    --neg-review-clr: #E35656;
    --mixed-review-clr: #d0c144;
}

/*
 * Optional: Makes the sample page fill the window.
 */
 
@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('fonts/AtkinsonHyperlegible-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('fonts/AtkinsonHyperlegible-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('fonts/AtkinsonHyperlegible-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('fonts/AtkinsonHyperlegible-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
 
 
 
 
 
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-clr);
    background-color: var(--bg-clr);
    min-height: 100%;
}

.about_us,
.mission,
.founders,
.partners,
.media_guide,
.privacy_policy
/*{font-family: "Roboto", sans-serif !important; }*/
{font-family: "Atkinson Hyperlegible", sans-serif !important; }





/*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
#map {
    height: 90%;
    width: 100%;
}



/*
 * Property styles in unhighlighted state.
 */
.property {
    align-items: center;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
    background-image: url('./images/icons/map-pin.svg');
}

.property.highlight {
    background-color: #fff !important;
    background-image: none;
    transform: translateY(-35px);
}

.property.highlight::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url('./images/icons/map-pin-active.svg');
    width: 30px;
    height: 30px;
}

.property.highlight::after {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #FFFFFF;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 95%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-out;
    width: 0;
    z-index: 1;
}

.property .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    display: none;
}

.property .icon svg {
    height: 20px;
    width: auto;
}

.property .details {
    display: none;
    flex-direction: column;
    flex: 1;
}

.property .address {
    color: #9E9E9E;
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.property .features {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.property .features > .feature-icon {
    display: block;
    width: 30px;
    height: 30px;
    align-items: center;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    font-size: 10px;
    gap: 5px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
}

.property .features > .feature-icon.icn-blind {
    background-image: url('./images/icons/icon-blind.svg');
}

.property .features > .icn-deaf {
    background-image: url('./images/icons/icon-deaf.svg');
}

.property .features > .icn-handicapped {
    background-image: url('./images/icons/icon-Handicapped.svg');
}

.property .features > .icn-weelchair {
    background-image: url('./images/icons/icon-wheelchair.svg');
}

.property .features > .icn-pet {
    background-image: url('./images/icons/icon-pet.svg');
}

.property .features > .feature-icon.pos-review {
    background-color: var(--pos-review-clr);
}

.property .features > .feature-icon.neg-review {
    background-color: var(--neg-review-clr);
}

.property .features > .feature-icon.mixed-review {
    background-color: var(--mixed-review-clr);
}

.property .features > .feature-icon.no-review {
    background-color: #d3d3d3;
}

/*
 * Property styles in highlighted state.
 */
.property.highlight {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    height: auto;/*80px;*/
    padding: 8px 15px;
    width: auto;
}

.property.highlight .details {
    display: flex;
}

.property.highlight .icon svg {
    width: 50px;
    height: 50px;
}

.property .bed {
    color: #FFA000;
}

.property .bath {
    color: #03A9F4;
}

.property .size {
    color: #388E3C;
}

/*
 * House icon colors.
 */
.property.highlight:has(.fa-house) .icon {
    color: var(--house-color);
}

.property:not(.highlight):has(.fa-house) {
    background-color: var(--house-color);
}

.property:not(.highlight):has(.fa-house)::after {
    border-top: 9px solid var(--house-color);
}

/*
 * Building icon colors.
 */
.property.highlight:has(.fa-building) .icon {
    color: var(--building-color);
}

.property:not(.highlight):has(.fa-building) {
    background-color: var(--building-color);
}

.property:not(.highlight):has(.fa-building)::after {
    border-top: 9px solid var(--building-color);
}

/*
 * Warehouse icon colors.
 */
.property.highlight:has(.fa-warehouse) .icon {
    color: var(--warehouse-color);
}

.property:not(.highlight):has(.fa-warehouse) {
    background-color: var(--warehouse-color);
}

.property:not(.highlight):has(.fa-warehouse)::after {
    border-top: 9px solid var(--warehouse-color);
}

/*
 * Shop icon colors.
 */
.property.highlight:has(.fa-shop) .icon {
    color: var(--shop-color);
}

.property:not(.highlight):has(.fa-shop) {
    background-color: var(--shop-color);
}

.property:not(.highlight):has(.fa-shop)::after {
    border-top: 9px solid var(--shop-color);
}

.jumbotron {
    margin-top: 30px;
}

/* .container {
    width: 99% !important;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 10px;
    margin-left: 10px;
    max-width: none;
} */

/* #content,
.sidebar {
    min-height: 650px;
    height: 100%;
} */
/* 
#row-main {
    overflow-x: hidden;
    height: 100%;
} */

/* #content {
    background-color: lightyellow;

    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
} */

/* #content .btn-group {
    margin-bottom: 10px;
} */

.col-md-6 .width-9,
.col-md-6 .width-12,
.col-md-9 .width-6,
.col-md-9 .width-12,
.col-md-12 .width-6,
.col-md-12 .width-9 {
    display: none;
    /* just hiding labels for demo purposes */
}

.sidebar {
    background-color: lightgrey;

    -webkit-transition: margin 0.3s ease;
    -moz-transition: margin 0.3s ease;
    -o-transition: margin 0.3s ease;
    transition: margin 0.3s ease;
}

/* .collapsed {
    display: none;
} */

@media (max-width: 991px) {
.border-end{border-right:none !important;}

.form_footer {
   
    flex-direction: column;
}

.form_footer li {
    display: flex;
    font-size: 20px;
    justify-content: center;
    padding-bottom: 20px;
}


.about_us, .partners, .media, .media_guide, .privacy_policy {
  
    padding: 40px;
  
}

video{width:100%;}
/***/
.part_table
{
	flex-direction: column;
}

.part_table .part_cols
{
	margin-bottom:15px;
}

.moredropdown .nav-link
{
	padding-left:20px;
}


}

@media (min-width: 992px) {
    /* .collapsed {
        display: block;
    } */

    #sidebar-left.collapsed {
        /* margin-left: -25%; */
        /* same width as sidebar */
    }

    #sidebar-right.collapsed {
        margin-right: -25%;
        /* same width as sidebar */
    }
}

select {
    width: 100%;
}
.form-text-input{
    width:100%;
}

#subscriptionform {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detailsFriendlyIcons {
    display: block;
	align-items: center;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: flex;
    font-size: 10px;
    gap: 5px;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.detailsFriendlyIcons.icn-blind {
    background-image: url('./images/icons/icon-blind.svg');
}

.detailsFriendlyIcons.icn-deaf {
    background-image: url('./images/icons/icon-deaf.svg');
}

.detailsFriendlyIcons.icn-handicapped {
    background-image: url('./images/icons/icon-Handicapped.svg');
}

.detailsFriendlyIcons.icn-weelchair {
    background-image: url('./images/icons/icon-wheelchair.svg');
}

.detailsFriendlyIcons.icn-pet {
    background-image: url('./images/icons/icon-pet.svg');
}


/* ========== Custom CSS ========== */

/* Mobile style start */
.mobile-header {
    background-color: var(--header-bg);
    padding: 10px 15px;
}

@media (min-width:768px) {
    .mobile-header {
       display: none;
    } 
}

.mobile-header .logo-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: flex-end;
}

.mobile-header .logo-wrap img {
    max-width: 100%;
    height: auto;
}

.mobile-header .logo-wrap .logo-desktop {
    display: none;
}

@media (min-width:768px) {
    .mobile-header .logo-wrap .logo-mobile {
        display: none;
    }

    .mobile-header .logo-wrap .logo-desktop {
        display: block;
    }
}

/* Mobile style end */

/* Content structure style start */

.content-container {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.content-container.inner_page {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 67px;
}

.content-container > .content-sidebar {
    position: relative;
    flex: 1 0 0%;
    height: 100%;
    max-height: 100%;
    display: flex;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-out;
}

.content-container.collapsed-left > .content-sidebar {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

@media (min-width:1024px) {
	
   .content-container {
		flex-direction: row;

	}

    .content-container > .content-sidebar {
        /*position: fixed;*/
		position:absolute;
        left: 0;
        top: 0;
        bottom: 0;
        flex: 0 0 auto;
        width: var(--sidebar-width);
        max-width: 100%;
        height: 100dvh;
        order: 1;
        transition: all 0.3s ease-out;
    }

    .content-container.collapsed-left > .content-sidebar {
        transform: translateX(-100%);
        transition: all 0.3s ease-out;
    }

    .content-container > .content-wrapper {
        flex: 1 0 0%;
        width: 100%;
        max-width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        margin-left: var(--sidebar-width);
        transition: all 0.3s ease-out;
    }

    .content-container.collapsed-left > .content-wrapper {
        margin: 0;
        transition: all 0.3s ease-out;
    }
}

.content-wrapper .btn-group {
    display: flex;
    align-items: center;
    border-radius: 0;    
    background: var(--theme-primary-clr);
    margin: 0;
    padding: 10px;
}

.content-wrapper .btn-group > .btn {
    font-size: 14px;
    color: var(--theme-secondary-clr);
    flex:  1 0 0%;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-shadow: none;
    box-shadow: none;
    border: none;
    background-image: none;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-out;
}

@media (min-width:1024px) {
    .content-wrapper .btn-group > .btn {
        flex: 0 0 auto;
        width: fit-content;
    }
}

.content-wrapper .btn-group > .btn > svg path {
    fill: var(--text-clr);
}

.content-wrapper .btn-group > .btn.active {
    background-color: rgba(255, 255, 255, 1);
    color: var(--text-clr);
}

.content-wrapper .btn-group > .btn.active > svg path {
    fill: #fff;
}

.content-wrapper .map-container {
    position: relative;
    aspect-ratio: 16 / 9;
}

@media (min-width:1024px) {
    .content-wrapper .map-container {
        aspect-ratio: unset;
        flex: 1 0 0%;
        height: 100%;
        max-height: 100%;
    }
}

.map-container #map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.content-container .restaurant-details-container {
    color: #fff;
    position: fixed;
    inset: 0;
    z-index: 5;
    background-color: #07234C;   
    border: 1px solid var(--theme-secondary-clr); 
    transform: translateX(0);
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content-container.collapsed-right .restaurant-details-container {
    transform: translateX(110%);
    transition: all 0.3s ease-out;
}

@media (min-width:1024px) {
    .content-container .restaurant-details-container { 
        left: auto;
        /*top: 65px;*/
		top:150px;
        right: 10px;
        bottom: 10px;
        width: 345px;
        transform: translateX(0);
        transition: all 0.3s ease-out;
        height: calc(100dvh - 75px);
    }
}

@media (min-width:1536px) {
    .content-container .restaurant-details-container {
        bottom: auto;
        height: calc(100dvh - 180px);
    }
}

.restaurant-details-container .restaurant-details-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--theme-secondary-clr);
    padding: 10px 16px;
}

.restaurant-details-container .restaurant-details-header h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.restaurant-details-container .restaurant-details-header .close-btn {
    font-size: 24px;
    color: #fff;
    border: none;
    outline: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1em;
    height: 1em;
    padding: 0;
    margin-left: auto;
}

.restaurant-details-container .restaurant-details-body {
    flex: 1 0 0%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.restaurant-details-body .loc-det-message {
    padding: 12px 16px;
}

.restaurant-details-body .restaurant-heading {
    display: grid;
    background-color: rgba(255, 255, 255, 0.15);
}

.restaurant-heading .restaurant-details {
    border-bottom: 1px solid  var(--theme-secondary-clr);
    padding: 10px 16px;
}

.restaurant-heading .restaurant-details .restaurant-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.025em;
    margin: 0;
}

.restaurant-heading .restaurant-details .restaurant-address {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.restaurant-heading .disclaimer {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    font-style: italic;
    color: var(--theme-secondary-clr);
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 6px 16px;
}

.restaurant-details-body .reviews-container {
    display: grid;
    gap: 20px;
    flex: 1 0 0%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px 16px;
    max-height: calc(100dvh - 185px);
}

@media (min-width:1024px) {
    .restaurant-details-body .reviews-container {
        max-height: calc(100dvh - 260px);
    }    
}

@media (min-width:1536px) {
    .restaurant-details-body .reviews-container {
        max-height: calc(100dvh - 370px);
    }    
}

.restaurant-details-body .reviews-container::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #07234C;
}

.restaurant-details-body .reviews-container::-webkit-scrollbar
{
	width: 8px;
	background-color: #07234C;
}

.restaurant-details-body .reviews-container::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: rgba(255,255,255,.3);
}

.restaurant-details-body p {
    margin: 0;
}

.restaurant-details-body p:empty {
    display: none;
}

.restaurant-details-body .restaurant-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.restaurant-details-body .category-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
    padding: 6px 16px;
}

.restaurant-details-body .category-list svg {
    width: 34px;
    height: 34px;
}

.restaurant-details-body .category-list .review-labels {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-list .review-labels .label-clr {
    display: block;
    border-radius: 50%;
    width: 16px;
    height: 16px;
}

.category-list .review-labels .label-clr.positive {
    background-color: var(--pos-review-clr);
}

.category-list .review-labels .label-clr.negative {
    background-color: var(--neg-review-clr);
}

.category-list .review-labels .label-clr.mixed {
    background-color: var(--mixed-review-clr);
}

.category-list .review-labels .label-text {
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}   

.reviews-container .review-wrap {
    border-radius: 6px;
    border: 1px solid #f3f3f3;
    background-color: rgba(255, 255, 255, 0.15);
}

.reviews-container .review-wrap .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom: 1px solid #fff;
    padding: 8px 8px;
}

.reviews-container .review-wrap.negReview .review-header {
    background-color: var(--neg-review-clr);
}

.reviews-container .review-wrap.posReview .review-header {
    background-color: var(--pos-review-clr);
}

.reviews-container .review-wrap.neutralReview .review-header {
    background-color: var(--mixed-review-clr);
}

/* .reviews-container .review-wrap.noReview .review-header {
    background-color: #d3d3d3;
} */


.review-header .review-icon {
    display: block;    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    border: 1px solid var(--theme-primary-clr);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

#blindFriendlyReview.review-wrap .review-header .review-icon {
    background-image: url('./images/icons/icon-blind.svg');
}

#deafFriendlyReview.review-wrap .review-header .review-icon {
    background-image: url('./images/icons/icon-deaf.svg');
}

#handicappedFriendlyReview.review-wrap .review-header .review-icon {
    background-image: url('./images/icons/icon-Handicapped.svg');
}

#wheelchairFriendlyReview.review-wrap .review-header .review-icon {
    background-image: url('./images/icons/icon-wheelchair.svg');
}

#dogFriendlyReview.review-wrap .review-header .review-icon {
    background-image: url('./images/icons/icon-pet.svg');
}

.review-wrap.noReview .review-header .review-icon {
    background-color: #d3d3d3;
}

.review-wrap.posReview .review-header .review-icon {
    background-color: var(--pos-review-clr);
}

.review-wrap.negReview .review-header .review-icon {
    background-color: var(--neg-review-clr);
}

.review-wrap.neutralReview .review-header .review-icon {
    background-color: var(--mixed-review-clr);
}

.review-wrap.noReview .review-header .no-of-reviews {
    display: none;
}

.review-header h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.025em;
    color: #fff;
    margin: 0;
}

.review-header .no-of-reviews {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.review-header .amt {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.025em;
    color: #fff;
}

.reviews-container .review-wrap .review-body {
    display: grid;
    gap: 20px;
    overflow: hidden;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.reviews-container .review-wrap .review-body .review-no {
    padding: 8px;
}

.reviews-container .review-wrap .review-body .review-positive {
    display: grid;
    gap: 16px;
}

.reviews-container .review-wrap .review-body .review-positive p {
    font-size: 18px;
    margin: 0;
    padding: 8px;
    background-color: var(--pos-review-clr);
    color: #fff;
}

.reviews-container .review-wrap .review-body .review-negative {
    display: grid;
    gap: 16px;
}

.reviews-container .review-wrap .review-body .review-negative p {
    margin: 0;
    padding: 8px;
    background-color: var(--neg-review-clr);
    color: #fff;
}

.reviews-container .review-wrap .review-body p.no-data-review {
    font-size: 18px !important;
    color: var(--neg-review-clr) !important;
}

.content-sidebar .sidebar-left-container {
    background-color: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
}

.content-sidebar .sidebar-left-container .sidebar-body {
    flex: 1 0 0%;
    height: 100%;
    max-height: 100%;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.content-sidebar .sidebar-left-container .sidebar-body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #07234C;
}

.content-sidebar .sidebar-left-container .sidebar-body::-webkit-scrollbar
{
	width: 8px;
	background-color: #07234C;
}

.content-sidebar .sidebar-left-container .sidebar-body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: rgba(255,255,255,.3);
}

.sidebar-body .accordion .accordion-item {
    border-color: var(--theme-secondary-clr);
    background-color: #07234C;
}

.sidebar-body .accordion .accordion-item + .accordion-item {
    border-top: 1px solid var(--theme-secondary-clr);
    margin-top: 16px;
}

.sidebar-body .accordion-item > .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    background-color: transparent;
    box-shadow: none;
    padding: 16px 16px 8px;
}

.sidebar-body .accordion-item > .accordion-header .accordion-button[aria-expanded="true"] {
    color: var(--theme-secondary-clr);
}

.sidebar-body .accordion-item:first-of-type,
.sidebar-body .accordion-item:first-of-type > .accordion-header .accordion-button,
.sidebar-body .accordion-item:last-of-type,
.sidebar-body .accordion-item:last-of-type > .accordion-collapse
.sidebar-body .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

.sidebar-body .accordion-item .accordion-header .accordion-button::after {
    background-image: none;
    width: 0; 
    height: 0; 
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;    
    border-top: 12px solid var(--theme-secondary-clr);
}

.sidebar-body .accordion-item  .accordion-body {
    font-size: 20px;
    padding: 8px 16px 16px;
}


.content-sidebar .sidebar-left-container .sidebar-footer {
    background-color: #082857;
}

.feedback-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;   
}

.sidebar-left-container .sidebar-header {
    display: none;
}

@media (min-width:768px) {
    .sidebar-left-container .sidebar-header {
        display: block;
        text-align: center;
        padding-top: 40px;
    }
}

.sidebar-left-container .sidebar-header img {
    width: 85%;
    max-width: 100%;
    height: auto;
}

.sidebar-left-container .accordion-item .select2 {
    display: block;
    font-size: 18px;
    line-height: 1.11111111111;
    color:var(--text-clr);
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: #fff;
    padding: 14px;
}

.sidebar-left-container .accordion-item .select2.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
    background-color: transparent;
    height: auto;
}

.sidebar-left-container .accordion-item .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: inherit;
    padding: 0;
}

.sidebar-left-container .accordion-item .select2.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 25px;
}

.sidebar-left-container .accordion-item .select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
    color: #00143F;
    border-width: 12px 12px 0 12px;
    margin: 0;
    transform: translateX(-50%) translateY(-50%);
}

.sidebar-left-container .accordion-item .form-text-input {
    display: block;
    font-size: 18px;
    line-height: 1.11111111111;
    color:var(--text-clr);
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: #fff;
    padding: 14px;
}

.sidebar-left-container .accordion-item .form-btn-block {
    text-align: center;
}

.sidebar-left-container .accordion-item .form-btn-block .btn-search {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.11111111111;
    color:#fff;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: var(--theme-secondary-clr);
    margin: 0 auto;
    width: 80%;
    max-width: 186px;
    padding: 14px;
}

.sidebar-left-container .accordion-item .form-btn-block .clear-filters-link {
    display: inline-block;
    font-size: 14px;
    color: var(--theme-secondary-clr);
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
}

.sidebar-left-container .accordion-item .filters-wrap {   
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.filters-wrap .filter {
    position: relative;    
    cursor: pointer;
}

.filters-wrap .filter input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.filters-wrap .filter .filter-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 8px;
    transition: all 0.3s ease-out;
}

.filter input[type="checkbox"]:checked + .filter-block  {
    background-color: rgba(255, 255, 255, 1);
}

.filters-wrap .filter .filter-label {
    font-size: 14px;
    color: var(--theme-secondary-clr);
}

.filter input[type="checkbox"]:checked + .filter-block .filter-label {
    color: var(--text-clr);
}

@media (min-width: 576px) {
    .modal-dialog {
        --bs-modal-width:528px;
        max-width: var(--bs-modal-width);
    }
}

#welcomeModal .modal-dialog.modal-dialog-centered .modal-body {
    padding: 16px 16px 8px;
}

@media (min-width:1024px) {
    #welcomeModal .modal-dialog.modal-dialog-centered .modal-body {
        padding: 32px 32px 16px;
    }
}

#welcomeModal .modal-dialog.modal-dialog-centered .modal-body h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: 00143F;
    text-align: center;
    margin: 0 0 10px 0;
}

#welcomeModal .modal-dialog.modal-dialog-centered .modal-body p {
    font-size: 20px;
    text-align: center;
    margin: 0;
}

#welcomeModal .modal-dialog.modal-dialog-centered .modal-footer {
    padding: 8px 16px 16px;
    border: none;
    justify-content: center;
}

@media (min-width:1024px) {
    #welcomeModal .modal-dialog.modal-dialog-centered .modal-footer {
        padding: 16px 32px 32px;
    }
}

#welcomeModal .modal-dialog.modal-dialog-centered .modal-footer .btn.btn-secondary {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.11111111111;
    color:#fff;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: var(--theme-secondary-clr);
    margin: 0 auto;
    width: 80%;
    max-width: 186px;
    padding: 14px;
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-body {
    padding: 16px 16px 8px;
}

@media (min-width:1024px) {
    #feedbackModal .modal-dialog.modal-dialog-centered .modal-body {
        padding: 32px 32px 16px;
    }
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-body h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: 00143F;
    text-align: center;
    margin: 0 0 6px 0;
}

@media (min-width:1024px) {
    #feedbackModal .modal-dialog.modal-dialog-centered .modal-body h3 {
        font-size: 32px;
    }
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-body p {
    font-size: 20px;
    text-align: center;
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-body .modal-form {
    display: grid;
    gap: 16px;
    max-width: 394px;
    margin: 0 auto;
}

#feedbackModal .modal-body .modal-form input[type="email"] {
    display: block;
    font-size: 18px;
    line-height: 1.11111111111;
    color: var(--text-clr);
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: #f5f5f5;
    padding: 14px;
}

#feedbackModal .modal-body .modal-form textarea {
    display: block;
    font-size: 18px;
    line-height: 1.11111111111;
    color: var(--text-clr);
    overflow-x: hidden;
    overflow-y: auto;
    border: none;
    outline: none;
    border-radius: 20px;
    background-color: #f5f5f5;
    padding: 14px;
    height: 86px;
    resize: none;
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-footer {
    padding: 8px 16px 16px;
    border: none;
    justify-content: center;
}

@media (min-width:1024px) {
    #feedbackModal .modal-dialog.modal-dialog-centered .modal-footer {
        padding: 8px 16px 16px;
    }
}

#feedbackModal .modal-dialog.modal-dialog-centered .modal-footer .btn.btn-secondary {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.11111111111;
    color:#fff;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: var(--theme-secondary-clr);
    margin: 0 auto;
    width: 80%;
    max-width: 186px;
    padding: 14px;
}

#errorMsgModal .modal-dialog.modal-dialog-centered .modal-body {
    padding: 16px 16px 8px;
}

@media (min-width:1024px) {
    #errorMsgModal .modal-dialog.modal-dialog-centered .modal-body {
        padding: 32px 32px 16px;
    }
}

#errorMsgModal .modal-dialog.modal-dialog-centered .modal-body h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #00143F;
    text-align: center;
    margin: 0 0 10px 0;
}

#errorMsgModal .modal-dialog.modal-dialog-centered .modal-body p {
    font-size: 20px;
    text-align: center;
    margin: 0;
}

#errorMsgModal .modal-dialog.modal-dialog-centered .modal-footer {
    padding: 8px 16px 16px;
    border: none;
    justify-content: center;
}

@media (min-width:1024px) {
    #errorMsgModal .modal-dialog.modal-dialog-centered .modal-footer {
        padding: 16px 32px 32px;
    }
}

#errorMsgModal .modal-dialog.modal-dialog-centered .modal-footer .btn.btn-secondary {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.11111111111;
    color:#fff;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 555.5em;
    background-color: var(--theme-secondary-clr);
    margin: 0 auto;
    width: 80%;
    max-width: 186px;
    padding: 14px;
}




/******new additional styling : May 2025*******************/

@media only screen and (min-width:475px)
{
	.navbar-brand .barlogo
	{
		width:300px;
	}
}

@media only screen and (max-width:474px)
{
	.navbar-brand .barlogo
	{
		width:180px;
	}
}

.navbar .nav-item
{
	border-width:2px;
}

.navbar .nav-link:hover {
    color: var(--theme-primary-clr);
	transition: color 0.3s ease;
}


.navbar .nav-link{
  color: var(--theme-secondary-clr);
  transition: color 0.3s ease;
}

.moredropdown i
{
	color:#fff;
	border-color:1px solid #fff;
}

.moredropdown .nav-link
{
	color:#fff;
}

.moredropdown
{
	background-color:var(--theme-secondary-clr);
	border-radius:25px;
}
  
  
/* new CSS-- 30/05/2025 ******************************************************  */



.rhs_search{ width:20%;}

.rhs_search input {
    border: 1px solid #646464;
    width: 100%;
    background: url(images/icons/icon_search.png) no-repeat;
    background-size: auto 73%;
    background-position: 5px center;
    height: 33px;
    border-radius: 5px;
    padding-left: 47px;
}

.content_holder {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    position: relative;
    top: 67px;
}

.about_us,
.partners,
.media,
.media_guide,
.privacy_policy
 {
    margin: 0 auto;
    background: url(images/about_bg.png) no-repeat;
    background-size: cover;
    padding: 100px;
    /* box-sizing: border-box; */
    min-height: 100vh;
}



.feedback_form

 {
    margin: 0 auto;
   
    padding: 100px;
    /* box-sizing: border-box; */
    height: 100vh; 
	
}


.form_popup {
    width: 100%;
    max-width: 700px;
    background: url(images/form_bg.png) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 99;
    border-radius: 30px;
    box-shadow: 1px 6px 10px #a1a1a1;
    padding: 30px 60px;
}

.partners h2,
.media_guide h2,
.privacy_policy h2
{color:#fff;}



.mission,
.founders

 {
    margin: 0 auto;
    background: url(images/mission_bg.png) no-repeat;
    background-size: cover;
    padding: 100px;
    /* box-sizing: border-box; */
    min-height: 100vh;
}

.about_us .video_section{height:100%;}

.about_us .video_section h1{font-weight:bold;}

.about_us h1,
.about_us h4
{color:#fff;}

.privacy_policy h4,
.privacy_policy h5
{color:#61c2ba}

.about_us h4{font-size:18px;}

.moredropdown .nav-link{width: 92px !important;}



.about_us h1 span,
.about_us h4 span
{color:#69bdb0;}

.about_us .video_section .video{margin-top:30px;}

video{border-radius:10px;}


.mission{padding:100px;}
.mission h2{color:#0d1740; font-weight:bold;}

.mission h3 {
    color: #0d1740;
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 800;
}


.mission p,
.media_guide p

 {
    color: #fff;
    font-size: 21px;
    padding-bottom: 0px;
    margin-bottom: 3px;
}

.mission_cols{margin-top:50px;}
.mission_cols .border_rhs{border-right:1px solid #fff;}

.mission_cols .inner_gap{padding-left:10px;padding-right:10px;}

	.inner_gap_rhs{padding-right:40px;}
	.inner_gap_lhs{padding-left:40px;}

/* Digital Counter */
 .content-section {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-align: center;
            padding: 40px;
        }

        .counter-section {
           
            display: flex;
           
            align-items: center;
            position: relative;
        }

     .counter-container {
    padding: 0;
    display: flex;
    position: relative;
    transform: scale(0.8);
    transform-origin: 0;
}

		.digit-box {
			width: 80px;
			height: 120px;
			background: #ffffff;
			border: 10px solid #0e1740;
			position: relative;
			overflow: hidden;
			box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
			margin-left: -10px;
			border-radius: 5px;
		}

        .digit-wheel {
    position: absolute;
    width: 100%;
    height: 1000px;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

        .digit {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #0e1740;
    
}

        .digit:last-child {
            border-bottom: none;
        }

        .controls {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 12px 24px;
            background: var(--theme-secondary-clr);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .title {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
            50% { box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4); }
        }

        .counter-container.animating {
            animation: pulse 2s ease-in-out infinite;
        }
		
	.counter_title {
    font-size: 24px;
    font-weight: 700;
		}
		
		
.counter_title .plus_icon{margin-right:10px;}

.counter_outer .border_rhs{border-right:1px solid #fff;}

.counter_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter_center.last .counter-section{width:222px;}

.founders .photo img { width:100%;}

.founder_name {
    color: #00143f;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.founders .position{color:#fff;}

.founders .info p

 {
    color: #fff;
    font-size: 19px;
    align-items: center;
    padding-right: 20px;
}

.partners p {
    color: #fff;
    font-size: 15px;
    align-items: center;
    line-height: 18px;
}

.founders .profile_box{margin-top:28px;}


.linked_in_profile{display:flex;}

.linked_in_profile img {
    height: 40px;
    right: -30px;
    position: absolute;
}
		
.profile_box .info{position:relative;}


.partner_header {
    color: #0d1740;
    font-size: 22px;
    padding-bottom: 10px;
    font-weight: 800;
    margin-top: 30px;
}

.partner_logo img {
    width: 100%;
    border: 1px solid #000;
    border-radius: 15px;
}

.partners .part_cols {
    background: #417f89;
    padding: 25px;
    border-radius: 20px;
    column-gap: 40px;
    flex: 0 0 30%;
	position:relative;
}

.partners .part_cols a.box_link{position:absolute; left:0; top:0; right:0; bottom:0;}

.part_table {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}


/* Form  */

.feedback_form,
.media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.feedback_form .form_header {
    font-size: 27px;
    font-weight: 600;
    color: #0d1740;
    line-height: 29px;
    margin-bottom: 10px;
}
.feedback_form p,
.media p
 {
    font-size: 16px;
    color:#0d1740;
    
}

.form_popup input[type="text"],
.form_popup input[type="email"],
.form_popup textarea

 {
    font-size: 19px;
    color: #0d1740;
    border: 1px solid #61c2b8;
    width: 100%;
    margin-bottom: 25px;
    padding: 10px 20px;
    color: #333;
    border-radius: 3px;
}

.btn_submit,
.btn_subscribe
 {
    background: #37998f;
    color: #fff;
    border: 3px solid #fcdd62;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 19px;
    box-shadow: 0px 0px 9px #fcdd62;
}

.feedback_form span,
.media span
 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 26px;
    height: 26px;
    background: #61c2b8;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center; cursor:pointer;
}
.form_popup span img{width:60%;}

.media p{text-align:center; color:#62c2b7; font-size:17px;}

.media .form_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media .form_logo img {width:290px;}


.line2{padding-top:10px;}

.input_ss {
    background: #0d1740;
    color: #fff !important;
    text-align: center;
    border-radius: 12px !important;
    margin-top: 26px;
    margin-bottom: 42px !important;
}


.media .form_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn_subscribe{border-radius: 60px;}



.form_footer {
    list-style-type: none;
    display: flex;
    margin-top: 90px;
    color: #fff;
    justify-content: space-between;
    /* margin: 0; */
    padding: 0;
    width: 100%;
}


.form_footer li{display:flex; font-size:20px;}

.form_footer li img {
    height: 28px;
    box-shadow: 5px 4px 6px #000;
    border-radius: 60px;
}

.homefooter_sm .sm svg
{
	 height: 28px;
	 box-shadow: 5px 4px 6px #000;
	 border-radius: 50%;
}

.homefooter_sm ul
{
	list-style:none;
}


.links a {
    color: #fff;
    margin: 0px 25px; text-decoration:none;
}

.form_footer .sm a{  margin: 0px 5px;}

.homefooter_sm .sm a{  margin: 0px 2px; color: transparent;display: inline-block;}

.contact_email span{color:#61c2ac;}
.contact_email a{color:#fff; text-decoration:none;}


.contact_label{color:#37998f;}

.subtabs {
    display: flex;
    align-items: center;
}

.subtabs a {
    color: #3a939d !important;
    display: block;
    font-size: 22px;
	

}
.subtabs a.selected {	
    color: #0d1740 !important;
    background: #61c2b8;
    text-decoration: none;
    padding: 0px 15px;
    border-radius: 5px;
}

.subtabs span {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 30px;
    font-weight: 200;
}
.si_header {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
}

.si_header span{color:#61c2b8;}

.slide_bg {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.si_header {border-top:4px solid #6e748c;border-bottom:2px solid #6e748c;}
.inner_border {border-top:1px solid #6e748c; margin-top:2px;}

.thumb_info{color:#000;}

.si_video,
.si_img
{margin-top:15px;}


.si_video iframe{height:230px;}


.si_img img
{width:100%}



.si_btn {
    background: #61c2b8;
    border-radius: 60px;
    padding: 8px 21px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
	color:#fff; text-decoration:none;
}

.si_btn img {
    height: 21px;
    margin-left: 2px;
}
.thumb_info {
    font-size: 18px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 20px;
}
.thumb_info span{color:#61c2b8;}

.carousel {margin-top:20px;}

.carousel-item{padding-right:20px;}

.carousel-control-prev-icon,
.carousel-control-next-icon
{ 	
    background-color: #171212;
    border-radius: 110px;
    padding: 21px;
    background-size: 65%;}

.privacy_policy h4{margin-bottom:20px;}

.privacy_policy table{background:#fff;}
.privacy_policy table tr:nth-child(even){background:#e5e5e5;}
.privacy_policy table tr td{color:#333; font-weight:400;}

.email_link{color:#333}

.privacy_policy ol li, .privacy_policy p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.full_width{margin-left: 0 !important;}

.map_overlay {
    position: fixed;
    left: 0;
    top: 67px;
    right: 0;
    bottom: 0;
    background: rgb(97, 194, 182, 0.5 );
    z-index: 9;
}

.navbar.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.carousel-indicators {
   
    bottom: -90px;
   
}

.policy_table{margin-top:15px;margin-bottom:15px;}

.responsecontent p
{
	color:green;
	padding-top:20px;
}


.privacy_policy > ol{margin-bottom:50px; border:0px solid red;}
.privacy_policy a{color:#62c2b6; text-decoration:none;}
.privacy_policy a:hover{color:#fff; text-decoration:underline;}
.privacy_policy table a{color:#333;}


.founders,
.mission,
.media
{margin-top:15px;}

.carousel-control-next, .carousel-control-prev {
   
    top: 40%  !important;
    bottom: auto !important;
   
}


	
/* media queries */
@media only screen and (max-width: 600px) {
	.rhs_search {
		width: 100%;
		padding-top:5px;
	}
	video{width:100%; height:auto;	}
	
	.about_us,
	.partners,
	.media,
	.media_guide,
	.privacy_policy,
	.mission
	
	{padding:30px; min-height:auto;}
	
	.content_holder {top: 75vw;	}
	
	.map_overlay{display:none;}
	
	.about_us .video_section{height:auto;}
	
	.mission, .founders{height:auto; min-height:auto; padding:30px;}
	
	.counter-section {
		
		justify-content: center;
	}
	
	.counter-container{transform-origin:center;}
	
	.counter_title {
 
		text-align: center;
	}
	
	.counter_outer .border_rhs,
	.mission_cols .border_rhs
	{border-right:none;}
	
	.inner_gap_rhs {
		padding-right: 0;
	}
	
	.inner_gap_lhs,
	.inner_gap_rhs
	{
    padding-right: 0;
    margin-bottom: 40px;
	padding-left: 20px;
}

.founders h2{text-align:center;}

.founder_name {
   
    margin-top: 30px;
}

.founders .info p {
    padding-bottom: 60px;
}

.linked_in_profile a {
    display: block;
    position: absolute;
    bottom: 68px;
    left: calc(50% - 20px);
}
	
	.founders .profile_box {
  
    border-bottom: 1px solid #000000;
	}
	
	.part_table {
		flex-direction: column;
	}
	
	.partners .part_cols{margin-bottom:30px;}
	
	.form_footer {
   
    flex-direction: column;
	}
	.form_footer li
	{justify-content:center; margin-bottom:20px;}
	
	.feedback_form {
    margin: 0 auto;
    padding: 30px;
    /* box-sizing: border-box; */
    height: 100vh;
}

.moredropdown a{padding:10px 16px !important;}
	
}



@media only screen and (max-width: 1500px){
	.navbar-brand .barlogo {
		width: 220px !important;
	}
}

@media only screen and (max-width: 550px){
	.navbar-brand .barlogo {
		position: relative;
        top: 15px;
	}
}






/* New CSS  */


.search_note {
    color: #fff;
    margin-top: 30px;
    font-size: 18px;
    line-height: 21px;
    border: 2px dotted #93a2c2;
    padding: 13px;
    background: #233a6b;
    border-radius: 5px;
}

.form_footer_note {
    color: #fff;
    padding-top: 28px;
    font-size: 20px;
    text-align: center;
    border-top: 1px solid #52609b;
    margin-top: 20px;
}

.partners_intro {
    color: #fff;
    padding-top: 8px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
}


/*marker popup close button*/
.property .markerpopclosebtn { display: none; } 

.property.highlight .markerpopclosebtn 
{
	display: block; 
	width: 14px;
    /*background-color: #63c2b7;*/
	background-color:#f26e10;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50px;
}

.property.highlight .price
{
	padding-right: 10px;
}


.sidebar-footer .homefooter_sm,.sidebar-footer .feedback-link
{
	display:inline-block;
}


@media only screen and (max-width:375px)
{
	.homefooter_sm
	{
		padding-top:10px;
	}
}

/***remove this css when you will add video tag***********/
.about_us,
.video_section
{min-height:auto !important; height:auto !important;}