body {
    font-family: "Open Sans", sans-serif;
    color: rgb(32, 32, 32);
    margin:0;
    background-color: #dbdbdb;
}

header {
    border-bottom: solid 1px #d0d0d0;
    height: 130px;
    background-color: #ffffff;
}

.header-content, .site-content, .footer-content {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    float: left;
}

.logo img{
    box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 30%);
    margin: 10px 0 10px 0;
    float: left;
    max-width: 100%;
    height: auto;
}

nav.bradcrump {
    margin: 0 0 40px -10px;
}

.bradcrump a {
    color: #009400;
    text-decoration: none;
}


.nav-point {
    color: #b0b0b0;
    font-size: 14px;
    padding: 0 10px;
}

.headline {
    float: right;
    margin: 20px 0 0 0;
}

.headline h1 {
    margin: 5px 0 10px 0;
    text-align: right;
    font-weight: normal;
    font-size: 40px;
}

.headline h2 {
    margin: 5px 0 10px 0;
    text-align: right;
    font-weight: normal;
    font-size: 30px;
}

content {
    background-color: #ffffff;
    display: block;
}

.site-content {
    clear: both;
    margin: 0 auto;
    padding: 20px 0 40px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    padding: 10px;
    /* max-width: 500px; */
}

.grid-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.grid-card img:hover {
    border-radius: 30px;
    transition: all 0.5s ease;
    box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 30%);
}


.ps-row {
    background-color: #009400;
    color: #ffffff;
    font-size: 19px;
    padding: 10px 15px;
    margin: 30px 0 20px 0;

}

.tractor-grid {
    display: grid;
    grid-template-columns:  repeat(auto-fill, minmax(338px, 1fr));
    gap: 20px;
}

.tractor-card {
    display: grid;
    grid-template-rows: subgrid;
    padding: 0;
    /* border: solid 1px #e0e0e0; */

}

.tractor-card h3 {
    position: relative;
    bottom: -203px;
    background-color: RGBA(0,0,0,0.6);
    color: #fff;
    left: 0;
    padding: 10px;
    font-weight: normal;
    font-size: 16px;
    height: 16px;
}

img.img-tractor-list {
    width: 340px;
    height: auto;
}

div.detail-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}


div.detail-grid h1, h2 {
    margin: 0 0 0 0;
}

div.detail-grid ul,ol {
    margin: 10px 0 0 20px;
    padding: 0 0 0 0;
}

div.category {
    background-color: #f0f0f0;
    margin: 40px 0;
    padding: 20px;
    border-radius: 10px;
}

div.acc-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    padding: 0;
}

div.acc-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    padding: 10px;
    border: solid 1px #e0e0e0;
    background-color: #fff;
}

div.acc-item-img img {
    margin: 20px auto;
    display: block;
}

div.acc-item-desc{
    position: relative;
    bottom: 0;
    background-color: RGBA(0,0,0,0.6);
    color: #fff;
    left: 0;
    padding: 20px;
    font-weight: normal;
    font-size: 16px;
}

[type="checkbox"] + label {
    position: absolute;
}
[type="checkbox"] {
    position: relative;
    left: 15px;
    top: -4px;
    z-index: 0;
    -webkit-appearance: none;
}
[type="checkbox"] + label::before {
    width: 22px;
    height: 18px;
    background-image: url("unchecked.png");
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    z-index: 5;
    position: relative;
}
[type="checkbox"]:checked+label::before {
    background-image: url("checked.png");
}


label {
    width: 150px;
    display: inline-block;
    padding: 0 10px 0 0;
    text-align: right;
}


div.form-row {
    margin: 20px 0;
}

footer {
    padding: 20px 0 20px 0;
    margin: 20px 0 0 0;
    clear: both;
}

.footer-content a {
    color: #009400;
    text-decoration: none;
}
