/* Component Styles */

/* Images */
.image {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

.image .frame {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
}

.image .frame img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

.image.full .frame {
    display: block;
}

.image.full:first-child .frame {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image.full:last-child .frame {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.image.style1 .frame {
    width: 100vw;
    transition: none;
}

.image.style1 .frame img {
    transition: none;
}

.image.style2 .frame {
    width: 100vw;
    transition: none;
}

.image.style2 .frame img {
    transition: none;
}

/* Typography */
h1, h2, h3, p {
    direction: var(--site-language-direction);
    position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
    display: block;
    position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], 
h1 strong, h2 strong, h3 strong, p strong, 
h1 a, h2 a, h3 a, p a, 
h1 code, h2 code, h3 code, p code, 
h1 mark, h2 mark, h3 mark, p mark {
    -webkit-text-fill-color: currentcolor;
}

h1.style3, h2.style3, h3.style3, p.style3 {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 2.25em;
    line-height: 1.25;
    font-weight: 700;
}

h1.style3 a, h2.style3 a, h3.style3 a, p.style3 a {
    text-decoration: none;
}

h1.style3 a:hover, h2.style3 a:hover, h3.style3 a:hover, p.style3 a:hover {
    text-decoration: underline;
}

h1.style3 span.p:nth-child(n + 2), h2.style3 span.p:nth-child(n + 2), h3.style3 span.p:nth-child(n + 2), p.style3 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

h1.style2, h2.style2, h3.style2, p.style2 {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 2.25;
    font-weight: 300;
}

h1.style2 mark, h2.style2 mark, h3.style2 mark, p.style2 mark {
    color: #A17C5A;
    background-color: transparent;
}

h1.style2 a, h2.style2 a, h3.style2 a, p.style2 a {
    text-decoration: none;
}

h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover {
    text-decoration: underline;
}

h1.style2 span.p:nth-child(n + 2), h2.style2 span.p:nth-child(n + 2), h3.style2 span.p:nth-child(n + 2), p.style2 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

h1.style1, h2.style1, h3.style1, p.style1 {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 5em;
    line-height: 1.125;
    font-weight: 700;
}

h1.style1 a, h2.style1 a, h3.style1 a, p.style1 a {
    text-decoration: none;
}

h1.style1 a:hover, h2.style1 a:hover, h3.style1 a:hover, p.style1 a:hover {
    text-decoration: underline;
}

h1.style1 span.p:nth-child(n + 2), h2.style1 span.p:nth-child(n + 2), h3.style1 span.p:nth-child(n + 2), p.style1 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

/* Buttons */
.buttons {
    cursor: default;
    display: flex;
    justify-content: var(--flex-alignment);
    letter-spacing: 0;
    padding: 0;
}

.buttons li {
    max-width: 100%;
    text-align: var(--alignment);
}

.buttons li a {
    align-items: center;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
}

.buttons.style1 {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons.style1:not(:first-child) {
    margin-top: 3rem !important;
}

.buttons.style1:not(:last-child) {
    margin-bottom: 3rem !important;
}

.buttons.style1 li a {
    display: inline-flex;
    width: auto;
    height: 3.5rem;
    line-height: 3.5rem;
    padding: 0 1.75rem;
    vertical-align: middle;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.125rem;
    padding-left: calc(0.125rem + 1.75rem);
    font-size: 0.75em;
    font-weight: 700;
    border-radius: 2.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons.style1 li a svg {
    display: block;
    fill: #000000;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 18px;
    pointer-events: none;
    width: 1.40625em;
    margin-left: 0.875rem;
    margin-right: calc(-0.125em + 0.125rem);
    transition: fill 0.25s ease;
}

.buttons.style1 li a .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}

.buttons.style1 .button {
    background-color: #FFFFFF;
    color: #000000;
}

.buttons.style1 li a:hover {
    transform: scale(1.0425);
}

/* Containers */
.container {
    position: relative;
}

.container > .wrapper {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
}

.container > .wrapper > .inner {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
    text-align: var(--alignment);
}

#main .container.full:first-child > .wrapper {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

#main .container.full:first-child > .wrapper > .inner {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

#main .container.full:last-child > .wrapper > .inner {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container.style3 {
    display: flex;
    width: 100%;
    min-height: 40rem;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.071);
    border-style: solid;
    border-bottom-width: 1px;
}

.container.style3:not(:first-child) {
    margin-top: 0rem !important;
}

.container.style3:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container.style3 > .wrapper > .inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style3 > .wrapper {
    max-width: var(--width);
    width: 100%;
}

.container.style3.default > .wrapper > .inner > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container.style3.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

.container.style3.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.container.style3.columns > .wrapper > .inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.container.style3.columns > .wrapper > .inner > * {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container.style3.columns > .wrapper > .inner > * > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container.style3.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

.container.style3.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

.container.style3.columns > .wrapper > .inner > *:first-child {
    margin-left: calc(var(--gutters) * -1);
}

.container.style3.default > .wrapper > .inner > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: none !important;
    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container.style3.default > .wrapper > .inner > .full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container.style3.default > .wrapper > .inner > .full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container.style3.columns > .wrapper > .inner > div > .full {
    margin-left: calc(var(--gutters) * -0.5);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px);
}

.container.style3.columns > .wrapper > .inner > div:first-child > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style3.columns > .wrapper > .inner > div:last-child > .full {
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style3.columns > .wrapper > .inner > div > .full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container.style3.columns > .wrapper > .inner > div > .full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container.style3.columns > .wrapper > .inner > .full {
    align-self: stretch;
    min-height: calc(40rem - (var(--padding-vertical) * 2));
}

.container.style3.columns > .wrapper > .inner > .full:first-child {
    border-bottom-left-radius: inherit;
    border-top-left-radius: inherit;
}

.container.style3.columns > .wrapper > .inner > .full:last-child {
    border-bottom-right-radius: inherit;
    border-top-right-radius: inherit;
}

.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
    border-radius: inherit;
    height: calc(100% + (var(--padding-vertical) * 2));
}

.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
    border-radius: inherit;
    height: 100%;
    position: absolute;
    width: 100%;
}

.container.style1 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.071);
    border-style: solid;
    border-bottom-width: 1px;
}

