@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');

:root{
    --viridian-dark: rgb(85, 114, 102);
    --viridian: #6b9080ff;
    --cambridge-blue: #a4c3b2ff;
    --mint-green: #cce3deff;
    --azure-web: #eaf4f4ff;
    --mint-cream: #f6fff8ff;

    --corners: 25px;
    --corners-light: 15px;
    --header-margin: 140px;

    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

body, html {
    margin: 0;
    padding: 0;
}

.header-link{
    color: var(--mint-cream);
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-size: large;
    text-decoration: none;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    display: inline-block;

    transition: all 0.3s ease-in-out;

}

.header-link:hover{
  color: var(--mint-green)
}

.header-bg{
  background-color: var(--viridian);
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
  flex-wrap: wrap;
}

.header-logo{
  width: 3rem;
  transition: all 0.5s ease-in-out;
}

.header-logo:hover{
  filter: hue-rotate(180deg); 
}


.main-section{
    margin-top: var(--header-margin);
}

.hero-section{
    display: flex;
    margin-bottom: 3rem;
    

    @media screen and (max-width: 768px){
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.left-pad1{
    padding-left: 1rem;
}

.left-pad2{
  padding-left: 2rem;
}

.right-pad1{
  padding-right: 1rem;
}

.font-1-2-rem{
    font-size: 1.2rem;
}

.btn-standard{
    padding: 16px;
    margin: 1rem;
    display: inline-block;
    border: none;
    border-radius: 50px;
    background-color: var(--cambridge-blue);

    box-shadow: 2px 2px 4px lightgray;
    transition: all 0.3s ease-in-out;
}

.btn-standard:hover{
  cursor: pointer;
}

.btn-text{
    color: var(--mint-cream);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-standard:hover{
    background-color: var(--viridian);
}

.btn-standard:active{
    background-color: var(--viridian-dark);
}


.hero-img-container{
    width: 50vw;

    margin-right: 2rem;
    margin-left: 2rem;
    display: flex;
    align-items: center;

    @media screen and (max-width: 768px){
        width: 100vw;
        margin-right: 0rem;
        margin-left: 0rem;
    }
}

.hero-img{
    width: 100%;
    border-radius: var(--corners);

    @media screen and (max-width: 768px){
      width: 100%;
      border-radius: 0px;
  }
}

.hero-labels{
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    p{
        font-size: 2.5rem;
        margin-right: 4rem;
        margin-left: 4rem;
    }

    @media screen and (max-width: 768px){
        width: 100vw;
        p{
            font-size: 1.5rem;
            margin-right: 1rem;
            margin-left: 1rem;
        }
    }

    
}

.section2{
  display: flex;
  margin-bottom: 3rem;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  width: 100%;

  @media screen and (max-width: 768px){
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
}


.section3{
  display: flex;
  margin-bottom: 3rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  

  
  @media screen and (max-width: 768px){
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0rem;
    margin-right: 0rem;
  }

}

.section3-img{
  width: 40vw;
  display: flex;
  justify-content: center;

  img{
    width: 100%;
    border-radius: var(--corners);

  }

  @media screen and (max-width: 768px){
    width: 75%;
    margin: 2rem 0rem;
  }
}

.btn-container{
  width: 8vw;
  display: flex;
  margin: 2rem;
  justify-content: center;
  align-items: center;
}

.btn-round{
  padding: 32px;
  display: inline-block;
  border: none;
  border-radius: 50px;
  background-color: var(--cambridge-blue);

  box-shadow: 2px 2px 4px lightgray;
  transition: all 0.3s ease-in-out;
}


.ham-bg:hover{
  cursor: pointer;
  background-color: var(--viridian-dark);
}

.hamburger-menu{
  height: 2.5rem;
  filter: invert(80%) sepia(0%) saturate(0%) hue-rotate(110deg) brightness(104%) contrast(104%);
}



.btn-round:hover{
  cursor: pointer;
}

.btn-round:hover{
  background-color: var(--viridian);
}

.btn-round:active{
  background-color: var(--viridian-dark);
}


footer{
  background-color: var(--viridian-dark);
  display: block;
  width: 100%;
  position: relative;
  bottom: 0px;
}

.footer-bg{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem 0rem;
  margin: 0px;

  span{
    color: var(--mint-cream);
  }
  
  @media screen and (max-width: 430px){
    flex-direction: column;
  }
}

.footer-logo{
  width: 100px;
  padding: 1rem 2rem;

  @media screen and (max-width: 430px){
    width: 4rem;
  }
}
