main article section:first-of-type{
    background:linear-gradient(to right,rgba(223,255,203,1), rgba(255,255,255,1),rgba(223,255,203,1));
}
main article section:first-of-type > div{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
}
main article section:first-of-type > div > figure:first-of-type{
    display: grid;
    width: 100%;
}
main article section:first-of-type > div > figure:first-of-type img{
    justify-self: left;
    align-self: center;
    max-width: 25rem;
}
main article section:first-of-type > div > figure:last-of-type{
    display: grid;
}
main article section:first-of-type > div > figure:last-of-type img{
    justify-self: right;
}
@media (max-width: 1100px) {
    main article section:first-of-type > div{
        grid-template-columns: repeat(2,1fr);
    }
    main article section:first-of-type > div > figure:first-of-type img{
        justify-self: center;
        max-width: 80%;
    }
}
@media (max-width: 560px) {
    main article section:first-of-type{
        background:linear-gradient(rgba(223,255,203,1), rgba(255,255,255,1),rgba(223,255,203,1));
    }
    main article section:first-of-type > div{
        grid-template-columns: 1fr;
    }
    main article section:first-of-type > div > figure:first-of-type{
        grid-column: 1;
        grid-row: 2;
        padding: 2rem 0;
    }
    main article section:first-of-type > div > figure:last-of-type{
        grid-column: 1;
        grid-row: 1;
    }
}

main article section:nth-of-type(2){
    background: rgba(251,249,240,1);
    padding: 4rem 0;
}
main article section:nth-of-type(2) > div{
    max-width: 68.75rem;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 10.875rem 1fr 10.875rem;
}
main article section:nth-of-type(2) > div figure{
    align-self: flex-end;
}
main article section:nth-of-type(2) > div figure:first-of-type{
    transform: translateX(50%);
}
main article section:nth-of-type(2) > div figure:last-of-type{
    transform: translateX(-50%);
}
main article section:nth-of-type(2) > div > div{
    border: 2px solid rgba(22,156,88,1);
    border-radius: .5rem;
    padding: 3rem 8rem;
    align-self: center;
}
main article section:nth-of-type(2) > div > div h2{
    text-align: center;
    color: rgba(22,156,88,1);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 2rem;
}
main article section:nth-of-type(2) > div > div p{
    margin: 0 auto;
    text-align: justify;
}
@media (max-width: 1100px) {
    main article section:nth-of-type(2) > div{
        grid-template-columns: repeat(2,1fr);
        border: 2px solid rgba(22,156,88,1);
        padding: 3rem 3rem 0 3rem;
        gap: 2rem;
        border-radius: .5rem;
    }
    main article section:nth-of-type(2) > div figure{
        max-width: 10.875rem;
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }
    main article section:nth-of-type(2) > div figure:first-of-type{
        transform: translateX(0%);
        grid-column: 1;
        grid-row: 2;
    }
    main article section:nth-of-type(2) > div figure:last-of-type{
        transform: translateX(0%);
        grid-column: 2;
        grid-row: 2;
    }
    main article section:nth-of-type(2) > div > div{
        grid-column: 1 / -1;
        grid-row: 1;
        border: none;
        padding: 0;
    }
    main article section:nth-of-type(2) > div > div h2{
        font-size: 1.5rem;
    }
}
@media (max-width: 760px) {
    main article section:nth-of-type(2) > div{
        padding: 1rem 1rem 0 1rem;
        gap: 1rem;
    }
    main article section:nth-of-type(2) > div > div h2{
        font-size: 1.25rem;
    }
}







main article section:nth-of-type(3){
    padding: 4rem 0;
}
main article section:nth-of-type(3) h2,
main article section:nth-of-type(4) h2,
main article section:nth-of-type(5) h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
main article section:nth-of-type(3) h2::before,
main article section:nth-of-type(4) h2::before,
main article section:nth-of-type(5) h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 960px) {
    main article section:nth-of-type(3) h2,
    main article section:nth-of-type(4) h2,
    main article section:nth-of-type(5) h2{
        font-size: 1.3rem;
    }
    main article section:nth-of-type(3) h2::before,
    main article section:nth-of-type(4) h2::before,
    main article section:nth-of-type(5) h2::before{
        width: 30px;
        height: 18px;
    }
}



