* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: white;
    font-family: "Poppins", sans-serif;
    min-width: 1280px;
}

h1 {
    font-size: 100px; 
    color: white;
}

h2 {
    font-size: 50px;
    color: white;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: url("https://images.pexels.com/photos/9299930/pexels-photo-9299930.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
}

#beaver_section {
    background: url("https://images.pexels.com/photos/9292784/pexels-photo-9292784.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
}

#cub_section {
    background: url("https://images.pexels.com/photos/9291158/pexels-photo-9291158.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
}

#scout_section {
    background: url("https://images.pexels.com/photos/9303539/pexels-photo-9303539.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
    background-size: cover;
    background-position: center;
}

header {
    display: flex;
    position: relative;
    top: 0;
    width: 100%;
    padding: 30px 100px;
    justify-content: space-between;
    align-content: center;
}

header .logo {
    position: relative;
    color: white;
    font-size: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

header .navigation {
    color: black;
}

header .navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: background;
}

header .navigation a:not(:last-child){
    margin-right: 30px;
}

header .navigation a:hover{
    background: #000C66;
}

.content{
    display: flex;
    max-width: 650px;
    margin: 60px 100px;
}

.content .info h2{
    color: #000C66;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 80px;
    margin-bottom: 20px;
}

.content .info h2 span{
    color: white;
    font-size: 50px;
    font-weight: 800;
}

.content .info p{
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* NOTE FOR FUTURE LARA PUT THE LABEL HERE it's just: 
    label  {
    display: none;
}*/

label {
    display: none;
}

#check{
    z-index: 3;
}

container {
    width: 100%;
    height: 400px;
}

container h2 {
    color: #000C66;
    margin-top: 70px;
    margin-left: 250px;
    margin-bottom: 10px;
}

container p {
    padding-left: 250px;
    padding-right: 750px;
    padding-bottom: 50px;
    line-height: 2.5rem;
}

.divider {
    height: 100px;
    width: 100%;
    background-color: #000C66;
}

.divider_beaver{
    width: 100%;
    height: 100px;
    background-color: #006ee1;
}

.divider_cub {
    width: 100%;
    height: 100px;
    background-color: #20aa56;
}

.divider_scout {
    width: 100%;
    height: 100px;
    background-color: #004851;
}

.container_beaver {
    width: 100%;
    height: 350px;
}

.container_beaver h2 {
    color: #006ee1;
    padding-left: 300px;
    padding-top: 50px;
}

.container_beaver p{
    color: black;
    margin-left: 300px;
    margin-top: 25px;
    line-height: 2.5;
    margin-right: 20%;
}

.container_cub {
    width: 100%;
    height: 400px;
    padding-bottom: 0px;
}

.container_cub h2 {
    color: #20aa56;
    padding-left: 300px;
    padding-top: 50px;
}

.container_cub p{
    color: black;
    margin-left: 300px;
    margin-top: 25px;
    line-height: 2.5;
    margin-right: 20%;
}

.container_scout {
    width: 100%;
    height: 400px;
    padding-bottom: 0px;
}

.container_scout h2 {
    color: #004851;
    padding-left: 300px;
    padding-top: 50px;
}

.container_scout p{
    color: black;
    margin-left: 300px;
    margin-top: 25px;
    line-height: 2.5;
    margin-right: 20%;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
    color: white;
}

p {
    font-style: normal;
    line-height: 2;
}

#p_sign-up {
    color: white;
    display: flex;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.svg_container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#beaver_svg {
    margin-top: 140px;
}

#beaver_home_svg {
    margin-left: -800px;
    margin-top: 125px;
}

#cub_svg {
    margin-top: 90px;
}

#cub_home_svg {
    margin-top: -100px;
    margin-left: -40px;
}

#scout_svg {
    margin-top: 140px;
}

#scout_home_svg{
    margin-top: -360px;
    margin-left: 710px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
    margin-bottom: 100px;
}

