@import url("https://use.typekit.net/amc4zwc.css");
*, ::before, ::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  cursor: default;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Oxygen, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.15;
  -moz-tab-size: 4;
  tab-size: 4;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  height: 0;
  overflow: visible;
}

main {
  display: block;
}

nav ol, nav ul {
  list-style: none;
}

pre {
  font-family: Menlo, Consolas, Roboto Mono, Ubuntu Monospace, Oxygen Mono, Liberation Mono, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: Menlo, Consolas, Roboto Mono, Ubuntu Monospace, Oxygen Mono, Liberation Mono, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input, select {
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

input {
  overflow: visible;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  margin: 0;
  overflow: auto;
  resize: vertical;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

details {
  display: block;
}

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled], [disabled] {
  cursor: disabled;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/* COLORS */
/* FONTS */
h1 {
  font-family: rockwell, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
}

h2,
.cardHeading {
  font-family: rockwell, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
}

h3 {
  font-family: rockwell, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

body {
  font-family: roboto-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 1333px;
  margin: auto;
}

i,
cite {
  font-family: roboto-condensed, sans-serif;
  font-weight: 400;
  font-style: italic;
}

b,
strong {
  font-family: roboto-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.boldItal {
  font-family: roboto-condensed, sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* COMPONENTS */
/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #FFF;
}

.nav-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-item {
  margin-left: 0.5rem;
}

/* NAV MEDIA QUERY */
@media only screen and (max-width: 940px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    justify-content: space-around;
    background-color: #085915;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* END NAV */
#hero {
  width: 100%;
  height: auto;
  max-height: 40vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero h1 {
  margin: auto;
  text-align: center;
  font-size: 3rem;
  width: 75%;
  color: #fff;
  text-shadow: 1px 1px 7px #000;
}

header {
  background-color: #085915;
  height: 70px;
  padding: 1rem;
}

.contactIcon {
  width: 50px;
  height: 50px;
  margin: 0px 0.5rem;
}

.gobinLogo {
  height: 50px;
  width: auto;
}

nav ul {
  list-style-type: none;
  display: inline-block;
}

nav li {
  list-style-type: underline;
  display: inline-block;
  color: #fff;
  padding-right: 0.5rem;
  background-color: #085915;
}
nav li a {
  text-decoration: none;
  color: #fff;
  transition: 500ms ease-in-out;
}
nav li a:hover {
  border-bottom: 1px dotted #b3f8bd;
  color: #b3f8bd;
  transition: 200ms ease-in-out;
}

.transBox {
  color: srgb 0.094 0.459 0.149/0.72;
  padding: 1rem;
  font-family: rockwell, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}

.greenGradient {
  background: linear-gradient(0.5turn, #63ba70, #085915);
  padding: 1.5rem 3rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  width: 800px;
  margin: 1.5rem auto;
}
.greenGradient h2 {
  font-size: 1.75rem;
  text-align: center;
}
.greenGradient p {
  font-size: 1.25rem;
  font-weight: 700;
}

.ggp {
  width: 600px;
  margin: auto;
}

.goal {
  background-image: url(/img/noc-laptop.jpg);
  background-size: cover;
  height: 400px;
}

aside {
  background-color: rgba(8, 89, 21, 0.85);
  color: #fff;
  padding: 2rem;
  height: 300px;
  width: 400px;
  font-size: 1.5rem;
  line-height: 2rem;
  position: relative;
  top: 1rem;
  left: 1rem;
  border: 5px ridge gray;
}

.cards {
  width: 600px;
  margin: 1.5rem auto;
  border-top: 2px dotted #1b0c78;
}

.imageCardRight {
  margin: 1.5rem auto;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #1b0c78;
  display: grid;
  grid-template-columns: "1fr 1fr";
  grid-template-areas: "cardHeading cardHeading" "textLeft imageRight";
}

.imageCardLeft {
  margin: 1.5rem auto;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #1b0c78;
  display: grid;
  grid-template-columns: "1fr 1fr";
  grid-template-areas: "cardHeading cardHeading" "imageLeft textRight";
}

.cardHeading {
  grid-area: cardHeading;
  font-size: 2rem;
  text-align: center;
  color: #085915;
  margin-bottom: 1.2rem;
}

.imageRight {
  grid-area: imageRight;
}

.textLeft {
  grid-area: textLeft;
}

.imageLeft {
  grid-area: imageLeft;
}

.textRight {
  grid-area: textRight;
}

.textRight,
.textLeft {
  font-size: 1.25rem;
  padding: 0.5rem;
}

.ticTac {
  width: 300px;
  height: 300px;
}

footer {
  background: linear-gradient(0turn, #5669cb, #1b0c78);
  color: #fff;
  padding: 0.5rem 1rem;
  height: fit-content(20em);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "slogan slogan" "contact resources";
}
footer #footerLogo {
  height: auto;
  width: 24%;
}
footer h2 {
  text-align: center;
  text-shadow: 1px 1px 7px #000;
  font-size: 2rem;
}

#slogan {
  grid-area: slogan;
}

#contact {
  grid-area: contact;
}
#contact a:link,
#contact a:visited {
  color: #eee;
  text-decoration: none;
}
#contact a:hover {
  color: #eee;
  text-decoration: underline;
}

#resources {
  grid-area: resources;
  border-left: 2px dotted white;
}
#resources img {
  width: 20%;
  height: auto;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 420px) {
  .contactIcon {
    height: 40px;
    width: auto;
  }

  .gobinLogo {
    height: 40px;
    width: auto;
  }

  footer h3 {
    font-size: 0.75rem;
  }

  footer #footerLogo {
    width: 50%;
  }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .cards {
    width: 90%;
  }

  .imageCardRight {
    margin: 1.5rem auto;
    padding-bottom: 1rem;
    border-bottom: 2px dotted #1b0c78;
    display: grid;
    grid-template-columns: "1fr";
    grid-template-areas: "cardHeading" "imageRight" "textLeft";
  }

  .imageCardLeft {
    margin: 1.5rem auto;
    padding-bottom: 1rem;
    border-bottom: 2px dotted #1b0c78;
    display: grid;
    grid-template-columns: "1fr";
    grid-template-areas: "cardHeading" "imageLeft" "textRight";
  }

  .ticTac {
    display: block;
    margin: auto;
    width: 85%;
    height: auto;
  }
}

/*# sourceMappingURL=gobin.css.map */
