html
{
    background: linear-gradient(rgba(240, 240, 240, 0.5),rgba(161,219,255,1));
    height: 100%;
    overflow: hidden;
}
@font-face {
    font-family: 'source_serif_proregular';
    src: url('sourceserifpro-regular1-webfont.woff2') format('woff2'),
         url('sourceserifpro-regular1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'source_serif_probold';
    src: url('sourceserifpro-bold1-webfont.woff2') format('woff2'),
         url('sourceserifpro-bold1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body
{
    margin: 0vw;
    padding: 0vw;
    height: 100%;
    -webkit-perspective: 1px;
    perspective: 1px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: scroll;
}
/*Header*/
#topLink{
    background: linear-gradient(rgba(240, 240, 240, 0.932) 20%, rgba(240, 240, 240, 0.747) 50%, rgba(240, 240, 240, 0.527) 80%, transparent);
    height: auto;
    width: 100%;
    position: sticky;
    top: 0vw;
    left: 0vw;
    z-index: 4;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: auto 25% 20%;
    grid-template-areas: 
    "a b c";
}
#logo {
    grid-area: a;
    justify-self: start;
    align-self: center;
    background-color: transparent;
    margin-left: 2vw;
    margin-top: 1vh;
}
#fileLink {
    font-size: 1.1vw;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    grid-area: b;
    justify-self: end;
    align-self: center;
    color: black;
    margin-right: 3vw;
}
#fileLink a {
    text-decoration: none;
}
#payLink {
    font-size: 1.1vw;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    grid-area: c;
    justify-self: start;
    align-self: center;
    color: black;
    margin-left: 3vw;
}
#payLink a {
    text-decoration: none;
}
.btnTop {
    border-radius: 10px;
    font-size: 1.2vw;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    background: rgba(161,219,255);
    border-style: solid;
    border-width: 1px;
    padding: 0.2vw;
    color: #2c5d95;
    border-color: black;
    transition-duration: 0.5s;
}
.btnTop:hover {
    color: rgba(255, 255, 255);
}
/*End Header*/
/*Box for Title*/
#title {
    margin-left: auto;
    margin-right: auto;
}
.box {
    height: 70vh;
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    border: 0.4vw inset rgb(124, 187, 226);
}
.trans {
    background-color: transparent;
}
/*Title*/
/*Grid*/
#animWords {
    position: absolute;
    top: 16vh;
    display: grid;
    height: 66vh;
    width: 68vw;
    grid-template-rows: 33.3% 33.3% 33.3%;
    grid-template-areas: 
    "a"
    "b"
    "c";
}
/*End Grid*/
/*Words*/
#Illinois {
    grid-area: a;
    align-self: flex-end;
    margin-left: 24.6vw;
}
#Illinois img {
    opacity: 0;
    -webkit-animation: FadeInA 2s forwards;
    -o-animation: FadeInA 2s forwards;
    animation: FadeInA 2s forwards;
    animation-delay: 3s;
}
.A {
    animation: animA 2s forwards 3.5s;
}
.blockA {
    width: 0;
    height: 9.5vh;
    margin-top: -12.5vh;
    position: absolute;
    background: #151b26;
    animation: blockAnimA 3s cubic-bezier(0.74, 0.06, 0.4, 0.92) 0.5s;
}
#Surgical {
    grid-area: b;
    justify-self: end;
    margin-top: 5vh;
    margin-right: 22vw;
}
#Surgical img {
    opacity: 0;
    -webkit-animation: FadeInB 2s forwards;
    -o-animation: FadeInB 2s forwards;
    animation: FadeInB 2s forwards;
    animation-delay: 3.5s;
}
.B {
    animation: animB 2s forwards 4s;
}
.blockB {
    width: 0;
    height: 11vh;
    margin-top: -12.5vh;
    position: absolute;
    background: #7eb6d7;
    animation: blockAnimB 3s cubic-bezier(0.74, 0.06, 0.4, 0.92) 1s;
}
#Specialists {
    grid-area: c;
    align-self: center;
    margin-left: 20vw;
    margin-top: -3vh;
}
#Specialists img {
    opacity: 0;
    -webkit-animation: FadeInC 2s forwards;
    -o-animation: FadeInC 2s forwards;
    animation: FadeInC 2s forwards;
    animation-delay: 4s;
}
.C {
    animation: animC 2s forwards 4.5s;
}
.blockC {
    width: 0;
    height: 11vh;
    margin-top: -12.5vh;
    position: absolute;
    background: #59aad9;
    animation: blockAnimC 3s cubic-bezier(0.74, 0.06, 0.4, 0.92) 1.5s;
}
#Ltd {
    text-align: center;
    margin-top: -6vh;
    margin-left: 60vw;
}
#Ltd img {
    opacity: 0;
    -webkit-animation: FadeInD 2s forwards;
    -o-animation: FadeInD 2s forwards;
    animation: FadeInD 2s forwards;
    animation-delay: 8s;
}
/*End Words*/
/*Title Animations*/
/*Text Movements*/
@keyframes animA{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-18.5vw);
    }
}
@keyframes animB{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(22vw);
    }
}
@keyframes animC{
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(-17vw, 2vh);
    }
}
/*End Text Movements*/
/*Block Animations*/
@keyframes blockAnimA {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 45%;
        left: 0;
    }
    100% {
        width: 0;
        left: 45%;
    }
}
@keyframes blockAnimB {
    0% {
        width: 0;
        right: 0;
    }
    50% {
        width: 100%;
        right: 0;
    }
    100% {
        width: 0;
        right: 100%;
    }
}
@keyframes blockAnimC {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 61%;
        left: 0;
    }
    100% {
        width: 0;
        left: 61%;
    }
}
/*End Block Animations*/
/*Fade In Animations*/
@keyframes FadeInA {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeInB {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeInC {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeInD {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*End Fade In Animations*/
/*End Title*/
/*Logo*/
#logoA {
    display: grid;
    height: 70vh;
    grid-template-columns: 50% 50%;
    grid-template-areas: 
    "a b"
    "c d";
}
/*Top Left Leaf*/
#part1 {
    grid-area: a;
    margin-top: 12vh;
}
#Layer_1a {
    stroke-dasharray: 670px;
    stroke-dashoffset: 670px;
}
.cls-2a {
    fill: none;
    stroke: #151b26;
    animation: anim_a 4s ease forwards 4s;
}
/*End Top Left Leaf*/
/*Top Right Leaf*/
#part2 {
    grid-area: b;
    margin-top: 12vh;
}
#Layer_1b {
    stroke-dasharray: 670px;
    stroke-dashoffset: 670px;
}
.cls-2b {
    fill: none;
    stroke: #151b26;
    animation: anim_b 4s ease forwards 5s;
}
/*End Top Right Leaf*/
/*Bottom Left Leaf*/
#part3 {
    grid-area: c;
    margin-top: -6vh;
}
#Layer_1c {
    stroke-dasharray: 870px;
    stroke-dashoffset: 870px;
}
.cls-1c {
    fill: none; 
    stroke: #151b26;
    animation: anim_c 4s ease forwards 5.5s;
}
/*End Bottom Left Leaf*/
/*Bottom Right Leaf*/
#part4 {
    grid-area: d;
    margin-top: -6vh;
}
#Layer_1d {
    stroke-dasharray: 870px;
    stroke-dashoffset: 870px;
}
.cls-2d {
    fill: none;
    stroke: #151b26;
    animation: anim_d 4s ease forwards 6.5s;
}
/*End Bottom Right Leaf*/
/*Leaf Animations*/
@keyframes anim_a {
    from {
        fill: transparent;
    }
    to {
        stroke-dashoffset: 0;
        fill: #59aad9;
    }
}
@keyframes anim_b {
    from {
        fill: transparent;
    }
    to {
        stroke-dashoffset: 0;
        fill: #d4e1ee;
    }
}
@keyframes anim_c {
    from {
        fill: transparent;
    }
    to {
        stroke-dashoffset: 0;
        fill: #161a26;
    }
}
@keyframes anim_d {
    from {
        fill: transparent;
    }
    to {
        stroke-dashoffset: 0;
        fill: #7eb6d7;
    }
}
/*End Leaf Animations*/
/*End Logo*/
/*End Box*/
/*Downloads*/
#downloads {
    margin-top: 15vh;
    height: 65%;
    background-color: transparent;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 50% 50%;
    grid-template-areas: 
    "a b";
}
#leftDownloads {
    grid-area: a;
    justify-self: center;
    align-self: flex-start;
    text-align: center;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    margin-left: 15vw;
}
#leftDownloads h1 {
    font-size: 2.8vw;
}
#leftDownloads h2 {
    font-size: 1.5vw;
    margin-top: 15vh;
}
#leftDownloads button {
    font-size: 1vw;
    margin-top: 4vh;
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
}
.button1 {
    margin-top: 4vh;
    width: 14vw;
    height: 6.5vh;
    color: white;
    border: 2px solid #555555;
    background-color: #555555;
    border-radius: 12px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.button1:hover {
    background-color: transparent;
    color: black;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
#rightImage {
    grid-area: b;
    justify-self: center;
    align-self: flex-start;
    margin-top: 4vh;
}
/*End Downloads*/
/*Companies*/
/*ISS Logo*/
#ISS {
    text-align: center;
}
/*End ISS Logo*/
#companies {
    height: 55%;
    background-color: transparent;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 50% 50%;
    grid-template-areas: 
    "a b";
    margin-top: 20vh;
}
#PVC {
    grid-area: a;
    justify-self: center;
    align-self: flex-start;
    margin-left: 1vw;
    margin-top: 1.1vh;
}
#PVC img {
    margin-left: 17.5vw;
}
#PVCText {
    margin-top: 7.2vh;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}
