/* Style sheet for Guillermo-Alarcon */

:root {
  --main-color: #006b23;
  --main-light-color: #dce8df;
  --main-dark-color: #3f2816;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
  }

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.text-main {
  color: var(--main-color);
}

.bg-color-main {
  background-color: var(--main-color);
}

.bg-color-secondary {
  background-color: var(--main-light-color);
}

.bg-color-dark {
  background-color: --main-dark-color;
}

.btn {
  border: solid 2px var(--main-color);
  background-color: var(--main-color);
  color: white;
}

.btn:hover {
  border: solid 2px var(--main-color);
  background-color: white!important;
  color: var(--main-color)!important;
  text-decoration: none;
}
  

.hero {
  /* min-height: 100vh; */
  background-image: url(images/hero.jpg), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
  /* background-color: rgba(0, 0, 0, 1); */
}

.title-underline {
  position: relative;
  display: flex;
  align-self: center;
  z-index: 5;
}

.title-underline::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 7%;
  left: 5%;
  z-index: -1;
  height: 20%;
  width: 0%;
  background-color: var(--main-color);
  transition: width 0.5s ease-out;
}

.animate-underline::after {
  width: 100%;
  animation: growUnderline 0.5s forwards;
}

.title-underline-2 {
  position: relative;
  display: flex;
  align-self: center;
  z-index: 5;
}

.title-underline-2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 7%;
  left: 5%;
  z-index: -1;
  height: 20%;
  width: 0%;
  background-color: white;
  transition: width 0.5s ease-out;
}

.animate-underline-2::after {
  width: 100%;
  animation: growUnderline 0.5s forwards;
}

@keyframes growUnderline {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.top {
  clip-path: polygon(0 0,100% 0,100% 100%,0 calc(100% - 50px));
}

.bottom {
  clip-path: polygon(0 0,100% 50px,100% 100%,0 100%);
  margin-top: -50px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--main-color)!important;
  color: white;
  font-family: var(--bs-body-font-family);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
  font-family: var(--bs-body-font-family);
}

