/* the '*,' means all elements */
/* the before and after are pseudo elements (::), they will apply to before and after
all the elements.  In this case everything will be a border box. So border-box only
has to be declared once.*/
/* The size of a border-box will always include any border or padding you create. So if
you specify a size it will shrink the content to keep your border and padding size. */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Margin is outside your boxes (the space between different boxes).
  Padding is inside your box (the space between the border and the box content). */
}

:root {
  --blue-color: #0995A8;
  --green-color: #398b39;
  --light-color: #f9fafb;
  --dark-color: #272d35;
}

html,
body {
  font-family: 'Roboto', sans-serif;/*use Open Sans, sans-serif is the backup*/
  line-height: 1.6;
  scroll-behavior: smooth;
  /* if you click somewhere in a scroll box it will 
  scroll there instead of jumping straight to it */
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  /* This will scale down to fit but it won't scale up past the max width of the image */
  /* Use max widths so that things don't stretch too much on big screens and look weird. */
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  /* REM is relative to the root element (default is 16px). REM is adaptive (using a)
  specific pixel size is not. */
}

.container-sm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  /* Inline-block will not jump to a new line. However, if the button has some height 
  above or below its line then this will keep that (the button can extend above and below
  its line) */
  padding: 1.3rem 2.3rem;
  border: 1px solid var(--green-color);
  border-radius: 32px;
  background: var(--green-color);
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s;
  /* Button will gradually (0.2s) change colour when you hover over it. */
}

.btn:hover {
  background: var(--green-color);
  color: #fff;
  border-color: #fff;
}

.custom-shape-divider-bottom-1737330700 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1737330700 svg {
  position: relative;
  display: block;
  width: calc(114% + 1.3px);
  height: 102px;
}

.custom-shape-divider-bottom-1737330700 .shape-fill {
  fill: #FFFFFF;
}
/* Text Classes */
.text-primary {
  color: var(--green-color);
}

.text-secondary {
  color: var(--green-color);
}

.section {
  margin: 4rem 0;
}

/* Section Header */
.section-header {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--dark-color);
}

.heading-border {
  width: 64px;
  height: 4px;
  background: var(--green-color);
  margin: 0 auto 2rem;
}


/* Navbar */
.navbar {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.5s ease-in-out; /*this makes the background-colour/
  /*transition gradual when scrolling (the blur is instant, the colour change is gradual)*/
}

.navbar.navbar-scroll {
  background-color: #398b39;
  backdrop-filter: blur(10px);
}

.navbar-flex {/*flex containers will be the logo and the ul menu items*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  /* This is the height of the logo in the top left of the nav bar */
  /* width: 81px;
  height: 32px; */
  width: 200px;
  height: 80px;
}

.navbar .main-menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
}

.navbar a {
  color: #fff;
}

.navbar a:hover {
  color: var(--dark-color);
  color: #FFFF00;
  color: #e4e0d3;
}

.navbar i {
  font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.navbar .mobile-menu-toggle {
  color: #fff;
  cursor: pointer;
}

.navbar .mobile-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.navbar .mobile-menu-items.active {
  transform: translateX(0);
}

.navbar .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  background: #000 url('../images/tree_moss.jpg') center center/cover
    no-repeat;
  padding: 11.5rem 2rem 8rem;
  color: #fff;
  /* color:#0995A8; */
  /* color:#c674c6; */
  /* color:#cf7d0e; */
  /* color:#398b39; */
  overflow-x: hidden;
  position: relative;
}

.hero .hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding-bottom: 8rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  /*background-color: #398b3980;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture*/
}

.greenback h1 {
  background-color: #398b3980;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture. The '80' on the end adds opacity.*/ 
}

.blueback h1 {
  background-color: #0995A880;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture. The '80' on the end adds opacity.*/ 
}

.greyback h1 {
  background-color: #b2bcbd80;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture. The '80' on the end adds opacity.*/ 
}

.drkgreenback h1 {
  background-color: #061d0680;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture. The '80' on the end adds opacity.*/ 
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
  background-color: #398b3980;/*This puts a transparent rectangle 
  behind so the text stands out against the BG picture*/
  text-align: center;/*I had to do this because the transparent rectangle
  covers the entire line, it looked funny with the text over to the left*/
}

.hero img {
  width: 100%;
  margin-right: -100px;
}

