.hero {
    /* background-color: var(--secondaryColorDark); */
    background: linear-gradient(var(--heroBgColorGradient),var(--heroBgColorGradient)),url('../images/home/banner.jpeg') no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    background-position: 50% 50%;
    color: var(--white);
    padding-bottom: 20px;
}

.hero #isoa-navbar {
    padding: 10px 0;
}

.hero #isoa-navbar a {
    color: var(--navbarLinkColor);
    transition: var(--transitionEase);
}

.hero #isoa-navbar a:hover {
    color: var(--navbarLinkHoverColor);
}

.hero .logo {
    width: 50px;
    height: 50px;
}

.hero-details .content {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero h1 {
    font-size: var(--h3);
}

.hero .content p{
    width: 270px;
    line-height: 30px;
}

.hero .hero-side-image {
    width: 100%;
}

.hero .get-started {
    padding: 10px 20px !important;
    width: 250px;
}

.hero .get-started:hover {
    color: var(--white);
    text-decoration: none;
}

/* MEdia queries */
@media screen and (min-width: 500px){
    .hero h1 {
        font-size: var(--h2);
    }
}

@media screen and (min-width: 768px){
    .hero {
        /* height: 700px; */
        height: 600px;
        padding-bottom: 0px;
    }

    .hero .content p{
        width: 470px;
    }

    .hero-details {
        /* margin-top: 110px; */
        margin-top: 50px;
    }
    
    .hero-details .content {
        /* margin-top: 30px; */
        /* display: block;
        text-align: start; */
    }

    .hero h1 {
        font-size: var(--h1);
    }

    .inner-hero {
        height: 400px;
    }
}


.inner-hero {
    /* background: linear-gradient(to right, var(--secondaryDarkBgGradientStart), var(--secondaryDarkBgGradientEnd)); */
}

.inner-hero .hero-details ul {
    display: flex;
    list-style: none;
    /* background: red; */
    height: 50px;
    align-items: center;
}

.inner-hero .hero-details ul li {
    margin-right: 10px;
}

.inner-hero .hero-details ul li:nth-child(3) {
    color: var(--dimWhite);
}

.inner-hero .hero-details ul li a{ 
    color: var(--white);
}

.inner-hero .hero-details ul li i {
    color: var(--dimWhite);
}