/* -------------------------- section ------------------------------- */

body section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    margin-top: 250px;
}

body section h1 {
    text-transform: capitalize;
    font-size: 56px;
}

body section h2 {
    font-size: 44px;
    font-weight: 500;
}

body section p {
    max-width: 700px;
    margin: 30px 0 100px 0;
}

/* ---------------------------------------------------- */

body section#s1 a {
    color: #091337;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 85px;
    text-transform: capitalize;
    background-image: linear-gradient(6deg, rgb(23, 255, 211) 0%, rgb(35, 227, 238) 100%);
}

body section#s1 img {
    margin-top: 100px;
    width: 90%;
    max-width: 1200px;
}

/* ---------------------------------------------------- */

body section#s2 main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

body section#s2 main aside {
    display: flex;
    width: 600px;
    margin-bottom: 50px;
}

body section#s2 main aside em {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 5px;
    box-shadow: 0px 18px 25px 0px #e2e2e2;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0072CC;
}

body section#s2 main aside:nth-child(1) em {
    background-image: url('/static/website/images/features/dashboard.png');
}

body section#s2 main aside:nth-child(2) em {
    background-image: url('/static/website/images/features/sectors.png');
}

body section#s2 main aside:nth-child(3) em {
    background-image: url('/static/website/images/features/courses.png');
}

body section#s2 main aside:nth-child(4) em {
    background-image: url('/static/website/images/features/classes.png');
}

body section#s2 main aside:nth-child(5) em {
    background-image: url('/static/website/images/features/students.png');
}

body section#s2 main aside:nth-child(6) em {
    background-image: url('/static/website/images/features/teachers.png');
}

body section#s2 main aside:nth-child(7) em {
    background-image: url('/static/website/images/features/parents.png');
}

body section#s2 main aside:nth-child(8) em {
    background-image: url('/static/website/images/features/attendance.png');
}

body section#s2 main aside:nth-child(9) em {
    background-image: url('/static/website/images/features/grades.png');
}

body section#s2 main aside:nth-child(10) em {
    background-image: url('/static/website/images/features/library.png');
}

body section#s2 main aside:nth-child(11) em {
    background-image: url('/static/website/images/features/billing.png');
}

body section#s2 main aside:nth-child(12) em {
    background-image: url('/static/website/images/features/expenses.png');
}

body section#s2 main aside div {
    text-align: left;
    margin-left: 20px;
}

body section#s2 main aside div h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

body section#s2 main aside div p {
    margin: 0;
    max-width: unset;
}

@media(max-width: 1250px) {
    body section#s2 main {
        width: 900px;
    }

    body section#s2 main aside {
        width: 450px;
    }
}

@media(max-width: 950px) {
    body section#s2 main {
        width: 100%;
    }

    body section#s2 main aside {
        width: 100%;
    }
}

/* ---------------------------------------------------- */

body section#s3 main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 200px;
}

body section#s3 main:last-child {
    margin-bottom: 0;
}

body section#s3 main figure {
    width: 500px;
    height: 500px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 50px rgba(128, 128, 128, 0.2);
}

body section#s3 main:nth-child(1) figure {
    background-image: url("/static/website/images/photo1.jpg");
}

body section#s3 main:nth-child(2) figure {
    background-image: url("/static/website/images/photo2.jpg");
}

body section#s3 main:nth-child(3) figure {
    background-image: url("/static/website/images/photo3.jpg");
}

body section#s3 main aside {
    width: 500px;
    text-align: left;
}

body section#s3 main aside h2 {
    font-size: 38px;
    margin: 0;
    margin-bottom: 20px;
}

body section#s3 main aside p {
    margin: 0;
}

@media(max-width: 1200px) {
    body section#s3 main figure {
        width: 400px;
        height: 400px;
    }

    body section#s3 main aside {
        width: 400px;
    }

    body section#s3 main aside h2 {
        font-size: 28px;
    }
}

@media(max-width: 950px) {
    body section#s3 main {
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;
    }

    body section#s3 main aside {
        width: 90%;
        height: auto;
        margin-top: 50px;
    }

    body section#s3 main:nth-child(2) {
        flex-direction: column-reverse;
        flex-wrap: wrap-reverse;
    }
}

/* ---------------------------------------------------- */

body section#s4 main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

body section#s4 main aside {
    position: relative;
    width: 300px;
    min-width: 300px;
    height: 150px;
    border: 1px solid grey;
    border-radius: 20px;
    margin: 20px;
    text-align: left;
    padding: 20px 0 0 20px;
    overflow: hidden;
    background-color: white;
}

body section#s4 main aside h1 {
    position: relative;
    font-size: 28px;
    margin: 0;
}

body section#s4 main aside div {
    height: 128px;
    width: 128px;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body section#s4 main aside:nth-child(1) div {
    background-color: #dfff00;
}

body section#s4 main aside:nth-child(2) div {
    background-color: #ffbf00;
}

body section#s4 main aside:nth-child(3) div {
    background-color: #ff7f50;
}

body section#s4 main aside:nth-child(4) div {
    background-color: #de3163;
}

body section#s4 main aside:nth-child(5) div {
    background-color: #9fe2bf;
}

body section#s4 main aside:nth-child(6) div {
    background-color: #40e0d0;
}

body section#s4 main aside:nth-child(7) div {
    background-color: #6495ed;
}

