#jumbotron .ornament {
    left: 47.5%;
}
.navigator {
    margin-top: 70px;
}
#course-about {
    margin-top: 30px;
    width: 100%;
}
#course-about .wrapper {
    margin: 0 auto 0;
    width: calc(100% - 3rem);
    max-width: 1080px;
}
#course-about h2 {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    font-size: 40px;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 20px;
}
#course-about b {
    font-weight: 700;
}
#course-about p {
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    font-weight: 500;
    color: var(--gray-1);
}
#objectives {
    border-top: 10px solid var(--fourth-color);
    border-bottom: 10px solid var(--fourth-color);
    margin: 50px auto 100px;
    width: calc(100% - 4rem);
    max-width: 1250px;
    background-color: var(--primary);
    padding: 20px 60px;
}
#objectives h2 {
    color: var(--fifth-color);
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
}
#objectives .info-wrapper p {
    font-size: 22px;
    color: var(--white);
    line-height: 45px;
    font-weight: 500;
    margin-top: 40px;
}
#schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    background-color: #F4F4F3;
    padding: 50px 0;
}
#schedule .times-container {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    gap: 35px;
    width: 100%;
}
#schedule .times-container .time {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 10px 0 10px;
    width: 25%;
}
#schedule .times-container .time::before {
    content: "";
    display: block;
    position: absolute;
    height: 125px;
    width: 50%;
    top: 0;
    left: 0;
    border-left: 3px dashed var(--fifth-color);
    border-top: 3px dashed var(--fifth-color);
    background: transparent;
}
#schedule .times-container .time h4 {
    color: var(--tertiary);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}
#schedule .times-container .time p {
    text-align: center;
    font-size: 20px;
}
.cycles-container {
    text-align: center;
    width: 100%;
    max-width: 1920px;
    margin: 130px 0 150px;
}
.cycles-container .title-container {
    border: 8px solid var(--primary);
    border-bottom: 0;
    margin: 0 auto 0;
    width: calc(100% - 3rem);
    max-width: 960px;
}
.cycles-container .title-container h1 {
    font-size: 50px;
    color: var(--primary);
    background-color: var(--white);
    margin-top: -33px;
    padding: 0 30px;
    display: inline-block;
    margin-bottom: 20px;
}
.cycles-container .wrapper {
    display: flex;
    justify-content: center;
    gap: 50px 80px;
    flex-wrap: wrap;
    position: relative;
    border: 8px solid var(--primary);
    border-top: 0;
    margin: 50px auto 0;
    width: calc(100% - 3rem);
    max-width: 960px;
    padding: 60px 80px;
}
.cycles-container .wrapper::before {
    position: absolute;
    content: "";
    border-bottom: 3px solid var(--fifth-color);
    border-left: 3px solid var(--fifth-color);
    border-right: 3px solid var(--fifth-color);
    bottom: -25px;
    height: 500px;
    left: 15px;
    right: 15px;
    box-sizing: inherit;
    z-index: -1;
}
.cycles-container .wrapper .cycle {
    display: flex;
    flex-direction: column;
    box-shadow: 0 -20px 0 var(--fifth-color);
    padding: 25px 0;
    width: 352px;
}
.cycles-container .wrapper .cycle .title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.cycles-container .wrapper .cycle h2 {
    color: var(--primary);
    font-size:50px;
}
.cycles-container .wrapper .cycle h3 {
    color: var(--primary);
    font-size: 40px;
}
.cycles-container .wrapper .cycle hr {
    width: 100%;
    margin: 20px 0;
    border: 3px dotted var(--fifth-color);
}
.cycles-container .wrapper .cycle ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}
.cycles-container .wrapper .cycle ul li {
    text-align: left;
    font-size: 22px;
}
#certificates {
    margin: 50px auto 100px;
    width: calc(100% - 4rem);
    max-width: 900px;
    outline: 30px solid #F4F4F3;
    padding: 30px;
    position: relative;
}
#certificates .title-container {
    position: absolute;
    top: -60px;
    left: -15px;
    background-color: var(--primary);
    padding: 25px 35px;
    width: 55%;
    box-shadow: 10px -5px var(--fifth-color);
}
#certificates h2 {
    font-size: 36px;
    color: var(--white);
}
#certificates p {
    font-size: 20px;
}
#certificates ul {
    font-size: 20px;
}
@media (max-width: 1280px) {
    .navigator {
        text-align: center;
    }
    #schedule .times-container .time {
        width: 30%;
    }
}
@media (max-width: 900px) {
    #schedule .times-container {
        flex-direction: column;
        align-items: center;
    }
    #schedule .times-container .time {
        width: 60%;
    }
    #certificates {
        width: calc(100% - 8rem);
    }
    #certificates h2 {
        font-size: 32px;
    }
}
@media (max-width: 800px) {
    #schedule .times-container {
        flex-direction: column;
        align-items: center;
    }
    #schedule .times-container .time {
        width: 60%;
    }
    #certificates h2 {
        font-size: 32px;
    }
    #certificates .title-container {
        left: unset;
        width: 88%;
    }
}
@media (max-width: 650px) {
    #course-about {
        margin-top: 0;
    }
    #course-about h2 {
        gap: unset;
        font-size: 30px;
    }
    #course-about p {
        font-size: 20px;
    }
    #objectives {
        padding: 20px 45px;
    }
    #objectives h2 {
        font-size: 28px;
    }
    #objectives .info-wrapper p {
        font-size: 18px;
    } 
    #schedule .times-container .time {
        width: 80%;
    }
    #certificates .title-container {
        left: -5px;
        width: 100%;
    }
    #certificates h2 {
        text-align: center;
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    #objectives {
        width: 100%;
    }
    .cycles-container .title-container {
        width: calc(100% - 1rem);
    }
    .cycles-container .wrapper {
        width: calc(100% - 1rem);
    }
    .cycles-container .title-container h1 {
        font-size: 40px;
        padding: 0 10px;
    }
}
@media (max-width: 500px) {
    #course-about h2 {
        font-size: 25px;
    }
    #course-about p {
        font-size: 17px;
        line-height: 35px;
    }
    #objectives {
        text-align: center;
        padding: 20px 25px;
        margin-bottom: 80px;
    }
    #objectives h2 {
        font-size: 22px;
        margin: 0;
    }
    #objectives .info-wrapper p {
        line-height: 35px;
        margin-top: 25px;
    }
    #schedule .times-container .time {
        width: 90%;
    }
    .cycles-container {
        margin-bottom: 110px;
    }
    .cycles-container .title-container h1 {
        font-size: 34px;
    }
    .cycles-container .wrapper {
        padding: 60px 49px;
    }
    .cycles-container .wrapper .cycle {
        padding: 20px 0
    }
    #certificates {
        width: calc(100% - 3rem);
        outline: 20px solid #F4F4F3;
        padding: 20px;
    }
    #certificates h2 {
        font-size: 24px;
    } 
    #certificates p {
        font-size: 18px;
    }
    #certificates ul {
        padding-left: 22px;
        font-size: 18px;
    }
}