@font-face {
    font-family: font-regular;
    src: url(fonts/Sanchez-Regular.ttf);
}

@font-face {
    font-family: font-bold;
    src: url(fonts/Sanchez-Regular.ttf);
    
}

html,
body {
    margin: 0;
    overflow-x: hidden;
    background-color: #F4f2f3;
    color: #151515;
    font-family: font-regular;
    display: flex;
    flex-direction: column;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

    /* position: relative; */
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
}

p {
    font-size: 1.4rem;
}

h1 {
    font-size: 2.4rem;
}

small {
    font-size: 1rem;
}

.header {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: #F4f2f3;
    /* border: solid red 1px; */
}

.inner-header {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: row;

    /* background-color: blue; */
}

.header-logo {
    height: 100%;
    width: 50%;
    text-decoration: underline;
}

.logo a{
    cursor: pointer;
    text-decoration: none;
    color: #151515;
}

.header-nav {
    height: 100%;
    width: 50%;
}

.nav-ul {
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.nav-ul li {
    float: left;
    /* background-color: #F3F3F4; */
}

.nav-li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 4px;

    transition: ease-out 0.5s;
}

.nav-ul li a:hover {
    background-color: #9EBC9F;
}

.landing {
    height: 100vh;
    width: 100vw;


}

.container {
    height: 90vh;
    width: 80vw;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    /* background-color: lightblue; */
}

.container-large {
    height: auto;
    width: 80vw;
    margin: 20px auto;
    display: flex;
    flex-direction: row;

    /* background-color: lightblue; */
}

.reverse-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.inner-half-container {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
/* -------------------------------------------------HERO------------------------------------------------------------------------- */
.hero-txt {
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    

    /* background-color: lightgreen; */
}


.hero-img {
    height: 60%;
    width: 60%;
    margin: 0 0 0 auto;

    border-radius: 2px;

}

.btn-container {
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;

}

.btn-container a{
    color: #151515;
    text-decoration: none;
}

button {
    height: 50px;
    width: 200px;
    margin-right: 20px;
    border: none;
    border-radius: 4px;

    background-color: #9EBC9F;
    transition: ease-out 0.5s;
}

button:hover {
    background-color: #7BA37C;
    
}
/* --------------------------------------------------BIO/services---------------------------------------------------------------------------- */
.bio-container {
    height: 30%;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 120px 0px 120px 0px;


    /* border: solid red 1px; */

}

.bio-img {
    height: 300px;
    width: auto;
    border-radius: 6px;
    margin-right: auto;

}

.services-container {
    height: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;

    /* border: solid black 2px; */
}

.service-ul {
    list-style-type: none;
    padding: 0;
    
  }

.service-head {
    font-size: 24px;
    font-family: font-bold;
    margin: 0 auto;
}

.service-ul li {
    background-color: #ddd;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
  }

  .highlight {
    /* background-color: #60A561; */
    color: #60A561;
    padding: 10px;
    border-radius: 4px;
  }

  /* ------------------------------------------contact----------------------------------------------------------------- */

  .contact-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50vw;
    max-width: 600px;
  }

  h2 {
    margin-bottom: 20px;
    color: #151515;
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .contact-info p {
    margin: 5px 0;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 5px;
  }

  input, textarea {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    font-size: 1rem;
  }