#in_text_link {
    text-decoration: none;
    font-weight: 800;
}

a:hover {
    color: skyblue;
    transition: 0.3s;
    transition-property: background;
}

#about_image {
    width: 350px;
    height: 350px;
    margin-top: -400px;
    margin-left: 850px;
    margin-bottom: -100px;
}

.frame_container {
    display: flex;
    align-items: center;
    height: 400px;
    width: 400px;
    margin-left: 800px;
    margin-top: -470px;
}

iframe {
    width: 100%;
    height: 100%;
}

#beaver_map {
   margin-top: -350px;
}

#cub_map {
   margin-top: -380px;
}

#scout_map {
   margin-top: -350px;
}

footer {
    display: flex;
    background-color: #000C66;
    color: white;
    text-align: left;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 350px;
}

#color_beaver {
    background-color: #006ee1;
}

#color_cub {
    background-color: #20aa56;
}

#color_scout {
    background-color: #004851;
}

footer h3 {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 220px;
    font-weight: 800;
    font-size: 20px;
    padding-top: 50px;
}

footer a{
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 220px;
    color: white;
}

footer p{
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
    padding-left: 220px;
}

footer ul{
    list-style: none;
    text-align: left;
}

/*CONTACT FORM*/

.contact h2 {
    margin-top: -30px;
    text-align: center;
    font-size: 3rem;
    padding: 3rem;
}


.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
    margin-top:-20px;
}

.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 1.0rem;
    font-size: 20px;
    color: black;
    background: white;
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input{
    width: 50%;
}

.contact form textarea{
    width: 50%;
}

.contact form .btn2{
    cursor: pointer;
    width: 100px;
    height: 50px;
    border-radius: 2rem;
}


/*MAILING LIST*/

.signup-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #000C66;
    padding: 50px;
}

.signup-section h2{
    margin-bottom: 10px;
    color: white;
}

.signup-section p{
    color: white;
}

.signup-section input[type="email"] {
    width: 250px;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.signup-section button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-section button:hover{
    background-color: #0056b3;
}

/* RESPONSIVE STYLES */

@media (max-width: 1200px){
    html {
        font-size: 55%;
    }
}

@media screen (max-width: 960px){
    
    header{
        padding: 2rem 3%;
    }
    
    section{
        padding: 10rem 3% 2rem;
    }
    
    footer{
        padding: 2rem 3%;
    }
    
    header .navigation{
        display: none;
    }
    
    label{
        display: block;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        transition-property: color;
    }
    
    label:hover{
        color: white;
    }
    
    label .close-btn{
        display: none;
    }
    
    #check:checked ~ header .navigation{
        z-index: 2;
        position: fixed;
        background: rgba(114, 223, 255, 0.9);
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #check:checked ~ header .navigation a{
        font-weight: 700;
        margin-right: 0;
        margin-bottom: 50px;
        letter-spacing: 2px;
    }
        
    #check:checked ~ header label .menu-btn{
        display: none;
        }
    
    #check:checked ~ header label .close-btn{
        z-index: 2;
        display: block;
        position: fixed;
    }
    
    label .menu-btn{
        position: absolute;
    }
    
    header .logo{
        position: absolute;
        bottom: -6px;
    }
    
    .content .info h2{
        font-size: 45px;
        line-height: 50px;
    }
    
    .content .info h2 span{
        font-size: 40px;
        font-weight: 600;
    }
    
    .content .info p{
        font-size: 14px;
    }
    
    container {
        display: flex;
        width: 100%;
        height: 400px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
}

    container h2 {
        display: flex;
        font-size: 30px;

}

    container p {
        display: flex;
}
    img {
        width: 50px;
        height: 50px;
        border-radius: 60px;
    }
}

@media (max-width: 560px){
    .container{
        font-size: 35px;
        line-height: 40px;
    }
    
    .container_beaver{
        font-size: 30px;
        font-weight: 600;
    }
}