/* *** Home *** */

#home {
    width: 100%;
    text-align: center;
    color: #30475e;
    line-height: 1.6rem;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}

.header {
    padding: 20px;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 2px;
}

.box-outer {
    margin: 0 2%;
}

.box-white {
    text-align: left;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Components */
.box-info {
    width: 23%;
    margin: 0.5% 0.65%;
    padding-top: 0;
    background: #ffffff;
}

.box-info .header {
    padding: 5px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #1AB7F1;
}

.box-info .content {
    padding: 5px;
    line-height: 1.3rem;
    text-align: justify;
    color:#30475e;
}

.box-info .content img {
    float: left;
    width: 40%;
}

.box-info .content .learn-more {
    margin-top: 10px;
    color: #1AB7F1;
    cursor: pointer;
}

/* Advisors */
.team-info.hide {
    visibility: hidden;
    display: none;
}

.team-info.show {
    visibility: visible;
    display: block;
}

.team-info .advisor-pic img {
    height: 250px;
}

.team-info .advisor-quote {
    margin-bottom: 15px;
    font-style: italic;
}

.team-info .advisor-msg {
    background-color: #ffffff;
    padding: 5px;
}

.team-spacer {
    display: block;
    width: 100%;
    height: 95px;
}

/* Stages - flow */
.circle-img {
    width: 100px;
    border: 2px solid #1AB7F1;
    border-radius: 50%;
}

.flow-state {
    width: 20%;
}

.flow-detail span {
    font-size: 1.1em;
    font-weight: bold;
}

.flow-detail span span {
    display: inline-block;
    background-color: #cce6f0;
    border-radius: 50%;
    width: 1.8em;
    padding: 2px;
}

.flow-connector {
    margin-top: 50px;
    width: 6%;
}

/* Arrow */
/* https://cssarrowplease.com */
.arrow-box {
	position: relative;
	background: #1AB7F1;
    border: 2px solid #30475e;
    width: 25px;
    height: 15px;
}
.arrow-box:after, .arrow-box:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.arrow-box:after {
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #1AB7F1;
	border-width: 20px;
	margin-top: -20px;
}
.arrow-box:before {
	border-color: rgba(194, 225, 245, 0);
	border-left-color: #30475e;
	border-width: 22px;
	margin-top: -22px;
}

  /* *** Media Styles *** */

@media only screen and (max-width: 1280px){
    .box-info {
        width: 48%;
        margin: 2% 0.65%;
    }

    .box-info.edge-left, .box-info.edge-right {
        margin: 2% 0.65%;
    }

    .box-info .content img {
        width: 31%;
    }

    /* Flow */
    .flow-state {
        width: 45%;
        margin-bottom: 5%;
    }

}

@media (max-width: 800px) {
}

@media (max-width: 640px) {
    .flow-state, .box-info {
        width: 98%;
    }

    .box-subscribe.right {
        right: 0;
    }

    .flow-connector {
        margin: 0 45%;
        height: 60px;
    }

    /* Arrow Down */
    .arrow-box:after, .arrow-box:before {
        top: 100%;
        left: 50%;
    }
    .arrow-box:after {
        border-color: rgba(136, 183, 213, 0);
        margin: 0;
        border-top-color: #1AB7F1;
        margin-left: -20px;
    }
    .arrow-box:before {
        border-color: rgba(194, 225, 245, 0);
        margin: 0;
        border-top-color: #30475e;
        margin-left: -22px;
    }
}