*{
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--colour-dark-500);
}
html{
    scroll-behavior: smooth;
}
b{
    font-weight: 500;
}
body{
    overflow-x: clip;
    width: 100vw;
}
h1, h2, h3, h4{
    font-weight: 500;
    line-height: 120%;
}
h1{
    font-size: 52px;
}
h2{
    font-size: 44px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 20px;
}
p{
    font-size: 16px;
    line-height: 150%;
}
.small{
    font-size: 13px;
}
.tiny{
    font-size: 10px;
}
.whiteText{
    color: var(--colour-light-100);
}
.primary{
    color: var(--colour-primary-500);
}
.secondary{
    color: var(--colour-secondary-500);
}
.primaryBG{
    background-color: var(--colour-primary-500);
}
.secondaryBG{
    background-color: var(--colour-secondary-500);
}

.padding10{
    padding: var(--padding-10);
}
.padding20{
    padding: var(--padding-20);
}
.padding30{
    padding: var(--padding-30);
}
.padding40{
    padding: var(--padding-40);
}
.padding50{
    padding: var(--padding-50);
}

.center{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}
.textCentered{
    text-align: center;
}
.columns{
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    max-width: 1170px;
    gap: 7%
}
.rounded{
    border-radius: 30px;
}
.testimonials{
    margin-top: 20px;
}
#weAreProud{
    margin-top: 60px;
}
.cls-1 {
    stroke-miterlimit: 10;
}

.cls-1, .cls-2 {
    stroke-linecap: round;
    stroke-width: 14px;
}

.cls-1, .cls-2, .cls-3, .cls-4 {
    fill: none;
    stroke: #fff;
}

.cls-5 {
    fill: #fff;
}

.cls-2 {
    stroke-linejoin: round;
}

.cls-3 {
    stroke-miterlimit: 10;
    stroke-width: 14px;
}

.cls-4 {
    stroke-miterlimit: 10;
    stroke-width: 14px;
}
footer{
    background: var(--colour-dark-700);
}
.footerColumnWrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: solid 1px;
    padding-bottom: 30px;
}
footer ul{
    padding-inline-start: 0;
}
footer li {
    list-style: none;
    color: var(--colour-light-100);
    line-height: 200%;
}
footer li b{
    color: var(--colour-light-100);
}
footer li a{
    color: var(--colour-light-100);
    text-decoration: none;
}
footer li a:hover{
    text-decoration: underline;
}
.footerHeader{
    font-size: 16px;
}
#footerAddress{
    margin-bottom: 1rem;
}
#footerTrademark{
    padding: var(--padding-30) 0;
}

@media only screen and (max-width: 800px){
    .footerColumnWrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}
@media only screen and (max-width: 600px){
    .columns {
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
}
@media only screen  and (max-width: 450px){
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 28px;
    }
    h3{
        font-size: 22px;
    }
    h4{
        font-size: 18px;
    }
    #heroTextContainer{
        justify-items: center;
    }
    .footerColumnWrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}