@charset "UTF-8";
/* CSS Document */
h1 {
	text-align: center;
	color: white;
  	text-shadow:
    	-1px -1px 0 black,
     	1px -1px 0 black,
    	-1px  1px 0 black,
     	1px  1px 0 black;
	font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

p {
    margin: 0px 50px;
    text-align: left;
    color: #FFFFFF;
}

h3 {
	margin: 0px 50px;
    text-align: left;
    color: #000000;
}

h4 {
    margin: 0px 75px;
    text-align: left;
    color: #000000;
    font-weight: normal;
}

.pdf-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Adjust ratio for height; 4:3 = 75% */
    height: 0;
    overflow: hidden;
  }

  .pdf-container iframe {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    border: none;
  }

nav {
			position: fixed;
			margin: 0;
            padding: 0;

            /* make it look decent enough */
            color: #cdcdcd;
            font-family: "Avenir Next", "Avenir", sans-serif;
        }

        a,div {
            text-align: left;
			text-decoration: none;
            color: #232323;

            transition: color 0.3s ease;
        }

        a:hover {
            color: tomato;
        }

        #menuToggle {
            display: block;
            position: relative;
            top: 10px;
            left: 10px;

            z-index: 1;

            -webkit-user-select: none;
            user-select: none;
        }

        #menuToggle input {
            display: block;
            width: 40px;
            height: 32px;
            position: absolute;
            top: -7px;
            left: -5px;

            cursor: pointer;

            opacity: 0; /* hide this */
            z-index: 2; /* and place it over the hamburger */

            -webkit-touch-callout: none;
        }

        /*
         * Just a quick hamburger
         */
        #menuToggle span {
            display: block;
            width: 33px;
            height: 4px;
            margin-bottom: 5px;
            position: relative;

            background: #232323;
            border-radius: 3px;

            z-index: 1;

            transform-origin: 4px 0px;

            transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            opacity 0.55s ease;
        }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

        /*
         * Transform all the slices of hamburger
         * into a crossmark.
         */
        #menuToggle input:checked ~ span {
            opacity: 1;
            transform: rotate(45deg) translate(-2px, -1px);
            background: #232323;
        }

        /*
         * But let's hide the middle one.
         */
        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        /*
         * Ohyeah and the last one should go the other direction
         */
        #menuToggle input:checked ~ span:nth-last-child(2) {
            transform: rotate(-45deg) translate(0, -1px);
        }

        /*
         * Make this absolute positioned
         * at the top left of the screen
         */
        #menu {
            position: absolute;
            width: 280px;
            margin: -100px 0 0 -50px;
            padding: 50px;
            padding-top: 125px;

            background: #ededed;
            list-style-type: none;
            -webkit-font-smoothing: antialiased;
            /* to stop flickering of text in safari */

            transform-origin: 0% 0%;
            transform: translate(-100%, 0);

            transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        }

        #menu li {
			text-align: left;
            padding: 4px 0;
            font-size: 18px;
        }

        /*
         * And let's slide it in from the left
         */
        #menuToggle input:checked ~ ul {
            transform: none;
        }


        .onclick-menu:focus {
            /* clicking on label should toggle the menu */
            pointer-events: none;
        }

        .onclick-menu:focus-within .onclick-menu-content {
            /*  opacity is 1 in opened state (see below) */
            opacity: 1;
            visibility: visible;
            display: inherit;
            /* don't let pointer-events affect descendant elements */
            pointer-events: auto;
        }

        .onclick-menu-content {
           /* use opacity to fake immediate toggle */
            display: none;
            opacity: 0;
            visibility: hidden;
            transition: visibility 0.5s;
        }
        .onclick-menu-content li{
            list-style: none;
        }

*{
    margin: 0;
    padding: 0;
    color: #000000;
    box-sizing: border-box;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    text-align: center;
}
.content1{
  position: relative;
  margin: 130px auto;
  text-align: center;
  padding: 0 20px;
}
.content1 .text{
  font-size: 2.5rem;
  font-weight: 600;
  color: #202020;
}
.content1 .p{
  font-size: 2.1875rem;
  font-weight: 600;
  color: #202020;
}
footer{
  bottom: 0px;
  width: 100%;
  background: #aaaaaa;
	z-index: -1;
}
.main-content{
  display: flex;
}
.main-content .box{
  flex-basis: 50%;
  padding: 10px 20px;
}
.box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}
.box .content{
    margin: 20px 0 0 0;
    position: relative;
    text-align: center;
}
@media screen and (max-width: 900px) {
  footer{
    position: relative;
    bottom: 0px;
  }
  .main-content{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box{
    margin: 5px 0;
  }
}
