:root {
  --primaryC: #20e3b2;
  --secondaryC: #00a676;
  --thirdC: #00a676;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*----------------- MEDIA -----------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .hero-content {
    text-align: center;
    padding-left: 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: smaller;
  }

  .about-video {
    display: none;
  }
  .about-inner {
    text-align: center;
    height: 600px;
  }

  .box {
    min-width: 300px;
  }

  .btn {
    margin-right: 0;
  }

  #contact-form input textarea {
    width: 200px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  ...;
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  ...;
}

/*----------------- GENERAL-----------------*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

.lead {
  font-size: 2.5rem;
}

.m1 {
  margin: 20px;
}

.m2 {
  margin: 30px;
}

.p1 {
  padding: 20px;
}

.p2 {
  padding: 30px;
}

.text-center {
  text-align: center;
  margin: 30px;
}

#header-img {
  margin-left: 20px;
  margin-bottom: 0px;
}

#header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #333;
  background-color: #fff;
  width: 100%;
  height: 80px;
  z-index: 1;
}
/*----------------- NAV -----------------*/
#nav-bar ul {
  display: flex;
  align-items: center;
}

#nav-bar li {
  list-style: none;
}

#nav-bar a {
  color: var(--secondaryC);
  text-decoration: none;
  margin: 30px 40px;
  letter-spacing: 3px;
  font-size: 1.3rem;
  font-weight: bold;
}

#nav-bar ul li a:hover {
  border-bottom: 3px solid #1c63b8;
  color: #1c63b8;
  font-weight: bold;
}
#nav-bar .navbar-toggler {
  display: none;
}
/*----------------- NAV MEDIA -----------------*/
@media (max-width: 800px) {
  #nav-bar {
    padding: 0;
  }

  #nav-bar ul {
    position: absolute;
    top: 80px;
    left: 0px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;

    width: 100%;

    background-color: #fff;
    /* height: auto; */
    height: 100vh;
    max-height: 0;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
  }
  #nav-bar ul.open {
    max-height: 100vh;
  }
  #nav-bar ul li {
    width: 100%;
  }
  #nav-bar ul li a {
    padding: 0;
  }
  #nav-bar .navbar-toggler {
    display: block;
    position: absolute;

    top: 28px;
    right: 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 10px;
    cursor: pointer;
  }

  #nav-bar .navbar-toggler span,
  #nav-bar .navbar-toggler span::before,
  #nav-bar .navbar-toggler span::after {
    display: block;
    content: "";
    background-color: #333;
    height: 3px;
    width: 28px;
    border-radius: 4px;
    transition: all ease-in-out 0.3s;
  }
  #nav-bar .navbar-toggler span::before {
    transform: translateY(-8px);
  }
  #nav-bar .navbar-toggler span::after {
    transform: translateY(5px);
  }

  #nav-bar .navbar-toggler.open-navbar-toggler span {
    background-color: transparent;
  }

  #nav-bar .navbar-toggler.open-navbar-toggler span::before {
    transform: translateY(0px) rotate(45deg);
  }
  #nav-bar .navbar-toggler.open-navbar-toggler span::after {
    transform: translateY(-3px) rotate(-45deg);
  }
}
/*----------------- HERO -----------------*/
#hero-section {
  height: 100vh;
  background: url(https://i.imgur.com/cM9I3aQ.png) no-repeat center center/cover
    fixed;
  display: flex;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  width: 50%;
  height: 100vh;
  text-align: left;
  padding-left: 50px;
  font-size: 1.4em;
  line-height: 1.5;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  max-width: 900px;
  margin-bottom: 30px;
}
/*----------------- BUTTON -----------------*/
.btn {
  padding: 15px;
  margin-top: 50px;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: var(--secondaryC);
  font-size: 1rem;
  outline: none;
  text-decoration: none;
  margin-right: 30px;
}
.btn-secondary {
  padding: 15px;
  margin-top: 50px;
  border-radius: 10px;
  color: #fff;
  background: #f4f4f4;
  font-size: 1rem;
  outline: none;
  text-decoration: none;
}
/*----------------- NEWSLETTER -----------------*/
.btn-news {
  display: inline-block;
  padding: 15px;
  border: none;
  border-radius: 10px;
  color: #fff;
  background: var(--secondaryC);
  font-size: 1rem;
  outline: none;
  text-decoration: none;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 160px;
  width: 100%;
  background: #fff;
  margin: 2em auto;
}

.newsletter h3 {
  margin: 10px;
}
/*----------------- FORM -----------------*/
#form {
  text-align: center;
}

#form input {
  padding: 10px;
  margin: 10px;
  width: 400px;
  outline: none;
}
/*----------------- ABOUT -----------------*/
#about-us {
  margin-top: 10vh;
  margin-bottom: 10vh;
}
.container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.about-inner {
  height: 500px;
  width: 600px;
  padding: 20px;
}

.about-inner h2 {
  line-height: 1.2;
  font-size: 2em;
  color: var(--secondaryC);
  margin-bottom: 20px;
}

.about-inner h3 {
  line-height: 1.2;
  font-size: 1.5em;
  color: var(--secondaryC);
  margin-bottom: 4px;
}

.about-inner p {
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-list {
  margin-bottom: 0px;
  list-style: none;
  font-weight: bolder;
  line-height: 2.1;
}

.about-list a {
  color: #1c63b8;
}
/*----------------- SERVICES -----------------*/
#services {
  background: url("https://i.imgur.com/15M508G.jpg") no-repeat center
    center/cover fixed;
}

.services-inner {
  background: var(--thirdC);
  background-opacity: 80%;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  line-height: 2;
  padding: 30px;
}

.services-inner h1 {
  font-size: 2em;
}
/*----------------- BOXES -----------------*/
.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin: 0 100px;
}

.box {
  height: 200px;
  width: 300px;
  background: #fff;
  margin: 20px;
  color: black;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
  font-size: 0.9rem;
  line-height: 2;
  border-radius: 10px;
}

.box h3 {
  font-size: large;
  margin-bottom: 10px;
}
.box p {
  margin-bottom: 10px;
}

.box:hover {
  background: #fff;
  color: #333;
  transform: translateY(-10px);
  transition: ease 0.5s;
}
/*----------------- CONTACT -----------------*/
#contact {
  margin: 5em;
}

.form {
  margin: 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.form {
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

#contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#contact-form input {
  padding: 10px;
  margin: 16px;
  width: 400px;
  outline: none;
  border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #eee;
}

textarea {
  margin: 20px;
  padding: 10px;
  width: 400px;
  height: 100px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #eee;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  height: 575px;
  width: 400px;
  align-items: center;
  padding: 0px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  border-radius: 10px;
}

.contact-box {
  width: 360px;
  height: 150px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  align-items: center;
  display: flex;
  color: #fff;
  background: var(--secondaryC);
  margin: 10px;
  border-radius: 10px;
}

.box-inner {
  margin: auto auto;
  line-height: 1.5;
}
/*----------------- MAPS -----------------*/
.google-maps {
  height: 400px;
  width: 100%;
  margin-top: 20px;
}
/*----------------- FOOTER -----------------*/
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  text-align: center;
  margin-top: 0px;
  background: var(--secondaryC);
  color: #fff;
  clear: both;
}

