#page {
    padding-top: 0px;
}

/* HERO */

.page-hero {
    position: relative;
    padding: 16rem 0 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    background-color: var(--primaryColor);
}
.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    padding: 0 5rem 0 0;
}
.page-hero p {
    color: white;
    padding-bottom: 2rem;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0.075px;
}
.page-hero p:last-child {
    padding-bottom: 0;
}

/* CONTENT */

section {
    padding: 5rem 0;
}

section.page-section {
    padding: 3rem 0;
}

#page-content p {
    padding-bottom: 1rem;
}

#page-content .content h3, #page-content .content h4 {
    padding-bottom: 1.5rem;
}

#page-content .content {
    max-width: 60rem;
    margin:0 auto;
}

#page-content .content ol, #page-content .content ul {
    list-style-position: outside;
    padding-left: 2rem;
}

#page-content a {
    color: var(--primaryColor);
}

.content p {
    padding-bottom: 1.5rem;
}
.content p:last-of-type {
    padding-bottom: 0;
}
.content p a {
    text-decoration: underline;
}
.content ul {
    font-size: 0.95rem;
    line-height: 160%;
}

.content h3, .content h4 {
    padding-bottom: 1.5rem;
    font-family: 'Instrument Sans';
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: -0.44px;
}
.content h4 {
    font-size: 1.25rem;
}
.wp-block-image :where(figcaption) {
    margin-bottom: 3em;
    margin-top: 1rem;
    border-left: 3px solid var(--primaryColor);
    color: var(--primaryColor);
    font-size: 12px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.06px;
    padding-left: 0.75rem;
}

/* PROJECTS */
.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.project-card {
    display: flex;
    flex-direction: column;
    height: 25rem;
    border-radius: 6px;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: 0.2s all;
}
/* .project-card:hover {
    background-size: 105%;
} */
.project-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 6px;
    background: rgba(0,0,0,0.5);
}
.project-info {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-info p {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 130%; /* 28.6px */
    letter-spacing: -0.44px;
}
.project-info a {
    background: #CAD2D2;
    border-radius: 50px;
    display: flex;
    width: 43px;
    height: 43px;
    justify-content: center;
    align-items: center;
    transition: 0.2s all;
}
.project-info a:hover {
    width: 50px;
}

/* FAQ */
.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 2px solid var(--primaryColor);
    padding-left: 1rem;
}
.faq-category {
    border-radius: 4px;
    border: 1px solid var(--tertiaryColor);
    background: var(--tertiaryColor);
    display: flex;
    padding: 8px 10px;
    align-items: center;
    gap: 24px;
    justify-content: center;
    transition: 0.2s all;
    text-align: center;
    width: 20rem;
}
.faq-category.active, .faq-category:hover {
    border-color: var(--primaryColor);
    background: var(--primaryColor);
    color: white !important;
}

.accordions {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.25rem;
    min-width: 60%;
}

.accordion {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #EFEDED;
    padding: 0 0 1.25rem;
    gap: 1.25rem;
    cursor: pointer;
}
.accordion:last-of-type {
    border-bottom: none;
}
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s all;
    gap: 20px;
}
.accordion-title h6 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    display: flex;
    gap: 24px;
}
.accordion-title img {
    height: 10px;
    transform: rotate(180deg);
    filter: brightness(0);
    transition: 0.15s all;
}
.secondary-accordion {
    border-bottom: 1px solid rgba(14, 52, 75, 0.08)
}
.secondary-accordion h6 {
    color: var(--secondaryColor);
    font-size: 1rem;
}
.secondary-accordion img {
    filter: brightness(1.5) hue-rotate(300deg);
}
.accordion.active .accordion-title img {
    transform: rotate(0deg);
}
.accordion-title:hover, .accordion.active .accordion-title {
    color: var(--primaryColor);
}
.accordion-content {
    display: none;
}
.accordion-content p {
    font-size: 1.1rem;
    line-height: 170%;
}
.accordion-content p a {
    text-decoration: underline;
}
.accordion-content ul li {
    font-size: 1.1rem;
    line-height: 1.5rem;
}

/* ABOUT */
.features-list {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.features-list li {
    display: flex;
    gap: 10px;
    font-weight: 700;
    color: var(--primaryColor);
}
.section-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.team-photo {
    width: 28rem;
    height: 28rem;
    margin:0 auto;
}

/* CAREERS */
.career-item {
    background: #EAEDE9;
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}
.career-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primaryColor);
}
.career-item p {
    border-left: 2px solid black;
    padding: 4px 0 0 1.25rem !important;
    line-height: 112%;
    margin-bottom: -2px;
}
.career-item a {
    color: white !important;
}


