/* Customizer CSS */

:root { /* This is the color pallette that is used throughout this site. */
	
  --text-color1: #3e3e3e;
  --text-color2: #4caf50;
  --text-color3: #80e27e;
	
	--bg-color1: #ffffff;
  --bg-color2: #4caf50;
  --bg-color3: #80e27e
}

.text-color1 {
  color: #3e3e3e;
  color: var(--text-color1);
}

.text-color2 {
  color: #4caf50;
  color: var(--text-color2);
}

.bg-color1 {
  background-color: #ffffff;
  background-color: var(--bg-color1);
}

.bg-color2 {
  background-color: #4caf50;
  background-color: var(--bg-color2);
}

.nav-link {
  text-transform: capitalize;
  font-weight:600;
}
.nav-link:hover {
  color: #4caf50;
  color: var(--text-color2);
}

.footer-link {
  text-transform: capitalize;
}

.footer-link:hover {
  color: #4caf50;
  color: var(--text-color2);
}

.footer-disclaimer{
  padding-right: 0;
}

@media (min-width: 992px) {
  .footer-disclaimer{
    padding-right: 30px;
  }
}

#Navbar {
  border-top: 5px solid green;
  z-index:3!important;
  height: 100px;
  font-weight: bolder;
}

#myMenu.active {
  color: #fff;
  background-color: #4caf50;
  background-color: var(--bg-color2);
}

.aws-sidebar {
  padding-top: 110px;
  padding-bottom: 10px;
}

.aws-sidebar a {
  text-transform: capitalize;
}

.hero {
  background-position: center right;
  background-size: cover;
  background-image: url("../src/assets/farm-hero.jpg");
  height: 650px;
}

.hero:before {
  content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right, rgba(20,12,12,1), rgba(33,20,20,0.43));
	opacity: .7;
  z-index:0;
  height: auto;
  }

.hero-text {
  font-family: farmhand-sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-align: center !important;
}
@media (min-width: 600px) {
  .hero-text {
   text-align: left !important;
  }
}

.farm-icon {
  width: 30%;
}
@media (min-width: 600px) {
  .farm-icon {
   width: 90%;
  }
}

.hero-title {
  font-size:9vw;
}

@media (min-width: 1170px) {
  .hero-title {
    font-size:108px;
  }
}

.hero-welcome{
  font-size:6vw;
}

@media (min-width: 1170px) {
  .hero-welcome{
    font-size:66px;
  }
}

.no-border {
  border: 0!important;
}

.no-padding {
  padding:0!important;
}

.no-margin {
  margin:0!important;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  opacity: 0;
  pointer-events: none;
  font-size: 0px;
  /* visibility: hidden; */
}

.services-row > div {
  vertical-align: top;
  position: relative;
  float:left!important;
  padding: 0 16px;
  margin-bottom: 48px;
}
@media (min-width: 600px) {
  .services-row > div {
    float: none!important;
    margin-bottom: 0;
  }
}

.services-row > div p {
    margin-bottom: 24px;
}
@media (min-width: 600px) {
  .services-row > div p {
    margin-bottom: 80px;
  }
}

.services-row > div .aws-button {
    position: relative;
}
@media (min-width: 600px) {
  .services-row > div .aws-button {
    position: absolute;
    bottom: 0;
  }
}

.section-title {
  margin-bottom:64px;
}

/* Create a Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax:before {
  content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to bottom right, rgba(20,12,12,1), rgba(33,20,20,0.43));
	opacity: .7;
  z-index:0;
  height: auto;
  }

/* Parallax image (Full height) */
.parallax {  
  min-height: 400px;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .parallax {
    background-attachment: scroll;
    min-height: 400px;
  }
}

input {
  width: 100%;
  height: 72px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: none!important;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: none!important;
  resize: none!important;
}

::placeholder { /* Firefox, Chrome, Opera */ 
  font-style:italic;
} 
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */ 
  font-style:italic;
} 
  
::-ms-input-placeholder { /* Microsoft Edge */ 
  font-style:italic;
} 

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}

.mySlides {display: none}

/* Slideshow container */
.slideshow-container img {
  padding: 1px;
}

.slideshow-container {  
  position: relative;
  margin: auto;
}

