/********** Template CSS **********/
/* :root {
    --primary: #F77D0A;
    --secondary: #2B2E4A;
    --light: #F4F5F8;
    --dark: #1C1E32;
} */

:root {
    --primary: #F77D0A;
    --secondary: #112240;
    --light: #F4F5F8;
    --dark: #1C1E32;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* .nav-bar::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: var(--dark);
} */

/* .nav-bar::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #ffffff;
} */

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
    }
}
#header-carousel{
    height: 750px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    #header-carousel{
        height: 100%;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(28, 30, 50, .4); */
    z-index: 1;
}

.text-shadow{
    text-shadow: 0 0 10px #0008;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 400px;
    margin-bottom: 20px;
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(28, 30, 50, .5), rgba(28, 30, 50, .7)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}

@media (max-width: 991.98px) {
    .page-header {
        height: 300px;
    }
}

.service-item {
    height: 320px;
    background: var(--light);
    transition: .5s;
}

.service-item:hover,
.service-item.active {
    background: var(--secondary);
}

.service-item h1,
.service-item h4 {
    transition: .5s;
}

.service-item:hover h1,
.service-item.active h1 {
    color: var(--dark) !important;
}

.service-item:hover h4,
.service-item.active h4 {
    color: var(--light);
}

.navbar-brand img {
    width: 130px;
}

.carsol {
    margin-top: -70px;
    margin-bottom: 40px;
}

@media screen and (max-width:700px) {
    .navbar-brand img {
        width: 90px;
    }

    .carsol {
        margin-top: 0px;
    }
}

.rent-item {
    /* padding: 30px; */
    text-align: center;
    background: var(--light);
    transition: .5s;
    overflow: hidden;
}
.rent-item img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: .5s all;
}

.rent-item:hover,
.rent-item.active {
    background: var(--secondary);
}
.rent-item:hover img{
    transform: scale(1.2);
}
.rent-item h4 {
    transition: .5s;
}

.rent-item:hover h4,
.rent-item.active h4 {
    color: var(--light);
}

.team-item {
    padding: 30px 30px 0 30px;
    text-align: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover,
.owl-item.center .team-item {
    background: var(--secondary);
}

.team-item h4 {
    transition: .5s;
}

.owl-item.center .team-item h4,
.owl-item.center .rent-item h4 {
    color: var(--light);
}

.team-item .team-social {
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    background: var(--light);
}

.owl-item.center .team-item .team-social,
.owl-item.center .rent-item {
    background: var(--secondary);
}

.team-item:hover .team-social {
    opacity: 1;
    background: var(--secondary);
}

.team-carousel .owl-nav,
.related-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.vendor-carousel .owl-dots,
.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-carousel .owl-dot,
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    transition: .5s;
}

.vendor-carousel .owl-dot.active,
.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.testimonial-carousel .owl-item .testimonial-item {
    height: 350px;
    transition: .5s;
    background: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--secondary);
}

.testimonial-carousel .owl-item .testimonial-item h1,
.testimonial-carousel .owl-item .testimonial-item h4 {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item h1 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h4 {
    color: var(--light);
}

.bg-banner {
    background: linear-gradient(rgba(28, 30, 50, .9), rgba(28, 30, 50, .9)), url(../img/bg-banner.jpg);
    background-attachment: fixed;
}



.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.featured-card-1,.featured-card-2{
    display: flex;
    gap: 5px;
    position: relative;
}

.featured-card-1 h3{
    position: absolute;
    top:-100px;
    left: 0;
    font-size: 100px;
    color: transparent;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #0006;
    animation: move-left-right 20s infinite;
}

.featured-card-2 h3{
    position: absolute;
    bottom:-100px;
    right: 0;
    font-size: 100px;
    color: transparent;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #0006;
    animation: move-right-left 20s infinite;
}

.featured-card-1 img,.featured-card-2 img{
    height: 300px;
    border-radius: 4px;
}
.featured-card-1 .content{
    margin-top: 60px;
}

.featured-card-2 .content{
    margin-top: 60px;
    text-align: right;
}
.featured-card-1 .desc{
    background-color: #fffc;
    color: #000 ;
    margin-left: -50px;
    padding: 20px;
    box-shadow: 0 0 12px #0004;
    border-radius: 4px;
    position: relative;
}

.featured-card-2 .desc{
    background-color: #fffc;
    color: #000 ;
    margin-right: -50px;
    padding: 20px;
    box-shadow: 0 0 12px #0004;
    border-radius: 4px;
    z-index: 2;
    position: relative;
}

.featured-card-1 .desc p, .featured-card-2 .desc p{
    text-align: justify;
}

@keyframes move-left-right{
    0%{
        left:0
    }
    50%{
        left: 40%;
    }
    100%{
        left:0%
    }
}

@keyframes move-right-left{
    0%{
        right:0
    }
    50%{
        right: 35%;
    }
    100%{
        right:0%
    }
}

@media screen and (max-width:992px) {
    .featured-card-1{
        flex-direction: column;
    }
    .featured-card-2{
        flex-direction: column-reverse;
    }

    .featured-card-1 img,.featured-card-2 img{
        height: 350px;
        border-radius: 4px;
        object-fit: cover;
    }

    .featured-card-1 .content,.featured-card-2 .content{
        margin-top: 10px;
        text-align: center;
    }

    .featured-card-1 .desc,.featured-card-2 .desc{
        margin-left: 0;
        margin-right: 0;
        box-shadow: none;
    }

    .featured-card-1 h3{
        font-size: 42px;
        top:-60px
    }
    .featured-card-2 h3{
        font-size: 42px;
        bottom: -60px;
    }
}

.booking{
    position: fixed;
    right: -30px;
    top:40%;
    background-color: var(--primary);
    height: 40px;
    width: 100px;
    z-index: 999;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
    transform: rotate(-90deg);
}

.booking:hover {
    text-decoration: none;
    color: #F4F5F8;
}