@import url(https://use.typekit.net/kqn0xto.css);

html{
    scroll-behavior: smooth;
}

body {
    background-color: #95a598;
    font-family: "cooper-black-std", serif;
    font-weight: 400;
    font-style: normal;
    color: #252926;
}

/* nav {
    position: sticky;
    top: 0;
    height: 15%;
} */

nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 5em;
    width: 100%;
    background-color: transparent;
    box-sizing: border-box;
    padding: 12px 18px;
    transition: background-color 0.4s ease-out;
  }

  nav.scroll {
    background-color: #252926;
    color: #D9DDD8;
  }

.heading{
    text-align: center;
    font-size: 2.5em;
    margin: 0 0 2% 0;
}

.heading-2{
    display: flex;
    justify-content: center;
}

.about-section {
    display: flex;
    width: 66.6%;
    margin: auto;
    margin-top: 7%;
}

.about-text{
    text-align: center;
    font-family: "kepler-std-caption", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.8px;
    

}

.container {
    box-sizing: content-box;
    display: flex;
    flex-wrap: wrap;
}

.row{
    display: flex;
    width: 100%;
    margin: 0.75% 10%;
}

.col{
    width: 33.33333333%;
    display: flex;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    justify-content: center;

}

.col-horizental{
    width: 100%;
    display: flex;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    justify-content: center;
}

.gallery-img {
    max-width: 80%;
    box-shadow: 0px 0px 7px rgb(37 41 38 / 30%);
}

footer{
    background-color: #252926;
    color: #D9DDD8;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
}

.footer-wrapper{
    width: 100%;
    margin: 0 auto;
    text-align: center;

}

.icon-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon{
    padding: 0 45.5%;
    color: #D9DDD8;
    text-decoration: none;
    font-size: 2em;
}

.fa-brands, .fab {
    font-weight: 400;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
}

@media only screen and ( max-width: 770px) {

    nav {
        height: 3.8em;
    }

   
    .heading{
        font-size: 1.7em;
    }

    .about-section{
        margin-top: 10%;
        font-size: 1.2em;

    }

    .row {
        display: contents;
        width: 100%;
        margin: 0.75% 10%;
    }

    .col {
        width: 100%;
    }

    footer{
        height: 15%;
    }

}

@media only screen and ( max-width: 480px) {

    nav {
        height: 3.5em;
    }

    .heading{
        font-size: 1.5em;
    }

    .about-section{
        margin-top: 14%;

    }

    .row {
        display: contents;
        width: 100%;
        margin: 0.75% 10%;
    }

    .col {
        width: 100%;
    }

    footer{
        height: 15%;
    }

}