@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900;1000&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-family: Nunito Sans, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden
}
#skiplinks {
    width: 100%;
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
#skiplinks a {
    color: #5B5B5B;
}
#skiplinks a:focus {
    position: static;
    width: auto;
    height: auto;
}

.logo {
    color: #0073e6;
    cursor: pointer;
    font-weight: 700;
    font-size:  2.2em;
}
.logo a {
    text-decoration: none;
    color: #0073e6;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: black;
    height: 65px;
    padding: 3em;
    z-index: 100;
}
.nav ul {
    font-weight:600;
    font-size:1.2em;
}
.menu li:hover {
    color:#0073e6;
    cursor:pointer;
    transition: 0.4s;
}
.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu a {
    text-decoration: none;
    color: black;
}
.menu a:hover {
    color:#0073e6;
    transition: 0.4s;
}
.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}
.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: black;
    position: absolute;
    height: 5px;
    width: 32px;
    border-radius: 10px;
}
.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid white;
    height: 2.5em;
    padding: 2em;
      
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: black;
    background-color: white;
    
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
 
  }
}
#hero {
    width: 100%;
    height: 650px;
    background: linear-gradient(rgba(4, 77, 153,0.8),rgba(0,0,0,0.7)),
    url('./trees.jpg') no-repeat top / cover;
    background-blend-mode:darken;
    color: white;
    margin-bottom: 5px;
    transition: 0.6s;
}
.herocontainer {
    width: 80%;
    height: 100%;
    max-width: 1000px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    justify-content: left;
    transition: 0.6s;
}
.herocontainer .herocontent h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    transition: 0.6s;
    background-color: 
}
.herocontainer .herocontent h2 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: sans-serif;
    transition: 0.6s;
}
.herocontainer .herocontent p {
    font-family: sans-serif;
    font-size: 1.2rem;
    max-width: 62%;
    transition: 0.6s;
}
.herocontainer .herocontent button {
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.4rem;
    padding: 0.5em 2em;
    margin-top: 2rem;
    color: white;
    background-size: 200%;
    transition: 0.6s;
    font-weight: 600;
}
.button1 {
    background-color: #0073e6;
    color: white;
    transition: 0.6s;
}
.button1:hover {
    background-color: #0043b1;
    color: white;
}
#scoutgroups{
    width: 100%;
    position:relative;
}
.scoutcontainer {
    height: 100%;
    max-width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    display: relative;
    float: left;
    color: white;
    transition: 0.6s;
    position: relative;
    top:-90px;
}
.scoutbox {
    float: left;
    margin: 30px 40px 0 40px;
    padding: 10px;
    width: 250px;
    height: 120px;
    background-color: #0073e6;
    cursor: pointer;
    transition: 0.6s;
    border-radius: 5px;
}
.grow { 
    transition: all .6s ease-out;
}
.grow:hover { 
    transform: scale(1.1);
    transition: 0.6s;
}
.scoutbox h3 {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    padding-top: 35px;
    transition: 0.6s;
    text-transform: uppercase;
    font-weight:900;
}
#about {
    width: 100%;
    height: 200%;
    background-color: #f7f7f7;
    transition: 0.6s;
}
.aboutwrapper {
    width: 100%;
    height: 100%;
}
.aboutcontainer {
    width: 70%;
    height: 100%;
    max-width: 1000px;
    margin-left: 100px;
    display: inline-block;
    align-items: center;
    justify-content: left;
    transition: 0.6s;
}
.aboutcontent {
    padding-bottom: 100px;
    padding-top: 30px;
}
.aboutcontent h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
.aboutcontent p {
    font-size: 1.2rem;
    max-width: 80%;
    transition: 0.6s;
}
.picturecontainer {
    width: 25%;
    display: inline-block;
    transition: 0.6s;
    float: right;
    position: absolute;
    justify-content: left;
    margin-left: -90px;
    padding-top: 30px;
}
.picturecontainer img {
    padding-right: 30px;
    width: 110%;
    height: 80%;
    align-content: flex-start;
    box-shadow: 20px 30px 0px #029356;
}

#quote {
    background-color: #f7f7f7;
    background: linear-gradient(rgba(2, 77, 153,0.5),rgba(0,0,0,0.6)),
    url('./scoutsb.jpg') no-repeat center / cover;
    background-blend-mode: darken;
    color: white;
    margin-bottom: 5px;
    margin-top: 5px;
}
.quotecontainer {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    margin-left: 100px;
    display: inline-block;
    justify-content: left;
    transition: 0.6s;
    padding-top: 150px;
    padding-bottom: 150px;
    font-size: 140%;
}
.footercontainer {
    display: flex;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 90px;
    padding-bottom: 20px;
    background-color: #0073e6;
    height: 100%;
    width: 100%;
}
.footercontainer div {
    text-align: left;
}
.footercontainer div h3 {
    padding-bottom: 2rem;
}
.column1 {
    flex-grow: 2;
    text-decoration: none;
    color: white;
}
.column1 a {
    text-decoration: none;
}
.column1 a:visited {
    color: white;
}
.column1 a:hover {
    color: black;
    transition: 0.4s;
}
.column1 p {
    margin-right: 30px;
    margin-bottom: 60px;
}
.column2 {
    flex-grow: 2;
    color: white;
}
.column2 p {
    margin-right: 90px;
    margin-bottom: 60px;
}
.column3 {
    flex-grow: 2;
    color: white;
}

 
@media screen and (max-width: 768px){
    html{
        font-size: 14px;
    }
    .formcontainer {
        height: 100px;
        flex-direction: column;
    }
    .box1 {
        text-align: center;
    }
    #newsletter {
        padding-bottom: 100px; /*remove to fix*/
    }
    .footercontainer {
        padding-top: 150px;
        
    }
    .box3 {
        padding-bottom: 90px;
    }


}
@media screen and (max-width: 2000px) and (min-width: 768px){
        .box1 p {
        margin-left: 100px;
        font-size: 1.1rem;
    }
}
@media screen and (max-width:2000px){
     .aboutcontainer {
        padding-bottom: 50px;
        transition: 0.4s;
    }   
}
@media screen and (max-width:1320px){
    .rectangle {
        display: none;
    }
     .aboutcontainer {
        padding-bottom: 20px;
        transition: 0.4s;
    } 
}
@media screen and (max-width:1100px){
    .scoutcontainer {
        margin-left: 35px;
    }
    .picturecontainer {
        margin-right: 130px;
    }

}
@media screen and (max-width: 1040px){
    .picturecontainer {
        display: none;
        margin-left: 130px;
    }
    .aboutcontainer {
        padding-bottom: 30px;
        transition: 0.4s;
    }
}
@media screen and (max-width:900px){
    .scoutcontainer {
        margin-left: 35px;
    }
    .quotecontainer {
        display: none;
    }
}
@media screen and (max-width: 960px){
	.aboutcontainer {
		width:640px;
	}
    .aboutcontent{
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 640px){
	.aboutcontainer {
		width:320px;
	}
    .box{
        height: 220px;
    }
    .footercontainer {
        flex-direction: column;
    }
    .picturecontainer {
        display: none;
        margin-left: 80px;
    }
    .scoutcontainer {
        padding-top: 90px;
    }
    .box1{
        padding-top: 50px;
    }
}
    .formcontainer {
        height: 100px;
        flex-direction: column;
    }