:root {
  --base-color: #E8985C;
  --white-color:#fbf2e5;
  --green-color:#1b3d2c;
  --brown-color:#B8815A;
}

::selection,
::-moz-selection { /* Applies style to highlighted portion of a page */
    background: #b80000;
    color: #fff;
    text-shadow: none;
}


/* TABLE STYLES
-------------------------------------------- */
.typography table {
    border-collapse: collapse; /* borders are collapsed into a single border when possible */
    border: 1px solid;
    border-color: var(--white-color);
    border-spacing: 0; /* The border-spacing property sets the distance between the borders of adjacent cells - acts as a backup to border-collapse: collapse */
    margin: 0 0 10px;
    text-align: left;
}
  .typography table tr:nth-child(even) {
      background-color: var(--white-color)
  }
  .typography table tr.even,
  .typography table th,
  .typography thead td {
      background-color: var(--white-color);
  }
  .typography table td,
  .typography table th {
      padding: 2px 5px;
      border: 1px solid;
      border-color: var(--white-color);
      vertical-align: top;
  }
  .typography table th {
      font-weight: bold;
  }


/* WYSIWYG EDITOR ALIGNMENT CLASSES OK
-------------------------------------------- */
.typography .text-left {
    text-align: left
}
.typography .text-center {
    text-align: center
}
.typography .text-right {
    text-align: right
}
.typography .text-justify {
  text-align: justify
}


/* IMAGES
-------------------------------------------- */
.typography img {
    height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
    max-width: 75%;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography .captionImage { width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; }
  .typography .captionImage.left {
    float: left;
    margin: 5px 30px 20px 0px;
  }
  .typography .captionImage.right{
    float: right;
    margin: 5px 0 20px 30px;
  }
  .typography .captionImage.left[style],
  .typography .captionImage.right[style] {
    max-width: 50%; /* Overides core width to make responsive */
  }
  .typography .captionImage.left img,
  .typography .captionImage.right img {
    float: none;
    max-width: none;
    width: 100%;
  }
  .typography .captionImage.left img {
    margin-right: -10px;
  }
  .typography .captionImage.right img {
    margin-left: -10px;
  }
  .typography .captionImage.right p {
    margin-left: -10px;
    text-align: left;
    margin-left: -10px;
  }
.typography .captionImage.leftAlone{
  float:none;
  margin: 0 20px 20px 0px;
}
.typography .captionImage.center{
  margin: 0 auto 20px;
}
.typography .captionImage p {
  clear: both;
  margin: 5px 0;
  font-style: italic;
  color: #888;
}

.link_hover, .typography a, .language-button {
  transition: color .3s ease-in-out, background-size .3s ease-in-out;
  background: linear-gradient(to bottom, #e8985c 0%, #e8985c 98%);
  background-size: 0px 100%;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.typography a {
  padding: 0 .25rem;
  margin: 0 -.25rem;
}

.link_hover:hover, .typography a:hover, .language-button:hover {
  background-size: 100% 100%;
color: white;
}

.typography a.blog-card:hover {
  background-size: 0px 100%;

}
.menu-link-block {
padding-left: .25rem;
transition: color .3s ease-in-out, background-size .3s ease-in-out;
background: linear-gradient(to bottom, #e8985c 0%, #e8985c 98%);
background-size: 0px 100%;
background-repeat: no-repeat;
background-position: left 100%;
}
.menu-link-block:hover {
background-size: 100% 100%;
color: white;
}
.menu-link-block:hover .dot-menu-container, .menu-link-block:hover .menu-text{
  transform: translate(0, 0);
}
.menu-links-container .w--current .dot-menu-container,.menu-links-container .section .dot-menu-container {
  transform: translate(0, 0);
  background-position: 24px 0;
}
.menu-links-container .w--current .menu-text, .menu-links-container .section .menu-text {
  transform: translate(0, 0);
}
