/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 19 2025 | 01:34:59 */
#read-more {display:none;}

#read-more.fp-service {margin-bottom:30px;}
#read-more h2 {
    font-size: 32px;
    margin: 40px 0px 10px;
	font-weight: 700;
}

#read-more h3 {
    font-size: 20px;
    margin: 30px 0px 10px;
}


#read-more.fp-home h2, #read-more.fp-home h3  {
	font-family: "Playfair Display", serif;
	font-weight: 400;
}

#read-more.fp-home h2 {
font-size: 28px;
}

#read-more.fp-service h2 {
font-size: 32px;
	margin: 30px 0px 10px!important;
}

#read-more strong {
    font-weight: 500;
}

#read-more p, #read-more li {
    font-family: "Roboto", sans-serif;
}

#read-more.fp-service p, #read-more.fp-service li {
font-family: 'Roboto Condensed', sans-serif;
}



/* FAQ CSS */

div#fp-faqs {
    margin-top: 50px;
}

:root {
    --fp-border-color:  #0a3a4a;
    --fp-faq-margins: 5px;
    --fp-hover-color: rgba(0, 0, 0, 0.05);
    --fp-open-character: "+";
    --fp-closed-character: "-";
    --fp-transition: all 0.2s ease;
	--fp-block-transition: all 5s ease;
  }

.firstpage-custom-collection {
	margin:20px auto;
}

	summary h2 {
		font-size: 20px;
    		width:90%;

	}

	details a { 
		color:#5f725c;
	}

	div.firstpage-custom-collection > div > details:last-child{
		border-bottom: 1px solid var(--fp-border-color);
	}
  .firstpage-custom-collection summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-top: 1px solid var(--fp-border-color);
    padding: 15px var(--fp-faq-margins);
    box-sizing: border-box;
    transition: var(--fp-transition);
    position: relative;
  }

  .firstpage-custom-collection summary > * {
    margin: 0;
  }

  .firstpage-custom-collection .answer {
    margin: 0 var(--fp-faq-margins);
    transform: translateY(-5px);
    opacity: 0;
    transition: var(--fp-transition);
  }

  .firstpage-custom-collection details[open] > .answer {
    transform: translateY(0px);
    opacity: 1;
  }

  .firstpage-custom-collection summary::after,
  .firstpage-custom-collection summary::before {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    margin-right: 30px;
    width: 2px;
    height: 15px;
    background: var(--fp-border-color);
    transition: var(--fp-transition);
  }

  .firstpage-custom-collection summary:hover {
    background: var(--fp-hover-color);
  }

  .firstpage-custom-collection summary::before {
    transform: rotate(0deg);
  }

  .firstpage-custom-collection details[open] summary::before {
    transform: rotate(90deg);
  }

  .firstpage-custom-collection summary::after {
    transform: rotate(90deg);
  }

  .firstpage-custom-collection details[open] summary::after {
    transform: rotate(270deg);
  }

  .firstpage-custom-collection details summary::-webkit-details-marker {
    display: none;
  }

  .firstpage-custom-collection [type="checkbox"] {
    display: none;
  }

  .firstpage-custom-collection .content {
    margin-top: var(--fp-faq-margins);
    transition: var(--fp-block-transition);
  }

  .firstpage-custom-collection label {
    display: block;
    cursor: pointer;
  }

  .firstpage-custom-collection input[type="checkbox"] ~ .content {
    width: 100%;
    overflow: hidden;
    transform: translateY(-5px);
    opacity: 0;
    max-height: 0px;
  }

  .firstpage-custom-collection [type="checkbox"]:checked ~ .content {
    transform: translateY(0px);
    opacity: 1;
    max-height: 100vh;
  }

  .firstpage-custom-collection [type="checkbox"]:checked + label {
    top: 100%;
  }

  .firstpage-custom-collection label:before {
    content: "Read More";
    text-decoration: underline;
  }

  .firstpage-custom-collection [type="checkbox"]:checked + label:before {
    content: "Read Less";
  }