#PVC h2 {
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    text-align: center;
}
#PVC p {
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
    text-align: center;
}
#Plastics {
    grid-area: b;
    justify-self: center;
    align-self: flex-start;
    margin-left: -2vw;
}
#Plastics img {
    margin-left: 21vw;
}
#PlasticsText {
    margin-top: 7vh;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
#Plastics h2 {
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
    text-align: center;
    margin-left: -1.5vw;
}
#Plastics p {
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
    text-align: center;
}
/*More Info*/
#moreInfo {
    text-align: center;
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
}
#moreInfo button {
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
    font-size: 1vw;
}
.button2 {
    width: 12vw;
    height: 5.5vh;
    color: black;
    border: 2px solid #555555;
    background-color: transparent;
    border-radius: 12px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.button2:hover {
    background-color: #555555;
    color: white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*End More Info*/
/*Surprise Act Button*/
#surpriseAct {
    margin-top: 7vh;
    text-align: center;
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
}
#surpriseAct button {
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
    font-size: 1vw;
}
.button69 {
    width: 12vw;
    height: 5.5vh;
    color: black;
    border: 2px solid #555555;
    background-color: transparent;
    border-radius: 12px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.button69:hover {
    background-color: #555555;
    color: white;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*End Surprise Act Button*/
/*End Companies*/
/*Footer*/
#endbg {
    background: linear-gradient(rgba(161,219,255,0.1),rgba(240, 240, 240, 0.6));
    margin-top: 18vh;
}
#footer {
    padding: 1%;
    height: auto;
    width: 100%;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 32.3% 33.3% 33.3%;
    grid-template-areas: 
    "a b c";
}
#home {
    grid-area: a;
    justify-self: center;
    align-self: flex-start;
    text-align: center;
}
#home button {
    letter-spacing: 1px;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
}
#download {
    grid-area: b;
    justify-self: center;
    align-self: flex-start;
    text-align: center;
}
#download button{
    letter-spacing: 1px;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
}
#staff {
    grid-area: c;
    justify-self: center;
    align-self: flex-start;
    text-align: center;
}
#staff button {
    letter-spacing: 1px;
    font-family: 'source_serif_probold';
    font-weight: normal;
    font-style: normal;
}
.button3 {
    width: 10vw;
    height: 4.5vh;
    color: white;
    border: 2px solid #555555;
    background-color: #555555;
    border-radius: 12px;
    transition-duration: 0.5s;
    cursor: pointer;
}
.button3:hover {
    background-color: rgba(161,219,255,0.4);
    color: black;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*Copyright*/
#copyright {
    font-size: 0.8vw;
    padding: 1%;
    text-align: center;
    font-family: 'source_serif_proregular';
    font-weight: normal;
    font-style: normal;
}
/*End Copyright*/
/*End Footer*/
/*Mobile*/
@media screen and (orientation: portrait) {
    /*Header*/
    #logo img {
        height: 120px;
        width: auto;
    }
    .btnTop {
        font-size: 4.2vw;
        width: 28vw;
        height: 5vh;
        margin-right: 2vw;
    }
    /*End Header*/
    /*Title*/
    /*Blocks*/
    .blockA {
        display: none;
    }
    .blockB {
        display: none;
    }
    .blockC {
        display: none;
    }
    /*End Blocks*/
    /*Words Animation*/
    #animWords {
        top: 12vh;
        width: 70vw;
        height: 36vh;
    }
    #Illinois {
        align-self: center;
        justify-self: right;
        margin-left: 0;
    }
    #Illinois img {
        animation-delay: 0s;
    }
    .A {
        animation: animA 2s forwards 0.5s;
    }
    #Surgical {
        align-self: center;
        justify-self: start;
        margin-top: 0;
        margin-right: 0;
    }
    #Surgical img {
        animation-delay: 0s;
    }
    .B {
        animation: animB 2s forwards 1s;
    }
    #Specialists {
        align-self: flex-start;
        justify-self: right;
        margin-left: 0;
        margin-top: 0;
    }
    #Specialists img {
        animation-delay: 0s;
    }
    .C {
        animation: animC 2s forwards 1.5s;
    }
    #Ltd {
        text-align: center;
        margin-top: -4vh;
        margin-left: 46vw;
    }
    #Ltd img {
        animation-delay: 5s;
    }
    /*End Words Animation*/
    /*Text Movements*/
    @keyframes animA{
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-18.5vw);
        }
    }
    @keyframes animB{
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(18vw);
        }
    }
    @keyframes animC{
        0% {
            transform: translate (0);
        }
        100% {
            transform: translate(-9vw, 3vh);
        }
    }
    /*End Text Movements*/
    /*Logo Animation*/
    /*Top Left Leaf*/
    #part1 {
        transform: scale(2.5) translate(-10vw, 18vh);
    }
    .cls-2a {
        fill: none;
        stroke: #151b26;
        animation: anim_a 4s ease forwards 1s;
    }
    /*End Top Left Leaf*/
    /*Top Right Leaf*/
    #part2 {
        transform: scale(2.5) translate(11vw, 18vh);
    }
    .cls-2b {
        fill: none;
        stroke: #151b26;
        animation: anim_b 4s ease forwards 2s;
    }
    /*End Top Right Leaf*/
    /*Bottom Left Leaf*/
    #part3 {
        transform: scale(2.5) translate(-10vw, 14.5vh);
    }
    .cls-1c {
        fill: none; 
        stroke: #151b26;
        animation: anim_c 4s ease forwards 2.5s;
    }
    /*End Bottom Left Leaf*/
    /*Bottom Right Leaf*/
    #part4 {
        transform: scale(2.5) translate(11vw, 14.5vh);
    }
    .cls-2d {
        fill: none;
        stroke: #151b26;
        animation: anim_d 4s ease forwards 3s;
    }
    /*End Bottom Right Leaf*/
    /*End Logo Animation*/
    /*End Title*/
    /*Downloads*/
    #downloads {
        margin-top: 10vh;
        height: 42%;
    }
    #leftDownloads h1 {
        font-size: 6.5vw;
    }
    #leftDownloads h2 {
        margin-top: 4vh;
        font-size: 3.5vw;
    }
    #leftDownloads button {
        font-size: 3.8vw;
        margin-top: 2vh;
    }
    .button1 {
        width: 30vw;
        height: 5.5vh;
    }
    #rightImage {
        margin-top: 2vh;
    }
    #rightImage img {
        height: 400px;
    }
    /*End Downloads*/
    /*Logo*/
    #ISS img {
        height: 500px;
    }
    /*End Logo*/
    /*Companies*/
    #companies {
        height: 110%;
        margin-top: 15vh;
        grid-template-areas: 
        "a a"
        "b b";
    }
    /*PVC*/
    #PVC {
        margin-top: 0;
    }
    #PVC img {
        height: 250px;
        margin-left: 22vw;
    }
    #PVCText {
        font-size: 3.8vw;
        width: 85%;
    }
    /*End PVC*/
    /*CPS*/
    #Plastics {
        margin-left: 1vw;
    }
    #Plastics img {
        margin-top: 0vh;
        height: 320px;
        margin-left: 32vw;
    }
    #PlasticsText {
        font-size: 3.8vw;
        width: 85%;
    }
    /*End CPS*/
    /*End Companies*/
    /*More Info*/
    #moreInfo {
        font-size: 3.5vw;
        margin-top: 10vh;
    }
    #moreInfo button {
        font-size: 5vw;
    }
    .button2 {
        width: 28vw;
        height: 4.5vh;
    }
    /*End More Info*/
    #endbg {
        margin-top: 10vh;
    }
    /*Footer*/
    .button3 {
        width: 25vw;
        font-size: 3.5vw;
    }
    #copyright {
        font-size: 2.4vw;
        margin-bottom: 3vh;
    }
    /*End Footer*/
}
/*End Mobile*/