body section#s4 main aside:hover div {
    height: 500px;
    width: 500px;
}

/* ---------------------------------------------------- */

body section#s5 figure {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    border-radius: 30px;
    box-shadow: inset 0 0 10px #e2e2e2;
    overflow: hidden;
}

body section#s5 figure input {
    background: transparent;
    border: none;
    color: #091337;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 120px;
    height: 50px;
    margin: 0 5px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

body section#s5 figure input:nth-child(1) {
    color: white;
}

body section#s5 figure em {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 120px;
    height: calc(100% - 10px);
    background: linear-gradient(310deg, #2152ff, #21d4fd);
    border-radius: 25px;
    transition: 0.5s;
}

body section#s5 main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    max-width: 1300px;
}

body section#s5 main aside {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    padding: 30px 20px;
    margin: 50px;
    background-image: linear-gradient(59deg, rgb(11, 252, 224) 0%, rgb(197, 253, 120) 95%);
}

body section#s5 main aside * {
    color: #212529;
}

body section#s5 main aside em {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
}

body section#s5 main aside title {
    display: block;
    font-size: 36px;
    font-weight: 600;
}

body section#s5 main aside strong {
    font-size: 62px;
    font-weight: 600;
}

body section#s5 main aside strong span {
    font-size: 22px;
}

body section#s5 main aside p {
    color: #4d546f;
    margin: 20px 0;
}

body section#s5 main aside b {
    font-size: 18px;
    font-weight: 500;
}

body section#s5 main aside a {
    font-size: 24px;
    font-weight: 700;
    background-image: unset;
    transition: .3s;
    border: 1px solid #212529;
    margin-top: 30px;
}

body section#s5 main aside a:hover {
    color: white;
    background-color: #212529;
}

body section#s5 main aside img {
    position: absolute;
    width: 80px;
    top: -30px;
    left: 0;

}

@media(max-width: 720px) {
    body section#s5 figure {
        transform: scale(.7);
    }
}

/* ---------------------------------------------------- */

body section#s6 main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body section#s6 main img {
    margin: 0 20px;
}

body section#s6 main img:first-child {
    height: 120px;
}

body section#s6 main img:last-child {
    height: 100px;
}

/* ---------------------------------------------------- */

body section#s7 main {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body section#s7 main form {
    display: flex;
    width: 100%;
    box-shadow: 0px 0px 46px 0px rgba(172, 189, 199, 0.28);
}

body section#s7 main form input {
    font-size: 18px;
    height: 80px;
    border: none;
}

body section#s7 main form input[type='email'] {
    width: 100%;
    padding: 0 40px;
    border-radius: 10px 0 0 10px;
    outline: none;
}

body section#s7 main form input[type='submit'] {
    width: 150px;
    min-width: 150px;
    background-color: #0072CC;
    border-radius: 0 10px 10px 0;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------------------------------------------------- */

body section#s8 main {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body section#s8 main form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    background-color: #f3f7fb;
}

body section#s8 main form input,
body section#s8 main form textarea {
    font-size: 18px;
    width: 100%;
    height: 65px;
    padding: 10px 20px;
    margin: 10px 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #f7fafc;
    outline: none;
}

body section#s8 main form textarea {
    min-height: 200px;
}

body section#s8 main form input:focus,
body section#s8 main form textarea:focus {
    border-color: #007bff;
    background-color: white;
}

body section#s8 main form input[type='submit'] {
    width: 250px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
    background-color: #0072CC;
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

body section#s8 main aside {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

body section#s8 main aside div {
    width: 100%;
    max-width: 400px;
    padding: 24px;
    margin: 20px;
    border: 1px solid #dcebf4;
    border-radius: 3px;
    background-color: white;
}

body section#s8 main aside div strong {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 18px;
    font-weight: 500;
    background-size: contain;
    background-position: 0;
    background-repeat: no-repeat;
    padding-left: 60px;
    margin-bottom: 20px;
    color: #091337;
}

body section#s8 main aside div:nth-child(1) strong {
    background-image: url('/static/website/images/info.png');
}

body section#s8 main aside div:nth-child(2) strong {
    background-image: url('/static/website/images/support.png');
}

body section#s8 main aside div:nth-child(3) strong {
    background-image: url('/static/website/images/feedback.png');
}

body section#s8 main aside div p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* ---------------------------------------------------- */

body section#s9 iframe {
    width: 1000px;
    height: 563px;
    border: none;
    border-radius: 20px;
}

@media(max-width: 1100px) {
    body section#s9 iframe {
        width: 700px;
        height: 394px;
    }
}

@media(max-width: 750px) {
    body section#s9 iframe {
        width: 400px;
        height: 225px;
    }
}

@media(max-width: 420px) {
    body section#s9 iframe {
        width: 350px;
        height: 197px;
    }
}

/* ---------------------------------- Blockquote --------------------------------------- */

body blockquote {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

body blockquote img {
    position: absolute;
}

body blockquote img:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1400px;
}

body blockquote img:nth-child(2) {
    top: 3000px;
    left: 0;
}

body blockquote img:nth-child(3) {
    top: 5000px;
    right: 0;
}

body blockquote img:nth-child(4) {
    top: 7000px;
    left: 0;
}

body blockquote img:nth-child(5) {
    top: 9000px;
    left: 50%;
    transform: translateX(-50%);
}