:root {
    --font-family: 'Noto Sans', sans-serif;
    --hero-theme: #75c47d;
    --seco-theme: #dd9f3e;
    --base-theme: #1E1C1C;
}

* {
    font-family: var(--font-family);
    /* For webkit */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.justify {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.adjust {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
}

section {
    padding-top: 2%;
    padding-bottom: 2%;
    position: relative;
}

.navbar {
    position: fixed;
    background: white;
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    z-index: 10;
    margin: 0 auto !important;
}

.navcontent {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
}

.mainnav,
.footernav {
    position: relative;
    display: grid;
    align-items: end;
    justify-self: center;
}

img {
    max-width: 100% !important;
}

.logo-group {
    color: black;
    transition: height ease 500ms;
    letter-spacing: -30px;
    padding: 10px 20px;
    height: 150px;
}

.logo-group img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo {
    display: grid;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: height ease 500ms;
}

nav ul li a {
    color: rgba(45, 87, 143, 255);
    text-decoration: none;
    font-weight: 500;
}

nav ul li {
    padding: 10px 27px;
}

nav ul li:hover {
    /* background-color: rgba(45, 87, 143, 255); */
}

nav ul li:hover a {
    /* background-color: rgba(45, 87, 143, 255); */
}

nav ul li a.menu-active {
    text-decoration: underline;
    background-color: rgba(45, 87, 143, 255);
    font-weight: 600;
}

.glass {
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.4px);
    -webkit-backdrop-filter: blur(10.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.menu,
.submenu {
    display: grid;
    grid-template-columns: repeat(8, auto);
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.menu>div,
.submenu>div {
    position: relative;
    height: 100%;
}

.menu div a,
.submenu div a {
    display: grid;
    height: 100%;
    text-decoration: none !important;
    padding: 2em 1.2em;
    transition: background-color 0.5s;
    font-weight: 500;
    color: var(--base-theme);
}

.submenu div a {
    padding: 0.5em 1.2em;
}

.submenu .dropdown .arrow-relative {
    grid-template-columns: 1fr;
}

.submenu .dropdown .arrow-relative .arrow-container {
    display: none;
}

.submenu .dropdown .dropdown-content {
    display: none !important;
}
.submenu div .hover:hover {
    text-decoration: underline !important;
}
.submenu div .hover::after {
    display: none;
}

.hover {
    position: relative;
}

.hover::after {
    content: "";
    position: absolute;
    display: grid;
    justify-content: center;
    bottom: 20px;
    left: 15%;
    width: 70%;
    height: 3px;
    border-radius: 1em;
    border: solid 0.5px black;
    background-color: var(--hero-theme);
    opacity: 0;
    transition: all 150ms ease-out;
}

.hover:hover::after {
    /* background-color: var(--hero-theme); */
    opacity: 1;
    bottom: 25px;
}

.hover:active, .button:active {
    transition: ease-out 0.1s;
    outline: dotted 2px var(--base-theme);
    outline-offset: 2px;
}

.navlink::after {
    display: none;
}

.navlink:hover {
    background-color: #54925a;
}

.dropdown .dropbtn {
    border: none;
    outline: none;
    position: relative !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--hero-theme);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    width: auto;
}

.dropdown-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: white !important;
    padding: 1em 1.2em !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.list-style-remove {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

main  p {
    line-height: 2em;
}
.header-img {
    position: relative;
    padding-top: 150px;
}
.header-img-wrapper {
    width: 100%;
    height: 80vh;
    max-height: 700px;
    position: relative;
}
.header-img-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.signature {
    position: absolute;
    top:0;
    left:0;
    padding-top: 150px;
    height: 100%;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: end;
}
.signature-position {
    position: relative;
    padding-right: 3vw;
}
.signature-position p {
    width: 360px;
}

.yellow {
    background-color: var(--seco-theme);
}
.green {
    background-color: var(--hero-theme);
}

.donate-button {
    position: absolute !important;
    right: 0;
    top: 20px;
    height: fit-content !important;
}

.donate-button a {
    padding: 0 !important;
}
.donate-button a::after {
    display: none;
}

.styled-box {
    padding: 10px 15px;
    border-radius: 0.3em;
    border: solid 1px black;
}
main h1 {
    font-size: 2em;
}
.intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3em;
}
.intro h1 {
    margin-top: 0 !important;
    margin-bottom: 0.5em;
}
.styled-underline {
    position: relative;
    margin-bottom: 1.5em !important;
    width: fit-content;
}
.styled-underline::after {
    position: absolute;
    bottom:-10px;
    left:0;
    content:"";
    background: black;
    width: 100%;
    height: 2px;
}
.button-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: start;
    gap:2em;
}
.button {
    position: relative;
    text-align: center;
    padding: 0.5em 2em;
    text-decoration: none !important;
    color: var(--base-theme);
    font-weight: bold;
    overflow: hidden !important;
    z-index: 2 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: box-shadow 150ms ease-in-out;
}
.button:hover {
    box-shadow: rgba(255, 255, 255, 0.39) 0px 13px 27px -5px, rgba(255, 255, 255, 0.3) 0px 8px 16px -8px;
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    opacity: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.548);
    border-radius: 0.3em;
    z-index: -1;
    transition: width 200ms ease-out,
                opacity 200ms ease-out;
                
}
.button:hover::before {
    opacity: 1;
    width: 100%;
}

.AB-button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:2em;
}
              
