/********** Template CSS **********/
:root {
    --primary: #fe6821;
    --secondary: #f5a37d;
    --shadow: #ffe6ab;
    --light: #fbefe9;
    --dark: #042745;
    --gray:#56595d;
    --white: #FFFFFF;
    --orange:#F7941E;
    --orange-dark:#E8730D;
    --orange-light:#FFB35C;
}

body{
    background-color: #fbefe9;
}
.text-primary {
    color: var(--primary) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-light {
    background-color: var(--light) !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.banner-area {
    background: url(../img/banner-bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
}
#typed-text {
    font-family: Arial, sans-serif;
    font-size: 20px;
    border-right: .15em solid orange;
    white-space: nowrap;
    overflow: hidden;
    width: 30ch;
    animation: typing 4s steps(30, end), blink-caret .5s step-end infinite alternate;
  }

  @keyframes typing {
    from { width: 0 }
  }

  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
  }

/*** Video ***/
.vdp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    filter: blur(2px);

}

.slider-text .icon-video {
    margin: 0 0 0 auto;
}
.icon-video {
    width: 80px;
    height: 80px;
    position: absolute;
    background: #fff;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.icon-video:hover {
    text-decoration: none;
}
.icon-video span {
    color: var(--primary);
    font-size: 24px;
}
@-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0.4); }
    70% {
      -webkit-box-shadow: 0 0 0 30px rgba(241, 93, 48, 0); }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0); } }

  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0.4);
      -webkit-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0.4);
      box-shadow: 0 0 0 0 rgba(241, 93, 48, 0.4); }
    70% {
      -moz-box-shadow: 0 0 0 30px rgba(241, 93, 48, 0);
      -webkit-box-shadow: 0 0 0 30px rgba(241, 93, 48, 0);
      box-shadow: 0 0 0 30px rgba(241, 93, 48, 0); }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0);
      -webkit-box-shadow: 0 0 0 0 rgba(241, 93, 48, 0);
      box-shadow: 0 0 0 0 rgba(241, 93, 48, 0); } }


/*** TPL Card Item ***/

/* ===== CARDS TEMPLATE ===== */
.tpl-card{
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--white);
  box-shadow:0 8px 24px rgba(22,54,92,.08);
  border:1px solid #f1e6da;
  transition:.25s;
  height:auto;
}
.tpl-card:hover{transform:translateY(-6px);box-shadow:0 18px 38px rgba(22,54,92,.16);}
.tpl-thumb{
  position:relative;
  width:100%;
  height:250px;
  max-height:250px;
  overflow:hidden;
}

.tpl-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tpl-thumb .tpl-pattern{
  position:absolute;inset:0;opacity:.18;
}
.tpl-badge{
  position:absolute;top:10px;left:10px;
  background:rgba(255,255,255,.92);
  color:var(--gray);
  font-size:.7rem;font-weight:700;
  padding:.25rem .65rem;border-radius:20px;
  z-index:3;
}
.tpl-overlay{
  position:absolute;inset:0;
  background:rgba(22,54,92,.55);
  opacity:0;
  display:flex;align-items:center;justify-content:center;
  gap:.6rem;
  transition:.25s;
  z-index:2;
}
.tpl-card:hover .tpl-overlay{opacity:1;}
.tpl-icon-btn, a.tpl-icon-btn i{
  width:42px;height:42px;border-radius:50%;
  background:var(--white);
  color:var(--gray);
  display:flex;align-items:center;justify-content:center;
  border:none;font-size:1rem;
  transform:translateY(10px);
  opacity:0;
  transition:.25s;
}
.tpl-card:hover .tpl-icon-btn{transform:translateY(0);opacity:1;}
.tpl-icon-btn:nth-child(1){transition-delay:.03s;}
.tpl-icon-btn:nth-child(2){transition-delay:.08s;}
.tpl-icon-btn:nth-child(3){transition-delay:.13s;}
.tpl-icon-btn:hover{background:var(--primary);color:var(--white);}
.tpl-icon-btn.is-fav{color:var(--primary);}
.tpl-body{padding:.95rem 1rem 1.1rem;}
.tpl-cat{font-size:.75rem;color:var(--gray);font-weight:600;text-transform:uppercase;letter-spacing:.03em;}
.tpl-name{font-weight:700;color:var(--gray);font-size:1.02rem;margin:.15rem 0 .4rem;}
.tpl-meta{display:flex;justify-content:space-between;align-items:center;font-size:.85rem;color:var(--gray);}
.tpl-meta .rating{color:var(--primary-dark);font-weight:700;}
.tpl-meta .rating .bi{color:gold;}
.donation-tag{
  font-size:.78rem;font-weight:700;color:var(--gray-2);
  background:var(--cream);
  padding:.2rem .55rem;border-radius:8px;
}

/*** Modal Player ***/

.modal-body {
    z-index: 1050;
  }

.modal-open .modal{
    background-color: rgba(0, 0, 0, 0.5);
  }
.modal-title{
    font-family: "Quicksand", sans-serif;
    color: var(--primary);
    font-size: 25px;
    ;
}
/*** Forms and Buttons ***/
.bg-primary {
    background-color: #fbefe9 !important;
}
.btn-dark {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-dark:hover{color:#fff;background-color:var(--primary); border-color:#f5a37d}
.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:var(--primary);border-color:#f5a37d;box-shadow:0 0 0 .25rem #f5a37d}

.form-control{
    height: 55px;
}

.form-control:focus {
    color: #555;
    background-color: #fff;
    border-color:var(--shadow) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem var(--shadow);
}

.form-select:focus{
    border-color: var(--shadow) !important;
    box-shadow: 0 0 0 0.25rem var(--shadow);
  }

.btn {
    transition: .5s;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.btn-primary:active{
    background-color: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.btn-primary:focus{
    background-color: var(--primary) !important;
    border-color: var(--secondary) !important;
}
.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 25px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 8px;
}

.container-fluid.sticky-top > .navbar {
  border-radius: 0;
}

.icon-container {
    position: relative;
    display: inline-block;

}

.icon-navbar {
    font-size: 25px;
    animation: pulsed 1s infinite;
}
@keyframes pulsed {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    width: 18px;
    height: 18px;
    background-color: #FFFFFF;
    color:#a1a1a1;
    border: #cfcfcf solid 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.logo_h img {
    height: 52px;
    width: auto;
    padding: 4px;
}

.btn-pixbanner{
  background:var(--orange);
  color:var(--white);
  font-weight:700;
  border:none;
  border-radius:10px;
  padding:.75rem 1.7rem;
  transition:.2s;
}
.btn-pixbanner:hover{background:var(--orange-dark);color:var(--white);transform:translateY(-2px);}
.btn-outline-pixbanner{
  border:2px solid var(--navy);
  color:var(--navy);
  font-weight:700;
  border-radius:10px;
  padding:.7rem 1.6rem;
  background:transparent;
}

/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed var(--secondary) !important;
}

.property-item .border-end {
    border-right: 1px dashed var(--secondary) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.bg-orange {
    background-color: #fe6821 !important;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
