@charset "utf-8";
/* CSS Document */

body {
  min-height: 75rem;
  padding-top: 5rem;
}
a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover, a:focus {
  color:#fa6e61;
}

#home {

}
.navbar {
  border-bottom: 1px solid #fa6e61;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #fa6e61;
}
.nav-link:hover, .nav-link:focus {
  color: #fa6e61;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fa6e61;
    text-decoration: none;
    background-color: #e9ecef;
}
.featured-content  {

}
/* TYPOGRAPHY */

.display-7 {
  font-size: calc(1.5rem + 1.25vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-7 {
    font-size: 1.75rem;
  }
}
h1, h2, h3, h4, h5 {
  text-transform: uppercase;
  }

h1, .h1 {
  font-size: calc(1.2rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2rem;
  }
}

h2, .h2 {
  font-size: calc(1.10rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3 {
  font-size: calc(1.15rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-size: calc(1.15rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.15rem;
  }
}

h5, .h5 {
  font-size: 1rem;
}

.lined::after {
  content: '';
  display: block;
  width: 2.8rem;
  margin: 0.5rem 0;
  height: 1px;
  background: #2b90d9;
}
.lined-light::after {
  background: #f8f9fa;
}

.lined-dark::after {
  background: #333333;
}
@media (min-width: 992px) {

}
.btn-red {
  color: #000;
  background-color: #fa6e61;
  border-color: #BA2A1B;
}
.btn-red:hover {
  color: #fff;
  background-color: #BA2A1B;
  border-color: #fa6e61;
}
.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #000!important;
  background-color: #fff!important;
  border-color: #1a1e21;
}
.icon-list {
  padding-left: 0;
  list-style: none;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: .25rem;
}
.icon-list li::before {
  display: block;
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-right: .5rem;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E") no-repeat center center / 100% auto;
}
.figure-caption {
  padding: 1rem 0;
  font-size: 1.15em;
  line-height: 1.35rem;

	color: #666;
}

.bg-home {
  background: url("../img/bg-forest-abstract-bw.svg");
  background-size:cover;
  background-repeat:no-repeat;
  background-position: bottom right;
}


@media (max-width: 767.98px) {
.bg-home {
  background: none;
}
}

.border-top-green {
  border-top: 2px solid #dfef87;
}
.border-top-red {
  border-top: 2px solid #fa6e61;
}
/*
*
* ==========================================
* CARD
* ==========================================
*
*/
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none;
  border-radius: 0rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 0rem;
  border:none;
}
.card-body h4 {
  color: #666;
  word-break:keep-all;
  word-wrap:normal;
  font-size: 1.25em;
}
.card-body h5 {
  color: #666;
  word-break:keep-all;
  word-wrap:normal;
  font-size: 1em;
}
.card-body h5 a {
  color: #666;
}
.card-body h5 a:hover {
  color:#fa6e61;
}
.card-body h6 {
  color: #666;
/*  word-break:keep-all; */
  word-wrap:normal;
  font-size: 0.85em;
  text-transform: uppercase;

}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border-top: none;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer a {
  color: #666;
  text-decoration: none;
}
.card-footer a:hover {
  color:#fa6e61;
}
/* Links */

a.link1 {
  text-decoration: none;
  color: #fa6e61;
  font-weight: 600;
  padding: .05rem .125rem;
  background: linear-gradient(to top,rgba(250,112,97,1),rgba(250,112,97,0.65));
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0 0;
  border-radius: 0.25rem;
}
a.link1:hover {
  color: #000;
  background-size: .625rem 3.125rem;
}

a.listlink2 {
  text-decoration: none;
  color: #fff;

  /*
  border-bottom: .0625rem solid #4BDC54;
  */
  border-bottom: .1rem dotted #ffff99;
  padding-top: .05rem;
  padding-bottom: .05rem;
  background: linear-gradient(to bottom,rgba(255,255,153,0),rgba(255,255,153,0.5));
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0 0;
}
a.link2:hover {
  color: #fff;
  background-size: .625rem 3.125rem;
}
a.link3 {
  text-decoration: none;
  color: #000;
  border-bottom: 0.10rem dotted #4383f6;
  padding: .05rem 0.25rem;
  background: linear-gradient(to top,rgba(255,255,102,1),rgba(255,255,102,0.65));
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0 0;
}
a.link3:hover {
  color: #000;
  background-size: .625rem 3.125rem;
  border-bottom: 0.125rem solid #ffff66;
}
a.link4 {
  text-decoration: #f08080;
  color: #000;
  font-weight: 500;
  padding: 0;
  /*
  background: #FFEC8A;
*/
  background: linear-gradient(#f08080,#f08080,#f08080);

  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 1px 1px;

}

a.link4:hover {
  background-size: 2px 5px;
  border-bottom: none;
  text-decoration: none;
  color: #000;
}
/*  color: #fa6e61;
  font-weight: 600;
  padding: .05rem .125rem;
  background: linear-gradient(to top,rgba(250,112,97,1),rgba(250,112,97,0.65));
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 0 0;
  */
/*
*
* ==========================================
* PORTFOLIO
* ==========================================
*
*/

/*


*
* ==========================================
* FOOTER
* ==========================================
*
*/
footer {
  border-top: 2px solid #fa6e61;
  background: #666;
  padding: 2rem 1rem 0rem 1rem;
}

.footer, .footer p, .footer ul li, .footer h2, .footer h3, .footer h4 {
  color: rgba(255,255,255, 0.75);
}
.footer p, .footer p a, .footer li, .footer li a {
  font-size: 1em;
}

.footer h2 {
  font-size: 1.50em;
}
.footer h3 {
  font-size: 1.35em;
}
.footer h4 {
  font-size: 1.25em;
}
.footer p.lead {
  font-size: 1.15em;
  line-height: 1.25rem;
}
.footer a {
  color: rgba(255,255,255,1);
  text-decoration: none;
}
.footer a:hover, .footer a:focus {
  color:#fa6e61;
  text-decoration: none;
}
.footer li {
  line-height: 1.15rem;
  padding: 0px 0px 5px 0px;

}
.footer-credits {
  padding: 1rem 1rem 0rem 1rem;
  margin: auto 0rem;
  border-top: 1px dotted #999;
}
.footer-credits p {
  color: rgba(255,255,255, 0.25);
  font-size: 0.85em;
  text-transform: uppercase;
}
.footer-credits a {
  color: rgba(255,255,255, 0.25);
  font-size: 0.85em;
  text-transform: uppercase;
}
.footer-credits a:hover, .footer-credits a:focus {
  color:#fa6e61;
  text-decoration: none;
}
@media (max-width: 767.98px) {

.footer .lined::after {
  background: #666;
}
.footer .lined-light::after {
  background: #666;
}
.footer .lined-dark::after {
  background: #666;
}
}
@media (max-width: 991.98px) {

  .footer .lined::after {
    background: #666;
}
  .footer .lined-light::after {
    background: #666;
}
  .footer .lined-dark::after {
    background: #545252;
}
}
