body {
    margin: 0;
    background-color: white;
    margin-bottom: 100px;
}
.blue-header-width {
    width: 100%;
    background-color: rgb(0,60,113);
}
.hero-width {
    width: 100%;
    height: 500px;
    background-color: white;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    padding: 10px;
    background-image: url(https://www.bcit.ca/wp-content/uploads/2020/10/New-Media-Web-Development-Diploma.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}
.top-header {
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
}
.topbutton {
    display: flex;
    justify-content: space-between; 
    transition-duration: 0.15s;
    text-decoration: none;
    color: white;
    padding: 12px 7px 12px 7px;
    font-family: Geo Medium;
    font-size: 1em;
}
@font-face {
    font-family: Geo Medium;
    src: url(Geogrotesque-Medium.ttf);
}
.topbutton:hover {
    background-color: yellow;
    color: rgb(0,60,113);
}
.bcit-header {
    font-weight: 600;
    font-size: 1em;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    align-items: center;
}
.bcit-header-left {
    gap: 25px;
    display: flex;
    align-items: center;
}
.bcit-header-right {
    display: inline-block;
    position: relative;
    align-items: center;
}
.search-box {
    padding: 20px;
    padding-right: 80px;
    width: 350px;
    background-color: rgb(250, 250, 250);
    border: 1px solid rgb(225, 225, 225);
    font-size: 15pt;;
    color: rgb(0,60,113);
}
.search-box:focus {
    border: 1px solid blue;
    outline: none;
}
.header-search-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    border: 0;
    padding: 20px;
    background-color: transparent;
    transition: all 0.15s ease-in-out;
    color: rgb(0, 136, 255);
    cursor: pointer;
}
.header-search-icon:hover {
    color: black;
}
.header-item {
    color: rgb(0,60,113);
    text-transform: capitalize;
    text-decoration: none;
    padding: 0 0 8px 0;
    border-bottom: 2px solid transparent
}
.header-item:hover {
    border-bottom: 2px solid yellow;
    color: #296CF6;
}
.nunito-sans {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
}
.nunito-sans-light {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "wdth" 100,
      "YTLC" 500;
}
.logo {
    width: 80%;
    max-width: 100px;
    height: 100px;
}
.bottom-header {
    padding: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: white;
}
.bottom-nav {
    text-decoration: none;
    font-size: 0.8em;
    color: white;
}
.bcit-hero {
    color: white;
}
.bcit-title {
    padding-top: 100px;
    font-size: 1.6em;
    line-height: 1;
    display: flex;
    align-items: center;
}
.bcit-sub {
    font-size: 1.2em;
}
.main-content {
    padding: 20px;
}
.main-content h1 {
    font-size: 2.2em;
    color: rgb(0,60,113);
}
.main-content h2 {
    font-size: 2.2em;
    color: #5A5A5A;
}
.main-content p {
    line-height: 2;
}
.main-content li {
    padding: 8px;
}
.main-content img {
    padding: 20px;
}









