@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
:root {
    --main-color: #1F5EAB;
    --second-color: #EC5101;
    --blue-color: #002148;
    --orange-color: #ed6a27;
    --dark-blue: #011226;
}
.header-bg{
    width: 100%;
    background-color: #add2ff;
    height: 26vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vh;
    font-weight: 600;
    color: white;
    text-shadow: 0px 2px 20px #000;
}
.single-row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5vh;
}
.tile-single{
    width: 90%;
    margin: 0px 5%;
    text-align: center;
}
.tile-single img{
    max-width: 90vw;
    max-height: 40vh;
}
.tile-single ul{
    width: 100%;
    margin: 0px auto;
    text-align: left;
}
/* .tile-single p{
    text-align: left;
} */
.double-row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5vh;
}
.tile-double{
    width: 45%;
    margin: 0px 5%;
    text-align: center;
}
.tile-double img{
    max-width: 90%;
    max-height: 40vh;
}
.tile-double ul{
    width: 99%;
    margin: 0px auto;
    text-align: left;
}
.tile-double p{
    width: 99%;
    text-align: left;
}
@media(max-width: 720px){
    .double-row{
        display: block;
    }
    .tile-double{
        width: 90%;
        margin-top: 3vh;
    }
}
.triple-row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5vh;
}
.tile-triple{
    width: 30%;
    margin: 0px 5%;
    text-align: center;
}
.tile-triple img{
    max-width: 90%;
    max-height: 40vh;
}
.tile-triple ul{
    width: 99%;
    margin: 0px auto;
    text-align: left;
}
.tile-triple p{
    width: 99%;
    text-align: left;
}
@media(max-width: 780px){
    .triple-row{
        display: block;
    }
    .tile-triple{
        width: 90%;
        margin-top: 3vh;
    }
}