:root {
  --green: #73C046;
  --darkGreen: #4e892c;
  --paleGreen: #E3EFD6;
  --lightGreen: #F8FEF4;
  --lightBrown: #FFEDD0;
  --navy: #073C47;
  --orange: #c64600;
  --paleGrey: #EEEFEE;
}

/* raleway-regular - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: local(''),
  url('./assets/fonts/raleway-v27-latin-regular.woff2') format('woff2'),
  /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('./assets/fonts/raleway-v27-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* raleway-700 - latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: local(''),
  url('./assets/fonts/raleway-v27-latin-700.woff2') format('woff2'),
  /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('./assets/fonts/raleway-v27-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

html {
  width: 100%;
  font-size: 62.5%;
  font-family: 'raleway', Arial, Helvetica, sans-serif;

}

body {
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 28px;
}

header {
  background-color: var(--paleGreen);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

header svg {
  max-width: 414px;
}

.logo {
  width: 100%;
  max-width: 400px;
}

nav {
  display: flex;
  flex-direction: column;
}

nav a {
  font-size: 1.4rem;
  cursor: pointer;
  margin-bottom: 10px;
  color: var(--navy);
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 2.8rem;
  margin: 0;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}

.nav-wrapper {
  padding: 5px;
  position: fixed;
  top: 100px;
  right: 2px;
  z-index: 1;
}

.menu-wrapper {
  flex-grow: 1;
}

.menu {
  z-index: 1;
  height: 0px;
  width: 100vw;
  top: 60px;
  left:0;
  position:absolute;
  background-color: var(--paleGreen);
  display:flex;
  align-items: center;
  justify-content: center;
  transition: height 0.3s ease-in-out 0.1s;
}

.menu-content {
  visibility: hidden;
  transition: none;

}

.menu.open {
  z-index: 1;
  height: 20vh;
}

.menu.open .menu-content {
  visibility: visible;
  transition: visibility 0s linear 0.4s;
}

.contact-wrapper {
  display:flex;
  padding: 3px 8px 2px;
  position: fixed;
  top: 78px;
  width: 100%;
  z-index: 1;
  background-color: var(--paleGreen);
}

.contact-info {
  color: var(--navy);
  display: flex;
  flex-grow: 2;
  font-weight: 400;
  font-size: 1.3rem;
  flex-direction: column;
  display: flex;

}

.social-icons {
  display: flex;
  gap: 20px;
  flex-grow: 1;
  justify-content: flex-end;
  margin-right: 25px;
}

.social-icons a {
  display: flex;
  height: 28px;
  align-items: center;
}

.social-icons img {
  height: 20px
}

.contact-info > div {
  flex-grow: 1;
  display: flex;
}

.contact-info a {
  text-decoration: none;
  color: var(--navy);
  align-items: center;
  display: flex;
}

.contact-info .contact-phone {
  margin-left: 10px;
}

.contact-name {
  display: none;
}


.contact-email {
  min-width: 135px
}

.contact-info img {
  filter: invert(18%) sepia(70%) saturate(536%) hue-rotate(142deg) brightness(93%) contrast(98%);
  margin-right: 10px;
}

section {
  position: relative;
}

section.green {
  background-color: var(--lightGreen);
}

section.brown {
  background-color: var(--lightBrown);
}

section .section-content {
  padding: 150px 30px 100px;
  max-width: 600px;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

ul {
  padding-left: 10px;
}

ul li {
  line-height: 3.6rem;
}

ul+ul {
  margin-top: -14px;
}

.angle-right {
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
  background-color: var(--lightBrown);
  height: 30px;
}

.angle-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  background-color: var(--lightBrown);
  height: 30px;
}

.accent {
  color: var(--darkGreen);
  font-size: 2.4rem;
  font-weight: 700;
}

.photo {
  flex-basis: 50%;
  justify-content: center;
  display: flex;
}

.photo img {
  border-radius: 100%;
  height: 150px
}

.photo picture {
  height: 150px;
}

.profile-wrapper {
  margin-bottom: 60px;
}

.profile {
  display: flex;
  margin: 30px 0px;
  gap: 20px;
  flex-direction: column;
}

.profile-name {
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.profile-name h3 {
  margin: 0px;
  font-weight: 700;
  font-size: 2rem;
  font-weight: 400;
}

.profile-name h4 {
  font-weight: 400;
  font-size: 1.4rem;
  margin: 5px 0 10px;
}

.profile-name .email {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--orange);
}

.li-logo {
  height: 20px;
}

.profile-name a+a {
  margin-left: 40px;
}

.profile-name .linkedin {
  display: flex;
  align-items: center;
}

.profile-contact {
  display: flex;
  align-items: center;
}

.seperator {
  max-width: 100px;
  margin-bottom: 50px;
}

.linkedin-logo {
  height: 18px;
}

footer {
  background-color: var(--navy);
  color: var(--paleGrey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-links {
  display: flex;
  margin: 30px 0;
  width: 100%;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.footer-links > div {
  display:flex;
  flex-direction: column;
  text-align: center;
  flex-basis: 50%;
}

.footer-links a {
  text-decoration: none;
  color: white;
  line-height: 35px;
}

.footer-links img {
  margin-right: 10px;
  filter: invert(50%) sepia(35%) saturate(4352%) hue-rotate(330deg) brightness(97%) contrast(108%);
}

footer .footer-links a span {
  width: 90px;
  display: inline-block;
}

#menu-btn {
  padding: 3px 0px 6px 0px;
  height: 20px;
  margin-right: 15px;
}

#menu-btn:hover {
  background-color: var(--paleGreen);
  border-radius: 100%;
  cursor: pointer;
}


/* larger than phone width */
@media only screen and (min-width: 420px) {
  header {
    display: flex;
  }

  .menu-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    margin: 0 40px 3px;
  }
}

/* larger than phone width */
@media only screen and (min-width: 768px) {
  header {
    flex-direction: row;
    height: 85px;
  }

  header picture {
    flex-basis: 40%;
  }

  header .nav-wrapper {
    position: initial;
    align-items: center;
  }

  .menu {
    top: 80px;
  }

  .contact-wrapper {
    display: block;
    padding: 0;
    position: revert;
    top: 78px;
    width: auto;
    display: flex;
    align-items: center;
    flex-basis: 60%;
  }

  .contact-info {
    align-items: center;
  }

  .nav-wrapper {
    padding: 0;
  }
}

/* large still */
@media only screen and (min-width: 1024px) {
  #who-we-are-section .section-content,
  #services-section .section-content {
    max-width: 1250px;
  }

  #services-section .section-content {
    align-items: center;
  }

  #services-section p {
    max-width: 600px;
    margin: 6rem 0;
  }

  #services-section .list-wrapper {
    display: flex;
    width: 1024px;
    justify-content: space-around;
    margin-top: 2rem;
  }

  ul+ul {
    margin-top: auto;
  }

  .who-section-content {
    display: flex;
    gap: 8rem;
  }

  .profile-wrapper {
    flex-basis: 50%;
  }

  .profile-wrapper+.profile-wrapper .profile {
    flex-direction: row-reverse;
  }

  .contact-info a+a {
    margin-left: 100px;
  }

  .seperator {
    display: none;
  }

  .social-icons img {
    height: 27px;
  }

  .contact-info {
    font-size: 1.6rem;
  }

  .contact-name {
    display: block;
    min-width: 90px;
  }

  .contact-email {
    min-width: 180px
  }
}