﻿/*
   Sections
-*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: var(--basic-secondary-background, #f4f4f4);
}

.section-title {
    padding-bottom: 30px;
    text-align: center;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 20px;
        padding-bottom: 0;
        color: #30302f;
    }

        .section-title h2 strong {
            font-weight: 700;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*
Hero Section
*/
#hero-section {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
    padding: 0;
}

    #hero-section .carousel,
    #hero-section .carousel-inner,
    #hero-section .carousel-item,
    #hero-section .carousel-item::before {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }

        #hero-section .carousel-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            #hero-section .carousel-item .overlay:before, .overlay:after {
                content: "";
                position: absolute;
                bottom: -23%;
                left: 50%;
                transform: translateX(-50%);
                height: 60%;
                width: 60%;
                border-radius: 50%;
                display: none;
                background-color: rgb(0 18 30 / 72%);
            }

            #hero-section .carousel-item .overlay:after {
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            }

    #hero-section .carousel-container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    #hero-section .carousel-content {
        background: rgb(0 18 30 / 72%);
        padding: 20px;
        color: #fff;
        animation-duration: 0.5s;
        border-top: 4px solid #d87c0a;
        border-radius: 4px;
        backdrop-filter: blur(1px);
        border: 10px inset rgba(255, 255, 255, .1);
    }

        #hero-section .carousel-content h2 {
            color: #fff;
            margin-bottom: 30px;
            font-size: 28px;
            font-family: "Roboto Condensed", sans-serif;
            font-weight: 400;
        }

        #hero-section .carousel-content h1 {
            color: #16243d;
            margin-bottom: 30px;
            font-size: 78px;
            font-family: "DM Sans", sans-serif;
            font-weight: 400;
        }

    #hero-section .btn-get-started {
        font-family: Roboto, sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 4px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        animation-delay: 0.8s;
        border: 2px solid #d87c0a;
    }

        #hero-section .btn-get-started:hover {
            background: #d87c0a;
            color: #fff;
        }

    #hero-section .carousel-inner .carousel-item {
        transition-property: opacity;
    }

    #hero-section .carousel-inner .carousel-item,
    #hero-section .carousel-inner .active.carousel-item-start,
    #hero-section .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero-section .carousel-inner .active,
    #hero-section .carousel-inner .carousel-item-next.carousel-item-start,
    #hero-section .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero-section .carousel-inner .carousel-item-next,
        #hero-section .carousel-inner .carousel-item-prev,
        #hero-section .carousel-inner .active.carousel-item-start,
        #hero-section .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero-section .carousel-control-prev,
    #hero-section .carousel-control-next {
        width: 10%;
    }

    #hero-section .carousel-control-next-icon,
    #hero-section .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
    }

    #hero-section .carousel-indicators li {
        cursor: pointer;
    }

@media (min-width: 1024px) {
    #hero-section .carousel-content {
        width: 60%;
    }

    #hero-section .carousel-control-prev,
    #hero-section .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 992px) {
    #hero-section {
        height: calc(80vh - 70px);
    }

        #hero-section .carousel-content h2 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        #hero-section .carousel-content p {
            font-size: 15px;
        }
}

@media (max-height: 500px) {
    #hero-section {
        height: 80vh;
    }
}


/*
   Announcement Section
-*/
.announcement-section {
    padding: 60px 0;
    color: var(--basic-body-text-color, #575757);
}

    .announcement-section h3 {
        font-size: 28px;
        font-weight: 700;
    }

        .announcement-section h3 span {
            color: var(--basic-body-text-color,#0067ae);
        }

    .announcement-section p {
        padding: 0;
        margin: 0;
    }

    .announcement-section .announcement-section-btn {
        font-family: Oswald, sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 25px;
        border-radius: 2px;
        transition: 0.4s;
        margin: 10px;
        border-radius: 4px;
        border: 2px solid #0067ae;
        color: #0067ae;
        background: #fff;
    }

        .announcement-section .announcement-section-btn:hover {
            background: #0067ae;
            color: #fff;
        }

@media (max-width: 1024px) {
    .announcement-section {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .announcement-section .announcement-section-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*
   Feature Section
-*/

section#all-features {
    padding-bottom: 42px;
}

.feature-section .feature {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: left;
    border-radius: 5px;
    background: var(--basic-primary-background, #fff);
    box-shadow: 0px 2px 8px rgb(0 0 0 / 25%)
}

    .feature-section .feature h4 {
        text-align: center;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        font-weight: 200;
        text-transform: uppercase;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 4px solid rgba(216,124,10, 0.7);
        border-bottom: 4px solid rgba(216,124,10, 0.7);
    }

    .feature-section .feature .feature-image {
        position: relative;
        overflow: hidden;
    }

        .feature-section .feature .feature-image:before {
            /*        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 30%;
        background: rgba(0, 0, 0, 0.5);*/
        }

        .feature-section .feature .feature-image h4 {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-weight: 200;
            text-transform: uppercase;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 4px solid rgba(216,124,10, 0.7);
            border-bottom: 4px solid rgba(216,124,10, 0.7);
        }

    .feature-section .feature .feature-detail {
        padding: 15px 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 120px;
    }

        .feature-section .feature .feature-detail h4 {
            font-weight: 700;
            text-align: center;
            margin-bottom: 5px;
            font-size: 18px;
            color: #30302f;
        }

        .feature-section .feature .feature-detail span {
            display: block;
            font-size: .850rem;
            font-weight: 400;
            color: var(--basic-body-text-color, #1e1e1e);
        }

        .feature-section .feature .feature-detail p {
            font-style: italic;
            font-size: 14px;
            line-height: 26px;
            color: #847872;
        }

        .feature-section .feature .feature-detail a {
            display: inline-block;
            background: #0067ae;
            color: #fff;
            padding: 6px 20px;
            transition: 0.3s;
            font-size: 14px;
            border-radius: 4px;
        }

            .feature-section .feature .feature-detail a:hover, .feature-section .feature .feature-detail a:focus:hover {
                background: #d87c0a;
            }