.green:hover, .yellow:hover {
    /* background-color: rgba(0, 0, 0, 0); */
}
.services, .mission {
    position: relative;
}

.WrapperBanner {
    max-height: 200px;
}
    
.green-txt {
    color: var(--hero-theme);
}
    
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
}
    
.one-by-four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
}
.two-by-two-grid {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-around;
    gap: 2em;
}
.two-by-two-grid > div {
    text-align: center;
}
.two-by-two-grid > div p {
    font-size: 1.2em;
}
.div-wrapper {
    height: 280px;
    max-width: 384px;
    overflow: hidden;
    border-radius: 10px;
    border: solid 1px black;
}
.one-by-four-grid .div-wrapper {
    height: 200px;
    position: relative;
}
.txt-overlay {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    letter-spacing: 0.1em;
    font-size: 1.2em;
    line-height: 1em;
    text-align: center;
    padding: 10px;
}
.one-by-four-grid .div-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}
.div-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bg-cover::after {
    content: "";
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-theme);
    opacity: 0.85;
}
.bg-cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.txt-centerlized {
    text-align: center;
}
.txt-centerlized p, .txt-centerlized h1 {
    text-align: center !important;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.OffPhoFax {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
}

.OffPhoFax p {
    margin-top: 0px;
    margin-bottom: 10px;
}

.Invt {
    width: 90%;
}

.spGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.spGrid p {
    text-align: center;
}

.styled-table {
    border-collapse: collapse;
    border-radius: 2em;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.standing-table th, .standing-table td {
    padding: 8px;
}

.standing-table td:first-child {
    text-align: right;
    font-size: 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.intGrid {
    display: grid; 
    grid-template-columns: 3fr 1fr;
}

.thpGrid {
    display: grid; 
    grid-template-columns: 3fr 4fr;
}

.standing-table tbody tr td:first-child .team-logo-wrapper {
    height: 1.5em;
}

.team-logo-wrapper {
    display: flex;
    /* height: 100px; */
    align-items: center;
    flex: auto;
}

.team-logo-wrapper img {
    display: inline-block;
    vertical-align: bottom;
    object-fit: contain;
    max-width: 100%;
    height: 100%;
}

.index-table thead tr {
    background-color: var(--hero-theme) !important;
    color: black;
    text-align: left;
}

.padl5 {
    padding-left: 5px;
}

.margt5 {
    margin-top: -5px;
}

.ResourcesPdfGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.BrochureBreak {
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 4px;
    margin-right: 4px;
    padding-top: 1px;
    padding-bottom: 2px;
    border-radius: 2em;
    font-size: 18px;
}

.yourVisit {
    border: 6px solid;
    border-color: #dd9f3e;
}

.RescAndLinks {
    background-color: var(--hero-theme) !important;
    border: 6px solid;
    border-color: #54925a;
}

.RescForms {
    border: 6px solid;
    border-color: var(--hero-theme) !important;
}

.RescBrochuresH {
    text-align: center;
}

.FormsAndNews {
    display: grid; 
    grid-template-rows: 1fr 1fr;
}

.NewsAndUp {
    margin-top: 10px
}

#GetInvSB {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

#GetInvSB p {
    margin-top: 0px;
        line-height: 1.5em;
}

#GetInvSB .sideBar {
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 4px;
    margin-right: 4px;
    padding-top: 1px;
    padding-bottom: 2px;
    font-size: 18px;
    background-color: var(--hero-theme) !important;
    padding: 10px 15px;
    border-radius: 0.3em;
    border: solid 1px black;
}


blockquote {
    font-size: 1.2em;
    font-style: italic;
    margin-top: 100px;
    margin-bottom: 100px;
}

.footer-signature {
    font-size: 0.8em !important;
    color: var(--base-theme) !important;
    padding-bottom: 10px;
}
.footer-signature p {
    margin: 0 !important;
    padding-top: 20px;
}
.footer-signature a {
    text-decoration: none;
    color: inherit !important;
    
}
.footer-signature a:hover {
    text-decoration: underline;
}

footer {
    background-color: #54925a;
    padding: 10px;
}

footer .logo-group {
    background-color: white;
    border-radius: 10px;
    border: solid 1px black;
}