:root {
    --quorange: #FF3E01;
    --qumagenta: #E41B52;
    --qured: #D90A35;
    --qublack: #454545;
}

*{
    font-family: "Roboto";
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
   }

h1 {
    color: var(--quorange);
}

h2 {
    color: var(--quorange);
}

h3 {
    color: var(--quorange);
}

p {
    color: #454545;
    font-size: 18px;
}

ul {
    color: #454545;
    list-style-position: outside;
    list-style-type: disc;
    margin-left: 20px;
    font-size: 18px;
}

.container {
    display: flexbox;
    text-align: center;
}

.heropage {
    display: flex;
    flex-direction: row;
    padding-top: 7rem;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.herotext {
    text-align: left;
    width: clamp(400px, 50%, 600px);
    align-items: center;
    float: left;
    padding: 20px;
}

.herotext h1 {
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 0px;
}

.herotext h2 {
    font-size: 60px;
    font-weight: 400;
    color: #454545;
    margin-top: .5rem;
}

.heroimage {
    justify-content: end;
    max-width: 600px;
}
.heroimage img {
    max-width: 100%;
    border-radius: 20px;
    object-fit: fill;
}

@media screen and (max-width: 800px){
    .herotext h2 {
        font-size: 48px;
    }
}
@media screen and (max-width: 700px){
    .heropage {
        flex-wrap: wrap-reverse;
        justify-content: flex-start;
    }

    .herotext {
        text-align: left;
        width: 100%;
    }


    .heroimage img {
        min-width: 100%;
        min-height: 300px;
        object-fit: cover;
    }
}

.ourwork {
    justify-content: start;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    width: clamp(300px, 85%, 1200px);
}

.ourwork h2 {
    font-size: 48px;
}

.workbox {
    margin-top: 64px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: start;
    margin-bottom: 64px;
}

.work {
    max-width: 300px;
    min-height: 200px;
    color: #ffffff;
    border-radius: 25px;
    padding: 28px;
    margin: 10px;
    box-shadow: 5px 5px 10px #aeaeae;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.work p {
    font-weight: 400;
    font-size: 28px;
}

.title {
    padding-top: 100px;
    text-align: left;
    font-size: 18px;
}

.titleimage {
    margin-bottom: 60px;
}

.body{
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    width: clamp(300px, 70%, 600px);
    text-align: center;
}

.testbox{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.test {
    width: 280px;
    min-height: 200px;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 5px 5px 10px #aeaeae;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.test h3 {
    margin-top: 10px;
    font-size: 22px;
}

.test p {
    font-size: 18px;
    font-weight: 400;
}


.school-list {
    display: grid;
    justify-items: center;
}

.school{
    width: 500px;
    height: 500px;
}

.morecontainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    width: clamp(300px, 75%, 900px);
    padding-bottom: 50px;
    justify-content: center;
}

.more {
    max-width: 360px;;
    border-radius: 15px;
    box-shadow: 5px 5px 10px #aeaeae;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.more img {
    object-fit: fill;
    width: 100%;
    height: 200px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.moretext {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 10px;
}
.learnmore h3 {
    font-weight: 500;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-color: var(--qured);
    text-decoration-style: solid;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}
