:root {
  --clr-primary-400: hsl(102, 15%, 33%);
  --clr-primary-300: hsl(100, 18%, 43%);

  --clr-neutral-100: hsl(0, 0%, 100%);
  --clr-neutral-900: hsl(0, 0%, 0%);

  --ff-primary: "Montserrat", sans-serif;

  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;

  --fs-400: 1rem;
  --fs-500: 1.25rem;
  --fs-600: 1.5rem;
  --fs-700: 2.25rem;
  --fs-800: 2.5rem;

  --fs-body: var(--fs-400);
  --fs-primary-nav: var(--fs-500);
  --fs-secondary-nav: var(--fs-600);
  --fs-button: var(--fs-400);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: auto;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Utility Classes */

.text-primary-300 {
  color: var(--clr-primary-300);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-primary-300 {
  background-color: var(--clr-primary-300);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.fw-regular {
  font-weight: var(--fw-regular);
}
.fw-medium {
  font-weight: var(--fw-medium);
}
.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}
.fw-bold {
  font-weight: var(--fw-bold);
}

.fs-primary-nav {
  font-size: var(--fs-primary-nav);
}
.fs-secondary-nav {
  font-size: var(--fs-secondary-nav);
}

.fs-400 {
  font-size: var(--fs-400);
}
.fs-500 {
  font-size: var(--fs-500);
}
.fs-600 {
  font-size: var(--fs-600);
}
.fs-700 {
  font-size: var(--fs-700);
}
.fs-800 {
  font-size: var(--fs-800);
}

.container {
  --max-width: 1176px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - var(--padding) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.even-columns {
  display: grid;
  gap: 10rem;
}

@media (min-width: 50em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .container-services .box-container {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
}

/* General Styling */

body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-neutral-900);
}

.button {
  cursor: pointer;
  border-radius: 100vmax;
  padding: 1em 1.75em;
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-400);
  color: var(--clr-primary-400);
  background-color: var(--clr-neutral-100);
  margin-top: 60px;
}

button:hover {
  background-color: var(--clr-primary-400);
  color: var(--clr-neutral-100);
  border: none;
}

footer {
  background-color: var(--clr-primary-400);
}

h2 {
  margin-bottom: 20px;
}

/** Services **/

.container-services {
  padding: 15px 9%;
  padding-bottom: 100px;
  margin-top: 100px;
}

.container-services .heading {
  text-align: center;
  width: 50%;
  margin: auto;
}

.container-services h1 {
  padding-bottom: 40px;
}

.container-services p {
  padding-bottom: 40px;
  height: 150px;
  overflow: scroll;
}

.container-services .box-container {
  display: grid;
  grid-template-columns: 430px 430px 430px;
  grid-template-rows: 390px 390px;
  gap: 33px;
  justify-content: center;
}

.container-services .box-container .box {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
  padding: 30px 20px;
}

.container-services .box-container .box img {
  height: 100px;
  display: block;
  margin: 0 auto;
}

.container-services .box-container .box h3 {
  padding-bottom: 15px;
}

.container-services .box-container .box p {
  text-align: center;
}

.container-services .box-container .box:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .container-services {
    padding: 20px;
  }

  .container-services .box-container {
    grid-template-columns: 430px;
    grid-template-rows: 390px 390px 390px 390px 390px 390px;
  }
}

/** Testimonials **/

.background-testimonials {
  background-color: rgba(103, 129, 90, 0.2);
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tstimonialsSpecial {
  width: 100px;
  height: 100px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin-bottom: 100px;
  margin-top: 100px;
  overflow: hidden;

}

.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
}

.slide p {
  text-align: center;
  padding: 0 160px;
}

.slide .quote-icon {
  font-size: 30px;
  color: #668159;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.nav-btn::after,
.nav-btn::before {
  color: #668159;
}

.swiper-pagination-bullet {
  background-color: #668159 !important;
}

/** Testimonials **/

.contact-heading {
  text-align: center;
  width: 50%;
  margin: auto;
}

.contact-heading h1 {
  padding-bottom: 40px;
}

.contact-heading p {
  padding-bottom: 10px;
}

.contact label,
.contact input,
.contact textarea {
  display: block;
  width: 100%;
}
.contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact li {
  padding: 0.3em;
}
.contact span {
  font-weight: 700;
  color: #102a43;
  line-height: 35px;
  line-height: 2.5rem;
  font-size: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.contact input[type="submit"] {
  background: #668159;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 5px;
  margin-top: 1.3em;
}

.contact .container {
  width: 460px;
  margin: 5em auto;
}
.contact form {
  background-color: #ffffff;
  padding-top: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  overflow: hidden;
}

.contact .required-star {
  color: #668159;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 9px 20px;
  border: 1px solid #e1e2eb;
  background-color: #fff;
  color: #102a43;
  caret-color: #829ab1;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1rem;
  line-height: 29px;
  line-height: 2rem;
  box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
  border-radius: 3px;
  line-height: 29px;
  line-height: 2rem;
}

.copyRight {
  text-align: center;
  height: 150%;
}

header {
  margin-top: 2%;
}

.logoHeader {
  width: 100%;
  margin-left: -110px;
}

nav {
  float: right;
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: #ffffff;
  color: #463f3f;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  background: #f2f2f2;
  color: #668159;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/*
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background: #ffffff;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: -20px;
  float: left;

  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}

#LinkedIn {
  color: #668159;
}

.imgIdk {
  border-radius: 50%;
}

.image2 {
  border-radius: 50%;
}




