  /*--color-primary: #106134;*/
:root{
  --heading-xlarge: 2rem;
  --heading-large: .9rem;
  --heading-medium: .8rem;
  --heading-small: .6rem;

  --text-large: .8rem;
  --text-medium: .7rem;
  --text-small: .6rem;

  --color-light-gray: #999;

  --color-primary: #106134;
  --color-yellow: #ffdd00;

  --top-header-height: 77px;
  --bottom-navbar-height: 65px;

  --border-narrow: .5px solid rgb(221, 221, 221);
}
.primary-button {
    min-width: 125px;
    width: 100%;
    text-align: center;
    font-size: var(--heading-medium);
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    background-color: var(--color-primary)!important;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.banner-cont{
    height: 170px;
    background-color: blue;
    border-radius: 15px;
    color: white;
    position: relative;
    background: url("/public/img/banner.png");
    background-position: center;
    background-size: cover;
}
.banner-details{
    position: absolute;
    left: 40px;
    bottom: 25px;
}
.banner-details-button{
    display: inline-block;
    background: linear-gradient(to right, #ffbb00, #ffdd00);
    color: white;
    border-radius: 10px;
    padding: 3px 20px;
    text-decoration: none;
    margin-top: 10px;
}

/* Info block */
.info-block {
    display: flex;
    justify-content: space-between;
    color: white;
    background: linear-gradient(to bottom,#03a84e, var(--color-primary));
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    margin-top: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.info-item-icon {
    width: 20px;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: white;
    margin: 0 20px;
}
