/********** Template CSS **********/
:root {
    --primary: #ED8C00;
    --light: #F1F8FF;
    --dark: #032B72;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

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


/*** 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;
}


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

.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: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

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

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

    .event-mark{
        height: 10px;
        font-size: 20px !important;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

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

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--dark);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/thumbnail/video1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/upcoming\ event.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 0px;
    padding-right: 0px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.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{
    /*position: relative;*/
    /*width: 40px;*/
    /*height: 40px;*/
    /*left: -2%;*/
    /*display: flex;*/
    /*align-self: center;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    color: var(--dark);
    /*background: var(--dark);*/
    /*border-radius: 2px;*/
    font-size: 30px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-next {
    /*position: relative;*/
    /*width: 40px;*/
    /*height: 40px;*/
    /*display: flex;*/
    /*right: -3%;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    color: var(--dark);
    /*background: var(--dark);*/
    /*border-radius: 2px;*/
    font-size: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    /*background: #FFFFFF;*/
}

/*** calendar upcoming event slider ***/
.calendar-carousel {
    padding-left: 0px;
    padding-right: 0px;
}

.calendar-carousel .calendar-item {
    padding: 10px;
}
.calendar-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.calendar-carousel .owl-nav .owl-prev{
    /*margin-left: 10px;*/
    /*width: 28px;*/
    /*height: 28px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    color: black;
    /* background: black;*/
    font-size: 20px;
    transition: .3s;
    /*position: relative;*/
    /*width: 40px;*/
    /*height: 150%;*/
    /*left: -9%;*/
    /*align-self: center;*/
    /*border-radius: 2px;*/
}

.calendar-carousel .owl-nav .owl-next {
    /*margin-left: 10px;*/
    /*width: 28px;*/
    /*height: 28px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    color: black;
    /* background: var(--primary); */
    font-size: 20px;
    transition: .3s;
    /*position: relative;*/
    /*width: 40px;*/
    /*height: 150%;*/
    /*right: -7%;*/
    /*border-radius: 2px;*/
}
.calendar-carousel .owl-nav .owl-prev:hover,
.calendar-carousel .owl-nav .owl-next:hover {
    color: black;
    /* background: #FFFFFF; */
}

/* * Responsive button* */
/* @media(max-width: 576px){
    .border-calendar{
        width:1px ;
    }

} */
.date-num {
    background-color: #fff;
    padding: 20px 25px;
    /* border-radius: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f99d1c;
    font-weight: 700;
    font-size: 18px;
}

/* .label:empty{
    display:none;
  } */

@media (max-width: 768px)
{
    .date-num {
        padding: 13px 16px;
    }

    .calendar-carousel .owl-nav .owl-prev{

        left: -5% !important;
    }
}

@media (max-width: 600px)
{
    .date-num {
        padding: 13px 16px;
    }

    .calendar-carousel .owl-nav .owl-next{

        right: -13% !important;
    }
    .calendar-carousel .owl-nav .owl-prev{

        left: -10% !important;
    }
}
@media (max-width: 320px){
    .date-num, .date-no {
        padding: 6px 8px;
    }
    .cursor-pointer {
        cursor: pointer;
    }
    .calendar-carousel .owl-nav .owl-next{

        right: -16% !important;
    }
    .calendar-carousel .owl-nav .owl-prev{

        left: -11% !important;
    }
    .date-num {
        padding: 6px 8px;
    }
}

@media (max-width: 480px){
    .date-num {
        padding: 8px 12px;
        font-size: 14px;
    }

    .calendar-carousel .owl-nav .owl-next{

        right: -16% !important;
    }
    .calendar-carousel .owl-nav .owl-prev{

        left: -11% !important;
    }
}


.cursor-pointer {
    cursor: pointer;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.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;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 50px;
}

.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 #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    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 .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, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

#imgfooter {
    align-items: center;
    /* padding: 100px; */
    width: 150px;

}

/* extension nav */
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--dark);
}

