/*

green #63c76a;
orange #f58220;
orange  hover #ff8f2f;
font-family: 'Nunito Sans', sans-serif;

*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    /*font-family: "Open Sans", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
    color: #444;
}

a {
    color: #f58220;
}

a:hover {
    color: #f58220;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    /*font-family: "Raleway", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
}

.h1,
h1 {
    font-size: 2.0rem;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 150px;
    background: #f58220;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #ffa848;
    transition: background 0.2s ease-in-out;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #428bca;
}

#topbar .contact-info i {
    color: #428bca;
    padding: 4px;
}

#topbar .contact-info .icofont-phone {
    padding-left: 20px;
    margin-left: 10px;
}

#topbar .social-links a {
    color: #5c768d;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #428bca;
}


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

#header {
    height: 70px;
    transition: all 0.5s;
    transition: all 0.5s;
    padding: 10px 0;
    background: #fff;
    z-index: 997;
}

#header.header-scrolled {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #1c5c93;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

.cookiealert {
    top: 0px !important;
    bottom: auto;
    background: transparent;
    background-color: #63c76a;
    padding: 25px 40px;
}

.cookiealert .acceptcookies,
.btn-primary:not(:disabled):not(.disabled):active {
    margin-left: 10px;
    vertical-align: baseline;
    border-radius: 4px;
    background-color: #f58220;
    padding: 12px 60px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
    color: #fff;
    border: 0px;
    font-size: 16px;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translatex(0%) !important;
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}


/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */

.cookiealert {
    position: fixed;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transition: all 500ms ease-out;
    color: #ecf0f1;
}

.cbtnfinal {
    background: #fff;
    color: #f58322 !important;
    padding: 0px !important;
    border: 2px solid #f58220 !important;
    border-radius: 9px;
    text-align: center;
    margin-right: 1rem;
}

.e-width {
    width: 80%
}

@media only screen and (max-width: 600px) {
    .c-btns {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 20px;
    }

    .e-width {
        width: 100%
    }


    .nav-pills .nav-link {
        white-space: nowrap;
    }

    .christheading {
        font-size: 19px;
    }

    .subheading {
        font-size: 19px !important;
    }

    .nav-pills .nav-item {
        margin-bottom: 12px !important;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #5c768d;
    padding: 12px 15px;
    transition: 0.3s;
    font-size: 14px;
    /*font-family: "Open Sans", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #428bca;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #103453;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #428bca;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #1f3548;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #e3f0fc;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #9eccf4;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #5c768d;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(31, 53, 72, 0.7);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 30px 0;
}

.section-bg {
    background-color: #f5f9fc;
}

.section-title {
    text-align: left;
    padding-bottom: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.bg-info {
    display: none !important;
}

.section-title h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #212529;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/


/*--------------------------------------------------------     Search Bar Section
--------------------------------*/

#search-action {
    background: url(../img/orange-back.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.homebanner {
    background: url(../img/Myroomie-Home-Banner.jpg) fixed center center !important;
    background-size: cover;
    padding: 170px 0 !important;
    background-size: 100% 100% !important;
}

@media only screen and (max-width: 768px) {
    .homebanner {
        background: url(../img/orange-back.jpg) fixed center center !important;
        background-size: cover;
        padding: 70px 0 !important;
        background-size: 100% 100% !important;
    }
}

#search-action .cta-title {
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#search-action .cta-text {
    color: #fff;
}

#search-action .cta-btn {
    /*font-family: "Poppins", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#search-action .cta-btn:hover {
    background: #2dc997;
    border: 2px solid #2dc997;
}


/* Testimonials Section
--------------------------------*/

#testimonials {
    padding: 60px 0;
    background: url(../img/review-back.png) center center;
    background-size: cover;
}

#testimonials .section-header {
    margin-bottom: 40px;
}

#testimonials .testimonial-item {
    text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    /*font-style: italic;*/
    margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    outline: none;
    border: none;
}

#testimonials .owl-dot.active {
    background-color: #18d26e;
}

.testimonial_line {
    width: 50%;
    border-bottom: 1px solid #f58220;
}

#footer {
    background: #15191d;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #15191d;
    border-top: 1px solid #2e3236;
    border-bottom: 1px solid #f58220;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    /*font-family: "Raleway", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #f58220;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #75c646;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f58220;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #f58220;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #f58220;
    color: #fff;
    transition: 0.3s;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #71bf44;
}