.hero .frame-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.hikes {
  background: #000 url('../images/osprey.jpg') center center/cover
}

.hikeslist ul {
text-align: left;
}

.birds {
  background: #000 url('../images/kestrel.jpg') bottom center/cover
}

.birdslist ul {
text-align: left;
}

.science {
  background: #000 url('../images/ladybugs.jpg') bottom center/cover
}

.sciencelist ul {
text-align: left;
}

.speakers {
  background: #000 url('../images/chipmunk.jpg') center center/cover
}

.about {
  background: #000 url('../images/squirrel2.jpg') center center/cover
}

.publications {
  background: #000 url('../images/bluebird.jpg') center center/cover
}

.gallery {
  background: #000 url('../images/mushrooms.jpg') center center/cover
}

.join {
  background: #000 url('../images/frog_butterfly.jpg') center center/cover
}

.contact {
  background: #000 url('../images/crows.jpg') center center/cover
}

/* Learn Topics */
.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.topic img {
  transition: transform 0.3s;
}

.topic img:hover {
  transform: scale(1.1);
}

.topic h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0;
}


/* Info Section */
.info-container {
  background: url('../images/frog_butterfly.jpg') top center/cover no-repeat;
  display: flex;
}

.info-content {
  background-color: var(--green-color);
  color: #fff;
  flex: 1;  
  padding: 4rem;
}

.info-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.info-content ul li {
  font-size: 1.2rem;
  line-height: 2;
}

.info-content i {
  margin-right: 0.5rem;
  color: var(--green-color);
}

.info-left {
  width: 50%;
}

/*Bird Section*/
.bird-container {
  background: url('../images/kestrel.jpg') bottom left/cover no-repeat;
  display: flex;
}

.bird-content {
  background-color: var(--blue-color);
  color: #fff;
  flex: 1;  
  padding: 4rem;
}

.bird-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.bird-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.bird-left {
  width: 50%;
}

/*Science Section*/
.science-container {
  background: url('../images/ladybugs.jpg') center right/cover no-repeat;
  display: flex;
}

.science-content {
  background-color: var(--blue-color);
  color: #fff;
  flex: 1;  
  padding: 4rem;
}

.science-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.science-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.science-left {
  width: 50%;
}

/* Details */
.details .details-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.details img {
  width: 100%;
  max-width: 500px;
}

.details h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.details .heading-border {
  margin: 0;
}

.details p {
  margin: 1rem 0 2rem;
}


.details .reverse {
  flex-direction: row-reverse;
}

.details ul {
  margin-bottom: 2rem;
}

.details ul li {
  line-height: 2;
}

.details i {
  margin-right: 0.5rem;
}



/* Newsletter */
.newsletter {
  text-align: center;
  margin: 0 2rem;
}

.newsletter-flex {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--light-color);
  border: 1px solid #eee;
  padding: 4rem 2rem;
}

.newsletter h2 {
  font-size: 2rem;
  font-weight: 700;
}

.newsletter h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.newsletter p {
  max-width: 600px;
}

.newsletter input[type='email'] {
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  border-radius: 32px;
  width: 100%;
  max-width: 400px;
  margin: 1rem 0;
}

/* Social */
.social {
  background: var(--blue-color);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0;
}

.social a,
.footer a {
  color: #fff;
}

.social a:hover,
.footer a:hover {
  color: var(--green-color);
}

.social p {
  margin-bottom: 2rem;
}

.social .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: var(--blue-color);
  color: #fff;
  border-top: 1px solid #384653;
  padding: 0.5rem 2rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

/* Contact Form */
.contact-form p {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  font-family: inherit;
  font-size: medium;
  width: 100%;
  margin: 1.5rem 0;
  border: 1px solid #ccc;
  padding: 1.2rem 1rem;
}

.contact-form textarea {
  height: 200px;
}

.contact-form .btn {
  display: block;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  margin: 0 auto;
}


main div.newsletter_sidebar {
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  width: 200px;
  height: 70%;
  overflow-y: auto;
  float: left;
}
main div.box-content {
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  float: left;
  width: 50%;
}

main div.left {
  display: inline-block;
  padding: 0px 0px 0px 10px;
  width: 47%;
  vertical-align: top;
}

