/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid transparent;
    border-top-color: #EAA636;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-border::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 4px solid transparent;
    border-top-color: #EAA636;
    border-radius: 50%;
    animation: spin 0.8s linear infinite reverse;
}

.spinner-logo {
    max-width: 60px;
    max-height: 60px;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FDF5EB;
    background: transparent;
}

.btn-primary:hover {
    color: #FDF5EB;
    background-color: #EAA636;
    border-color: #EAA636;
    transition: .4s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Scroll Bar ***/
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #FDF5EB;
}

::-webkit-scrollbar-thumb {
    border: 0.5px solid #b80303;
    border-radius: 5px;
    background: #EAA636;
}

::-webkit-scrollbar-thumb:hover {
    background: #b80303;
}

/*** Sticky Watsapp ***/
a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 280px;
    right: 15px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #ffd569;
    -webkit-animation: pulsing 1.35s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.35s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.35s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.35s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}

@media (max-width: 768px) {
    .floating_btn {
        padding: 15px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }

    .contact_icon {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
}



/*** Navbar ***/
.navbar {
    z-index: 9999;
}

.navbar .logo {
    line-height: 1;
}

.navbar .logo h2 {
    color: #FFFFFF !important;
}

.navbar .logo img {
    max-height: 45px;
    margin-right: 8px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

.bg-dark {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

.navbar .nav-contact-align {
    align-items: center;
    text-align: center;
}

.navbar .fs-5 {
    color: #f7bf66 !important;
}

.navbar .fs-3 {
    font-size: 1rem !important;
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
        opacity: 70%;
        justify-content: center;
        align-items: center;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



/*** Header ***/
.hero .owl-carousel .owl-stage-outer {
    height: 100vh !important;
}

.owl-carousel.owl-drag .owl-item {
    cursor: pointer;
}

.owl-carousel.owl-drag .owl-item h2 {
    margin-top: 200px !important;
    font-size: 60px !important;
    font-weight: 400 !important;
}

.owl-carousel.owl-drag .owl-item span {
    color: #f7bf66 !important;
}

.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .4);
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.owl-carousel-horizon img {
    max-height: 100px;
    max-width: 400px !important;
    vertical-align: middle !important;
    top: 135px;
    left: 430px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }

    .owl-carousel-horizon img {
        max-height: 100px;
        max-width: 400px !important;
        vertical-align: middle !important;
        top: 100px;
        left: 50px;
    }

}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -80px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: #FFFFFF; */
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 35px;
    /* border: 1px solid #EAA636; */
    border-radius: 6px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--light);
    background: #EAA636;
}

