:root {
  --colour-green: #8dc74a;
  --colour-green-light: rgb(161, 224, 77);
}

body {
    background-color: #eee;
}

header {
    display: flex;
    max-width: 1400px;
    padding: 0 20px;
    align-items: center;
    gap: 20px;
    height: 125px;
    margin: 0 auto;
}
header > div:nth-child(2) {
    flex-grow: 1;
    text-align: right;
}
header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
header li {
    display: inline-block;
    margin-right: 20px;
}
header li a {
    color: #444;
    text-decoration: none;
    display: block;
    font-weight: 400;
    font-size: 18px;
    transition: color .3s;
}
header li a:hover {
    color: rgb(211, 130, 24);
}
header li a.active {
    color: rgb(55, 171, 206);
}

.cta {
    min-height: calc(100vh - 125px);
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeIn 2s forwards;
    position: relative;
}
.cta-home {
    background-image: url(../img/main/home.jpg);
}
.cta-help {
    background-image: url(../img/main/help.jpg);
}
.cta-woman {
    background-image: url(../img/main/woman.png);
}
.cta-harvest {
    background-image: url(../img/main/harvest.jpg);
}
.cta-tractor {
    background-image: url(../img/main/tractor.jpg);
}
.cta-wrekin {
    background-image: url(../img/main/wrekin.jpg);
}
.cta-small {
    height: auto;
    min-height: 450px;
}
.cta-mini {
    min-height: 300px;
}
.cta > div {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.cta-bg {
    max-width: initial !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    z-index: -1;
}

.cta h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    margin: 0;
}
.cta h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    opacity: .8;
}
.cta .actions {
    margin-top: 40px;
}

