﻿/* ==================================
   HERO SECTION
================================== */

.hero {
    padding-top: 30 !important;
    padding-bottom: 20px;
    background: #fff;
}


.hero .container {
    padding-top: 0 !important;
}

/* Heading */

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f5b;
    margin-bottom: 20px;
}

.hero-title span {
    color: #0d6efd;
}

/* Description */

.hero-description {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    max-width: 550px;
}

/* Button */

.btn-get-started {
    display: inline-block;
    background: #0d6efd;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-get-started:hover {
    background: #084ec1;
    color: #fff !important;
}

/* Image */

.hero-img img {
    margin-top: 0 !important;
    display: block;
}

.hero-image {
    max-width: 100%;
    max-height: 420px;
    height: auto;

    /* Disable any animation */
    animation: none !important;
    transform: none !important;
}

/* Tablet */

@media (max-width: 991px) {

    .hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
        margin-top: 15px;
    }

    .hero-description {
        text-align: center;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-img {
        margin-top: 0;
    }

    .hero-image {
        max-height: 320px;
    }
}

/* Mobile */

@media (max-width: 576px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-image {
        max-height: 250px;
    }

    .btn-get-started {
        padding: 10px 25px;
        font-size: 14px;
    }
}


@media (min-width: 992px) {
    .hero-img {
        margin-top: -30px;
    }
}