@charset "utf-8";
/* CSS Document */


/*-----------------------------------------------------------------------------------*/
/* RESET                                                                  */
/*-----------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,tr,td,th,tbody{ vertical-align:top}





body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
               "Segoe UI", Roboto, "Helvetica Neue", Arial, 
               sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #494f3e;
  background-color: #fff;	
}


body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1 { color:#2c7a7b; font-size:2em; font-weight:bold}
h2 { color:#2c7a7b; font-size:1.6em; font-weight:bold}


a { color:#2c7a7b; text-decoration:underline}
a:hover { color:#a97c06; text-decoration:underline}


input[type="submit"] {
  background-color: #2c7a7b;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}





.background_images {
  background-image: 
    url(../images/bg-header.jpg),
    url(../images/bg-footer.jpg);

  background-position: 
    top,
    bottom;

  background-repeat: 
    no-repeat,
    no-repeat;

  background-size: 
    cover,
    cover;
}

.standard_width { width:1000px; margin:auto auto; padding-left:10px; padding-right:10px}

header { padding-top:40px;}

header img {
  float: right;
  width: 200px;
  height: 200px;
  border-radius: 50%;
border: 6px solid #cfccc0;
  object-fit: cover;
}


footer { padding-top:40px; padding-bottom:40px}
.footer_lhs { text-align:center}

.scroll_to_top { margin:auto auto; margin-top:-83px; height:83px; margin-right:40px;cursor: pointer;}
.scroll_to_top img{height:43px; width:43px; float:right; background-color:#2c7a7b; border:1px solid #cfccc0}
.scroll_to_top img:hover{background-color:#a97c06; transition:0.5s}




.content {min-height:800px; padding:5px; margin-top:40px}

/*---------------------------------------------------------------------------------------------------------*/
/* Events Page                                                                                             */
/*---------------------------------------------------------------------------------------------------------*/

.events_pane { margin-top:40px; padding:10px; border-radius: 8px; background: rgba(200, 200, 200, 0.3); }




.events_pane input[type="submit"]:hover{
  background-color: #a97c06;
}



.events_pane img { float: right; width:400px; height:auto;border-radius: 6px; border: 4px solid #cfccc0}
.events_pane .bee { float: right; width:140px; height:auto; border:0; position:relative; top:10px; left:440px}


.bee {
  display: inline-block;
  transform-origin: 50% 50%;
  animation: spin 2s linear 1;
}

@keyframes spin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}


/*---------------------------------------------------------------------------------------------------------*/
/* Contact form                                                                                            */
/*---------------------------------------------------------------------------------------------------------*/

.form_row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form_row label {
  width: 150px;
  text-align: right;
  margin-right: 10px;
}

.form_row textarea {width:450px; height:200px}

/*---------------------------------------------------------------------------------------------------------*/
/* Navigation                                                                                              */
/*---------------------------------------------------------------------------------------------------------*/

nav {border-radius: 8px; background: rgba(200, 200, 200, 0.3); margin-top:20px; margin-right:50px}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* makes it horizontal */
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #2c7a7b;
}

nav a:hover {
}

nav a.active {
    font-weight: bold;
}