.page-header {
    /* margin-bottom: 6rem; */
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Header Carousal Animation ***/
.scale-in {
  animation: fadeInUp 1.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*** Facts ***/
.bhavya-parallax-facts {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/facts-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.fact-item {
    transition: .5s;
}

.fact-item:hover {
    color: var(--dark);
    margin-top: -10px;
    background: #ffefd6 !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

/* .fact-item:hover .text-primary,
.fact-item:hover h1{
    color:#FFFFFF !important;
} */

/*** About ***/
.bhavya-parallax-aboutus {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/about-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bhavya-parallax-aboutus .rounded-pill {
    color: #FDF5EB;
}

.text-primary,
.text-primary-aboutus {
    color: #EAA636 !important;
}

.about-us-text h1,
.about-us-text p,
.about-us-text span {
    color: #FFFFFF;
}

/* .rounded {
    border: 0.001px solid var(--light);
    border-radius: 6px !important;
} */

.img-twice::before {
    position: absolute;
    content: "";
    width: 55%;
    height: 80%;
    top: 10%;
    left: 20%;
    /* background: var(--primary); */
    border: 5px solid var(--light);
    border-color: var(--primary);
    border-radius: 6px;
    z-index: -1;
}


/*** Projects ***/
.bhavya-parallax-project {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.1), rgba(26, 25, 25, 0.1)), url(../img/projects-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bhavya-parallax-project .rounded-pill {
    color: #FDF5EB;
}

.text-primary,
.text-primary-aboutus {
    color: #EAA636 !important;
}

.bhavya-parallax-project h1,
.bhavya-parallax-project p,
.bhavya-parallax-project span {
    color: #FFFFFF;
}

.project-item {
    transition: .5s;
}

.project-item:hover {
    background: var(--primary) !important;
}

.project-item:hover * {
    color: var(--light) !important;
}

.project-item:hover .border-primary {
    border-color: var(--light) !important;
}

.project-item .rounded-pill,
.project-item span {
    color: #000000;
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-overlay {
    height: 100%;
    opacity: 1;
}

.project-item:hover .project-overlay i {
    color: #EAA636 !important;
}

/*** All Projects Filters ***/
.all-projects .projects-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.all-projects .projects-filters li {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.all-projects .projects-filters li:hover,
.all-projects .projects-filters li.filter-active {
    color: #EAA636;
}

.all-projects .projects-filters li:first-child {
    margin-left: 0;
}

.all-projects .projects-filters li:last-child {
    margin-right: 0;
}

.project-details .btn.btn-primary {
    color: #EAA636;
    background: transparent;
    margin-right: 20px;
    margin-top: 20px;
}

.project-details .btn.btn-primary:hover {
    color: #fff;
    background: #EAA636;
}

.project-floorplan-overlay {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgb(253, 241, 218));
}


@media (max-width: 575px) {
    .all-projects .projects-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

/*** Project Insights ***/
.project-insights .border-end {
    border-right: 1px solid rgba(242, 167, 17, 0.5) !important;
}

.project-insights h4 {
    color: #f7c56d !important;
}

.project-insights h6 {
    color: #fff !important;
}

.border-top,
.border-bottom {
    border-top: 1px solid rgba(242, 167, 17, 0.5) !important;
    border-bottom: 1px solid rgba(242, 167, 17, 0.5) !important;
    /* border-bottom: 1px solid rgba(255, 255, 255, .3) !important; */
}

.fw-bold {
    color: #FDF5EB;
    font-weight: 700 !important
}

.text-secondary {
    color: #f7c56d !important;
    font-size: medium !important;
    font-weight: 400 !important;
    opacity: 90%;
}

/*** Services ***/
.bhavya-parallax-service {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/services-bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bhavya-parallax-service .rounded-pill {
    color: #FDF5EB;
}

.text-primary {
    color: #EAA636 !important;
}

.services-text h1,
.services-text p,
.services-text h5,
.services-text span {
    color: #FFFFFF;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: var(--light); */
    background: #ffd8b3;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}

.team-item .team-social .btn-light {
    color: #fff;
    border: 1px solid #EAA636 !important;
    border-color: #EAA636;
    background: transparent;
}

.team-item .team-social .btn-light:hover {
    color: #fff !important;
    background-color: #EAA636 !important;
    /* border-color: #fdf6ed; */
}

/*** Amenities ***/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}
.portfolio-title {
    color: #fff;
}
.image-popup:hover .portfolio-image {
  transform: scale(1.03);
}
.portfolio-image {
  display: block;
  transition: transform 0.6s ease-out;
}

/* Two Columns fit to screen in mobile view */
.fit-to-mscreen{
    flex-wrap: nowrap;
}
@media (max-width: 767px) {
    [class*="fit-to-mscreen"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*** Testimonials ***/
.bhavya-parallax-testimonials {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/about-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bhavya-parallax-testimonials .rounded-pill {
    color: #FDF5EB;
}

.bhavya-parallax-testimonials.text-primary,
.bhavya-parallax-testimonials.text-primary-aboutus {
    color: #EAA636 !important;
}

.testimonials-text h1,
.testimonials-text p,
.testimonials-text span {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

#about-testimonial .testimonial-carousel .owl-nav .owl-prev,
#about-testimonial .testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAA636;
    border-radius: 6px;
    font-size: 22px;
    color: var(--light);
    background: transparent;
    transition: .5s;
}

#about-testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
#about-testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

/*** Amenities ***/
.bhavya-parallax-amenities {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/projects/bhavya-horizon/amenities/amenities-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.bhavya-parallax-amenities .rounded-pill {
    color: #FDF5EB;
}

.bhavya-parallax-amenities.text-primary,
.bhavya-parallax-amenities.text-primary-aboutus {
    color: #EAA636 !important;
}

.amenities-text h1,
.amenities-text p,
.amenities-text span {
    color: #FFFFFF !important;
}

.amenities-carousel .owl-item .amenities-item img {
    width: 60px;
    height: 60px;
}

.amenities-carousel .owl-item .amenities-item,
.amenities-carousel .owl-item .amenities-item * {
    transition: .5s;
}

.amenities-carousel .owl-item.center .amenities-item {
    background: var(--primary) !important;
}

.amenities-carousel .owl-item.center .amenities-item * {
    color: #FFFFFF !important;
}

.amenities-carousel .owl-item.center .amenities-item p {
    color: #FFFFFF !important;
    border-top: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.amenities-carousel .btn-light {
    color: transparent !important;
}

.amenities-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.amenities-carousel .owl-nav .owl-prev,
.amenities-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
    transition: .5s;
}

.amenities-carousel .owl-nav .owl-prev:hover,
.amenities-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

#about-amenities .amenities-carousel .owl-nav .owl-prev,
#about-amenities .amenities-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAA636;
    border-radius: 6px;
    font-size: 22px;
    color: var(--light);
    background: transparent;
    transition: .5s;
}

#about-amenities .amenities-carousel .owl-nav .owl-prev:hover,
#about-amenities .amenities-carousel .owl-nav .owl-next:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

.amenities-item .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 1rem 1.25rem !important;
    color: #1E1916 !important;
    background-color: rgba(255, 255, 255, .2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
    gap: 10px !important;
    font-size: 14px !important;
}

.amenities-item .h-100 {
    height: 100% !important;
    width: 100%;
}

.amenities-item .img-fluid {
    max-width: 60px !important;
    flex: 0 0 60px !important;
}

.amenities-item p {
    text-transform: uppercase !important;
    padding-top: 10px !important;
    border-top: 2px solid rgba(26, 25, 25, 0.3) !important;
    width: 100% !important;
    font-weight: 600 !important;
    line-height: normal;
    letter-spacing: .5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.amenities-item .mb-0 {
    margin-bottom: 0 !important;
}

/*** Gallery ***/
.bhavya-parallax-gallery {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/gallery-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.gallery .rounded-pill {
    color: #FDF5EB;
}

.gallery-text-center h1,
.gallery-text-center p,
.gallery-text-center h5,
.gallery-text-centerspan {
    color: #FFFFFF !important;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--background-color);
    border-bottom: 3px solid var(--background-color);
    /* width: 260px; */
    /* height: 260px; */
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.gclose gbtn {
    z-index: 9999999999999;
}

/*** Contact Us ***/
.bhavya-parallax-contact {
    position: relative;
    padding: 98px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 25, 25, 0.5), rgba(26, 25, 25, 0.5)), url(../img/contact-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bhavya-parallax-contact .rounded-pill {
    color: #FDF5EB;
}

.text-primary {
    color: #EAA636 !important;
}

.contact-text h1,
.contact-text p,
.contact-text h5,
.contact-text span {
    color: #FFFFFF;
}

.form-control {
    color: #FFFFFF !important;
    background-color: transparent !important;
}

.form-floating label {
    color: #FFFFFF !important;
    background-color: transparent !important;
}

/* Custom file input styling */
input[type="file"] {
    padding: 10px;
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

input[type="file"]::file-selector-button {
    background-color: #EAA636;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

input[type="file"]::file-selector-button:hover {
    background-color: #d68c20;
}

/* Fix for file input text visibility in some browsers */
input[type="file"]::-webkit-file-selector-button {
    background-color: #EAA636;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

input[type="file"]::-webkit-file-selector-button:hover {
    background-color: #d68c20;
}


/*** Careers ***/
#apply-now .item {
    background-color: rgba(250, 250, 250, 0.15);
    padding: 40px;
    margin-bottom: 30px;
    text-align: start;
}

#apply-now .item h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

#apply-now .item p {
    color: #fff;
    margin-top: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.main-button-blue a {
    font-size: 14px;
    color: #fff;
    border: 2px solid var(--accent-color);
    /* background-color: #1d5caf; */
    border-color: #f7c56d;
    padding: 8px 23px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 400;
    transition: all .3s;
}

.main-button-blue a:hover {
    color: #fff;
    border: 2px solid var(--accent-color);
    background-color: var(--accent-color);
}

@media (max-width: 480px) {
    #apply-now .main-button-blue {
        font-size: 12px;
    }
}

#apply-now .cta-btn {
    color: #fff !important;
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 8px;
    border-radius: 50px;
    transition: 0.3s;
    flex-shrink: 0;
}

#apply-now .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: #ffffff;
}

#apply-now .item h3 {
    color: #f7c56d;
    letter-spacing: 1.5px;
}

#apply-now .item .job-details {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

#apply-now .item .job-exp-salary-container {
    display: flex;
    margin-top: 6px;
    align-items: center;
    color: #eee;
}

#apply-now .item .job-description-container {
    display: flex;
    margin-top: 18px;
    font-size: 14px;
    align-items: center;
    color: #fff;
}

#apply-now .item .job-exp-salary {
    display: flex;
    margin-right: 6px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    height: 14px;
    margin-top: 2px;
    line-height: 18px;
    color: var(--N600);
}

#apply-now .item .job-exp-salary-sep {
    margin-right: 20px;
}

#apply-now .item .job-text-wrap h6 {
    color: #f8c263;
}

#apply-now .item .job-exp-salary i {
    color: #f8c263;
    margin-right: 6px;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    word-wrap: break-word;
    box-sizing: border-box;
}

#apply-now .item .job-text-seperator {
    width: 2px;
    height: 16px;
    background-color: #f8c263;
    margin-left: 0px;
    margin-right: 20px;
}

@media (max-width: 480px) {
    .hero .cta-btn {
        font-size: 12px;
    }
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    /* padding-left: 1.45rem;
    padding-top: 1rem !important; */
    color: #fff !important;
    background-color: transparent !important;
}

.form-control[type="file"]::file-selector-button {
    margin-right: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
    border: none;
    background: #f7c56d;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer-bg-dark {
    background: #000000;
}

.footer-bg-dark h4,
.footer-bg-dark i {
    color: #EAA636 !important;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 50%);
    display: flex;
    /* background-color: var(--background-color); */
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--primary);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: #EAA636;
    color: #FDF5EB;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 40%);
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--primary), transparent 20%);
}