* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button,
a {
  font-family: 'Quicksand', sans-serif;
}

body {
  background-color: #ffffff;
  font-size: 1.1rem;
  color: #2c2c2c;
}

section {
  padding: 60px 0;
}

h1 {
  max-width: 700px;
  margin: 15px auto;
}

h2 {
  color: #3ba149;
  font-size: 2.5rem;
  font-weight: 700;
}

ul {
  list-style: none;
}

ul li {
  font-weight: 600;
  margin: 5px 0;
  font-size: 1rem;
}

p {
  margin: 30px 0;
}

/*  HEADER */
header {
  width: 100%;
}

header nav {
  background: #3ba149 !important;
}

header a img#logo {
  width: 75px;
}

header nav a {
  font-weight: 600;
  color: #f2f2f2;
  transition: all ease 0.7s;
}

header nav a:hover {
  transform: scale(1.1);
  color: #fff;
  transition: all ease 0.7s;
}

/* SECTION HOME */
section#home {
  background-color: #3ba149;
  position: relative;
}
section#home h1 {
  font-weight: 700;
  font-size: 3.5rem;
}
section#home h1 span {
  color: #ffffff;
}
section#home div#content-zindex {
  z-index: 1;
  position: relative;
}
section#home img#mountains {
  width: 100%;
  position: absolute;
  bottom: 0;
}

/* BOX CONTENT */
.box-content {
  max-width: 900px;
  width: 100%;
  padding: 30px;
  background: #ffffff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 30px auto;
}

.btn {
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: #ffffff !important;
  transition: all ease 0.7s;
}

.btn:hover {
  transform: scale(1.05);
  transition: all ease 0.7s;
}

img.images-all {
  max-width: 400px;
  width: 100%;
}

p.p-all {
  max-width: 900px;
  margin: 0 auto;
}

img#macitour-app {
  border: 4px solid #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

/* MEMBERS TEAM */
.card-member {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center !important;
  margin: 10px;
}
.card-member img {
  border-radius: 30px 70px 40px 70px;
  height: 300px;
  width: 250px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
  display: block;
  background: #fff;
  margin: 0 auto;
}
.card-member h3 {
  font-weight: 600;
  text-align: center !important;
  margin: 15px auto -20px auto;
}

.btn-primary,
.btn-primary:hover {
  background: #3ba149;
  border-color: #3ba149;
}

.btn-light,
.btn-light:hover {
  background: #fff;
  color: #3ba149 !important;
  border-color: #fff;
}

/* SECTION SPONSORS */
section#sponsors {
  background-color: #eff0e8;
}
.card-logo {
  max-width: 300px;
  min-width: 300px;
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.card-logo img {
  margin: 0 auto 10px auto;
}
.card-logo strong {
  text-align: center;
  font-weight: 500;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 500px) {
  h1 {
    font-size: 3rem !important;
  }
  h2 {
    font-size: 2rem;
  }
  .box-content {
    max-width: 350px;
  }
}