.btn-cta {
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    background-color: rgb(211, 130, 24);
    padding: 15px 0;
    width: 250px;
    text-transform: uppercase;
    margin: 0 10px;
    font-weight: 600;
    border-radius: 10px;
    transition: background-color .3s;
}
.btn-action {
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    background-color: rgb(211, 130, 24);
    transition: background-color .3s;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.btn-action:hover {
  background-color: rgb(236, 156, 52);
  text-decoration: none !important;
}
.btn-normal {
    display: inline-block;
    color: #fff !important;
    text-decoration: none !important;
    transition: background-color .3s;
    padding: 10px 20px;
    border-radius: 15px;
}
.btn-normal:hover {
  text-decoration: none !important;
}
.btn-action i {
  margin-right: 10px;
}

.clr-blue {
    background-color: rgb(55, 171, 206);
}
.clr-green {
    background-color: var(--colour-green);
}
.clr-blue:hover {
    background-color: rgb(44, 190, 235);
}
.clr-green:hover {
    background-color: var(--colour-green-light);
}
.content {
    padding: 40px;
    text-align: center;
    color: #666;
}
.content-white {
    background-color: #fff;
}
.content img {
  max-width: 100%;
}
.content h2 {
    color: #0d2678;
    max-width: 1000px;
    font-size: 50px;
    margin: 0 auto 25px auto;
}
.content h4 {
    margin: -10px 0 40px 0;
    font-weight: 400;
}
.content h4 i {
    margin-right: 7px;
}
.content a, .block p a {
  color: #328929;
  text-decoration: none;
}
.content a:hover, .block p a:hover {
  text-decoration: underline;
}
.content li, .block li {
  margin: 5px 0;
}
.content p {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
    line-height: 1.3em;
}
.content p img {
    max-width: 600px;
}
.content p:last-child {
    margin-bottom: 0;
}
.frames p {
    margin: 0;
}
.content-bg {
    color: #fff;
    background-position: top center;
    background-size: cover;
}
.content-bg h2, .content-bg p {
    color: #fff;
}
.bg-hills {
    background-image: url(../img/main/blue-hill.png);
}
.bg-testimonials {
    background-image: url(../img/main/testimonials.jpg);
}
.queens {
    background-color: #762a82;
}
.boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.box {
    width: 300px;
    background-color: var(--colour-green);
    padding: 20px;
    color: #fff;
}
.box h2 {
    color: #fff;
    font-size: 26px;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 50px 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}
.card {
    width: 300px;
    display: block;
    position: relative;
    color: #777;
}
a.card {
  text-decoration: none;
  color: #666;
}
a.card:hover {
  text-decoration: none !important;
  scale: 1.01;
}
.card-clear {
    background-color: #fff;
    box-shadow: 2px 2px 12px 4px #ddd;
}
.card-content {
    padding: 20px;
}
.card-clear:hover {
    box-shadow: 2px 2px 12px 4px #ccc;
}
.card-date {
  background-color: var(--colour-green);
  padding: 10px;
  font-size: 13px;
  text-align: right;
  color: #fff;
}
.card-date i {
  margin-left: 8px;
}
.card img {
    max-height: 100px;
    margin-bottom: 30px;
}
.card-content img {
    height: auto;
    max-width: 80%;
    margin: 0 auto 15px;
    display: block;
}
.card p {
    max-width: 80%;
}
.card-content p {
    max-width: 100%;
}
.card-left {
    text-align: left;
}
.card-title {
    color: var(--colour-green);
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    font-weight: 600;
}
.card-has-btn {
    padding-bottom: 60px;
}
.card-btn {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
}
footer {
    background-color: rgb(22, 92, 114);
    padding: 40px;
    color: #fff;
}
footer .cols {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
footer .col {
    width: 250px;
    max-width: 95%;
}
footer .col-center {
    text-align: center;
}
footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer li {
    margin-bottom: 5px;
}
footer a {
    color: #fff;
    text-decoration: none !important;
    font-size: 14px;
}
footer a:hover {
    text-decoration: underline !important; 
}
footer > span {
    font-size: 13px;
    display: block;
    margin-top: 40px;
    text-align: center;
    opacity: .6;
}
footer h3 {
    margin: 0 0 15px 0;
    font-weight: 300;
    opacity: .8;
}
footer p {
    font-size: 13px;
    max-width: 80%;
}
footer p a {
    text-decoration: underline;
}
.testimonial-area {
    max-width: 1000px;
    margin: auto;
}
.testimonial {
    margin: 70px 0;
    margin-left: auto;
    width: 600px;
    max-width: 90%;
}
.testimonial p {
    font-style: italic;
}
.glide {
    margin-top: 30px;
}
.glide__slide {
    display: flex;
    height: auto !important;
    justify-content: center;
    align-items: center;
}
.show-mobile {
    display: none;
}
.show-mobile-nav {
    font-size: 25px;
    cursor: pointer;
    color: #555;
}

.frames {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
  gap: 30px;
}
.frames .frame-main {
  flex-grow: 1;
  min-width: 300px;
}

.content-box {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
}
.content-box h3 {
  margin: 0 0 20px 0;
  color: var(--colour-green);
  font-weight: 300;
  font-size: 25px;
}
.content-box:last-child {
  margin-bottom: 0;
}
.frame-side {
  flex-grow: 1;
  max-width: 280px;
}

.block-green {
  background-color: var(--colour-green);
  color: #fff;
}

.block h3 {
  margin-top: 0;
  font-size: 35px;
}
.block > div {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.highlight {
  color: var(--colour-green) !important;
}

fieldset {
  margin: 0 auto;
  padding: 0;
  border: none;
  display: block;
  max-width: 600px;
  text-align: left;
}
fieldset label {
  display: block;
  margin-bottom: 10px;
  margin-top: 20px;
}
fieldset label:first-child {
  margin-top: 0;
}
fieldset input, fieldset textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
fieldset textarea {
  min-height: 150px;
}
fieldset input:focus, fieldset textarea:focus {
  outline: none;
  border-color: var(--colour-green);
}
fieldset input:invalid, fieldset textarea:invalid {
  border-right: 3px solid #c33;
}
fieldset input:invalid:focus, fieldset textarea:invalid:focus {
  border-color: #c33;
}

.msg {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 3px;
}
.msg-success {
  background-color: #c9e9cd;
  color: #136b2f;
}
.msg-error {
  background-color: #ebccc9;
  color: #6b2013;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.ql-align-center {
  text-align: center;
  margin: 0 auto !important;
}