main h1 {
  font-size: 2em;
  text-align: center;
}
main h2 {
  margin: 0px 0px 0px 0px;
  padding: 10px 10px 10px 10px;
  font-size: 1.25em;
  border-top: 3px solid rgb(51,153,51);
  border-left: 3px solid rgb(51,153,51);
}

main div.centre {
  text-align: center;
}
main div p.centre {
  text-align: center;
}


main div p {
  text-align: justify;
}

main div.img-a1 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 253px;
  float: right;
}

main div.img-a2-1 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 195px;
  float: right;
}
main div.img-a2-2 {
margin: 10px 10px 10px 10px;
break-inside: avoid;
width: 143px;
float: left;
}
main div.img-a2-3 {
margin: 10px 10px 10px 10px;
break-inside: avoid;
width: 181px;
float: right;
}
main div.img-a2-4 {
margin: 10px auto 10px auto;
break-inside: avoid;
width: 113px;
}

main div.img-a3 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 128px;
  float: right;
}

main div.img-a3-2 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 189px;
  float: right;
}

main div.img-a3-3 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 163px;
  float: left;
}

main div.img-a4-1{
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 136px;
  float: left;
}

main div.img-a4-2 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 150px;
  float: right;
}

main div.img-a4-3 {
  margin: 0px 10px 0px 0px;
  break-inside: avoid;
  width: 151px;
  float: left;
}

main div.img-a5-1 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 90px;
  float: left;
}

main div.img-a5-2 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 115px;
  float: right;
}

main div.img-a5-3 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 101px;
  float: right;
}

main div.img-a5-4 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 117px;
  float: right;
}

main div.img-a6-1 {
margin: 10px 10px 10px 10px;
break-inside: avoid;
width: 159px;
float: left;
}

main div.img-a6-2 {
margin: 10px 10px 10px 10px;
break-inside: avoid;
width: 75px;
float: right;
}


main div.img-a7 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 125px;
  float: left;
}

main div.img-a7-1 {
  margin: 10px 10px 10px 10px;
  padding: 0px 0px 0px 0px;
  width: 120px;
  float: right;
}

main div.img-a7-2 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 126px;
  float: left;
}

main div.img-a7-3 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 127px;
  float: right;
}

main div.img-a7-4 {
margin: 0px 10px 0px 10px;
break-inside: avoid;
width: 126px;
float: left;
}

main div.img-a8-1 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 176px;
  float: left;
}

main div.img-a8-2 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 204px;
  float: right;
}

main div.img-a8-3 {
  margin: 0px 10px 0px 10px;
  break-inside: avoid;
  width: 140px;
  float: right;
}

main div.img-a9-1 {
  margin: 10px 10px 10px 0px;
  padding: 0px 0px 0px 0px;
  width: 106px;
  float: left;
}

main div.img-a9-2 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 97px;
  float: right;
}

main div.img-a9-3 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 101px;
  float: right;
}

main div.img-a9-4 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 198px;
  float: left;
}

main div.img-a10-1 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 128px;
  float: left;
}

main div.img-a10-2 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 128px;
float: right;
}

main div.img-a10-3 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 115px;
float: right;
}


main div.img-a11-1 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 145px;
  float: left;
}

main div.img-a11-2 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 138px;
  float: left;
}
main div.img-a11-3 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 146px;
  float: right;
}

main div.img-a12-1 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 114px; 
  float: right;
}

main div.img-a12-2 {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 142px;
  float: right;
}

main div.img-a14-box {
  margin: 10px auto 10px auto;
  width: 50%;
}
main div.img-a14-1 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 157px;
float: left;
}

main div.img-a14-2 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 131px;
float: left;
}

main div.img-a14-3 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 114px;
float: left;
}

main div.img-a14-4 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 127px;
float: left;
}

main div.img-a15-1 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 202px;
float: left;
}

main div.img-a16-1 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 136px;
float: left;
}

main div.img-a16-2 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 150px;
float: left;
}

main div.img-a16-3 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 139px;
float: right;
}


main div.img-a19-1 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 135px;
float: right;
}

main div.img-a19-2 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 112px;
float: left;
}

main div.img-a19-3 {
margin: 10px 10px 10px 0px;
break-inside: avoid;
width: 91px;
float: right;
}

main div.img-qq {
  margin: 10px 10px 10px 0px;
  break-inside: avoid;
  width: 149px;
  float: right;
}



