<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Attila Style */
:root {
  --Font: #4D5968;
  --Blk: #6495ed;

  --Green-Lght: #90b1a2;
  --SilverGreen: #5bb088;

  --Green: #477D64;
  --Drk-Green: #26544A;

  --Bg: #FFF;
} /* Attila Font Color: #4D5968 */

@font-face {
  font-family: "Nunito-Sans";
  src: url("../fonts/nunito-sans/NunitoSans-Regular.ttf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html { line-height: 1.15; }
body {
  overflow-x: hidden;
  background-color: var(--Bg);    

  font-size: 15px;
  font-family: 'Nunito-Sans';
  font-weight: 400;
  line-height: 1.618;
}
section {
  position: relative;
}



/* --------- */
/*  Wrapper  */
.Page-Wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.Wrapper-Long {
  position: relative;
  width: 100%;
  margin: 0 auto;
}




/* ---------- */
/* Font Style */
h1 {
  font-size: 2.2em;
  font-weight: 400;
  color: var(--Drk-Green);
}
h2 {
  font-size: 1.8em;
  color: var(--Green);
}
h3 {
  font-size: 1.6em;
  font-weight: 500;
  color: var(--Drk-Green);
}
h4 {
  font-size: 1.5em;
  color: var(--Green);
  font-weight: 500;
}
h5 {
  font-size: 1.4em;
  font-weight: 500;
}
h6 {
  font-size: 1.2em;
  font-weight: 500;
}

a {
  color: var(--Green);
  text-decoration: none;
}
    a:hover {
      color: var(--Green-Lght);
    }
p {
  font-size: 1.2em;
  color: var(--Font);
}

  /* Superscripts */
h1 sup { font-size: 14px; }
   sup { font-size: 12px; }


/* ------------ */
/* Green Button */
button {
  background: linear-gradient(106deg, rgba(119,158,112,1) 0%, rgba(78,129,102,1) 36%, rgba(24,92,90,1) 100%);
  padding: 10px 30px;
  font-weight: bold;
  font-size: 1em;
  border: none;
  border-radius: 30px;
  color: #F2F2F2;
}
button a {
  color: white;
}

button:hover {
  color: white;
  cursor: pointer;
}
button a:visited {
  color: white;
}
.btn:hover {
  background: linear-gradient(106deg, rgba(78,129,102,1) 0%, rgba(24,92,90,1) 36%, rgba(119,158,112,1) 100%);
  cursor: pointer;
}






:root { --BannerHeight: 120px; }
/* ------------ */
/* Small-Banner */
  .Banner-Sm {
    background: #FFFAEE; 
    /* background: radial-gradient(759px at 14% 22.3%, rgb(10, 64, 88) 0%, rgb(15, 164, 102) 100%); */
    /* background-image: url(../../assets/images/Misc/Banners/Publications.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: var(--BannerHeight);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .Banner-Sm h1 {
    position: relative;
    margin: 0 auto;

    font-size: 2.6em;
    color: #395A48;
  }


    .Banner-Sm-Overlay {
      display: flex;
      position: absolute;
      align-items: center;
      justify-content: center;
    
      top: 40;
      left: 0;
      height: var(--BannerHeight);
      width: 100%;
      z-index: 5;
      background-color: none;
    } 









/* ---------*/
/* Sections */
.row { padding: 40px 0; }

/*.Sec-Title {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 6.5vh;
  top: -10px;
  z-index: 25;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 15px;
  margin-top: 40px;
}*/







  
  /* --------- */
  /*    Fog    */
  .Fog {
    background: url("../../assets/images/Products/Cottonwood/Foggy-Mirrored.jpg");
    background-repeat: repeat-x;
    height: 400px;
    margin-top: 2px;
  }
    .Overlay-Fog {
      position: relative;
      top: 80px;
      font-size: 1.1em;
      background: rgba(0,0,0, 0);
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
     .cFog {
       color: #fff;
     }
       .cFog p {
          color: #FFF;
          font-size: 1.05em;
       }
     
</pre></body></html>