

.hero {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    background-size: cover;
    text-align: center;
    padding: 15px;
}

.hero:before {
    position: absolute;
    background: rgba(0, 0, 0, .35);
    inset: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.hero__heading {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.35rem;
}

.hero__subheading {
    background: #d1d7da;
    display: flex;
    justify-content: center;
    font-size: 12px;
    padding: 0.75rem;
    font-weight: 600;
}

.main {
    margin: 3rem auto;
    max-width: 1024px;
    padding: 0 20px;
}

.main .ast-container {
    display: block;
    padding: 0 20px;
}

.main__heading {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.8rem;
    letter-spacing: 0.4rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.main__subheading {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0.4rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.main__description {
    line-height: 2.3;
}

.main__course {
    margin: 2rem auto 2.5rem;
    background-position: center center;
    background-size: cover;
}

.main__course h4 {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 350px;
    line-height: 1.25;
    padding: 2rem;
}

.main__course p {
    color: white;
    font-weight: 500;
    max-width: 350px;
    line-height: 1.25;
    padding: 0 2rem;
    font-size: 16px;
}

.main__course a {
    border-top: 1px solid white;
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
}

.main__apply h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0.4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.box {
    color: white;
    background-size: cover;
    background-position: 295px center;
}

.content {
    background: #000;
    width: 295px;
    padding: 2rem;
    border-right: 1rem solid #edeff0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.content ul {
    margin: 0 0 0 20px;
}

.content li {
    list-style-type: circle;
}

.content li p {
    margin-bottom: 0;
}

.description {
    text-align: center;
    margin: 3rem auto;
    max-width: 768px;
}

.main__deadline h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0.4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.container {
    display: flex;
    justify-content: space-between;
}

.left, .right {
    background: #d1d7da;
    width: 50%;
    border-left: 5px solid #193847;
    margin-left: 2rem;
    padding: 2rem;
    font-size: 14px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

.main__legal h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8rem;
    letter-spacing: 0.4rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.main__legal .container {
    font-size: 14px;
    color: #5e5f60;
}

@media only screen and (max-width: 650px) {
    .hero {
        height: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .box {
        background-image: none !important;
    }
    .content {
        width: 100%;
    }
    .container {
        display: block;
    }
    .left, .right {
        width: 100%;
        margin: 0;
    }
}













