/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
/* oswald-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/oswald-v57-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/montserrat-v31-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/** COLORS **/
/** FONTS **/
/** LAYOUT **/
/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
header .grid-container {
  width: 100%;
  max-width: none;
}
header .grid-container .site-branding {
  border-color: #2b7037;
  border-top-style: solid;
  border-bottom-style: solid;
  padding-top: calc(1em - 2px);
  padding-bottom: calc(1em - 2px);
  padding-right: 5em;
}

.site-header {
  background: white;
}

/** Navbar **/
.main-title a {
  color: #2b7037;
}

.main-navigation .main-nav ul li[class*=current-menu-] > a {
  color: #588157;
}

.main-navigation .main-nav ul li:not([class*=current-menu-]):hover {
  color: #1a3a29;
  background-color: #2b7037;
}

nav {
  width: 100%;
  border-color: #2b7037;
  border-top-style: solid;
  border-bottom-style: solid;
  background-color: white;
  color: #2b7037;
}
nav a:hover {
  color: #DAD7CD;
  background-color: #2b7037;
}
nav .menu-item-has-children {
  color: #1a3a29;
}
nav .current-menu-item {
  color: #1a3a29;
  text-decoration: underline;
}

/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
/************* HOME PAGE  ***************/
.carousel-container {
  position: relative;
  width: 100%;
  height: 50%;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.slide-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide:hover .slide-overlay {
  opacity: 1;
}

/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
/************* News **********************/
.news ul {
  margin: 0;
}
.news ul li {
  background-color: #cad4b7;
  display: grid;
  padding: 0;
  margin: 5% 0;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  border-radius: 6px;
}
.news ul li h2 {
  grid-column: 1;
  grid-row: 1;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
}
.news ul li h2 a {
  color: #1a3a29;
}
.news ul li h2 a:hover {
  color: #2b7037;
}
.news ul li .wp-block-post-excerpt {
  grid-column: 1;
  grid-row: 2;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.news ul li .entry-meta {
  display: none;
}
.news ul li hr {
  display: none;
}
.news ul li .wp-block-post-date {
  display: none;
}
.news ul .has-post-thumbnail h2 {
  grid-column: 2;
  grid-row: 1;
}
.news ul .has-post-thumbnail .wp-block-post-excerpt {
  grid-column: 2;
  grid-row: 2;
}
.news ul .has-post-thumbnail figure {
  grid-column: 1;
  grid-row: 1/3;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: fill;
  align-self: center;
  line-height: 0;
}

/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
.box-grid {
  background-color: green;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.box-grid div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.box-grid div p {
  background-color: white;
  padding: 20px;
  width: 25%;
  margin: 5%;
  text-align: center;
}
.box-grid .box-info {
  background-color: white;
  padding: 20px;
  width: 25%;
  margin: 5%;
  text-align: center;
}

/**
 * Theme Name: AKN GeneratePress Child
 * Template:   generatepress
 */
* {
  box-sizing: border-box;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #2b7037;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #2b7037;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
}
.timeline__event__title {
  font-family: "Oswald";
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b7037;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #DAD7CD;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
  font-family: "Montserrat";
  color: #1a3a29;
}
.timeline__event__date {
  color: #DAD7CD;
  font-family: "Oswald";
  font-size: 1.5rem;
  font-weight: 600;
  background: #2b7037;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b7037;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #2b7037;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #2b7037;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #2b7037;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.timeline__event__description {
  flex-basis: 60%;
}
.timeline__event--type2:after {
  background: #2b7037;
}
.timeline__event--type2 .timeline__event__date {
  color: #2b7037;
  background: #2b7037;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #2b7037;
}
.timeline__event--type2 .timeline__event__icon {
  background: #2b7037;
  color: #2b7037;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #2b7037;
}
.timeline__event--type2 .timeline__event__title {
  color: #2b7037;
}
.timeline__event--type3:after {
  background: #2b7037;
}
.timeline__event--type3 .timeline__event__date {
  color: #2b7037;
  background-color: #2b7037;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #2b7037;
}
.timeline__event--type3 .timeline__event__icon {
  background: #2b7037;
  color: #2b7037;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #2b7037;
}
.timeline__event--type3 .timeline__event__title {
  color: #2b7037;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
/* oswald-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/oswald-v57-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/montserrat-v31-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  font-family: "Montserrat";
  background-color: white !important;
}

.inside-article {
  background-color: white !important;
}

h1,
h2,
h3 {
  color: #2b7037;
  font-family: "Oswald";
}

h1 {
  text-transform: uppercase;
}

a {
  color: #2b7037;
}

.akn-button {
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  border-radius: 6px;
  color: #1a3a29;
  border: 3px;
  border-color: #1a3a29;
  border-style: solid;
  width: fit-content;
  padding: 0.75em;
}
.akn-button div p {
  margin: 0;
}

.akn-button:hover {
  background-color: #1a3a29;
  color: white;
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