#footer .copyright {
    text-align: left;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #9eccf4;
}


/*-------------------------------------------
 Owl Carousel styles
---------------------------------------------*/

.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
}

.owl-prev:hover,
.owl-next:hover {
    outline: none;
    background: none;
}

.owl-prev {
    left: -2rem;
}

.owl-next {
    right: -2rem;
}


/* owl-carousel-facilities */

.owl-carousel-facilities .item {
    min-height: 150px;
    background: transparent;
    padding: 50px;
}


/* owl-carousel-love */

.owl-carousel-love .item {
    min-height: 150px;
    background: transparent;
    padding: 0px;
}

.owl-carousel-love .item .card {
    height: 280px;
}

.owl-carousel-love .item .card:hover {
    background: #f58220;
}

.owl-carousel-love .item .card .card-title {
    font-size: 18px;
    font-weight: bold;
}

.owl-carousel-love .item .card .card-text {
    font-size: 14px;
}

.owl-carousel-love .item .card:hover .card-title,
.owl-carousel-love .item .card:hover .card-text {
    color: #fff;
}

.owl-carousel-love .item .card-img {
    max-width: 50px;
    margin: 0 auto;
}


/* owl-carousel-featured  */

.owl-carousel-featured .owl-carousel-featured .item {
    position: relative;
}

.owl-carousel-featured .card-property {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    border-radius: 0;
    border: 0px;
    padding: 0;
}

.owl-carousel-featured .card-property-body {
    min-height: 150px;
}

.owl-carousel-featured .corner-ribon {
    text-align: center;
    width: 71px;
    height: 71px;
    position: absolute;
    right: 0 !important;
    top: 0 !important;
    font-size: 20px;
}

.owl-carousel-featured .corner-ribon i {
    padding: 10px 0 0 35px;
    color: #fff;
}

.owl-carousel-featured .blue-ribon {
    background: url("../../assets/img/twitter_corner_blue.png") no-repeat;
}

.owl-carousel-featured .orange-ribon {
    background: url("../../assets/img/twitter_corner_orange.png") no-repeat;
}

.owl-carousel-featured .green-ribon {
    background: url("../../assets/img/twitter_corner_green.png") no-repeat;
}

.owl-carousel-featured .twt-footer {
    /*background: url('../../assets/img/transparent-bg.png');*/
}

.twt-footer .text-block {
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
    min-height: 120px;
}

.twt-footer .text-block h3 {
    margin-bottom: 0;
}

.twt-footer .text-block .prop-details {
    font-size: .9em;
}

.twt-footer .text-block .prop-details img {
    width: 20px;
    display: inline-block;
}

.twt-footer .text-block .prop-address {
    padding-top: 10px;
    font-size: .9em;
}


/* CTA btn*/

.cta-btn {
    /*font-family: "Poppins", sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #f58220;
    color: #f58220;
}

.cta-btn:hover {
    background: #f58220;
    border: 2px solid #f58220;
    color: #fff;
}


/*---------------------
    GENERAL BUTTON
------------------------*/

.btn-style-general {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 0px;
    transition: 0.5s;
    line-height: 1;
    /*margin: 10px;*/
    color: #fff !important;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    /*border: 2px solid #63c76a;
    background: #63c76a;*/
    border: 2px solid #f58220;
    background: #f58220;
    text-align: center;
    text-transform: uppercase;
}

.btn-style-general.btn-block {
    display: block;
    text-align: center;
}

.btn-style-general:hover {
    background: #ff8f2f;
    border: 2px solid #ff8f2f;
    transition: 0.4s;
}

.btn-style-general:disabled,
.btn-style-general:hover:disabled {
    background: #ccc;
    border-color: #ccc;
}

.btn-style-general.btn-sm {
    padding: 13px 15px;
    font-size: 14px;
    border-width: 1px;
    text-transform: none;
}

.btn-style-general-outline {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 0px;
    transition: 0.5s;
    line-height: 1;
    /*margin: 10px;*/
    color: #909090;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #909090;
    background: transparent;
    text-transform: uppercase;
    text-align: center;
}

.btn-style-general-outline.btn-block {
    display: block;
}

.btn-style-general-outline:hover {
    background: transparent;
    color: #ccc;
    border-color: #ccc;
}

.btn-style-general-outline.btn-sm {
    padding: 10px 15px;
    font-size: 14px;
    border-width: 1px;
}

.romie-form-styles button[type="submit"] {
    background: #f58220 !important;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    outline: none;
    outline: none;
}


/*----------------------------
OWL dot colors
----------------------------*/

.owl-carousel .owl-dots span {
    background: #ccc !important;
    /*width:10px;
    height:10px;
    margin:5px 7px;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;*/
}

.owl-carousel .owl-dots .active span {
    background: #f58220 !important;
    /*width:10px;
    height:10px;
    margin:5px 7px;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;*/
}

#testimonials .owl-carousel .owl-dots .owl-dot {
    background: #ccc !important;
}

