/*=========================================================
NexEra CMS
Home Page
=========================================================*/

/*=========================
Hero Section
=========================*/

#heroSlider {
    margin-top: 95px;
}

.hero-image {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
}

.carousel-caption .container {
    max-width: 700px;
}

.carousel-caption h5 {
    color: #FF6B00;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.carousel-caption h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.carousel-caption p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 35px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    background-size: 65%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .25);
}

/*=========================
Section Title
=========================*/

.section-title {
    margin-bottom: 60px;
}

.section-title h6 {
    color: #FF6B00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 12px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
}

/*=========================
About Section
=========================*/

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.about-content {
    padding-left: 30px;
}

.about-content ul {
    margin-top: 25px;
}

.about-content ul li {
    margin-bottom: 12px;
}

/*=========================
Products
=========================*/

.product-card {
    height: 100%;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
}

.product-card .btn {
    margin-top: auto;
}

/*=========================
Why Choose
=========================*/

.why-card {
    height: 100%;
}

.why-card h4 {
    margin: 20px 0 15px;
}

/*=========================
Blogs
=========================*/

.blog-card {
    height: 100%;
}

.blog-card .card-body {
    display: flex;
    flex-direction: column;
}

.blog-card .btn {
    margin-top: auto;
}

/*=========================
Gallery
=========================*/

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image {
    display: block;
}

/*=========================
Downloads
=========================*/

.download-card {
    height: 100%;
}

.download-card .btn {
    margin-top: 20px;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px) {

    #heroSlider {
        margin-top: 80px;
    }

    .hero-image {
        height: 70vh;
    }

    .carousel-caption {
        text-align: center;
        left: 5%;
        right: 5%;
    }

    .carousel-caption .container {
        max-width: 100%;
    }

    .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel-caption p {
        font-size: 16px;
        margin: auto auto 25px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .section-title {
        margin-bottom: 40px;
    }

}

@media(max-width:767px) {

    .hero-image {
        height: 60vh;
    }

    .carousel-caption h5 {
        font-size: 14px;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .section-title h2 {
        font-size: 30px;
    }

}

@media(max-width:575px) {

    #heroSlider {
        margin-top: 70px;
    }

    .hero-image {
        height: 55vh;
    }

    .carousel-caption h1 {
        font-size: 26px;
    }

    .carousel-caption p {
        display: none;
    }

    .section-title {
        margin-bottom: 30px;
    }

}