.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden; }

.btn-main, .btn-light, .btn-light-border, .btn-dark {
  display: inline-block;
  padding: 0.8rem 2rem;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  border-radius: 3px; }

.btn-main {
  color: #333;
  background-color: #6fd448;
  border: solid 1px transparent;
  font-size: 1rem; }
  .btn-main:hover {
    background-color: #f4f4f4;
    color: #333;
    border: solid 1px #333; }

.btn-light {
  color: #333;
  background-color: #f4f4f4; }
  .btn-light-border {
    border: solid 1px #000;
    color: #000; }
    .btn-light-border:hover {
      border: solid 1px transparent; }

.btn-dark {
  color: #f4f4f4;
  background-color: #333; }

.bg-main {
  background: #6fd448;
  color: #000; }

.bg-dark {
  background: #333;
  color: #fff; }

.bg-light {
  background: #f4f4f4;
  color: #000; }

.bg-medium {
  background: #ccc;
  color: #000; }

button[class^='btn-']:hover,
a[class^='btn-']:hover,
input[class^='btn-']:hover {
  background-color: #6fd448; }

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem; }

.text-center {
  text-align: center; }

.py-1 {
  padding: 1rem 0; }

.py-2 {
  padding: 2rem 0; }

.py-3 {
  padding: 3rem 0; }

.py-4 {
  padding: 4rem 0; }

.my-1 {
  margin: 1rem 0; }

.my-2 {
  margin: 2rem 0; }

.my-3 {
  margin: 3rem 0; }

.my-4 {
  margin: 4rem 0; }

.mt {
  margin-top: 0.5rem; }
  .mt-1 {
    margin-top: 1rem; }
  .mt-2 {
    margin-top: 2rem; }
  .mt-3 {
    margin-top: 3rem; }
  .mt-4 {
    margin-top: 4rem; }

.mt-n1 {
  margin-top: -1rem !important; }

.mt-n2 {
  margin-top: -2rem !important; }

.mt-n3 {
  margin-top: -3rem !important; }

.mt-n4 {
  margin-top: -4rem !important; }

.mb-1 {
  margin-bottom: 1rem; }

.mb-2 {
  margin-bottom: 2rem; }

.mb-3 {
  margin-bottom: 3rem; }

.mb-4 {
  margin-bottom: 4rem; }

.section-title {
  font-size: 2rem;
  display: block;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 100;
  text-transform: uppercase; }

.bottom-line {
  height: 2px;
  width: 3rem;
  background: #6fd448;
  display: block;
  margin: 0 auto 1rem auto; }

.items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 20px; }

.item {
  position: relative;
  background: #6fd448;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 18px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 18px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 18px -8px rgba(0, 0, 0, 0.75); }
  .item::after {
    content: '';
    position: absolute;
    display: block;
    background: inherit;
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
    transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1); }
  .item:hover:after {
    transform: scale(2) translateX(0) translateY(0) rotate(-28deg); }
  .item-image {
    height: auto;
    display: block;
    transform: translateZ(0);
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1); }
  .item:hover .item-image {
    transform: scale(1.2); }
  .item:hover .item-text {
    opacity: 1;
    transform: translateY(0); }
  .item-image::before {
    content: '';
    display: block;
    padding-top: 50%;
    overflow: hidden; }
  .item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    line-height: 0; }
  .item-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    text-align: center;
    z-index: 1;
    color: #fff;
    transform: translateY(-20%);
    transition: opacity 650ms cubic-bezier(0.2, 1, 0.3, 1), transform 600ms cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: 280ms; }
  .item-text-wrap {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .item-text-title {
    font-size: 2rem;
    padding: 0 1rem; }
  .item-text-category {
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0; }
  .item-text-description {
    font-size: 1.3rem;
    margin: 0 3rem;
    line-height: 1.2; }
  .item-links {
    margin-top: 15px; }
    .item-links h4 {
      margin-top: 5px; }
