/** RESETS **/
/************/

:root {
  --bearbleu: #0b4374;
  --text: #04192b;
  --secondary: #93b7be;
  --grey: #aaaaaa;
  --white: #fefdfc;
  --dark: #062540;
  --light: #fdfbf6;
}

body,
html {
  font-size: 18px;
  background-color: var(--light);
  font-family: Gelasio, serif;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#sections {
  max-width: 1200px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/** MENU ****/
/************/
.menu-bar {
  background-color: rgba(11, 67, 116, .5);
  width: 100%;
  position: fixed; top: 0; left: 0;
  height: 30px;
}

.menu-bar ul {  
  display: flex;    
  justify-content: flex-end;
}

.menu-item {  
  display: inline-block;
  list-style: none;
  line-height: 1.8;
  color: var(--secondary);
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Playfair Display", cursive;
  font-weight: bold;
  letter-spacing: 2px;
}

.menu-item:hover {
  color: var(--light);
}

.menu-item a {
  text-decoration: none;
  color: inherit;
}


/** HERO **/
/************/

#hero {
  background-color: var(--dark);
  min-height: 100vh;
  overflow: auto;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#hero img {
  min-width: 300px;
  max-width: 600px;
  width: 40%;
  display: block;  
}

#hero div.hdg {
  margin-top: 2rem;
  font-family: "Playfair Display";
  letter-spacing: 1px;
  color: var(--light);
  font-size: 3rem;
  text-transform: capitalize;
  text-align: center;
}


/** SECTIONS **/


/**************/

.section-container {
  display: flex;
}
.par-normal {
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.section-title,
.section-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-wrap: wrap;
}

.section-body {
  flex-basis: 75%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.subsection-body::after {
  content: "";
  display: block;
  float: none;
  clear: both;
}

.float-left {
  float: left;
  margin-right: 1.5rem;
}

.float-right {
  float: right;
  margin-left: 1.3rem;
}

.img-paragraph {
  margin-bottom: 1rem;
}

.subsection-body {
  color: var(--dark);
  font-size: 1.1rem;
}

.subsection-title {
  font-family: "Playfair Display", cursive;
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--bearbleu);
  margin-bottom: 1.8rem;
  margin-top: 1.98rem;
}

.standout {
  font-weight: 700;
}

.float-end {
  float: none;
  clear: both;
}

.section-title {
  flex-basis: 25%;
  border-right: 3px solid var(--bearbleu);
}

.section-title-wrapper {
  width: 8.5rem;
  height: 8.5rem;
  background-color: var(--secondary);
  display: flex;
  margin: 20px auto;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--dark);
  border-radius: 50%;
  box-shadow: 2px 1px 4px var(--bearbleu);
}

.section-id {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--bearbleu);
}

.section-id.small {
  font-size: 1.2em;
}

.section-logo {
  text-align: center;
  margin-top: 0.25rem;
}

.section-logo img {
  width: 3.5rem;
  height: 3.5rem;
}

.tc-event::after {
  content: "";
  display: block;
  float: none;
  clear: both;
}

#tc-events {
  list-style-type: "\2014";
}

.tc-event {
  padding-left: .5rem;
  margin-bottom: 1.5rem;
}

.tc-event-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bearbleu);
}

.tc-event img {
  display: block;
  max-width: 40%;
}

.tc-event img.img-paragraph-lg {
  display: block;
  max-width: 60%;
}

.citations {
  margin: 1rem 0;
  border-top: 1px solid var(--grey);
  padding-top: .5rem;
}

.citation {
  font-size: .75rem;
  margin: .5rem 0;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.body-column {
  flex: 1 1 50%;
  padding: 0 1rem 0 0;
}

.radio-label {
  font-size: 14px;
}

.text-label {
  font-size: 16px;
  display: inline-block;
  width: 30%;
}

.text-input {
  width: 65%;
}

.contact-wrapper form fieldset {
  border: 1px solid var(--grey);
  padding: .5rem 1rem;
}

.contact-wrapper form fieldset legend {
  padding: 0 10px;
  font-size: .8rem;
}

#msg-subject {
  margin: 0 0 1rem 0;
}

.input-wrapper {
  margin: 0 0 1rem 0;
}

.input-wrapper input,
.input-wrapper select {
  border: none;
  padding: .5rem;
  background-color: var(--secondary);
  color: var(--light);
  font-size: .8rem;
  border-radius: .2rem;
}

.label100 {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  margin-bottom: .25rem;
}

#msg-body {
  width: 96%;
  border: none;
  padding: .5rem;
  background-color: var(--secondary);
  border-radius: .2rem;
}

.input-buttons {
  text-align: right;
}

.input-buttons button {
  border: none;
  padding: .5rem;
  margin-right: 4%;
  margin-top: .5rem;
  margin-bottom: .5rem;
  background-color: rgba(147, 183, 190, .5);
}

.input-buttons button:hover {
  background-color: rgba(147, 183, 190, .9);
}

.input-buttons button:focus {
  outline: none;
}

.input-buttons button:active {
  background-color: rgba(147, 183, 190, .4);
}

.column-row {
  display: flex;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
  align-items: center;
}

.column-row i {
  font-size: 1.5rem;
  min-width: 12.5%;
  color: var(--bearbleu);
}

.address {
  padding: .5rem 0;
}

.address:first-child {
  border-bottom: 1px solid var(--secondary);
}

.map-wrapper {
  border: 1px solid var(--secondary);
}

.cause-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.cause-logo, .cause-list {
  padding: 1rem;
  font-size: 16px;
}

.cause-list {
  margin-top: 0.5rem;
}

.cause-desc {
  font-weight: bold;
}

.cause-list a {
  display: inline-block;
  margin-left: .4rem;
  font-family: "Playfair Display", cursive ;
  font-style: italic;
  font-size: .75rem;
  text-decoration: none;
  color: var(--bearbleu);
}

.cause-list a:visited {
  color: var(--bearbleu);
}

.cause-list a::before {
  display: inline-block;
  content: "\2014";
  font-size: 20px;
  display: inline-block;  
  margin-right: 0.5rem;
}

.img-cause {
  width: 70px;
}

.language-flag {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.img-flag {
  width: 3rem;    
  flex: 0 0 3rem;
  margin-right: 1rem;
}

.language-name {
  display: inline-block;  
  flex: 0 0 4.5rem;
  text-transform: uppercase;
  font-family: "Playfair Display", cursive;
  font-size: 15px;
  font-weight: bold;
  color: var(--dark);
  margin-top: .8rem;
}

.language-level {
  display: inline-block;
  flex: 0 0 2rem;
  border: 1px solid var(--bearbleu);
  text-align: center;
  height: 2rem; width: 2rem;
  padding-top: 5px;
  border-radius: 50%;
  margin-right: 2rem;
  margin-top: .4rem;
}

.language-desc {
  display: inline-block;
  flex: 1 1 5rem;
  font-size: 15px;  
  margin-top: 0.25rem;
}