main article section:nth-of-type(3) > div{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
}
main article section:nth-of-type(3) > div:first-of-type{
    grid-template-columns: 55% 45%;
    margin-bottom: 5rem;
}
main article section:nth-of-type(3) > div:last-of-type{
    grid-template-columns: 45% 55%;
}
main article section:nth-of-type(3) > div > div{
    align-self: center;
    padding: 3rem 10%;
}
main article section:nth-of-type(3) > div > div h3{
    color: rgba(22,156,88,1);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
main article section:nth-of-type(3) > div > div p:first-of-type{
    text-align: justify;
    margin-bottom: 2.5rem;
}
main article section:nth-of-type(3) > div > div p:last-of-type {
    text-align: center;
    width: 18.75rem;
    position: relative;
}
main article section:nth-of-type(3) > div > div p:last-of-type a{
    background: rgba(22,156,88,1);
    border: 1px solid rgba(22,156,88,1);
    color: rgba(255,255,255,1);
    border-radius: .5rem;
    transition: .5s;
    padding: 1rem 0;
}
main article section:nth-of-type(3) > div > div p:last-of-type a::after{
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: rgba(255,255,255,1);
}
main article section:nth-of-type(3) > div > div p:last-of-type a:hover{
    background: rgba(255,255,255,1);
    color: rgba(22,156,88,1);
}
main article section:nth-of-type(3) > div > div p:last-of-type a:hover::after{
    color: rgba(22,156,88,1);
}
main article section:nth-of-type(3) > div > figure{
    background: rgba(230,239,232,1);
    position: relative;
    display: grid;
}
main article section:nth-of-type(3) > div:first-of-type > figure{
    border-radius: 2rem 0 0 2rem;
}
main article section:nth-of-type(3) > div:last-of-type > figure{
    border-radius: 0 2rem 2rem 0;
}
main article section:nth-of-type(3) > div > figure::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(230,239,232,1);
}
main article section:nth-of-type(3) > div:first-of-type > figure::after{
    right: 0;
    transform: translateX(100%);
}
main article section:nth-of-type(3) > div:last-of-type > figure::after{
    left: 0;
    transform: translateX(-100%);
}

