:root {
    --font-family: "Montserrat", sans-serif;
    --hero-color: #007aaa;
    --accent-color: #262262;
    /* --special-radial-gradient: radial-gradient(circle at top right,rgba(255, 255, 255, 0.8),transparent 300px),radial-gradient(circle at bottom left,rgba(30,130,230,.8),transparent 300px);
    --small-special-radial-gradient: radial-gradient(circle at top right,rgba(255, 255, 255, 0.8),transparent 10px),radial-gradient(circle at bottom left,rgba(199, 9, 9, 0.8),transparent 50px);
    --accent-pattern: url("/img/accent.png"); */
    --base-color: white;
    --c-grey-100: #f4f6f8;
	--c-grey-200: #e3e3e3;
	--c-grey-300: #b2b2b2;
	--c-grey-400: #7b7b7b;
	--c-grey-500: #222222;
    --shadow: rgba(0, 0, 0, 0.15) 0px 20px 60px 0px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 24
}

* {
    font-family: var(--font-family);
    /* For webkit */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

p, ul li, ol li {
    font-size: 18px;
    font-weight: 300;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h1,h2,h3 { 
    font-weight: 800; 
    text-transform: uppercase;
}

.title { font-size: 24px; font-weight: 500;}
.subtitle { font-size: 24px; font-weight: 400;}

body {
    margin: 0;
    padding: 0;
}

.googleCalendar{
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 50%;
}

.googleCalendar iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.justify {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.adjust {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.2%;
    padding-right: 2.2%;
}

a {
    color: var(--accent-color);
    font-weight: 400;
    text-decoration: underline;
}

section {
    padding-top: 3%;
    position: relative;
}

.navbar {
    /* position: fixed; */
    width: 100%;
    z-index: 0;
    margin: 0 auto !important;
    /* border: solid 1px black; */
}

.nav-logo {
    display: grid;
    height: 100%;
    width: 100%;
    grid-area: logo;
    position: relative;
}

.nav-logo a {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    height: 229px;
    width: 100%;
    z-index: 2;
    text-decoration: none !important;
    
}

.nav-logo a img {
    object-fit: contain;
    width: 100%;
    height: 101px;
}

.mainnav {
    grid-area: nav;
}

.navcontent {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-areas:
        "logo"
        "nav";
    justify-content: center;
}

.nav-donate {
    position: absolute;
    right: 30px;
    top: 50px;
}

.nav-donate a {
    background: var(--hero-color) !important;
    box-shadow: var(--shadow);
}

.rounded-corner {
    border-radius: 30px;
}

.mainnav,
.footernav {
    position: relative;
    display: grid;
    align-items: center;
    justify-self: start;
    text-align:center;
}

.menu div:nth-last-child(1) { grid-area: right; }
.menu div:nth-last-child(2) { grid-area: center; }
.menu div:nth-last-child(3) { grid-area: left; }

.menu {
    position: relative;
    transition: all 300ms ease;
   
    list-style-type: none;
    height: 100%;
}

.menu>div{
    display:inline-block;
}

.menu>div>a{
    z-index: 2;
    background-color: var(--base-color);
    text-align: center;
}

.menu>div>.hover {padding-top: 20px; position: relative;}

.menu>div>.hover::before {
    content:"";
    position: absolute;
    background: var(--accent-color);
    width: 100%;
    height: 5px;
    z-index: 2;
    top: 0;
    opacity: 0;
    transition: all 250ms ease-out;
    transform: translateY(0%);
}

.menu div .hover{
    display: grid;
    height: 100%;
    text-decoration: none !important;
    padding: 10px 15px;
    transition: background-color 0.5s;
    font-weight: 400;
    color: black;
    align-items: center;
    font-size: 22px;
}

.menu .dropdown>a {
    padding-right: 0;
}

.hover::after {
    content: "";
    position: absolute;
    display: grid;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--hero-color);
    transition: all 150ms ease-out;
    z-index: -1;
    opacity: 0;
}

.dropdown-content {
    position: absolute;
    left: 0;
    background-color: var(--base-color) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 1;
    width: 337px;
    transition: all 150ms ease-out;
    opacity: 0;
    transform: translateY(-100%);
    transition-delay: 250ms;
}

.menu .dropdown:nth-child(6) .dropdown-content{
    /* right: -50% !important;
    left: revert !important; */
    /* border: solid 1px red; */
}

.dropdown-content a {
    font-size: 20px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    color: black !important;
    position: relative;
}

.dropdown-content a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    margin-left: auto;
    background-color: var(--hero-color);
    transform: translateX(-100%);
    opacity: 0;
    transition-delay: 150ms;
    transition-property: opacity;
    transition: all 150ms, opacity 250ms;
}

.dropdown-content a:hover::after {
    width: 100%;
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    transform: translateY(0);
    opacity: 1;
}

.list-style-remove {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.button-grid {
    display: flex;
    justify-content: flex-start;
    width: fit-content;
    border-radius: 40px;
    background: rgba(231, 231, 231, 0.541);
    text-align: center;
    white-space: nowrap;
    gap: 2px;
}

.base-color, .base-color::placeholder {
    color: var(--base-color) !important;
}

.base-color-border {
    border-color: var(--base-color);
}

.button, button, input {
    font-size: 18px;
    padding: 10px 15px;
    background-color: var(--hero-color);
}

.button, button{
    display: inline-flex;
    position: relative;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    
    text-decoration: none;
    text-decoration: initial;
    cursor: pointer;
    vertical-align: middle;
    z-index: 1;
    font-weight: 500;
    color: white;
}

.button::before, button::before {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scaleX(.32);
    transition: all 150ms ease-out;
    content: "";
    z-index:-1;
}

.button:hover::before, button:hover::before {
    background-color: #f5f5f565;
    opacity: 1;
    transform: scaleX(1);
}

.button:hover, button:hover {
    border-color: var(--hero-color);
    color: var(--hero-color);
}

.button:active, button:active {
    transition: ease-out 0.1s;
    outline: dotted 2px var(--base-theme);
    outline-offset: 2px;
}

.hover:hover::after,
.dropdown:hover .hover::after {
    height: 100%;
}

.hover:hover::after,
.dropdown:hover .hover::after,
.menu>div>.hover:hover::before,
.dropdown:hover .hover::before {
    /* background-color: var(--hero-theme); */
    opacity: 1;
    transform: translateY(0%);
}

.menu div .hover:hover, .dropdown:hover > .hover{
    color: var(--base-color) !important;
}

.hover:active,
.button:active {
    transition: ease-out 0.1s;
    outline: dotted 2px var(--secondary-color);
    outline-offset: 2px;
}

.header-banner-{
    position: relative;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--hero-color);
    box-shadow: var(--shadow);
}
.header-banner {
    position: relative;
    padding:20px;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--hero-color);
    box-shadow: var(--shadow);
}

