/* Featured courses section */
#featuredProducts {
    width: 100%;
    background-image: repeating-linear-gradient(45deg, var(--lime-slightlylight) 0, var(--lime-slightlylight) 1px, transparent 0, transparent 50%), repeating-linear-gradient(-45deg, var(--lime-slightlylight) 0, var(--lime-slightlylight) 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    background-color: var(--lime-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 50px 0;
}
.productInfo {
    height: calc(33.33% - 30px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    color: black;
}
.productInfo > span {
    width: 100%;
}
.productPurchase {
    display: flex;
    flex-direction: row;
    margin-top: auto;
    font-size: 22px;
    font-weight: 600;
    align-items: center;
}
.productName {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.productCategory {
    color: grey;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    overflow-wrap: break-word;
}
.productPrice {
    font-size: 22px;
    font-weight: 600;
}
.purchaseButton {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tangerine);
    border-radius: 4px;
    margin-left: auto;
    font-size: 16px;
    padding: 10px;
    transition: background-color .2s linear;
}
.purchaseButton:hover {
    background-color: var(--tangerine-light);
}

/* Information section */
#info1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 50px 0 50px 0;
}
#info1 > .sectionTitle, #info1 > .sectionDesc {
    max-width: 90%;
}
.bubbleContainer {
    max-width: 1430px;
    padding: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.bubbleRow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 50%;
}
.bubbleTile {
    width: 40%;
    display: flex;
    flex-direction: column;
    color: black;
    text-align: center;
    align-items: center;
}
.bubble {
    height: 110px;
    width: 110px;
    background-color: var(--evergreen);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bubbleHeader {
    font-size: 20px;
    padding-top: 20px;
}
.bubbleText {
    font-size: 15px;
    word-spacing: 2px;
    padding-top: 15px;
    line-height: 1.6;
}

#info2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--evergreen);
    color: white;
}
#info2Spacer {
    height: 300px;
    max-width: 1500px;
    position: relative;
    padding: 75px 0 75px 0;
    display: flex;
    align-items: center;
}
.sauSection {
    display: flex;
    flex-direction: column;
    max-width: 1500px;
    width: 90vw;
}
.sauSectionTitle {
    font-size: 55px;
    font-weight: 750;
}
.sauSectionDesc {
    padding-top: 10px;
    font-size: 22px;
    font-weight: 500;
}
.sauSection a {
    height: 60px;
    width: 250px;
    margin-top: 60px;
    background-color: var(--tangerine);
    font-size: 25px;
    font-weight: 500;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.5);
    text-decoration: none;
    color: white;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: background-color .2s linear;
}
.sauSection a:hover {
    background-color: var(--tangerine-light);
}
#info2 img {
    position: absolute;
    right: 90px;
    bottom: 0;
    height: 550px;
}
@media (max-width: 1600px) {
    #info2 img {
        right: -50px;
    }
}
@media (max-width: 1350px) {
    #info2 img {
        display: none;
    }
}
@media (max-width: 1000px) {
    .bubbleContainer {
        flex-direction: column;
        gap: 50px;
        padding: 70px 0 70px 0;
    }
    .bubbleRow {
        width: 100%;
    }
}
@media (max-width: 700px) {
    .sauSectionTitle {
        font-size: 40px;
    }
    .sauSectionDesc {
        font-size: 18px;
    }
}