main article section:nth-of-type(3) > div > figure img{
    max-width: 26.25rem;
    align-self: center;
    justify-self: center;
}
@media (max-width: 1200px) {
    main article section:nth-of-type(3) > div:first-of-type{
        grid-template-columns: repeat(2,1fr);
    }
    main article section:nth-of-type(3) > div:last-of-type{
        grid-template-columns: repeat(2,1fr);
    }
    main article section:nth-of-type(3) > div > figure::after{
        display: none;
    }
    main article section:nth-of-type(3) > div > figure img{
        width: 90%;
        padding: 1rem;
    }
}
@media (max-width: 760px) {
    main article section:nth-of-type(3) > div{
        gap: 1rem;
    }
    main article section:nth-of-type(3) > div:first-of-type{
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    main article section:nth-of-type(3) > div > div{
        padding: 1rem 5%;
    }
    main article section:nth-of-type(3) > div:first-of-type > div{
        grid-row: 2;
    }
    main article section:nth-of-type(3) > div:first-of-type > figure{
        grid-row: 1;
    }
    main article section:nth-of-type(3) > div:last-of-type{
        grid-template-columns: 1fr;
    }
    main article section:nth-of-type(3) > div > div h3{
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }
}



main article section:nth-of-type(4){
    padding: 4rem 0;
    background: rgba(251,249,240,1);
}
main article section:nth-of-type(4) ul{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3,1fr);
}
main article section:nth-of-type(4) ul li{
    border: 2px solid rgba(22,156,88,1);
    border-radius: 1rem;
    padding: 2rem;
}
main article section:nth-of-type(4) ul li figure{
    text-align: center;
}
main article section:nth-of-type(4) ul li figure img{
    height: 11.25rem;
    object-fit: cover;
    margin: 0 auto;
}
main article section:nth-of-type(4) ul li h3{
    color: rgba(22,156,88,1);
    font-size: 1.75rem;
    margin: 1rem auto;
    text-align: center;
}
main article section:nth-of-type(4) ul li p{
    text-align: justify;
}
@media (max-width: 760px) {
    main article section:nth-of-type(4) ul{
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    main article section:nth-of-type(4) ul li h3{
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }
}



main article section:nth-of-type(5){
    padding: 4rem 0;
}
main article section:nth-of-type(5) ol{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4,1fr);
}
main article section:nth-of-type(5) ol li{
    position: relative;
}
main article section:nth-of-type(5) ol li div{
    background: rgba(230,239,232,1);
    padding: 4rem 2rem 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
main article section:nth-of-type(5) ol li div::after{
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    color: rgba(255,239,34,1);
    font-size: 1.5rem;
}
main article section:nth-of-type(5) ol li:last-of-type div::after{
    display: none;
}
main article section:nth-of-type(5) ol li div h3{
    color: rgba(22,156,88,1);
    font-size: 1.3rem;
    text-align: center;
}
main article section:nth-of-type(5) ol li div figure{
    text-align: center;
    margin-bottom: .5rem;
}
main article section:nth-of-type(5) ol li div figure img{
    height: 6.25rem;
    object-fit: cover;
}
main article section:nth-of-type(5) ol li p{
    text-align: justify;
}
main article section:nth-of-type(5) ol li::after{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    color: rgba(255,255,255,1);
    background-color: rgba(22,156,88,1);
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: bold;
}
main article section:nth-of-type(5) ol li:first-of-type::after{
    content: "1";
}
main article section:nth-of-type(5) ol li:nth-of-type(2)::after{
    content: "2";
}
main article section:nth-of-type(5) ol li:nth-of-type(3)::after{
    content: "3";
}
main article section:nth-of-type(5) ol li:last-of-type::after{
    content: "4";
}
main article section:nth-of-type(5) > p {
    text-align: center;
    width: 18.75rem;
    position: relative;
    margin: 4rem auto 0;
}
main article section:nth-of-type(5) > p a{
    background: rgba(22,156,88,1);
    border: 1px solid rgba(22,156,88,1);
    color: rgba(255,255,255,1);
    border-radius: .5rem;
    transition: .5s;
    padding: 1rem 0;
}
main article section:nth-of-type(5) > p a::after{
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: rgba(255,255,255,1);
}
main article section:nth-of-type(5) > p a:hover{
    background: rgba(255,255,255,1);
    color: rgba(22,156,88,1);
}
main article section:nth-of-type(5) > p a:hover::after{
    color: rgba(22,156,88,1);
}
@media (max-width: 960px) {
    main article section:nth-of-type(5){
        padding: 3rem 0;
    }
    main article section:nth-of-type(5) ol{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 560px) {
    main article section:nth-of-type(5){
        padding: 2rem 0;
    }
    main article section:nth-of-type(5) ol{
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    main article section:nth-of-type(5) ol li div::after{
        display: none;
    }
    main article section:nth-of-type(5) ol li::before{
        content: "▼";
        position: absolute;
        bottom: -7rem;
        left: 50%;
        transform: translate(-50%,-50%);
        color: rgba(255,239,34,1);
        font-size: 3rem;
    }
    main article section:nth-of-type(5) ol li:last-of-type::before{
        display: none;
    }
    main article section:nth-of-type(5) ol li div h3{
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }
}

main aside section{
    background: rgba(251,249,240,1);
    padding: 4rem 0;
}
main aside section h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
main aside section h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
main aside section > ul{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
main aside section > ul li{
    display: grid;
    grid-template-columns: 12rem 1fr;
    gap: 1.5rem;
    border-bottom: 1px dotted rgba(30,58,76,.5);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}
main aside section > ul li h3 a{
    font-size: 1rem;
    color: rgba(30,58,76,1);
}

main aside section > p {
    text-align: center;
    width: 18.75rem;
    position: relative;
    margin: 4rem auto 0;
}
main aside section > p a{
    background: rgba(22,156,88,1);
    border: 1px solid rgba(22,156,88,1);
    color: rgba(255,255,255,1);
    border-radius: .5rem;
    transition: .5s;
    padding: 1rem 0;
}
main aside section > p a::after{
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: rgba(255,255,255,1);
}
main aside section > p a:hover{
    background: rgba(255,255,255,1);
    color: rgba(22,156,88,1);
}
main aside section > p a:hover::after{
    color: rgba(22,156,88,1);
}
@media (max-width: 960px) {
    main aside section h2{
        font-size: 1.3rem;
    }
    main aside section h2::before{
        width: 30px;
        height: 18px;
    }
}
@media (max-width: 560px) {
    main aside section > ul li{
        grid-template-columns: 1fr;
        gap: .5rem;
    }
}
