

/* Navigation font family & size */
.navbar a {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  padding: 0px;
  /* From Here */
  position: relative;
  transition: all 0.5s;
  text-transform: uppercase;
}

/* Creates a hidden box at the corner of links with a border on two sides */
/* Adapted from tutorial on Udemy */
.collapse a:before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 3px solid green;
  border-width: 0 0 3px 3px;
  opacity: 0;
  transition: all 0.3s;
}

/* Adapted from tutorial on Udemy */
.collapse a:hover:before {
  opacity: 1;
  bottom: -4px;
  left: -4px;
}

/* Adapted from tutorial on Udemy */
.collapse a:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border: 3px solid green;
  border-width: 3px 3px 0px 0px;
  opacity: 0;
  transition: all 0.3s;
}

/* Adapted from tutorial on Udemy */
.collapse a:hover:after {
  opacity: 1;
  top: -4px;
  right: -4px;
}

/* Adapted from tutorial on Udemy */
  .navbar-collapse a:hover {
  background-color: rgba(0, 128, 0, 0.3);
}

/* Centre aligns drop menu options */
.navbar-collapse {
  text-align: center;
}

body {
  margin: 0px;
  font-family: "Lato", sans-serif;
}

/* Adds green line above main image */
.banner-parent {
  position: relative;
  text-align: center;
  color: white;
  text-align: center;
  border-top: 4px solid;
  border-color: #457545;
}

/* Positions and styles text on main image */
.top-left {
  position: absolute;
  top: 50px;
  left: 5%;
  padding: 5px;
  font-size: 4.3rem;
  text-transform: uppercase;
  font-family: 'Acme', sans-serif;
  text-shadow: 2px 2px #00000031;
  color: white;
  background-color:#555555ea;

}

/* Positions and styles text on main image */
.middle-left {
  position: absolute;
  top: 175px;
  left: 5%;
  padding: 5px;
  font-size: 2.1rem;
  text-transform: uppercase;
  font-family: 'Acme', sans-serif;
  text-shadow: 2px 2px #00000031;
  color: white;
  background-color:#555555ea;
  margin-right: 20px;
}


h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: #555555;
}

/* Styles landing pages opening text */
.landing-header {
  text-align: center;
  font-family: "Merriweather", serif;
  color: #457545;
}

/* Styles landing page text after intro */
.landing-text {
  text-align: center;
  font-family: "Merriweather", serif;
  color: #353535;
  padding-top: 30px;
  line-height: 2;
}

.footer {
  background-color: #457545;
  display: flex;
}

.footer-child a, .footer-child aa:hover{
  align-items: left;
  text-align: left; 
  color: white;
}


strong {
  color: green;
}

/* Positions phone number and email above navigation */
.contact-wrapper {
    justify-content: flex-end;
}


/* Text and background color for service images */
.services-header {
    position: absolute;
    bottom: 25%;
    text-align: center;
    background-color: #457545c7;
    font-family: "Merriweather", serif;
    color: white;
    font-size: 1.5rem;
    padding: 2rem 0rem;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    text-shadow: 3px 3px 5px #353535;
}

/* Page Divider */
.services-divider {
    background-color: #457545;
    text-align: center;
}

/* Styling for Services text */
.our-services {
    font-family: "Merriweather", serif;
    color: white;
    padding: 20px;
}

/* NPTC Logo positioning */
.qualifications {
  text-align: center;
}

/* Colors svg's at top of page */
.contact-icons {
  text-decoration: none;
  color: black;
}

/* Styles phone and email link at top of page */
.contact-icons:hover {
  text-decoration: none;
  color: #457545;
}

/* Smooth Scrolling for Anchors */
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

a:hover{
  text-decoration: none;

}

/* Styles questions on FAQ page */
.question{
  font-size: 1.5rem;
  text-align: center;
  color: #555555;
}

/* Styles answers on FAQ page */
.answer{
  font-size: 1rem;
  text-align: center;
  color: #555555;
}

/* Styles logo text (next to acorn) */
.logo-text {
  text-transform: uppercase;
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  color: #353535;
}

/* Styles privacy policy */
.privacy{
  line-height: 1.75rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
}




/* Changes layout when below 992px */
@media only screen and (max-width: 992px) {
    .contact-wrapper {
        justify-content: space-between;
    }
  }

  /* Changes layout when below 640px */
@media only screen and (max-width: 640px) {
    .middle-left {
      display: none;
    }
    .top-left{
      margin-right: 10px;
      display: none;
    }

    .email-wrapper{
      display: none;
    }

  }
/* Ultrawide resolution layout improvements */
  @media only screen and (min-width: 1921px) {
    .middle-left {
      left: 33%;
    }
    .top-left{
      margin-right: 10px;
      left: 33%;
    }



  }

  