/* MISC */

img.icon {
    height: 40px;
    width: 40px;
    display: block;
}
img.icon-big {
    height: 100px;
    width: 100px;
    display: block;
    border-radius: 50%;
}

.call-to-action {
    background-color: var(--primaryColor);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
    outline: 10px solid white;
    outline-offset: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.call-to-action .container {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.call-to-action a {
    text-decoration: underline;
}

/* CAROUSEL */

.card {
    min-height: 21.2rem;
    display: flex;
    padding: 3.25rem 4.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    border-radius: 5rem 0.75rem;
    border: 2px solid #F8E8ED;
    background: #F3EAED;
}
.slick-left-active .card, .slick-current .card {
    background: white;
}

.carousel .slick-list {
    padding-left: 0 !important;
}

.carousel .slick-slide:not(:last-child) {
    margin-right: 2rem;
}

ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
}

ul.slick-dots li button {
    background: white;
    border: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
}

ul.slick-dots li.slick-active button {
    background: var(--primaryColor);
}

.slick-arrow {
    background: var(--primaryColor);
    color: white;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 25px);
    z-index: 1;
    cursor: pointer;
    transition: 0.2s all;
}

.slick-arrow:hover {
    background: var(--secondaryColor)
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-disabled {
    opacity: 0;
    pointer-events:none;
}

.slick-list, .slick-track {
    border-radius: 4px;
}

/* Gravity Forms */

.gform_wrapper form {
    background: white;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.gform_body p {
    padding: 0;
}

body .gform_wrapper.gravity-theme .gfield_label, body .gform_wrapper.gravity-theme .ginput_complex label {
    margin-bottom: 0;
    color: #000;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.gform_wrapper.gravity-theme .ginput_container_address span {
    margin-top: 1rem;
}

.gform_wrapper.gravity-theme .ginput_container_address span:first-child {
    margin-top: 0;
}

.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    font-size: 17px;
    padding: 12px!important;
    background: white;
    width: 100%;
    border-radius: 0;
    border: 1px solid black;
    background: #FFF;
    -webkit-appearance: none;
    color: black;
    font-weight: 400;
    outline: none;
}

.gfield--type-textarea {
    margin-top: 0;
}

.gform_wrapper.gravity-theme textarea {
    resize: vertical;
    border-radius: 1px;
}

.gform_wrapper.gravity-theme .gfield input[type="checkbox"], .gform_wrapper.gravity-theme .gfield input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid silver;
    height: 20px;
    width: 20px;
    display: inline-block;
    margin: 2px 8px -3px 0;
    background: white;
}

.gform_wrapper.gravity-theme .gfield input[type="checkbox"]::before {
    content: "";
    width: 19px;
    height: 18px;
    transition: transform 0.3s ease-in-out;
    display: block;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="white" stroke-width="2" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 2;
    opacity: 0;;
}  
.gform_wrapper.gravity-theme .gfield input[type="checkbox"]:checked::before {
    opacity: 1;
}
.gform_wrapper.gravity-theme .gfield input[type="checkbox"]:checked {
    background: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.gform_footer input.gform_button {
    background: var(--primaryColor);
    border: 0;
    color: white;
    display: inline-block;
    margin: 0 auto;
    padding: 13px 25px 11px !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: 0.4s all;
    width: fit-content;
    text-align: center;
    font-size: 0.8rem !important;
    text-decoration: none;
    text-transform: uppercase;
    padding-right: 3rem;
    margin: 20px 0 10px;
    border-radius: 7px;
}
.gform_footer input.gform_button:hover {
    background: var(--secondaryColor);
}

.gform_wrapper .gform_footer {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {
    margin: 0;
    border: none;
    font-size: 1rem;
    padding: 17px 25px 15px;
}

.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer {
	display: block !important;
}
  
.gform_required_legend {
    display:none;
}

.recaptcha-disclaimer {
    font-size: 10px !important;
    font-style: italic;
    color: #aaa8a8 !important;
    margin-top: 10px;
    line-height: 14px !important;
    padding: 0 !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-family: 'Instrument Sans';
    letter-spacing: 0;
}