main div.quiz-1{
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-quiz-1 {
  margin: 0px 40px 0px 0px;
  break-inside: avoid;
  width: 121px;
  float: left;
}
main div.img-qa-1 {
  margin: 10px 50px 10px 0px;
  padding: 0px 0px 0px 0px;
  width: 121px;
  float: left;
}


main div.quiz-2 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-quiz-2 {
  margin: 0px 10px 0px 30px;
  break-inside: avoid;
  width: 98px;
  
}
main div.img-qa-2 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 130px;
  float: left;
}


main div.quiz-3 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-quiz-3 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
  width: 173px;
  float: left;
}
main div.img-qa-3 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 173px;
  float: left;
}


main div.quiz-4 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-quiz-4 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
  width: 133px;
  float: right;
}
main div.img-qa-4 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 133px;
  float: left;
}


main div.quiz-5 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-qa-5 {
  margin: 10px 50px 10px 0px;
  padding: 0px 0px 0px 0px;
  width: 127px;
  float: left;
}


main div.quiz-6 {
  margin: 0px 0px 0px 10px;
  break-before: column;
}
main div.img-quiz-6 {
  margin: 10px 10px 10px 10px;
  break-inside: avoid;
  width: 160px;
  float: right;
}
main div.img-qa-6 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 160px;
  float: left;
}

main div.quiz-7 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-qa-7 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 71px;
  float: left;
}

main div.quiz-8 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-qa-8 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 92px;
  float: right;
}


main div.quiz-9 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-qa-9 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 82px;
  float: left;
}

main div.quiz-10 {
  margin: 0px 0px 0px 10px;
  break-inside: avoid;
}
main div.img-qa-10 {
  margin: 10px 50px 10px 0px;
  break-inside: avoid;
  width: 80px;
  float: right;
}



main div.img-borrow_pit_pond {
  margin: 0px 0px 0px 10px;
  width: 195px;
  float: right;
}

main div.img-lake_ontario {
  margin: 0px 0px 0px 10px;
  width: 255px;
  float: right;
}

main div.img-long_tailed_duck {
  margin: 0px 0px 0px 10px;
  width: 140px;
  float: right;
}

main div.img-male_harlequin_duck {
  margin: 10px 10px 10px 0px;
  width: 140px;
  float: left;
}

main div.img-cbc_2016_on_nature {
  margin: 10px 10px 10px 0px;
  width: 130px;
  float: left;
}

main div.img-horned_lark {
  margin: 10px 10px 10px 0px;
  width: 106px;
  float: left;
}

main div.img-snowy_feeder {
  margin: 10px 0px 10px 10px;
  width: 123px;
  float: right;
}

main div.img-windmill_point {
  margin: 10px 0px 10px 10px;
  width: 232px;
  float: left;
}

main div.img-bird_ontario {
  margin: 0px 0px 0px 0px;
  width: 103px;
  float: right;
}

