body {
  background-color: var(--main-bg-color);
  font-family: var(--font-family);
}

:root {
  --main-color: #95c032;
  --main-color-hover: #87b322;
  --second-color: #084623;
  --second-color-hover: #05381b;
  --main-bg-color: #e9e9e9;
  --font-family: "Syne", sans-serif;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h5 {
  color: #000;
  font-family: "Syne";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p {
  color: #000;
  text-align: justify;
  font-family: Syne;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 960px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h5 {
    font-size: 16px;
  }

  p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h5 {
    font-size: 13px;
  }

  p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 25px;
  }

  p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .contanier {
    max-width: 800px !important;
  }
}

.text-green {
  color: var(--second-color);
}

.btn-bd-primary {
  --bs-btn-font-weight: 400;
  --bs-btn-color: white;
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--bd-violet);
  --bs-btn-border-radius: 0.5rem;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--main-color-hover);
  --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-bd-secondary {
  --bs-btn-font-weight: 600;
  --bs-btn-color: white;
  --bs-btn-bg: var(--second-color);
  --bs-btn-border-color: var(--bd-violet);
  --bs-btn-border-radius: 0.5rem;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--second-color-hover);
  --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-bd-outline-primary {
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--second-color);
  --bs-btn-bg: white;
  --bs-btn-border-color: var(--main-color);
  --bs-btn-border-radius: 0.5rem;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: var(--main-color-hover);
  --bs-btn-hover-border-color: var(--main-color);
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--main-color);
}

@media (max-width: 576px) {
  .btn-lg {
    font-size: 0.8rem;
  }
}

/* HEADER */
.navbar-nav {
  gap: 3rem;
}

.drop-container {
  width: 35%;
}

@media (max-width: 992px) {
  .nav-link {
    font-size: 15px;
  }

  .navbar-nav {
    gap: 0.1rem;
  }
}

@media (max-width: 768px) {
  .drop-container {
    width: 100%;
  }

  .drop-container button {
    height: 50%;
    margin: auto 0;
  }
}
/* END HEADER */

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.main-image {
  transform: rotate(3deg);
  height: 560px;
  width: 528px;
  top: -548px;
  right: 90px;
}

@media (max-width: 960px) {
  .main-image {
    height: 439px;
    width: 414px;
  }
}

@media (max-width: 576px) {
}

@media (max-width: 768px) {
  .main-image {
    transform: rotate(5deg);
    height: 330px;
    width: 311px;
  }
}

@media (max-width: 360px) {
  .main-image {
    transform: rotate(5deg);
    height: 163px;
    width: 165px;
  }
}

.white-background {
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.25);
  padding: 5%;
  margin-bottom: 75px;
}

.btn-movil {
  display: none;
}

/* Second section */
@media (max-width: 768px) {
  .second-title {
    color: var(--main-color);
  }

  .image-second-section {
    display: none;
  }

  .btn-desk {
    display: none;
  }

  .borde {
    border-bottom: 1px solid rgb(230, 226, 226);
  }
  .btn-movil {
    display: block;
  }
}

.img-third-section {
  width: 225px;
  height: 240px;
  left: 0;
  bottom: 30px;
}

.img-third-section-movil {
  display: none;
}

@media (max-width: 768px) {
  .img-third-section {
    display: none;
  }
  .img-third-section-movil {
    display: block;
    width: 103px;
    height: 100px;
    right: 0px;
  }
}

hr {
  border-color: var(--second-color);
  border-width: 2px;
}

.main-content ul {
  list-style: outside disc url("../img/list-style.png");
}

/* FOOTER */
.nav-footer {
  list-style: none;
}

.nav-footer a {
  text-decoration: none;
}

