html, body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main section {
  width: 100%;
  /*
        &:nth-of-type(4){
            width: 100%;
            height: fit-content;
            display: flex;
            flex-direction: column;
            align-items: center;
         
            .teamGrid{
                display: grid;
                width: 90%;
                grid-template-columns: 1fr 1fr;
                margin-bottom: 2vw;
                
                .item{
                    width:98%;
                    background-color: darken($darkBlue,20%);
                    color: white;
                    margin-left: auto;
                    margin-right: auto;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    margin-top: 1vw;
                    margin-bottom: 1vw;
                    padding: 0;
                    outline: 0;
                    border: 0;
                    text-align: left;
                    box-sizing: border-box;
                    filter: grayscale(0);
                    cursor: pointer;
                    img{
                        width: 100%;
                        height: 100%; 
                    }
                    h1{
                        font-family: $font1;
                        margin-bottom: 0;
                        font-weight: 900;
                        font-size: 5vw;
                    }
                    p{
                        font-size: 4vw;
                        font-family: $font2;
                        margin-top: 0;
                    }
                }
            }
        }
        &:nth-of-type(5){
            position: fixed;
            width: 100%;
            height: 100vh;
            background-color: rgba($color: #000000, $alpha: .5);
            top: 0;
            display: none;
            .modal{
                position: fixed;
                top: 2vw;
                padding: 2vw;
                margin-left: 10%;
                margin-right: 10%;
                box-sizing: border-box;
                display: none;
                opacity: 0;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                width: 80%;
                background-color: white;
                border:4px solid darken($darkBlue,20%);
                .left{
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    img{
                        width: 100%;
                    }
                    h1,p{
                        color:darken($darkBlue,20%);
                    }
                    h1{
                        margin-bottom: 0;
                        font-family: $font1;
                        font-size: 5vw;
                    }
                    p{
                        font-family: $font2;
                        font-size: 4vw;
                    } 
                }
                .right{
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;

                    p{
                        margin-top: 0;
                        font-family: $font2;
                        font-size: 4vw;
                        overflow-y: scroll;
                        max-height: 10vh;
                    }
                    button{
                        position: absolute;
                        top: 0;
                        right: 0;
                        font-size: 5vw;
                        width: 4.8vw;
                        height: 4.8vw;
                       
                        padding: 2.9vw;
                        
                        font-family: $font1;
                        box-sizing: border-box;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: darken($darkBlue,20%);
                        color: white;
                        outline: unset;
                        border: 0;
                    }
                }
            }
                   
        }*/
}

main section > h1 {
  font-size: 8vw;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

main section:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4vw;
}

main section:nth-of-type(1) img {
  width: 90%;
}

main section:nth-of-type(1) article {
  width: 90%;
}

main section:nth-of-type(1) article h1,
main section:nth-of-type(1) article h2 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

main section:nth-of-type(1) article h1 {
  font-size: 8vw;
  margin-bottom: 0;
}

main section:nth-of-type(1) article h2 {
  font-size: 5vw;
  margin-top: 0;
}

main section:nth-of-type(1) article p {
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

main section:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #204389;
}

main section:nth-of-type(2) h1,
main section:nth-of-type(2) p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

main section:nth-of-type(2) h1 {
  color: ghostwhite;
  font-size: 6vw;
}

main section:nth-of-type(2) p {
  color: white;
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

main section:nth-of-type(3) .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin-bottom: 2vw;
}

main section:nth-of-type(3) .grid .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main section:nth-of-type(3) .grid .item h1 {
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  font-size: 6vw;
}

main section:nth-of-type(3) .grid .item p {
  width: 90%;
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

main section:nth-of-type(3) .grid .item:nth-of-type(odd) {
  background-color: gainsboro;
}

main section:nth-of-type(3) .grid .item:nth-of-type(odd) h1,
main section:nth-of-type(3) .grid .item:nth-of-type(odd) p {
  color: #204389;
}

@media only screen and (min-width: 1080px) {
  main section {
    /*
            &:nth-of-type(4) {
                .teamGrid {

                    width: 80%;
                    grid-template-columns: 0.5fr 0.5fr 0.5fr;
                    margin-bottom: 3vw;
                    gap: 2vw;

                    .item {
                        filter: grayscale(1);

                        &:hover {
                            filter: grayscale(0);
                        }

                        h1 {
                            width: 80%;
                            font-size: 1.2vw;



                        }

                        p {
                            width: 80%;
                            font-size: 1vw;


                        }
                    }

                }

            }

            &:nth-of-type(5) {

                .modal {
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: flex-start;
                    margin-left: 25%;
                    margin-right: 25%;
                    width: 50%;

                    .left {

                        width: 30%;


                        h1 {

                            font-size: 1.6vw;
                        }

                        p {

                            font-size: 1.4vw;
                        }

                    }

                    .right {
                        width: 60%;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-end;

                        p {
                            max-height: 80vh;
                            font-size: 1.2vw;

                        }

                        button {
                            margin-bottom: 1vw;
                            font-size: 3vw;
                            width: 2.8vw;
                            height: 2.8vw;

                            padding: 0.5vw;


                            cursor: pointer;
                            position: unset;
                        }

                    }
                }
            }*/
  }
  main section > h1 {
    font-size: 2vw;
  }
  main section:nth-of-type(1) img {
    width: 30%;
  }
  main section:nth-of-type(1) article {
    width: 70%;
  }
  main section:nth-of-type(1) article h1 {
    font-size: 2vw;
  }
  main section:nth-of-type(1) article h2 {
    font-size: 1.5vw;
  }
  main section:nth-of-type(1) article p {
    font-size: 1.2vw;
  }
  main section:nth-of-type(2) h1 {
    font-size: 2vw;
  }
  main section:nth-of-type(2) p {
    font-size: 1.2vw;
  }
  main section:nth-of-type(3) .grid {
    margin-bottom: 4vw;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  main section:nth-of-type(3) .grid .item h1 {
    font-size: 2vw;
  }
  main section:nth-of-type(3) .grid .item p {
    font-size: 1.2vw;
  }
  main section:nth-of-type(3) .grid .item:nth-of-type(1), main section:nth-of-type(3) .grid .item:nth-of-type(4) {
    background-color: gainsboro;
  }
  main section:nth-of-type(3) .grid .item:nth-of-type(1) h1,
  main section:nth-of-type(3) .grid .item:nth-of-type(1) p, main section:nth-of-type(3) .grid .item:nth-of-type(4) h1,
  main section:nth-of-type(3) .grid .item:nth-of-type(4) p {
    color: #204389;
  }
  main section:nth-of-type(3) .grid .item:nth-of-type(3) {
    background-color: white;
  }
  main section:nth-of-type(3) .grid .item:nth-of-type(3) h1,
  main section:nth-of-type(3) .grid .item:nth-of-type(3) p {
    color: black;
  }
}
/*# sourceMappingURL=about.css.map */