/* Desktop Styles */

.hero-section {
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-section .hero-section-content {
    width: 100%;
    max-width: 50%;
    text-align: center;
    margin-left: 80px;
    margin-bottom: 100px;
}


.hero-section .hero-section-content h1 {
    text-align: right;
    max-width: 800px;
}

.hero-section .hero-section-content .hero-button-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-section .hero-section-content .hero-button-container .hero-section-content-button {
    border-radius: 0;
    padding: 12px 32px;
}

.hero-section .hero-section-content .hero-button-container .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    width: 45px;
}

.hero-section .hero-auxiliary-callout {
    position: absolute;
    right: 60px;
    bottom: 80px;
    transform: scale(1);
    transition: transform .3s;
}

.hero-section .hero-auxiliary-callout:hover {
    transform: scale(1.1);
}

.hero-section .hero-auxiliary-callout img{
   width: 100%;
   display: block;
}

.hero-section .hero-nav-items {
    display: flex;
    justify-content: stretch;
    width: 100%;
    border-top-width: 2px;
    border-top-style: solid;
}

.hero-section .hero-nav-items .hero-nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-right-width: 1px;
    border-right-style: solid;
}

.hero-section .hero-nav-items .hero-nav-item:last-child {
    border: none;
}


.hero-section .hero-nav-items .hero-nav-item .hero-nav-text {
    width: auto;
}

.hero-section .hero-nav-items .hero-nav-item .hero-nav-text .hero-nav-title {
    margin-bottom: -5px;
    text-align: center;
    display: inline-block;
}

.hero-section .hero-nav-items .hero-nav-item .hero-nav-text .hero-nav-sub-title {
    margin-left: 28%;
    margin-bottom: 0px;
    width: 100%;
}


.hero-section .hero-nav-items .hero-nav-item .hero-nav-text .hero-nav-title .hero-nav-icon-wrapper{
    display: inline-block;
}


/* Tablet Styles */

@media only screen and (max-width: 900px) {

    .hero-section {
        height: 75vh;
    }

    .hero-section .hero-section-content {
        margin-left: 0px;
        padding-left: 20px;
        max-width: 100%;
    }

    .hero-section .hero-section-content h1 {
        text-align: left;
    }

    .hero-section .hero-section-content .hero-button-container {
        justify-content: flex-start;
    }

    .hero-section .hero-nav-items .hero-nav-item .hero-nav-text .hero-nav-sub-title {
        display: none;
    }

    .hero-section .hero-nav-items .hero-nav-item .hero-nav-text .hero-nav-title .hero-nav-icon-wrapper{
        display: block;
    }
}

@media only screen and (max-width: 576px) {

    .hero-section .hero-section-content {
        margin-bottom: 40px;
    }

    .hero-section .hero-section-content h1 {
        line-height: 36px;
    }

    .hero-section .hero-nav-items {
        flex-wrap: wrap;
    }
    .hero-section .hero-nav-items .hero-nav-item {
        width: 50%;
        border-right-width: 1px;
        border-right-style: solid;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

    .hero-section .hero-auxiliary-callout {
        right: 20px;
    }

}