.image__header-banner {
    position: relative;
}

.image__header-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    aspect-ratio: 1/1.2;
}

.image__header-overlay {
    position: absolute;
    bottom: 0;
    background-color: #262262c7;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}
.image__header-overlay p {
    margin: 20px 0;
    font-size: 40px;
    font-weight: 700;
    color: white;
}

main p {
    line-height: 1.5em;
}

main {
    padding-bottom: 5%;
    background-color: var(--c-grey-100);
}

.grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4%;
    row-gap: 3%;
}

.grid>div {
    position: relative;
    padding: 0 0;
    display: grid;
    grid-template-rows: 300px auto;
}

.grid .wrapper img {
    height: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
}

.grid .text {
    padding: 0 3em 3em;
    text-align: center;
}

.grid .text h3 {
    color: var(--hero-color)
}

.grid .text p {
    font-size: 1em;
    font-weight: 600;
}

.grid-three-columns{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
}

.grid-three-columns div{
    background-color:#fff;
    padding:2%;
    text-align:center;
    margin:2%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    height:100%;
}

.grid-three-columns h2{
    font-size:28px;
}

.grid-three-columns a{
    color:#000;
    text-decoration:none;
    display:inline-block;
    margin:2% 0;
}

.grid-three-columns div:hover{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 40px;
    align-items: center;
}

.footer-grid .footer-logo {
    position: relative;
    display: grid;
    justify-content: star;
}

.footer-logo img {
    object-fit: contain;
    height: 100%;
    width: 400px;
}
.flower{
    display: block;
    margin: 0 auto;
}

.footer-grid>div:last-child {
    text-align: right;
}

@media only screen and (max-width:1280px){
    .menu div .hover{
        font-size:20px;
        padding:10px 12px;
    }
}

@media only screen and (max-width:1150px){
    .menu div .hover{
        font-size:18px;
    }
}

@media only screen and (max-width:720px){
    .header-banner-{
        grid-template-columns: 1fr;
    }
    .header-banner {
        grid-template-columns: 1fr;
    }
}