.slideshow-container.aws-padding-100 {  
  padding: 0;
  margin: 0 16px;
}

@media (min-width: 992px) {
  .slideshow-container.aws-padding-100 {
    position: relative;
    margin: auto;
    padding: 24px 100px;
  }
}

/* Next & previous buttons */
.prev, .next {
  color: #fff!important;
  position: absolute;
  top:0;
  overflow: hidden;
  z-index: 1;
  width: 50px;
  height: 100%;
  line-height: 50px;
  margin-top: 0;
  padding: 0!important;
  border-radius: 0;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  background-color: none!important;
}

@media (min-width: 992px) {
  .prev, .next {
    color: #fff!important;
    position: absolute;
    top:50%;
    overflow: hidden;
    z-index: 1;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -24px;
    padding: 0!important;
    border-radius: 50%;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    background-color: #4caf50!important;
    background-color: var(--bg-color2)!important;
  }
}

/* Position the "prev button" to the left */
.prev {
  left: 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  border: none!important;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* App.css */

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased!important;
	-moz-osx-font-smoothing: grayscale!important;
	-ms-font-smoothing: antialiased!important;
  /* scroll-behavior: smooth; */
}
/* @media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
} */
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* Normalize.css */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}
summary {
  display: list-item;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
progress {
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
figure {
  margin: 1em 40px;
}
img {
  border-style: none;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
button,
input,
select,
textarea,
optgroup {
  font: inherit;
  margin: 0;
}
optgroup {
  font-weight: bold;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
/* End extract */
html,
body {
  font-family: 'Poppins', Verdana, sans-serif;
  font-size: 16px;
  font-weight: 300; 
  color: #3E3E3E;
  line-height: 1.8;
}
html {
  overflow-x: hidden;
}
h1 {
  font-size: 42px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
.aws-serif {
  font-family: serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin: 10px 0;
  line-height: 1.2;
}
.aws-wide {
  letter-spacing: 4px;
}
hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 20px 0;
}
.aws-image {
  max-width: 100%;
  height: auto;
}
img {
  vertical-align: middle;
}
a {
  color: inherit;
}
.aws-table,
.aws-table-all {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  display: table;
}
.aws-table-all {
  border: 1px solid #ccc;
}
.aws-bordered tr,
.aws-table-all tr {
  border-bottom: 1px solid #ddd;
}
.aws-striped tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}
.aws-table-all tr:nth-child(odd) {
  background-color: #fff;
}
.aws-table-all tr:nth-child(even) {
  background-color: #f1f1f1;
}
.aws-hoverable tbody tr:hover,
.aws-ul.aws-hoverable li:hover {
  background-color: #ccc;
}
.aws-centered tr th,
.aws-centered tr td {
  text-align: center;
}
.aws-table td,
.aws-table th,
.aws-table-all td,
.aws-table-all th {
  padding: 8px 8px;
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
.aws-table th:first-child,
.aws-table td:first-child,
.aws-table-all th:first-child,
.aws-table-all td:first-child {
  padding-left: 16px;
}
.aws-btn,
.aws-button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}
.aws-btn:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.aws-btn,
.aws-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.aws-disabled,
.aws-btn:disabled,
.aws-button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.aws-disabled *,
:disabled * {
  pointer-events: none;
}
.aws-btn.aws-disabled:hover,
.aws-btn:disabled:hover {
  box-shadow: none;
}
.aws-badge,
.aws-tag {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
}
.aws-badge {
  border-radius: 50%;
}
.aws-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.aws-ul li {
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
}
.aws-ul li:last-child {
  border-bottom: none;
}
.aws-tooltip,
.aws-display-container {
  position: relative;
}
.aws-tooltip .aws-text {
  display: none;
}
.aws-tooltip:hover .aws-text {
  display: inline-block;
}
.aws-ripple:active {
  opacity: 0.5;
}
.aws-ripple {
  transition: opacity 0s;
}
.aws-input {
  padding: 8px;
  display: block;
  border: none;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.aws-select {
  padding: 9px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
}
.aws-dropdown-click,
.aws-dropdown-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.aws-dropdown-hover:hover .aws-dropdown-content {
  display: block;
}
.aws-dropdown-hover:first-child,
.aws-dropdown-click:hover {
  background-color: #ccc;
  color: #000;
}
.aws-dropdown-hover:hover > .aws-button:first-child,
.aws-dropdown-click:hover > .aws-button:first-child {
  background-color: #ccc;
  color: #000;
}
.aws-dropdown-content {
  cursor: auto;
  color: #000;
  background-color: #fff;
  display: none;
  position: absolute;
  min-width: 160px;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.aws-check,
.aws-radio {
  width: 24px;
  height: 24px;
  position: relative;
  top: 6px;
}
.aws-sidebar {
  height: 100%;
  width: 200px;
  background-color: #fff;
  position: fixed !important;
  z-index: 2;
  overflow: auto;
}
.aws-bar-block .aws-dropdown-hover,
.aws-bar-block .aws-dropdown-click {
  width: 100%;
}
.aws-bar-block .aws-dropdown-hover .aws-dropdown-content,
.aws-bar-block .aws-dropdown-click .aws-dropdown-content {
  min-width: 100%;
}
.aws-bar-block .aws-dropdown-hover .aws-button,
.aws-bar-block .aws-dropdown-click .aws-button {
  width: 100%;
  text-align: left;
  padding: 8px 16px;
}
.aws-main,
#main {
  transition: margin-left 0.4s;
}
.aws-modal {
  z-index: 5;
  display: none;
  padding-top: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}
.aws-modal-content {
  margin: auto;
  background-color: #fff;
  position: relative;
  padding: 0;
  outline: 0;
  width: 600px;
}
.aws-bar {
  width: 100%;
  overflow: hidden;
}
.aws-center .aws-bar {
  display: inline-block;
  width: auto;
}
.aws-bar .aws-bar-item {
  padding: 8px 12px;
  float: left;
  width: auto;
  /* border: none; */
  display: block;
  /* outline: 0; */
}
.aws-bar .aws-dropdown-hover,
.aws-bar .aws-dropdown-click {
  position: static;
  float: left;
}
.aws-bar .aws-button {
  white-space: normal;
}
.aws-bar-block .aws-bar-item {
  width: 100%;
  display: block;
  padding: 8px 16px;
  text-align: left;
  /* border: none; */
  white-space: normal;
  float: none;
  /* outline: 0; */
}
.aws-bar-block.aws-center .aws-bar-item {
  text-align: center;
}
.aws-block {
  display: block;
  width: 100%;
}
.aws-responsive {
  display: block;
  overflow-x: auto;
}
.aws-container:after,
.aws-container:before,
.aws-panel:after,
.aws-panel:before,
.aws-row:after,
.aws-row:before,
.aws-row-padding:after,
.aws-row-padding:before,
.aws-cell-row:before,
.aws-cell-row:after,
.aws-clear:after,
.aws-clear:before,
.aws-bar:before,
.aws-bar:after {
  content: "";
  display: table;
  clear: both;
}
/* Grid System */
.aws-col,
.aws-half,
.aws-third,
.aws-twothird,
.aws-threequarter,
.aws-quarter {
  float: left;
  width: 100%;
}
.aws-col.s1 {
  width: 8.33333%;
}
.aws-col.s2 {
  width: 16.66666%;
}
.aws-col.s3 {
  width: 24.99999%;
}
.aws-col.s4 {
  width: 33.33333%;
}
.aws-col.s5 {
  width: 41.66666%;
}
.aws-col.s6 {
  width: 49.99999%;
}
.aws-col.s7 {
  width: 58.33333%;
}
.aws-col.s8 {
  width: 66.66666%;
}
.aws-col.s9 {
  width: 74.99999%;
}
.aws-col.s10 {
  width: 83.33333%;
}
.aws-col.s11 {
  width: 91.66666%;
}
.aws-col.s12 {
  width: 99.99999%;
}
@media (min-width: 601px) {
  .aws-col.m1 {
    width: 8.33333%;
  }
  .aws-col.m2 {
    width: 16.66666%;
  }
  .aws-col.m3,
  .aws-quarter {
    width: 24.99999%;
  }
  .aws-col.m4,
  .aws-third {
    width: 33.33333%;
  }
  .aws-col.m5 {
    width: 41.66666%;
  }
  .aws-col.m6,
  .aws-half {
    width: 49.99999%;
  }
  .aws-col.m7 {
    width: 58.33333%;
  }
  .aws-col.m8,
  .aws-twothird {
    width: 66.66666%;
  }
  .aws-col.m9,
  .aws-threequarter {
    width: 74.99999%;
  }
  .aws-col.m10 {
    width: 83.33333%;
  }
  .aws-col.m11 {
    width: 91.66666%;
  }
  .aws-col.m12 {
    width: 99.99999%;
  }
}
@media (min-width: 993px) {
  .aws-col.l1 {
    width: 8.33333%;
  }
  .aws-col.l2 {
    width: 16.66666%;
  }
  .aws-col.l3 {
    width: 24.99999%;
  }
  .aws-col.l4 {
    width: 33.33333%;
  }
  .aws-col.l5 {
    width: 41.66666%;
  }
  .aws-col.l6 {
    width: 49.99999%;
  }
  .aws-col.l7 {
    width: 58.33333%;
  }
  .aws-col.l8 {
    width: 66.66666%;
  }
  .aws-col.l9 {
    width: 74.99999%;
  }
  .aws-col.l10 {
    width: 83.33333%;
  }
  .aws-col.l11 {
    width: 91.66666%;
  }
  .aws-col.l12 {
    width: 99.99999%;
  }
}
.aws-rest {
  overflow: hidden;
}
.aws-stretch {
  margin-left: -16px;
  margin-right: -16px;
}
.aws-content,
.aws-auto {
  margin-left: auto;
  margin-right: auto;
}
.aws-content {
  max-width: 1170px;
}
.aws-auto {
  max-width: 1140px;
}
.aws-cell-row {
  display: table;
  width: 100%;
}
.aws-cell {
  display: table-cell;
}
.aws-cell-top {
  vertical-align: top;
}
.aws-cell-middle {
  vertical-align: middle;
}
.aws-cell-bottom {
  vertical-align: bottom;
}
.aws-hide {
  display: none !important;
}
.aws-show-block,
.aws-show {
  display: block !important;
}
.aws-show-inline-block {
  display: inline-block !important;
}
@media (max-width: 1205px) {
  .aws-auto {
    max-width: 95%;
  }
}
@media (max-width: 600px) {
  .aws-modal-content {
    margin: 0 10px;
    width: auto !important;
  }
  .aws-modal {
    padding-top: 30px;
  }
  .aws-dropdown-hover.aws-mobile .aws-dropdown-content,
  .aws-dropdown-click.aws-mobile .aws-dropdown-content {
    position: relative;
  }
  .aws-hide-small {
    display: none !important;
  }
  .aws-mobile {
    display: block;
    width: 100% !important;
  }
  .aws-bar-item.aws-mobile,
  .aws-dropdown-hover.aws-mobile,
  .aws-dropdown-click.aws-mobile {
    text-align: center;
  }
  .aws-dropdown-hover.aws-mobile,
  .aws-dropdown-hover.aws-mobile .aws-btn,
  .aws-dropdown-hover.aws-mobile .aws-button,
  .aws-dropdown-click.aws-mobile,
  .aws-dropdown-click.aws-mobile .aws-btn,
  .aws-dropdown-click.aws-mobile .aws-button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .aws-modal-content {
    width: 500px;
  }
  .aws-modal {
    padding-top: 50px;
  }
}
@media (min-width: 993px) {
  .aws-modal-content {
    width: 900px;
  }
  .aws-hide-large {
    display: none !important;
  }
  .aws-sidebar.aws-collapse {
    display: block !important;
  }
}
@media (max-width: 992px) and (min-width: 601px) {
  .aws-hide-medium {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .aws-sidebar.aws-collapse {
    display: none;
  }
  .aws-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .aws-auto {
    max-width: 100%;
  }
}
.aws-top,
.aws-bottom {
  position: fixed;
  width: 100%;
  z-index: 2;
}
.aws-top {
  top: 0;
}
.aws-bottom {
  bottom: 0;
}
.aws-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.aws-display-topleft {
  position: absolute;
  left: 0;
  top: 0;
}
.aws-display-topright {
  position: absolute;
  right: 0;
  top: 0;
}
.aws-display-bottomleft {
  position: absolute;
  left: 0;
  bottom: 0;
}
.aws-display-bottomright {
  position: absolute;
  right: 0;
  bottom: 0;
}
.aws-display-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.aws-display-left {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  -ms-transform: translate(-0%, -50%);
}
.aws-display-right {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
}
.aws-display-topmiddle {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
.aws-display-bottommiddle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
.aws-display-container:hover .aws-display-hover {
  display: block;
}
.aws-display-container:hover span.aws-display-hover {
  display: inline-block;
}
.aws-display-hover {
  display: none;
}
.aws-display-position {
  position: absolute;
}
.aws-circle {
  border-radius: 50%;
}
.aws-round-small {
  border-radius: 2px;
}
.aws-round,
.aws-round-medium {
  border-radius: 4px;
}
.aws-round-large {
  border-radius: 8px;
}
.aws-round-xlarge {
  border-radius: 16px;
}
.aws-round-xxlarge {
  border-radius: 32px;
}
.aws-row-padding,
.aws-row-padding > .aws-half,
.aws-row-padding > .aws-third,
.aws-row-padding > .aws-twothird,
.aws-row-padding > .aws-threequarter,
.aws-row-padding > .aws-quarter,
.aws-row-padding > .aws-col {
  padding: 0 16px;
}
.aws-container,
.aws-panel {
  padding: 0.01em 16px;
}
.aws-panel {
  margin-top: 16px;
  margin-bottom: 16px;
}
.aws-code,
.aws-codespan {
  font-family: Consolas, "courier new";
  font-size: 16px;
}
.aws-code {
  width: auto;
  background-color: #fff;
  padding: 8px 12px;
  border-left: 4px solid #4caf50;
  word-wrap: break-word;
}
.aws-codespan {
  color: crimson;
  background-color: #f1f1f1;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 110%;
}
.aws-card {  
}
.aws-card-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.aws-card-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.aws-card-3 {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.aws-card-4 {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.aws-card-5 {
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.aws-spin {
  animation: aws-spin 2s infinite linear;
}
@keyframes aws-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.aws-animate-fading {
  animation: fading 10s infinite;
}
@keyframes fading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.aws-animate-opacity {
  animation: opac 0.8s;
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.aws-animate-top {
  position: relative;
  animation: animatetop 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.aws-animate-left {
  position: relative;
  animation: animateleft 0.4s;
}
@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.aws-animate-right {
  position: relative;
  animation: animateright 0.4s;
}
@keyframes animateright {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
.aws-animate-bottom {
  position: relative;
  animation: animatebottom 0.4s;
}
@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.aws-animate-zoom {
  animation: animatezoom 0.6s;
}
@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.aws-animate-input {
  transition: width 0.4s ease-in-out;
}
.aws-animate-input:focus {
  width: 100% !important;
}
.aws-opacity,
.aws-hover-opacity:hover {
  opacity: 0.6;
}
.aws-opacity-off,
.aws-hover-opacity-off:hover {
  opacity: 1;
}
.aws-opacity-max {
  opacity: 0.25;
}
.aws-opacity-min {
  opacity: 0.75;
}
.aws-greyscale-max,
.aws-grayscale-max,
.aws-hover-greyscale:hover,
.aws-hover-grayscale:hover {
  filter: grayscale(100%);
}
.aws-greyscale,
.aws-grayscale {
  filter: grayscale(75%);
}
.aws-greyscale-min,
.aws-grayscale-min {
  filter: grayscale(50%);
}
.aws-sepia {
  filter: sepia(75%);
}
.aws-sepia-max,
.aws-hover-sepia:hover {
  filter: sepia(100%);
}
.aws-sepia-min {
  filter: sepia(50%);
}
.aws-tiny {
  font-size: 12px !important;
}
.aws-small {
  font-size: 14px !important;
}
.aws-medium {
  font-size: 16px !important;
}
.aws-large {
  font-size: 18px !important;
}
.aws-xlarge {
  font-size: 24px !important;
}
.aws-xxlarge {
  font-size: 36px !important;
}
.aws-xxxlarge {
  font-size: 48px !important;
}
.aws-jumbo {
  font-size: 64px !important;
}
.aws-left-align {
  text-align: left !important;
}
.aws-right-align {
  text-align: right !important;
}
.aws-justify {
  text-align: justify !important;
}
.aws-center {
  text-align: center !important;
}
.aws-border-0 {
  border: 0 !important;
}
.aws-border {
  border: 1px solid #ccc !important;
}
.aws-border-top {
  border-top: 1px solid #ccc !important;
}
.aws-border-bottom {
  border-bottom: 1px solid #ccc !important;
}
.aws-border-left {
  border-left: 1px solid #ccc !important;
}
.aws-border-right {
  border-right: 1px solid #ccc !important;
}
.aws-topbar {
  border-top: 6px solid #ccc !important;
}
.aws-bottombar {
  border-bottom: 6px solid #ccc !important;
}
.aws-leftbar {
  border-left: 6px solid #ccc !important;
}
.aws-rightbar {
  border-right: 6px solid #ccc !important;
}
.aws-section,
.aws-code {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.aws-margin {
  margin: 24px !important;
}
.aws-margin-top {
  margin-top: 24px !important;
}
.aws-margin-bottom {
  margin-bottom: 24px !important;
}
.aws-margin-left {
  margin-left: 24px !important;
}
.aws-margin-right {
  margin-right: 24px !important;
}
.aws-padding-small {
  padding: 4px 8px !important;
}
.aws-padding {
  padding: 8px 16px !important;
}
.aws-padding-large {
  padding: 12px 24px !important;
}
.aws-padding-xlarge {
  padding: 16px 48px !important;
}
.aws-padding-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.aws-padding-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.aws-padding-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.aws-padding-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.aws-padding-64 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.aws-left {
  float: left !important;
}
.aws-right {
  float: right !important;
}
.aws-button:hover {  
  background-color: rgba(255, 255, 255, 0.1);
}
.aws-transparent,
.aws-hover-none:hover {
  background-color: transparent !important;
}
.aws-hover-none:hover {
  box-shadow: none !important;
}
/* Colors */
.aws-amber,
.aws-hover-amber:hover {
  color: #000 !important;
  background-color: #ffc107 !important;
}
.aws-aqua,
.aws-hover-aqua:hover {
  color: #000 !important;
  background-color: #00ffff !important;
}
.aws-blue,
.aws-hover-blue:hover {
  color: #fff !important;
  background-color: #2196f3 !important;
}
.aws-light-blue,
.aws-hover-light-blue:hover {
  color: #000 !important;
  background-color: #87ceeb !important;
}
.aws-brown,
.aws-hover-brown:hover {
  color: #fff !important;
  background-color: #795548 !important;
}
.aws-cyan,
.aws-hover-cyan:hover {
  color: #000 !important;
  background-color: #00bcd4 !important;
}
.aws-blue-grey,
.aws-hover-blue-grey:hover,
.aws-blue-gray,
.aws-hover-blue-gray:hover {
  color: #fff !important;
  background-color: #607d8b !important;
}
.aws-green,
.aws-hover-green:hover {
  color: #fff !important;
  background-color: #4caf50 !important;
}
.aws-light-green,
.aws-hover-light-green:hover {
  color: #000 !important;
  background-color: #8bc34a !important;
}
.aws-indigo,
.aws-hover-indigo:hover {
  color: #fff !important;
  background-color: #3f51b5 !important;
}
.aws-khaki,
.aws-hover-khaki:hover {
  color: #000 !important;
  background-color: #f0e68c !important;
}
.aws-lime,
.aws-hover-lime:hover {
  color: #000 !important;
  background-color: #cddc39 !important;
}
.aws-orange,
.aws-hover-orange:hover {
  color: #000 !important;
  background-color: #ff9800 !important;
}
.aws-deep-orange,
.aws-hover-deep-orange:hover {
  color: #fff !important;
  background-color: #ff5722 !important;
}
.aws-pink,
.aws-hover-pink:hover {
  color: #fff !important;
  background-color: #e91e63 !important;
}
.aws-purple,
.aws-hover-purple:hover {
  color: #fff !important;
  background-color: #9c27b0 !important;
}
.aws-deep-purple,
.aws-hover-deep-purple:hover {
  color: #fff !important;
  background-color: #673ab7 !important;
}
.aws-red,
.aws-hover-red:hover {
  color: #fff !important;
  background-color: #f44336 !important;
}
.aws-sand,
.aws-hover-sand:hover {
  color: #000 !important;
  background-color: #fdf5e6 !important;
}
.aws-teal,
.aws-hover-teal:hover {
  color: #fff !important;
  background-color: #009688 !important;
}
.aws-yellow,
.aws-hover-yellow:hover {
  color: #000 !important;
  background-color: #ffeb3b !important;
}
.aws-white,
.aws-hover-white:hover {
  color: #000 !important;
  background-color: #fff !important;
}
.aws-black,
.aws-hover-black:hover {
  color: #fff !important;
  background-color: #000 !important;
}
.aws-grey,
.aws-hover-grey:hover,
.aws-gray,
.aws-hover-gray:hover {
  color: #000 !important;
  background-color: #9e9e9e !important;
}
.aws-light-grey,
.aws-hover-light-grey:hover,
.aws-light-gray,
.aws-hover-light-gray:hover {
  color: #3E3E3E !important;
  background-color: #f1f1f1 !important;
}
.aws-dark-grey,
.aws-hover-dark-grey:hover,
.aws-dark-gray,
.aws-hover-dark-gray:hover {
  color: #fff !important;
  background-color: #616161 !important;
}
.aws-pale-red,
.aws-hover-pale-red:hover {
  color: #000 !important;
  background-color: #ffdddd !important;
}
.aws-pale-green,
.aws-hover-pale-green:hover {
  color: #000 !important;
  background-color: #ddffdd !important;
}
.aws-pale-yellow,
.aws-hover-pale-yellow:hover {
  color: #000 !important;
  background-color: #ffffcc !important;
}
.aws-pale-blue,
.aws-hover-pale-blue:hover {
  color: #000 !important;
  background-color: #ddffff !important;
}
.aws-text-amber,
.aws-hover-text-amber:hover {
  color: #ffc107 !important;
}
.aws-text-aqua,
.aws-hover-text-aqua:hover {
  color: #00ffff !important;
}
.aws-text-blue,
.aws-hover-text-blue:hover {
  color: #2196f3 !important;
}
.aws-text-light-blue,
.aws-hover-text-light-blue:hover {
  color: #87ceeb !important;
}
.aws-text-brown,
.aws-hover-text-brown:hover {
  color: #795548 !important;
}
.aws-text-cyan,
.aws-hover-text-cyan:hover {
  color: #00bcd4 !important;
}
.aws-text-blue-grey,
.aws-hover-text-blue-grey:hover,
.aws-text-blue-gray,
.aws-hover-text-blue-gray:hover {
  color: #607d8b !important;
}
.aws-text-green,
.aws-hover-text-green:hover {
  color: #4caf50 !important;
}
.aws-text-light-green,
.aws-hover-text-light-green:hover {
  color: #8bc34a !important;
}
.aws-text-indigo,
.aws-hover-text-indigo:hover {
  color: #3f51b5 !important;
}
.aws-text-khaki,
.aws-hover-text-khaki:hover {
  color: #b4aa50 !important;
}
.aws-text-lime,
.aws-hover-text-lime:hover {
  color: #cddc39 !important;
}
.aws-text-orange,
.aws-hover-text-orange:hover {
  color: #ff9800 !important;
}
.aws-text-deep-orange,
.aws-hover-text-deep-orange:hover {
  color: #ff5722 !important;
}
.aws-text-pink,
.aws-hover-text-pink:hover {
  color: #e91e63 !important;
}
.aws-text-purple,
.aws-hover-text-purple:hover {
  color: #9c27b0 !important;
}
.aws-text-deep-purple,
.aws-hover-text-deep-purple:hover {
  color: #673ab7 !important;
}
.aws-text-red,
.aws-hover-text-red:hover {
  color: #f44336 !important;
}
.aws-text-sand,
.aws-hover-text-sand:hover {
  color: #fdf5e6 !important;
}
.aws-text-teal,
.aws-hover-text-teal:hover {
  color: #009688 !important;
}
.aws-text-yellow,
.aws-hover-text-yellow:hover {
  color: #d2be0e !important;
}
.aws-text-white,
.aws-hover-text-white:hover {
  color: #fff !important;
}
.aws-text-black,
.aws-hover-text-black:hover {
  color: #000 !important;
}
.aws-text-grey,
.aws-hover-text-grey:hover,
.aws-text-gray,
.aws-hover-text-gray:hover {
  color: #757575 !important;
}
.aws-text-light-grey,
.aws-hover-text-light-grey:hover,
.aws-text-light-gray,
.aws-hover-text-light-gray:hover {
  color: #f1f1f1 !important;
}
.aws-text-dark-grey,
.aws-hover-text-dark-grey:hover,
.aws-text-dark-gray,
.aws-hover-text-dark-gray:hover {
  color: #3a3a3a !important;
}
.aws-border-amber,
.aws-hover-border-amber:hover {
  border-color: #ffc107 !important;
}
.aws-border-aqua,
.aws-hover-border-aqua:hover {
  border-color: #00ffff !important;
}
.aws-border-blue,
.aws-hover-border-blue:hover {
  border-color: #2196f3 !important;
}
.aws-border-light-blue,
.aws-hover-border-light-blue:hover {
  border-color: #87ceeb !important;
}
.aws-border-brown,
.aws-hover-border-brown:hover {
  border-color: #795548 !important;
}
.aws-border-cyan,
.aws-hover-border-cyan:hover {
  border-color: #00bcd4 !important;
}
.aws-border-blue-grey,
.aws-hover-border-blue-grey:hover,
.aws-border-blue-gray,
.aws-hover-border-blue-gray:hover {
  border-color: #607d8b !important;
}
.aws-border-green,
.aws-hover-border-green:hover {
  border-color: #4caf50 !important;
}
.aws-border-light-green,
.aws-hover-border-light-green:hover {
  border-color: #8bc34a !important;
}
.aws-border-indigo,
.aws-hover-border-indigo:hover {
  border-color: #3f51b5 !important;
}
.aws-border-khaki,
.aws-hover-border-khaki:hover {
  border-color: #f0e68c !important;
}
.aws-border-lime,
.aws-hover-border-lime:hover {
  border-color: #cddc39 !important;
}
.aws-border-orange,
.aws-hover-border-orange:hover {
  border-color: #ff9800 !important;
}
.aws-border-deep-orange,
.aws-hover-border-deep-orange:hover {
  border-color: #ff5722 !important;
}
.aws-border-pink,
.aws-hover-border-pink:hover {
  border-color: #e91e63 !important;
}
.aws-border-purple,
.aws-hover-border-purple:hover {
  border-color: #9c27b0 !important;
}
.aws-border-deep-purple,
.aws-hover-border-deep-purple:hover {
  border-color: #673ab7 !important;
}
.aws-border-red,
.aws-hover-border-red:hover {
  border-color: #f44336 !important;
}
.aws-border-sand,
.aws-hover-border-sand:hover {
  border-color: #fdf5e6 !important;
}
.aws-border-teal,
.aws-hover-border-teal:hover {
  border-color: #009688 !important;
}
.aws-border-yellow,
.aws-hover-border-yellow:hover {
  border-color: #ffeb3b !important;
}
.aws-border-white,
.aws-hover-border-white:hover {
  border-color: #fff !important;
}
.aws-border-black,
.aws-hover-border-black:hover {
  border-color: #000 !important;
}
.aws-border-grey,
.aws-hover-border-grey:hover,
.aws-border-gray,
.aws-hover-border-gray:hover {
  border-color: #9e9e9e !important;
}
.aws-border-light-grey,
.aws-hover-border-light-grey:hover,
.aws-border-light-gray,
.aws-hover-border-light-gray:hover {
  border-color: #f1f1f1 !important;
}
.aws-border-dark-grey,
.aws-hover-border-dark-grey:hover,
.aws-border-dark-gray,
.aws-hover-border-dark-gray:hover {
  border-color: #616161 !important;
}
.aws-border-pale-red,
.aws-hover-border-pale-red:hover {
  border-color: #ffe7e7 !important;
}
.aws-border-pale-green,
.aws-hover-border-pale-green:hover {
  border-color: #e7ffe7 !important;
}
.aws-border-pale-yellow,
.aws-hover-border-pale-yellow:hover {
  border-color: #ffffcc !important;
}
.aws-border-pale-blue,
.aws-hover-border-pale-blue:hover {
  border-color: #e7ffff !important;
}
