div {
    color: #A8A8A8; /* gray-yellow */;
}

h1,h2,h3,h4,h5,h6 {
    color: #A8A8A8; /* gray-yellow */;
    font-weight: 400;
}

.text-yellow {
    color: #FFBD4A /* color-yellow */;
}

.text-red {
    color: #FF5C5C; /* red-yellow */;
}

.background-yellow {
    background-color: #FFBD4A /* color-yellow */;
    color: white;
}

.background-red {
    background-color: #FF5C5C; /* red-yellow */;
    color: white;
}

.background-gray {
    background-color: #A8A8A8; /* gray-yellow */;
    color: white;
}
.background {
    z-index: 3;
    position: fixed;
    bottom: 0px;
    height: 20em;
    width: 100%;
    background-color: #FFBD4A /* color-yellow */;
    -webkit-clip-path: polygon(0 98%, 66% 94%, 100% 78%, 100% 100%, 0 100%);
    clip-path: polygon(0 98%, 66% 94%, 100% 78%, 100% 100%, 0 100%);
}

.background2 {
    z-index: 2;
    position: fixed;
    bottom: 0px;
    height: 20em;
    width: 100%;
    background-color: #A8A8A8; /* gray-yellow */;
    -webkit-clip-path: polygon(0 97%, 66% 90%, 100% 71%, 100% 100%, 0 100%);
    clip-path: polygon(0 97%, 66% 90%, 100% 71%, 100% 100%, 0 100%);
}

.background3 {
    z-index: 1;
    position: fixed;
    bottom: 0px;
    height: 20em;   
    width: 100%;
    background-color: #FF5C5C; /* red-yellow */;
    -webkit-clip-path: polygon(0 96%, 66% 87%, 100% 63%, 100% 100%, 0 100%);
    clip-path: polygon(0 96%, 66% 87%, 100% 63%, 100% 100%, 0 100%);
}

.foreground {
    z-index: 5;
    /* margin: 0px !important;
    padding: 0px !important; */
}

div {
    padding: 8px 0px;
    margin: 0px;
}

img {
    width: 100%;
    padding: 64px 0px 40px;
}

input {
    margin: 4px 0px;
}

button {
    margin-top: 32px;
    margin-bottom: 8px;
    height: 40px;
    background-color: #FFBD4A /* color-yellow */;
    color: white;
}

a {
    color: #FFBD4A /* color-yellow */;
}

a:hover {
    color: #FFBD4A /* color-yellow */;
}

.btn-primary, .btn-primary:active, .btn-primary:visited {
    background-color: #FFBD4A !important;
    border-color: transparent !important;
}

.btn-primary:hover {
    /* background-color: #FF5C5C !important; */
    border-color: #A8A8A8 !important;
}

.btn-secondary, .btn-secondary:active, .btn-secondary:visited {
    background-color: #A8A8A8 !important;
    border-color: transparent !important;
}

.btn-secondary:hover {
    /* background-color: #FF5C5C !important; */
    border-color: #FFBD4A !important;
}

.img-shadow {
    background-color:rgba(0,0,0,.03);
    /* border-color: #eee !important; */
    /* border: 1px solid; */
    padding: 16px;

    -webkit-box-shadow: 10px 10px 5px 0px rgba(168,168,168,1);
    -moz-box-shadow: 10px 10px 5px 0px rgba(168,168,168,1);
    box-shadow: 10px 10px 5px 0px rgba(168,168,168,1);

    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 1px solid #eee;
}

.row {
    padding: 8px 16px;
}

.featurette-divider {
    margin: 3rem 16px;
}

.no-padding {
    padding: 0px;
}

.bottom-padding {
    padding-bottom: 5rem;
}

ul {
    padding-bottom: 3rem;
}

li {
    padding-bottom: 8px;
    padding-top: 8px;
}

@media (min-width: 600px){
    .card-deck .card {
        margin-right: 10px;
        margin-left: 10px;
    }
}