html {
    background-color: #869960;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 87%;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}


/*Banner Overlay*/

.image-banner {
    position: relative;
    overflow: hidden;
}

.image-banner img {
    display: block;
    transition: all 3s;
}

.image-banner:hover img {
    transform: scale(1.5);
}

.banner-description {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    background-color: rgba(0, 0, 0, .65);
    padding: 15px 25px;
    transition-property: all;
    transition-duration: 1s;
    transform: translateY(100%);
}

.image-banner:hover .banner-description {
    opacity: 1;
    transform: translateY(0);
}


/*Banner over*/

.container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.container1 {
    max-width: 940px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

header {
    padding-top: 20px;
    color: white;
    background-color: #617140;
}

header h1 {
    margin: 0;
    font-weight: normal;
    font-size: 165%;
}

header p {
    margin: 0;
}


/*Site Navigation*/

.site-nav {
    margin-top: 20px;
}

.site-nav ul {
    margin: 0;
    padding: 0;
}

.site-nav li {
    list-style: none;
    float: left;
    margin-right: 5px;
}

.site-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    border-bottom: none;
    background-color: #535e38;
    transition-property: all;
    transition-duration: 2s;
}

.site-nav a:hover {
    background-color: lightcoral;
}

@media screen and (max-width: 700px) {
    .site-nav li {
        width: 33.332%;
        margin-right: 0;
    }
    .site-nav a {
        padding: 15px 0;
        margin-right: 5px;
        margin-bottom: 5px;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .site-nav li {
        width: 50%;
    }
}


/*End Site navigation*/

.content-area {
    border-top: 3px solid #e5e9dc;
    border-bottom: 3px solid #e5e9dc;
    background-color: white;
}

.main-area {
    width: 66%;
    float: left;
    padding-right: 40px;
    box-sizing: border-box;
}

@media screen and (max-width: 500px) {
    .info-box {
        display: none;
    }
}


/*form styles*/

form {
    background-color: #ececec;
    padding: 30px 40px;
}

.hidden-label {
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: hidden;
}

input,
select {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
input[type="tel"],
select {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 10px;
    height: 40px;
    margin-bottom: 15px;
    border: 1px solid #cdcdcd;
    outline: none;
}

select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus {
    border: 1px solid #869960;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .13);
}

input[type="submit"] {
    width: 100%;
    display: block;
    box-sizing: border-box;
    background-color: #869960;
    color: #fff;
    padding: 10px 0;
    border: 1px solid #798a56;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    border: 1px solid #535e38;
    background-color: #798a56;
}

.checkbox-text {
    font-size: 85%;
    color: #777;
}

.sidebar {
    width: 34%;
    float: left;
    background-color: #e5e9dc;
    padding: 20px 40px;
    box-sizing: border-box;
    font-size: 80%;
}

@media screen and (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 1300px) {
    body {
        font-size: 17px;
    }
    .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 700px) {
    .main-area,
    .sidebar {
        width: auto;
        float: none;
    }
    .main-area {
        padding-right: 0;
    }
}

footer {
    text-align: center;
    font-size: 85%;
    color: red;
    padding-bottom: 20px;
    padding-top: 20px;
}

.fix {
    clear: both;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}


/*Table Styles*/

table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

table th {
    text-align: left;
    background-color: #869960;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .4);
}

table th,
table td {
    border: 1px solid #869960;
    padding: 10px;
    vertical-align: top;
}

table tbody tr:nth-child(even) td {
    background-color: #e5e9dc;
}

table tr :nth-child(2),
table tr :nth-child(3) {
    text-align: center;
}


/*table over*/

.col-item-name {
    width: 60%;
}

.col-quantity,
.col-price {
    width: 20%;
}

.box-b {
    text-align: center;
    background-color: #CCC;
    width: 200px;
    height: 200px;
    line-height: 200px;
    margin-bottom: 40px;
    border-radius: 50%;
    transition: all 1s ease-out;
}

.box-b:hover {
    transform: rotate(360deg);
}