#testimonials .owl-carousel .owl-dots .owl-dot.active {
    background: #f58220 !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.8);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    outline: none;
    text-decoration: none;
    background: transparent;
    background-color: rgba(255, 255, 255, 1.0);
}

.owl-theme .owl-nav [class*=owl-] {
    background: none;
    text-decoration: none !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    text-decoration: none !important;
}

.owl-nav i {
    font-size: 14px;
    display: inline-block;
    background: #f58220;
    color: #fff;
    line-height: 1;
    padding: 6px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 26px;
    height: 26px;
    transition: 0.3s;
}

.faq-question {
    font-size: 16px;
    font-weight: bold
}

.faq-answer {}

.footer-search-links>h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.faqWrapper .section-title h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.faqWrapper>h3.question {
    font-size: 18px;
    background: #e5e5e5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.faqWrapper>h3.question .actions {
    float: right;
    cursor: pointer;
}

.faqWrapper>h3.question .actions .fa-minus {
    display: none;
}

.faqWrapper>h3.question.active .actions .fa-minus {
    display: block;
}

.faqWrapper>h3.question.active .actions .fa-plus {
    display: none !important;
}

.faqWrapper>.answer {
    font-size: 17px;
    display: none;
    background: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dddd;
}

.style-view {
    width: 16px !important;
    height: 16px !important;
    margin: 0px 5px;
}

.tour-cta {
    height: 56px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    display: flex;
    padding: 10px 9%;
    -webkit-box-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background: rgba(0, 0, 1, 0.7);
}

.left-section {
    -webkit-box-pack: center;
    justify-content: center;
}

.left-section .main-heading {
    color: rgb(255, 255, 255);
    font-size: 14px;
    letter-spacing: 0.18px;
    line-height: 24px;
}

.left-section .desc {
    color: rgb(255, 255, 255);
    font-size: 10px;
    letter-spacing: 0.13px;
    line-height: 12px;
}

.tour-cta .right-section {
    color: rgb(255, 255, 255);
    font-size: 12px;
    line-height: 16px;
}

.tour-cta .right-section .tour {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}

.tour-cta .right-section .tour .image-span {
    line-height: 24px;
    height: 24px;
    width: 24px;
    margin-right: 5px;
}

.tour-cta .right-section .tour .image-span img {
    width: 24px;
    height: 24px;
}

.tour-cta .right-section .tour .text-span {
    color: rgb(255, 255, 255);
    font-size: 12px;
    line-height: 16px;
}

.partlabel {
    color: #f58220;
}

.nav-pills {
    margin-top: 40px;
}

.nav-pills .nav-link {
    border-radius: 1.25rem;
    border-color: #f58220 !important
}

.nav-pills .nav-link.active {
    background-color: #f58220 !important;
}

.nav-pills .nav-item a {
    color: black;
    font-size: 12px;
}

.christheading {
    text-align: center;
}

.nav-pills .nav-item {
    margin-right: 12px !important;
}

.videos-link {
    border: 2px solid orange;
    padding-bottom: 1.3%;
}

.sticky-form {
    width: 300px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 1);
    z-index: 9999;
    background-color: #e4e7e8;
    border-radius: 12px;
    text-align: center;
}

.close-button {
    position: absolute;
    top: -5px;
    right: 5px;
    padding: 5px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.webFormlabelText {
    margin-bottom: 10px;
}

.webFormlabelText span {
    color: red;
}

.disable {
    background: grey;
    color: #beb9b9 !important;
}

.rating-img {
    max-width: 50%;
    height: auto;
}



@media (max-width: 767px) {
    .exploremyroomiebtn {
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
    }
}



.exploremyroomiebtn {
    padding: 18px 34px;
    background: #f7941e;
    color: #fff !important;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    border: none;
}

.exploremyroomiebtn:hover {
    color: #fff !important;
    font-weight: 700;
    box-shadow: 2px 2px 20px 1px rgba(87, 93, 117, 0.16);
}