:root :where(body) {
	    --wp--preset--font-family--heading: 'Montserrat', sans-serif !important;
--wp--preset--font-family--body: "Roboto", sans-serif !important;
}


.is-layout-constrained > * {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.wp-site-blocks {
    min-height: 100%;
    min-width: 100%;
}

.has-global-padding {
    padding: 0 !important;
}

.page-container {
    width: 100%;
    padding-bottom: 50px;
    background-color: #fff;
}

@media (max-width: 1094px) {
    .page-container {
        padding-left: 0px;
    }
}

@media (min-width: 901px) {
    .page-container {
        padding-top: 0px;
    }
}


.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust this value as needed */
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: absolute;
    bottom: 0px; /* Adjust this value to fine-tune the vertical position */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #ffffff;
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem !important;
	  font-weight: 700 !important;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0rem;
    color: #FFDE00 !important;
}

h1, h2 {
    color: #FFDE00 !important;
}

.text-content h2 {
    color: #000 !important;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #a41e22;
    color: #fff !important;
    text-decoration: unset !important;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #7a1618;
}

@media (max-width: 1094px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 0px 30px;
    }


    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0px 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.7rem 1.3rem;
    }
}

.experience {
    text-align: center;
    padding: 0px 50px;
    background-color: #fff;
}

.experience h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
	text-decoration-line:underline;
}

.experience p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  color: #53565A !important;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    margin: 0px 0px;
    border-radius: 5px;
}

.text-content {
    flex: 1;
    padding: 0 20px;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
	text-decoration-line:underline;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
	color: #53565A !important;
}

.section.even {
    flex-direction: row-reverse;
}

@media (max-width: 1094px) {
    .experience {
        padding: 5px 30px;
    }

    .section {
        padding: 30px;
        flex-direction: column;
    }

    .section.even {
        flex-direction: column;
    }

    .text-content {
        padding: 0 0 20px 0;
    }

    .image-content {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .experience {
        padding: 0px 20px;
    }

    .section {
        padding: 20px;
    }
}

.faq-section {
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.faq-section .title {
    font-size: 2.5rem;
    font-weight: 700;
	text-align:center;
    margin-bottom: 1rem;
	width:100%;
    color: #000 !important;
}

.faq {
    width: 100%;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.question h3 {
    font-size: 1.5rem;
    color: #000;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answer p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: 1rem
    color: #53565A !important;
}

.faq.active .answer {
    max-height: fit-content;
    animation: fade 1.4s ease-in-out;
}

.faq.active svg {
    transform: rotate(180deg);
}

svg {
    transition: transform 0.3s ease-in;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 1094px) {
    .faq-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .question h3 {
        font-size: 1.5rem;
    }
    

}


.answer p a{
	color: #0000EE !important;
}