.accordion-custom .accordion-item{
    margin-bottom:15px;
    border-color:rgba(0,0,0,.02)}
.accordion-custom .accordion-item:not(:first-of-type){
    border-top:1px solid rgba(0,0,0,.02)
}
.accordion-custom .accordion-button{
    font-weight:500!important;background:#fff;transition:.5s}
.accordion-custom .accordion-button:not(.collapsed){
    color:#fff;background:var(--dark);box-shadow:none}
.accordion-custom .accordion-button:not(.collapsed)::after{
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2ZmZic+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+)}
.accordion-custom .accordion-body{
    padding:20px;background:#fff
}

/* login page */
.gradient-custom-2 {
    /* fallback for old browsers */
    background: #fccb90;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #ee7724, #d8363a, #dd3675, #b44593);
}

@media (min-width: 768px) {
    .gradient-form {
        height: 100vh !important;
    }
}
@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

/* extension */
#bidder {
    color: #000000;
    line-height: 3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #000000;
}

#textline{
    text-align: right;
    border-top: 1px solid #dee2e6 ;
    padding: 20px 0;
    margin-top: 20px;
}

.product-single-sidebar {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 36px 20px 30px;
}

.product-single-sidebar .title {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-single-sidebar .countdown {
    font-size: 24px;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(101, 93, 202, 0.3);
}

@media (min-width: 576px) {
    .product-single-sidebar .countdown {
        font-size: 30px;
        line-height: 1;
    }
}

@media (min-width: 576px) and (min-width: 992px) and (max-width: 1199px) {
    .product-single-sidebar .countdown {
        font-size: 24px;
    }
}

.mt-40-60-80 {
    margin-top: 40px;
}

@media (min-width: 576px) {
    .mt-40-60-80 {
        margin-top: 60px;
    }
}

@media (min-width: 768px) {
    .mt-40-60-80 {
        margin-top: 80px;
    }
}

.product-sidebar-area {
    text-align: center;
}

@media (max-width: 991px) {
    .product-sidebar-area {
        margin-top: 50px;
    }
}

@media (max-width: 991px) and (max-width: 767px) {
    .product-sidebar-area {
        margin-top: 40px;
    }
}

.product-sidebar-area .cart-link {
    color: #007ec3;
    text-decoration: underline;
    font-size: 16px;
}

.side-counter-area {
    margin-bottom: -21px;
    padding-top: 22px;
}

@media (max-width: 991px) {
    .side-counter-area {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
        justify-content: center;
        margin-bottom: -30px;
    }

    .side-counter-area .side-counter-item {
        padding: 0 15px;
        margin-bottom: 30px;
        flex-grow: 1;
    }
}

.big{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 60px;
    /* text-shadow: 0 0 3px #ffffff, 0 0 5px #270121; */

}
.thin{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    /* text-shadow: 0 0 3px #ffffff, 0 0 5px #270121; */
    font-size: 20px;
    margin-top: -10px;
}

@media (min-width: 769px) {
    .big{
        font-family:Arial, Helvetica, sans-serif;
        font-size: 120px;
        /* text-shadow: 0 0 3px #ffffff, 0 0 5px #270121; */

    }

    .thin{
        font-family: Arial, Helvetica, sans-serif;
        font-weight: lighter;
        /* text-shadow: 0 0 3px #ffffff, 0 0 5px #270121; */
        font-size: 40px;
        margin-top: -30px;
    }
}

/* footer */
.para-graph{
    color: white !important;

}
.para-graph:hover{
    color: #ED8C00 !important;
}
/* auction event */
.event-propety{
    height: 385px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background:linear-gradient(to right,#030f6b 1%, #010b45 100%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.event-calendar{
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background:linear-gradient(to right,#fccb1c 1%,#ED8C00 100%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

@media (max-width: 576px){
    .sort-by {
        display: none;
    }

}

@media (min-width: 576px) {
    #card-product{
        width: 16.5rem;
    }
}
@media (max-width: 576px) {
    #card-product{
        width: 12rem;
    }
}
@media(min-width: 576px){
    .vision-img{
        margin-left: 200px;
        justify-content: center;
    }
}
@media(max-width:576px){
    .vision-img{
        display: none;
    }
}

/* Property Event  */
/* Calendar main */
.calender-main {
    box-shadow: 0 26px 41px rgb(9 24 33 / 10%);
    max-width: 563px;
}
.br-15 {
    border-radius: 15px;
}
.bg_FFDA86 {
    background-color: #ffda86;
}
.upcoming-auction {
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    color: #0e263e;
}
.pb-calendar .top-frame {
    display: flex;
    align-items: center;
}
.pb-calendar .top-frame {
    width: 75%;
}
.pb-calendar .top-frame {
    padding-top: 10px;
    margin-bottom: 10px;
    position: relative;
}
/* list Auction */
.parent{
    height: 100%;
}
.chd-box-bg {
    background-color: #fff;
    border-radius: 15px;
    opacity: 1;
    box-shadow: 0 26px 41px #09182119;
}
.available-auction {
    font-size: 32px;
    color: #0e263e;
    font-weight: 700;
}
.ml-4, .mx-4 {
    margin-left: 1.5rem!important;
}
.auction-properties {
    font-size: 12px;
    color: #a7a7a7;
    font-weight: 600;
    font-family: poppins,sans-serif;
}
.fs-12 {
    font-size: 12px;
}
.fs-8 {
    font-size: 8px;
}
.ml-1, .mx-1 {
    margin-left: 0.25rem!important;
}
.auction-type {
    background-color: #091821;
    color: white;
    border-radius: 6px 2px;
    padding: 4px 8px
}
.pb-37 {
    padding-bottom: 37px;
}
/* end List Auction */
/* Auction Title */
.bank-auction-rhb {
    font-size: 32px;
    color: #0e263e;
    font-weight: 700;
}
.bank-auction {
    background-color: #f99d1c;
    color: #fff;
    border-radius: 6px 2px;
    padding: 4px 8px
}
.fs-10 {
    font-size: 10px;
}
/* End Auction Title */
/* Auction Detail */
.bhd-oval {
    font-size: 18px;
    color: #0e263e;
    font-weight: 700;
}
.fs-14 {
    font-size: 14px;
}
.auctioneer {
    color: #999;
    /* font-size: 12px; */
    /* font-weight: 500; */
}
.fw-600 {
    font-weight: 600!important;
}
.bid-now {
    color: #101010;
    font-size: 16px;
    font-weight: 500;
}
/* end Auction Detail */
/* Box */
.want-box {
    box-shadow: 0 26px 41px #09182119;
    border-radius: 15px;
    opacity: 1;
    background: #091821;
}

@media (min-width: 768px){
    .min-h-md-255 {
        min-height: 255px;

    }
    .w-md-255 {
        width: 255px;
    }
}

.pr-20 {
    padding-right: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.fw-700 {
    font-weight: 700;
}
.fs-18 {
    font-size: 18px;
}

.select2-container .select2-selection--multiple {
    height: auto !important;
    margin: 0;
    padding: 0;
    line-height:inherit;
    border-radius:0;
}
.select2-container .select2-search--inline .select2-search__field {
    margin:0;
    padding:0;
    min-height:0;
}
.select2-container .select2-search--inline {
    line-height:inherit;
}

#calendar {
    max-width: 1100px;
    margin: 0 auto;
}

.fc-past {
    background-color: white;
}


.text-black{
    color:black !important;
}

.event-mark{
    position: absolute;
    bottom: 16%;
    height: 20px;
    font-size: 30px!important;
    width: 20px;
    left: 50%!important;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center!important;
}