.container.style1:not(:first-child) {
    margin-top: 0rem !important;
}

.container.style1:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container.style1 > .wrapper > .inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style1 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container.style1.default > .wrapper > .inner > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container.style1.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

.container.style1.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.container.style1.columns > .wrapper > .inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.container.style1.columns > .wrapper > .inner > * {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container.style1.columns > .wrapper > .inner > * > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container.style1.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

.container.style1.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

.container.style1.columns > .wrapper > .inner > *:first-child {
    margin-left: calc(var(--gutters) * -1);
}

.container.style1.default > .wrapper > .inner > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: none !important;
    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container.style1.default > .wrapper > .inner > .full:first-child {
    margin-top: calc(var(--padding-vertical) * -1) !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container.style1.default > .wrapper > .inner > .full:last-child {
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > div > .full {
    margin-left: calc(var(--gutters) * -0.5);
    max-width: none !important;
    width: calc(100% + var(--gutters) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div:first-of-type > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div:last-of-type > .full {
    width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container.style1.columns > .wrapper > .inner > div > .full:first-child {
    margin-top: calc(var(--gutters) * -0.5) !important;
}

.container.style1.columns > .wrapper > .inner > div > .full:last-child {
    margin-bottom: calc(var(--gutters) * -0.5) !important;
}

.container.style1.columns > .wrapper > .inner > .full {
    align-self: stretch;
}

.container.style1.columns > .wrapper > .inner > .full:first-child {
    border-bottom-left-radius: inherit;
    border-top-left-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > .full:last-child {
    border-bottom-right-radius: inherit;
    border-top-right-radius: inherit;
}

.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
    border-radius: inherit;
    height: calc(100% + (var(--padding-vertical) * 2));
}

.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
    border-radius: inherit;
    height: 100%;
    position: absolute;
    width: 100%;
}

/* Specific container widths */
#container02 > .wrapper > .inner > :nth-child(1) {
    width: calc(70% + (var(--gutters) / 2));
}

#container02 > .wrapper > .inner > :nth-child(2) {
    width: calc(30% + (var(--gutters) / 2));
}

/* Layout: Image Left (30%) - Text Right (70%) */
.layout-image-left > .wrapper > .inner > :nth-child(1) {
    width: calc(30% + (var(--gutters) / 2));
    --alignment: left;
    --flex-alignment: flex-start;
    --indent-left: 1;
    --indent-right: 0;
    --margin-left: 0;
    --margin-right: auto;
}

.layout-image-left > .wrapper > .inner > :nth-child(2) {
    width: calc(70% + (var(--gutters) / 2));
}

/* Layout: Text Left (70%) - Image Right (30%) */
.layout-text-left > .wrapper > .inner > :nth-child(1) {
    width: calc(70% + (var(--gutters) / 2));
}

.layout-text-left > .wrapper > .inner > :nth-child(2) {
    width: calc(30% + (var(--gutters) / 2));
}



/* Footer styles */
footer {
    border-bottom: none !important;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
}

.copyright p {
    color: #666666 !important;
    font-size: 0.875em !important;
    opacity: 0.8;
}