
.bg-brand-color {
   background-color:  rgba(255, 255, 255, 0.1);    
}

.hero {
    /* Sizing */
    /*    width: 100vw;*/
    height: 100vh;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: center;
    color: white; /* ADD THIS LINE */
    
    /* Background styles */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url('../img/hero/hero-grad.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero h1 {
    /* Text styles */
    font-size: 5.9vw;
    /*    font-size: 5.9vmax;*/
    letter-spacing: 0.5vw;
    font-weight: 100;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
    border-top: rgba(255, 255, 255, 0.5) 1px solid;
}
     
.hero .btn {
    /* Positioning and sizing */
    display: block;
    width: 200px;
    
    /* Padding and margins */
    padding: 1em;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    
    /* Text styles */
    color: white; /* CHANGE THIS LINE */
    text-decoration: none;
    font-size: 1.5em;
    
    /* Border styles */
    border: 3px solid white; /* CHANGE THIS LINE */
    border-radius: 20px;
}

#about {

    /* Sizing */
    /*    width: 100vw;*/
    height: 100vh;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: left;
    color: white; /* ADD THIS LINE */
    
    /* Background styles */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0), rgba(0, 0, 0, 0.1));
    background-color: orange;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#portfolio {

    /* Sizing */
    /*    width: 100vw;*/
    height: auto;

    padding-top: 0px;
    padding-bottom: 0px;

    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: left;
    color: #333; /* ADD THIS LINE */
    
    /* Background styles */
    
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0), rgba(0, 0, 0, 0.1));
    background-color: #EEE;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#portfolio section {
    padding: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
}

#contact {

    /* Sizing */
    /*    width: 100vw;*/
    height: 100vh;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Text styles */
    text-align: left;
    color: #333; /* ADD THIS LINE */
    
    /* Background styles */
    
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.0)), url('../img/contact-grad.jpg');
    background-color: #EEE;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#breakout {

    /* Sizing */
    width: 100vw;
    height: 100vh;

    padding-top: 0px;
    padding-bottom: 0px;

    /* Flexbox stuff */
    display: flex;
    justify-content: left;
    align-items: center;
    
    /* Text styles */
    text-align: left;
    font-size: 1.25em;
    font-weight: 100;
    letter-spacing: 0.1em;
    color: #333; /* ADD THIS LINE */
    
    /* Background styles */
    
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0), rgba(0, 0, 0, 0.08));
    background-color: #EEE;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#breakout .divider {

    border-left:3px #c2d3e9 solid;
}

.how-section1{
    margin-top:-15%;
    padding: 10%;
}

.how-section1 h4{
    color: #ffa500;
    font-weight: bold;
    font-size: 30px;
}

.how-section1 .subheading{
    color: #3931af;
    font-size: 20px;
}

.how-section1 .row {
    margin-top: 10%;
}

.how-img {
    text-align: center;
}
.how-img img {
    width: 80%;
}

#grad {
  background-image: radial-gradient(circle, red, yellow, green);
}