@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
html, body {
    height: 100%;
    width: 100%;
    /*font-family: 'Poppins', sans-serif; */
    font-family: sohne-var, "Helvetica Neue", Arial, sans-serif;
    color: #222;
    background-color: #ffffff;
    padding: 0px;
    font-size: medium;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0px auto;
    scroll-behavior: smooth;
}

canvas {
    width: 100%;
    height: 100%;
}

#greybg {
    background-color: #F6F9FC;
}

/**

Main content

**/
#maintitle {
    font-size: 40px;
    font-weight: 500;
    display: block;
    color: rgb(3, 0, 58);
    text-align: center;
    margin-top: 2%;
}

#paragraph {
    color: rgb(89, 110, 131);
    font-size: 17px;
    display: block;
    margin-top: 2%;
}

/*
footer
*/

footer {
    background-color: #F6F9FC;
    color:  rgb(120, 138, 156);
    padding-top: 0.2rem;
    padding-bottom: 0.1rem;
}

hr.light {
    border-top: 1px solid #d5d5d5;
    width: 75%;
}

hr.light-100 {
    border-top: 1px solid #d5d5d5;
    width: 100%;
}

.col-xs-6 img {
    width: 150px;
    margin-left: -145px;
    overflow: hidden;
    align-content: left;
}

.col-xs-6 h5 {
    text-align: left;
    color:  rgb(113, 128, 143);
    font-size: 1.1em;
}

.col-xs-6 p {
    padding-top: 0;
    text-align: left;
    line-height: 15px;
    color:  rgb(120, 138, 156);
    font-size: 0.95em;
}

.col-xs-6 a {
    text-align: left;
    color: rgb(120, 138, 156);
    font-size: 0.95em;
}

.col-xs-6 hr {
    margin-left: 0%;
}

.col-12 {
    margin-top: -30px;
}


/*---Media Queries --*/

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    body {
        text-align: center;
    }
    #navlogo {
        max-width: 175px;
        margin-left: 5%;
    }

}


/*---Firefox Bug Fix --*/

.carousel-item {
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}


/*--- Bootstrap Padding Fix --*/

[class*="col-"] {
    padding: 1rem;
}


/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/