* {
 font-family: 'Roboto';
}
p {
font-size: 15.4px;
font-weight: 300;
}

a {
  color: #e3b426;
}
a:hover {
  color: #d2a725;
}

#sp-header {
  height: 100px;
}

#sp-main-body {
  padding: 5px 0;
}

#sp-bottom {
  background-color: #424c5c !important;
  padding: 40px 0px;
  color: #fff;
}


#sp-footer {
  background: #3d4957;
}

.btn {
 border: none;
 padding: 10px 15px 10px 15px;
 margin-right: 20px;
}

.btn:not([class*="btn-"]):hover {
  color: #fff;
  background-color: #e3b426  !important;
  border-color: #e3b426  !important;
}

.button {
 border: none;
  padding: 10px 15px 10px 15px;
  background: #e3b426;
  margin-right: 20px;
  border-radius: 20px;
}

.button:hover {
border: none;
color: #222221;
background: #ffd75f;
}

.btn-primary, .sppb-btn-primary {
  border-color: #e3b426 !important;
  background-color: #e3b426 !important;
}

.helix-social-share .helix-social-share-icon ul li div a:hover,
.helix-social-share .helix-social-share-icon ul li div a:focus {
  background: #6c757d  !important;
  color: #fff;
}

.jd-simple-contact-form .form-group {
  margin: 5px 0px 10px 0px  !important;
}


.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
  padding: 0px 4px;
  line-height: 90px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.sp-menu-item::after {
    content: "/";
    margin-left: 1px; 
}

li.sp-menu-item:nth-child(6)::after {
	    content: "" !important;
}

#offcanvas-toggler {
  float: right;
  line-height: 85px;
  margin-right: 10px;
  font-size: 20px;
}

.cookiehead {
display: none;
}

#redim-cookiehint {
  padding: 10px 10px;
  box-sizing: border-box;
  background-color: #AD8940;
  text-align: center;
  font-weight: 300;
}

#redim-cookiehint .cookiecontent {
  font-size: 15px;
  line-height: 20px;
  display: block;
}

#redim-cookiehint .cookiebuttons .btn {
  padding: 5px 8px !important;
  border-radius: 2px !important;
  color: #4a4747 !important;
  background-color: #ffffff !important;
  font-size: 14px;
  line-height: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  cursor: pointer;
}

.fpcontainer {
display: flex;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

.fpbox {
  width: 46%;
  box-sizing: border-box;
  padding: 10px 10px 5px 10px;
  border: 2px solid #b9924233;
  margin: 0px;
  background: #b9924233 !important;
}

@media (max-width: 768px) {
.fpbox {
width: 100%; /* Set width to 100% on smaller screens */
}
}

.fplogo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
	height:90px;
}

.fplogo-item {
    position: relative;
    max-width: 150px; /* Adjust as needed */
    height: 100px; /* Fixed height */
}

.fplogo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio of the logos */
    display: block;
    filter: grayscale(100%); /* Initial grey filter */
    transition: filter 0.3s ease-in-out;
}

.fpoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fplogo-item:hover .fpoverlay {
    opacity: 1;
}

.fplogo-container.remove-filter .fplogo-item img {
    filter: grayscale(0%); /* Remove grey filter when the class is present */
}


