.intro-row {
    padding-top: 2em;
    padding-bottom: 1em;
}

.cta-row {
    margin-bottom: 1em;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 1em;
    margin-bottom: 0px !important;
}

.cta-btns a {
    text-align: center;
}

.outcomes-row {
    background-color: #3c1d68; /* darker purple */
    color: white;
    padding-top: 1em;
    padding-bottom: 2em;
    position: relative;
    z-index: 1;
}

.outcomes {
    display: flex;
    flex-direction: column;
    padding-top: 3em;
    padding-bottom: 2em;
}

.outcome {
    text-align: center;
    border-bottom: 1px solid #f68b1f;
    margin-bottom: 1em;
    padding-bottom: 2em;
    font-size: 120%;
    color: #f68b1f;
    font-weight: bold;
    text-transform: uppercase;
}

.outcome:last-child {
    border-bottom: none;
}

.outcome .amount {
    color: white;
    display: block;
    font-size: 270%;
    font-weight: bold;
}

.outcome .fineprint {
    display: block;
}

.majors-row {
    background-color: #efefef;
    padding-top: 3em;
    padding-bottom: 2em;
    overflow: hidden;
}

.majors-row h3 {
    text-align: center;
    font-size: 220%;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-80px);
    position: relative;
    z-index: 0;
    transition: opacity 2s, transform 2s;
}

.majors-row h3.animate {
    opacity: 1;
    transform: translateY(0px);
}

.majors {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.major {
    display: inline-block;
    opacity: 0;
    padding: 0.8em 0.5em !important;
    transform: translateX(-100%);
    transition: opacity 1s, transform 1s;
}

.major:nth-child(odd) {
    transform: translateX(+100%);
}

.major.animate {
    opacity: 1;
    transform: translateX(0px);
}

.majors .major a {
    padding: 1.4em 2em !important;
    min-width: 280px;
}

.aacsb-row {
    padding-top: 3em;
    padding-bottom: 2em;
}

.employers-row {
    background-color: #efefef;
    padding-top: 3em;
    padding-bottom: 2em;
}

.employers-row .business-list {
    list-style: none;
    max-width: 300px;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    font-size: 110%;
    font-weight: 400;
}

.employers-row .business-list li {
    background-color: #ddd;
    padding-top: 6px;
    border-radius: 6px;
    margin-bottom: 0.75em;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    clip-path: polygon(6% 0, 100% 0, 95% 100%, 0% 100%);
}

/*.employers-row .business-list li::marker {*/
/*  content: "🤝  ";*/
/*}*/

.confidence-row {
    background-color: #cc6d00;
    color: white;
    font-weight: bold;
    padding-top: 3em;
    padding-bottom: 1em;
}

.global-row {
    background-color: #298FC2;
    background-image: url('/majors/business/images/bg-clouds.jpg');
    background-size: cover;
    color: white;
    padding-top: 3em;
    padding-bottom: 2em;
}

.affordable-row {
    background-color: #222;
    color: white;
    padding-top: 4em;
    padding-bottom: 3em;
}

.social-heading-row {
    padding-top: 3em;
}

.social-icons-row {
	margin-bottom: 2em;
}

.social-icons {
	justify-content: center;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .employers-row .business-list {
        max-width: 1200px;
    }
    
    .employers-row .business-list li {
        background-color: #ddd;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .cta-btns {
        flex-direction: row;
    }
    
    .cta-btns a {
        flex: 1;
    }
    
    .outcomes {
        flex-direction: row;
    }
    
    .outcome {
        border-bottom: none;
        border-right: 1px solid #f68b1f;
        flex: 1;
        padding-bottom: 0;
        padding-left: 2em;
        padding-right: 2em;
        margin-bottom: 0;
    }
    
    .outcome:last-child {
        border-right: none;
        border-bottom: none;
    }
    
    .major:nth-child(2) { transition-delay: 0.1s; }
    .major:nth-child(3) { transition-delay: 0.2s; }
    .major:nth-child(4) { transition-delay: 0.3s; }
    .major:nth-child(5) { transition-delay: 0.4s; }
    .major:nth-child(6) { transition-delay: 0.5s; }
    .major:nth-child(7) { transition-delay: 0.6s; }
    .major:nth-child(8) { transition-delay: 0.7s; }
    .major:nth-child(9) { transition-delay: 0.8s; }
    
    .aacsb-logo-column img {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    
}