img {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

main div.img-caption {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 0.8em;
  text-align: left;
}

.padded-dropcap {
  padding-left: 5px;
  float: left;
  position: relative;
  top: -0.25em;
  margin-bottom: -0.5em;
  margin-left: -6px;
  margin-right: 2px;
  color: rgb(51,153,51);
  font-size: 3em;
  font-style: italic;
}

main span.auther {
  font-style: italic;
  font-weight: normal;
  float: right;
}

main span.size-medium {
  font-size: 1.5em;
}

main span.indiana {
  text-decoration: underline;
  color: rgb(51,153,51);
}


main article.two_columns {
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid rgb(51,153,51);
}
main article.two_columns h2 {
  column-span: all;
}
main div.clear_float {
  clear: both;
}

main div.cbc_grid-container {
  display:grid;
  grid-template-columns: auto auto auto auto auto auto;
  grid-template-rows: auto;
}
main cbc_grid-item-name {
margin: 0px 0px 0px 0px;
padding: 5px 10px 5px 10px;
vertical-align: top;
width: 225px;
}

main div.cbc_grid-item-count {
  text-align: right;
  width: 75px;
}



main div.cbc_table table td span {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 25px;
}

main div.cbc_table table {
  margin: 10px 10px 2px 10px;
  padding: 10px 10px 10px 10px;
  /*border: 3px dashed rgb(51,153,51);*/
  width: 354px;
}

main div.obba_table table {
margin: 10px 10px 2px 10px;
padding: 10px 10px 10px 10px;
border: 1px solid #cdcdcd;
border-collapse: collapse;
width: 100%;
}

main div.obba_table table thead {
margin: 10px 10px 2px 10px;
padding: 10px 10px 10px 10px;
background-color: #cdcdcd;
}

main div.obba_table table th {
margin: 0px 0px 0px 0px;
padding: 5px 10px 5px 10px;
vertical-align: top;
}

main div.obba_table table td {
vertical-align: top;
width: 25%;
}

main div.obba_table table td+td {
margin: 0px 0px 0px 0px;
padding: 5px 10px 5px 10px;
vertical-align: top;

width: 10%;
}

main div.obba_table tr:nth-child(odd) {
background-color: #f5f5f5;
border: 1px solid #cdcdcd;
}

main div.cbc_table_schedule table td {
  margin: 0px 0px 0px 0px;
  padding: 5px 10px 5px 10px;
  vertical-align: top;
  width: 225px;
}

main div.status-reminder {
position: relative;
}

main div.status-reminder::before {
  position: absolute;
  margin: 20px 10px 10px 0px;
  padding: 10px 10px 10px 10px;
  border: 5px solid red;
  content: "Reminder";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: red;
  font-size: 1em;
  font-weight: bold;
  left: 360px;
}

/* Footer section */

main div.club_name {
  margin: 0px 40px 0px 40px;
  padding: 10px 10px 10px 10px;
  border: 1px solid rgb(51,153,51);
  text-align: right;
  font-size: 1.5em;
  font-style: italic;
}
main div.club_name span.space_left {
  padding: 0px 20px 0px 0px;
}
main div.club_name span.space_right {
  padding: 0px 30px 0px 0px;
}
main div.logo {
  margin: -20px 10px 0px 0px;
  padding: 0px 0px 0px 0px;
  float: left;
}
main div.addr {
  margin: 10px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
main div.executive {
  clear: both;
}

main div.club_info {
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 10px 10px;
  border: 3px solid rgb(51,153,51);
}

main div.club_info p.p_begin {
  margin: 0px 0px 1em 0px;
  padding: 0px 0px 0px 0px;
}

main div.club_info p.p_end {
  margin: 1em 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}


/* Media Queries */
@media (max-width: 1200px) {
  .hero .hero-flex {
    gap: 2rem;
  }

  .hero img {
    max-width: 500px;
    margin-right: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .topics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero .hero-flex {
    flex-direction: column;
    padding-bottom: 4rem;
  }

  .hero img {
    max-width: 600px;
    margin-top: 2rem;
  }

  .topics {
    grid-template-columns: repeat(2, 1fr);
  }

  .chapter-cards,
  .takeaways-cards {
    grid-template-columns: 1fr;
  }

  .details-flex,
  .details + .details .details-flex,
  .stats .stats-flex {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-menu-items,
  .info-left {
    display: none;
  }

  .main-menu-items,
  .bird-left {
    display: none;
  }

  .main-menu-items,
  .science-left {
    display: none;
  }

  .navbar .mobile-menu {
    display: block;
  }

  .navbar .mobile-menu-toggle {
    display: block;
    padding: 10px;
  }

  .info-container {
    flex-direction: column;
  }

  .info-content {
    padding: 2rem;
  }

  .info-content h2 {
    font-size: 1.5rem;
  }

  .info-content p {
    font-size: 1rem;
  }

  .bird-container {
    flex-direction: column;
  }

  .bird-content {
    padding: 2rem;
  }

  .bird-content h2 {
    font-size: 1.5rem;
  }

  .bird-content p {
    font-size: 1rem;
  }

  .science-container {
    flex-direction: column;
  }

  .science-content {
    padding: 2rem;
  }

  .science-content h2 {
    font-size: 1.5rem;
  }

  .science-content p {
    font-size: 1rem;
  }


  .social .social-icons {
    flex-wrap: wrap;
  }

  .social p {
    font-size: 1.2rem;
  }

  .social i {
    font-size: 2rem;
  }

  .footer {
    padding: 0.5rem 1rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero img {
    max-width: 350px;
  }

  .topics {
    grid-template-columns: 1fr;
  }

  .summary .container {
    padding: 0;
  }

  .stats .stats-numbers {
    flex-direction: column;
  }

  .newsletter h2 {
    font-size: 1.5rem;
  }

  .newsletter p {
    display: none;
  }
}

