/*
Theme Name: Vast
Theme URI: 
Author: Your Name
Author URI: 
Description: A modern Gutenberg-first WordPress theme with dynamic blocks
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vast
*/

/* ================================================
   MENU-A STYLES - Streamlined Version
   ================================================ */



/* Base Menu Structure */
.vast-menu-a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

/* Logo styles */
.vast-menu-a__logo {
    display: flex
;
    align-items: center;
    margin-right: 20px;
    margin-left: 30px;
    margin-top: 30px;
}

.vast-menu-a__logo img {
    max-height: 110px;
    width: auto;
}

.vast-menu-a__logo-link {
    display: block;
    line-height: 0;
}

.vast-menu-a__container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vast-menu-a__items {
    display: flex;
    list-style: none;
    margin: 0;
    flex: 1;
    justify-content: center;
    padding: 0;

    display: none
}

.vast-menu-a__item {
    position: relative;
}

.vast-menu-a__link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vast-menu-a__link:hover,
.vast-menu-a__link:focus {
    color: #0B2F72;
}

/* Toggle Buttons - Shared Styles */
.vast-menu-a__toggle,
.vast-menu-a__mobile-toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #0B2F72;
    transition: all 0.3s ease;
}

.vast-menu-a__toggle::after,
.vast-menu-a__mobile-toggle-button::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.vast-menu-a__toggle[aria-expanded="true"]::after,
.vast-menu-a__mobile-toggle-button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
}

/* Mobile Toggle Icon */
.vast-menu-a__mobile-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    padding: 10px 0;
}

.vast-menu-a__mobile-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.vast-menu-a__mobile-logo img {
    width: 90%;
    vertical-align: middle;
}


.vast-menu-a__mobile-toggle {
    display: none;
    align-items: center;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #0B2F72;
    font-weight: 500;
    z-index: 1001;
}

.vast-menu-a__mobile-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    position: relative;
    margin-right: 8px;
    transition: background 0.3s ease;
}

.vast-menu-a__mobile-toggle-icon::before,
.vast-menu-a__mobile-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    left: 0;
}

.vast-menu-a__mobile-toggle-icon::before { top: -8px; }
.vast-menu-a__mobile-toggle-icon::after { top: 8px; }

.vast-menu-a__mobile-toggle[aria-expanded="true"] .vast-menu-a__mobile-toggle-icon {
    background: transparent;
}

.vast-menu-a__mobile-toggle[aria-expanded="true"] .vast-menu-a__mobile-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.vast-menu-a__mobile-toggle[aria-expanded="true"] .vast-menu-a__mobile-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Panel Structure - Shared */
.vast-menu-a__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.vast-menu-a__panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vast-menu-a__panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.vast-menu-a__panel-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.vast-menu-a__panel-column {
    flex: 1 1 200px;
    padding: 0 16px;
    margin-bottom: 16px;
}

.vast-menu-a__column-heading {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: bold;
    color: #0B2F72;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.vast-menu-a__sublinks {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vast-menu-a__subitem {
    margin-bottom: 8px;
}

.vast-menu-a__sublink {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #000000;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.vast-menu-a__sublink:hover,
.vast-menu-a__sublink:focus {
    opacity: 1;
    color: #0B2F72;
}

/* Focus Styles */
.vast-menu-a :focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Overlay */
body.has-menu-a-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* Desktop Styles */
@media (min-width: 1200px) {





    .vast-menu-a__toggle {
        display: inline-flex;
        align-items: center;
        padding: 4px 8px;
        position: absolute;
        right: 0;
    }

    .vast-menu-a__mobile-toggle,
    .vast-menu-a__mobile-toggle-button {
        display: none !important;
    }

    .vast-menu-a__panel:not(.vast-menu-a__panel--desktop) {
        display: none;
    }
}

/* CTA Button styles */
.vast-menu-a__cta {
    display: flex
;
    align-items: center;
    margin-right: 30px;
    margin-top: -46px;
}

.vast-menu-a__cta-button {
    display: inline-block;
    padding: 10px 20px;
    /* background-color: #0B2F72; */
    color: white;
    border-radius: 4px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 5px;
    font-family: 'Big Shoulders Display';
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.vast-menu-a__cta-button:hover {
    background-color: #09189E;
    text-decoration: none;
    color: white;
}


/* Mobile Styles */
/* Hero-A responsive behavior */
@media (max-width: 1199px) {
    /* Hide video and show image on small screens */
    .vast-hero-a__media-container .vast-hero-a__video {
        display: none;
    }
    
    /* Create a fallback image rule that will be used when mediaType is video */
    .vast-hero-a[data-media-type="video"] .vast-hero-a__media-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--hero-fallback-image);
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
}



/* Mobile Styles */
@media (max-width: 1199px) {

    .vast-menu-a__container{
        width: 50%;
        align-items: center;
        justify-content: center;
    }

    .vast-menu-a__item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }
    .vast-menu-a__toggle {
        display: none !important;
    }

    .vast-menu-a__mobile-header {
        display: flex;
        width: 50%;
    }
    
    .vast-menu-a__mobile-toggle {
        display: none;

    }
    
    .vast-menu-a__logo {
        display: none;
    }
    
    .vast-menu-a__cta {
        /* display: none; */
    }

    .vast-menu-a__mobile-toggle-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        padding: 16px 0;
        text-align: left;
    }

    /* Full-screen mobile menu */
    .vast-menu-a__items {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 32px 32px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        list-style: none;
        margin: 0;
    }

    .vast-menu-a__items.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex !important;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .vast-menu-a__item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }

    .vast-menu-a__item:last-child {
        border-bottom: none;
    }

    .vast-menu-a__item-header {
        display: block;
        width: 100%;
    }

    .vast-menu-a__item:has(.vast-menu-a__mobile-toggle-button) .vast-menu-a__link {
        display: none;
    }

    .vast-menu-a__link {
        padding: 24px 0;
        font-size: 16px;
        font-weight: 500;
        color: #0B2F72;
    }

    .vast-menu-a__panel--desktop {
        display: none;
    }

    .vast-menu-a__panel:not(.vast-menu-a__panel--desktop) {
        position: static;
        background: rgba(248, 249, 250, 0.9);
        box-shadow: none;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .vast-menu-a__panel:not(.vast-menu-a__panel--desktop).is-active {
        max-height: 500px;
        margin-bottom: 16px;
    }

    .vast-menu-a__panel-columns {
        display: block;
        gap: 0;
    }

    .vast-menu-a__panel-column {
        flex: none;
        padding: 0;
        margin-bottom: 24px;
    }

    .vast-menu-a__sublink {
        padding: 12px 0 12px 16px;
        border-left: 3px solid transparent;
    }

    .vast-menu-a__sublink:hover,
    .vast-menu-a__sublink:focus {
        border-left-color: #0B2F72;
        background: rgba(255, 255, 255, 0.5);
    }
}

/* CSS reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


@font-face {
    font-family: 'Big Shoulders Display';
    src: url('./assets/fonts/BigShouldersDisplay-Bold.eot');
    src: url('./assets/fonts/BigShouldersDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('./assets/fonts/BigShouldersDisplay-Bold.woff') format('woff'),
        url('./assets/fonts/BigShouldersDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* variable font css settings example */
.test {
    font-variation-settings: "wght" 350;
    font-variation-settings: "wdth" 50;
    color: #0B2F72;
    font-family: "PF Grand Gothik";
    font-size: 20px;
    font-style: normal;
    line-height: 27.5px;
}

html {
    /* font-family: "PF Grand Gothik";
    font-variation-settings: "wght" 350;
    font-variation-settings: "wdth" 50; */
    font-size: 16px;
    color: #0B2F72;
    background-color: #F5F5F5;
}

body {
    margin: 0;
    padding: 0;
}

main {
    /* margin-top: 80px; */
    background-color: #F9F9F9;
}

.wp-site-blocks {
    overflow: hidden;
}

header {
    /* position: fixed; */
    top: 0px;
    width: 100%;
    left: 0;
    right: 0;
}

.site-header {
    height: 140px;
    margin: 0 auto;
    padding: 0;
    display: flex
;
    align-items: center;
    position: absolute;
    width: 100%;
    /* background-color: #626262; */
    z-index: 1;
}

.header-class {
    height: 80px;
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0px 0;
    position: relative;
    background-color: #fbeff2;
}

.header-class-inner {
    height: 80px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbeff2;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.site_logo {
    display: flex;
    align-items: center;
}

.site_logo img {
    max-height: 50px;
    width: auto;
}

/* Footer styles */

footer{
    background-color: #060D49;
}

/* Navigation styles */


/* Block styles */


/* ================================================
   END MENU-A STYLES
   ================================================ */

/* hero-a block start */
.vast-hero-a {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.vast-hero-a__content {
    display: flex
;
    flex-direction: row;
    align-items: flex-end;
    gap: 0px;
    height: calc(100vh + -0px);
}

.vast-hero-a__content-background {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -120px);
    background: linear-gradient(0deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 0%) 100%);
    position: absolute;

    -webkit-transition: opacity 2s ease-in;
    -moz-transition: opacity 2s ease-in;
    -o-transition: opacity 2s ease-in;
    -ms-transition: opacity 2s ease-in;
    transition: opacity 2s ease-in;

    display: none;

}

.vast-hero-a__media-container {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin: 0;
    height: calc(100vh + -0px);
}

.vast-hero-a__image,
.vast-hero-a__video {
    display: block;
    width: 100%;
    height: calc(100vh + -0px);
    object-fit: cover;
    overflow: visible;
    filter: brightness(50%);
}

.vast-hero-a__text-content {
    position: absolute;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    /* width: 100%; */
    flex-wrap: wrap;
    margin-bottom: 110px;
    padding: 30px;
}

.vast-hero-a__text-content:after {
    padding-right: 5px;
    margin-left: 25px;
    content: url(./assets/images/color_bar1.svg);
    display: none;
}

/* .vast-hero-a__title {
    font-size: 158px;
    line-height: 149px;
    margin: 0;
    text-align: left;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    max-width: 800px;
    display: flex;
    align-items: flex-end;
} */


.vast-hero-a__title {
    font-size: clamp(50px, 10vw, 80px);
    line-height: clamp(50px, 10vw, 80px);
    margin: 0;
    text-align: left;
    color: #ffffff;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    max-width: 100%;
    text-transform: uppercase;
    display: flex
;
    align-items: flex-end;
}


.vast-hero-a__title__image {
    position: absolute;
    right: 40px;
    bottom: 75px;
}

.vast-hero-a__title__image__image {
    width: 182px;
    height: auto;
}

.vast-hero-a__subtitle {
    font-size: 24px;
    opacity: 0.7;
    max-width: 600px;
    line-height: 1.5;
    display: none;
}

.vast-hero-a__button-container {
    display: none;
}

.vast-hero-a__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-hero-a__button:hover {
    background-color: #000;
    color: #fff;
}

/* Arrow animation keyframes */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.vast-hero-a__arrow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.vast-hero-a__arrow:hover {
    opacity: 0.8;
}

.vast-hero-a__arrow-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    /* Makes the SVG white */
    animation: float 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.vast-hero-a__arrow:hover .vast-hero-a__arrow-icon {
    transform: translateY(5px);
}

/* Invert arrow color on light backgrounds */
.vast-hero-a--light .vast-hero-a__arrow-icon {
    filter: brightness(0);
    /* Makes the SVG black */
}

/* hero-a block end */

/* hero-b block start */
.vast-hero-b {
    padding: 0px;
    width: 100%;
    margin: 0 auto;
    height: 345px;
    display: inline-flex
;
    position: relative;
    background-color: #060D49;
    flex-direction: column;
    align-items: center;
}

.vast-hero-b__content {
    display: inline-flex
;
    flex-direction: row;
    height: 345px;
    max-width: 1600px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.vast-hero-b__content-background {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -60px);
    background: linear-gradient(0deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 0%) 100%);
    position: absolute;
    display: none;
}

.vast-hero-b__media-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -60px);
    display: none;
}

.vast-hero-b__image,
.vast-hero-b__video {
    display: block;
    width: 100%;
    height: calc(100vh + -60px);
    object-fit: cover;
}

.vast-hero-b__text-content {
    display: flex
;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: nowrap;
    max-width: 930px;
    width: 100%;
    justify-content: space-between;
    padding: 0px 40px;
}

.vast-hero-b__text-content:after {
    padding-right: 5px;
    margin-left: -37px;
    content: url(./assets/images/color_bar1.svg);
    position: absolute;
    bottom: -4px;
    left: 0px;
    display: none;
}

.vast-hero-b__title {
    display: flex
    ;
        font-size: 105px;
        line-height: 105px;
        margin: 0;
        text-align: left;
        color: #FBEFF2;
        font-family: 'Big Shoulders Display';
        font-weight: normal;
        width: 100%;
}

.vast-hero-b__title__image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 40px;
    right: 40px;
}


.vast-hero-b__title__image__image {
    width: 55px;
    height: auto;
}

.vast-hero-b__subtitle {

    display: none;
}

.vast-hero-b__button-container {
    display: none;
}

.vast-hero-b__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-hero-b__button:hover {
    background-color: #000;
    color: #fff;
}

/* hero-b block end */


/* hero-c block start */
.vast-hero-c {
    padding: 0px;
    width: 100%;
    margin: 0 auto;
    display: inline-flex
;
    position: relative;
    background-color: #060D49;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 180px);
}

.vast-hero-c__content {
    display: inline-flex;
    flex-direction: row-reverse;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.vast-hero-c__content-background {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -60px);
    background: linear-gradient(0deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 0%) 100%);
    position: absolute;
    display: none;
}

.vast-hero-c__media-container {
    width: 60%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -180px);
    object-fit: cover;
}

.vast-hero-c__image,
.vast-hero-c__video {
    display: block;
    width: 100%;
    height: calc(100vh + -180px);
    object-fit: cover;
}

.vast-hero-c__text-content {
    display: flex
;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: nowrap;
    max-width: 1100px;
    width: 40%;
    justify-content: space-between;
    padding: 0px 40px;
}

.vast-hero-c__text-content:after {
    padding-right: 5px;
    margin-left: -37px;
    content: url(./assets/images/color_bar1.svg);
    position: absolute;
    bottom: -4px;
    left: 0px;
    display: none;
}

.vast-hero-c__title {
    font-size: 105px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    color: #FBEFF2;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    width: 100%;
}

.vast-hero-c__title__image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.vast-hero-c__title__image__image {
    width: 55px;
    height: auto;
}

.vast-hero-c__subtitle {

    display: none;
}

.vast-hero-c__button-container {
    display: none;
}

.vast-hero-c__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-hero-c__button:hover {
    background-color: #000;
    color: #fff;
}

/* hero-c block end */

/* hero-d block start */
.vast-hero-d {
    padding: 0px;
    width: 100%;
    margin: 0 auto;
    min-height: 345px;
    display: inline-flex
;
    position: relative;
    background-color: #4e1237;
    flex-direction: column;
    align-items: center;
}

.vast-hero-d__content {
    display: inline-flex
;
    flex-direction: column;
    min-height: 345px;
    max-width: 1600px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
}

.vast-hero-d__content-background {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -60px);
    background: linear-gradient(0deg, rgb(0 0 0 / 46%) 0%, rgb(0 0 0 / 0%) 100%);
    position: absolute;
    display: none;
}

.vast-hero-d__media-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    height: calc(100vh + -60px);
    display: none;
}

.vast-hero-d__image,
.vast-hero-d__video {
    display: block;
    width: 100%;
    height: calc(100vh + -60px);
    object-fit: cover;
}




.vast-hero-d__text-content {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: 930px;
    width: 100%;
    justify-content: space-between;
    padding: 0px 40px;
}

.vast-hero-d__text-content:after {
    padding-right: 5px;
    margin-left: -37px;
    content: url(./assets/images/color_bar1.svg);
    position: absolute;
    bottom: -4px;
    left: 0px;
    display: none;
}



.vast-hero-d__title {
    display: flex;
    font-size: 105px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    color: #FBEFF2;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    width: 100%;
    letter-spacing: 0px;
}

.vast-hero-d__title__image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.vast-hero-d__title__image__image {
    width: 182px;
    height: auto;
}

.vast-hero-d__subtitle {
    color: #fbeff2;
    font-size: 26px;
    line-height: 37px;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}


.vast-hero-d__button-container {
    display: none;
}

.vast-hero-d__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-hero-d__button:hover {
    background-color: #000;
    color: #fff;
}

/* hero-d block end */

/* block-a block start */
.vast-block-a {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #C61D48;
    display: flex;
    justify-content: center;

    min-height: calc(100vh - 60px);
}

.vast-block-a__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
}



.vast-block-a__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 150px 40px;
}

.vast-block-a__text-content:after {
    padding-right: 5px;
    margin-left: 25px;
    content: url(./assets/images/color_bar1.svg);

    display: none;
}

.vast-block-a__title {
    font-size: 145px;
    line-height: 130px;
    margin: 0;
    text-align: left;
    color: #FBEFF2;
    font-family: 'Big Shoulders Display';
    font-weight: 800;
}

.vast-block-a__title strong {
    color: #F5B800;
}


.vast-block-a__subtitle {
    font-size: 38px;
    color: #FBEFF2;
    max-width: 100%;
    line-height: 61px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-a__button-container {
    display: none;
}

.vast-block-a__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-block-a__button:hover {
    background-color: #000;
    color: #fff;
}

/* block-a block end */


/* block-b block start */
.vast-block-b {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    /* background-color: white; */
    /* background-image: url(./assets/images/flower_back.svg); */
    display: flex;
    justify-content: center;
    min-height: auto;
    background-position: bottom;
    background-size: inherit;

    min-height: calc(100vh - 80px);
}

.vast-block-b__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    max-width: 930px;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
    padding: 0px 40px;
}

.vast-block-b__text-content:before {
    margin-bottom: 20px;
    content: url(./assets/images/color_bar1.svg);
    display: none;
}

.vast-block-b__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 150px 0px;
}



.vast-block-b__title {
    font-size: 105px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    color: #060D49;
}

.vast-block-b__subtitle {
    font-size: 26px;
    line-height: 37px;
    color: #060D49;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-b__subtitle p {
    margin-bottom: 20px;
}

.vast-block-b__button-container {
    display: flex;
}

.vast-block-b__button:before {
    display: block;
    font-size: 52px;
    line-height: 29px;
    color: #F5B800;
    content: "—";
    position: relative;
    margin-right: 20px;
    width: 24px;
    overflow: hidden;
    float: left;
}

.vast-block-b__button {
    display: inline-block;
    text-decoration: none;
    font-size: 26px;
    line-height: 37px;
    color: #060D49;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
    transition: all 0.3s ease;
}

.vast-block-b__button:hover {
    color: #C61D48;
    transition: all 0.3s ease;
}

/* block-b block end */

/* block-c block */
.vast-block-c {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #060D49;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 80px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.vast-block-c__content {

    flex-direction: row;
    gap: 0px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: nowrap;
    align-content: center;
    display: flex;
    padding: 100px 0px;

}

.vast-block-c__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 00px 40px;
    flex-wrap: wrap;
}

.vast-block-c__text-content:after {
    padding-right: 5px;
    margin-left: 25px;
    content: url(./assets/images/color_bar1.svg);
    display: none;
}

.vast-block-c__title {
    font-size: 76px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    color: #F5E4F3;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    margin-top: -17px;
}


.vast-block-c__subtitle {
    font-size: 45px;
    color: white;
    max-width: 100%;
    line-height: 61px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    text-align: left;
    display: none;
}

.vast-block-c__button-container {
    display: none;
}

.vast-block-c__button:before {
    display: block;
    font-size: 52px;
    line-height: 29px;
    color: #e61ce2;
    content: "—";
    position: relative;
    margin-right: 20px;
    width: 24px;
    overflow: hidden;
    float: left;
}

.vast-block-c__button {
    text-decoration: none;
    font-size: 26px;
    line-height: 37px;
    color: #0e386b;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
    transition: all 0.3s ease;
}

.vast-block-c__button:hover {
    color: #e61ce2;
    transition: all 0.3s ease;
}

/* Repeatable inner blocks styling */
.vast-block-c__block {
    width: 100%;
    display: flex
;
    flex-direction: column;
    gap: 80px;
    padding-right: 40px;
}

.vast-block-c__inner-item {
    transition: all 0.3sease;
}

.vast-block-c__inner-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vast-block-c__inner-title {
    font-size: 39px;
    line-height: 50px;
    margin: 0 0 40px;
    color: #F5E4F3;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-c__inner-subtitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: white;
    font-family: 'Big Shoulders Display';
}

.vast-block-c__inner-button {
    display: inline-flex;
    align-items: center;
    /* padding: 10px 20px; */
    background-color: #060D49;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Big Shoulders Display';
    margin-top: 40px;
}

.vast-block-c__inner-button:after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 20px;
    background-image: url(./assets/images/arrow2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.vast-block-c__inner-button:hover:after {
    transform: translateX(5px);
}

.vast-block-c__inner-button:hover {
    /* background-color: #6a1b4a; */
    transform: translateX(-2px);
    /* box-shadow: 0 4px 8px rgba(78, 19, 55, 0.2); */
    /* font-weight: normal; */
}

/* block-c block end */



/* block-d block start */
.vast-block-d {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    display: flex;
    justify-content: center;
    min-height: auto;
    background-position: bottom;
    background-size: inherit;
}

.vast-block-d__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
    padding: 0px 40px;
}


.vast-block-d__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 100px 0px 25px;
}

.vast-block-d__title {
    font-size: 80px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    font-family: 'Meno Banner';
    color: #0E386B;
}

.vast-block-d__subtitle {
    font-size: 26px;
    line-height: 37px;
    color: #0e386b;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-d__subtitle p {
    margin-bottom: 20px;
}

.vast-block-d__subtitle strong {
    font-weight: normal;
}

.vast-block-d__button-container {
    display: flex;
    margin-top: 20px;
}

.vast-block-d__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-block-d__button:hover {
    background-color: #000;
    color: #fff;
}




/* block-d block end */

/* block-e block start */
.vast-block-e {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #0E386B;
    display: flex;
    justify-content: center;
    min-height: auto;
    background-position: bottom;
    background-size: inherit;
}

.vast-block-e__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    width: 100%;
    align-content: center;
    flex-wrap: nowrap;
}

.vast-block-e__media-container {
    width: 60%;
    position: relative;
    padding-top: 40%;
}

.vast-block-e__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vast-block-e__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
    max-width: 100%;
    width: 40%;
    padding: 0px 40px;
}

.vast-block-e__title {
    font-size: 45px;
    line-height: 61px;
    letter-spacing: 2px;
    margin: 0;
    text-align: left;
    font-family: 'Big Shoulders Display';
    color: white;
    font-weight: normal;
}

.vast-block-e__subtitle {
    font-size: 22px;
    line-height: 30px;
    color: white;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-e__subtitle p {
    margin-bottom: 20px;
}

.vast-block-e__button-container {
    display: flex;
    margin-top: 20px;
}

.vast-block-e__button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.vast-block-e__button:hover {
    background-color: #000;
    color: #fff;
}

/* block-e block end */

/* block-f block start */
.vast-block-f {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    min-height: auto;
    background-position: bottom;
    background-size: inherit;
}

.vast-block-f__content {
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    padding: 50px 40px;
    max-width: 930px;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
}

.vast-block-f__text-content {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
    max-width: 100%;
    width: 50%;
    align-content: space-around;
    flex-wrap: wrap;
}

.vast-block-f__title {
    font-size: 76px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}

.vast-block-f__subtitle {
    font-size: 32px;
    color: #060D49;
    max-width:100%;
    line-height: 46px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-f__subtitle p {
    margin-bottom: 20px;
}

/* Removed empty ruleset */

.vast-block-f__button:before {
    display: block;
    font-size: 52px;
    line-height: 29px;
    color: #e61ce2;
    content: "—";
    position: relative;
    margin-right: 20px;
    width: 24px;
    overflow: hidden;
    float: left;
}

.vast-block-f__button {
    display: inline-block;
    text-decoration: none;
    font-size: 26px;
    line-height: 37px;
    color: #0e386b;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
    transition: all 0.3s ease;
}

.vast-block-f__button:hover {
    color: #e61ce2;
    transition: all 0.3s ease;
}

.vast-block-f__form {
    max-width: 100%;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}





.vast-block-f__form .vast-form-a__field:nth-child(6){
    display: none;

}

.vast-block-f__form .vast-form-a__field:nth-child(8) {
    display: block;
}

/* block-f block end */

/* block-g block start */

.vast-block-g {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.vast-block-g__content {
    flex-direction: column;
    gap: 0px;
    /* max-width: 1405px; */
    width: 100%;
    flex-wrap: nowrap;
    align-content: center;
    display: flex
;
}

.vast-block-g__text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 40px 0px;
    flex-wrap: wrap;

    display: none
}

.vast-block-g__text-content:after {
    padding-right: 5px;
    margin-left: 25px;
    content: url(./assets/images/color_bar1.svg);
    display: none;
}

.vast-block-g__title {
    font-size: 39px;
    line-height: 55px;
    margin: 0;
    text-align: left;
    color: #4e1237;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    letter-spacing: 2px;
}

.vast-block-g__subtitle {
    font-size: 45px;
    color: white;
    max-width: 100%;
    line-height: 61px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    text-align: left;
    display: block;
}

.vast-block-g__button-container {
    display: block;
}

.vast-block-g__button:before {
    display: block;
    font-size: 52px;
    line-height: 29px;
    color: #e61ce2;
    content: "—";
    position: relative;
    margin-right: 20px;
    width: 24px;
    overflow: hidden;
    float: left;
}

.vast-block-g__button {
    text-decoration: none;
    font-size: 26px;
    line-height: 37px;
    color: #0e386b;
    max-width: 100%;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
    transition: all 0.3s ease;
}

.vast-block-g__button:hover {
    color: #e61ce2;
    transition: all 0.3s ease;
}

.vast-block-g__block {
    width: 100%;
    display: flex
;
    flex-direction: row;
    /* gap: 40px; */
    column-gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
}

.vast-block-g__inner-item {
    position: relative;
    display: inline-flex;
    width: 100%;
    /* background-color: #4e1237 !important; */
    text-decoration: none;
    /* cursor: pointer; */
    overflow: hidden;
    margin-bottom: -4px;
    
    flex-direction: row-reverse;
}

.vast-block-g__inner-item:nth-child(even) {
    flex-direction: row;
}

/* .vast-block-g__inner-item:hover {
    background-color: #c61d48 !important;
    transform: translateY(-2px);
} */

.vast-block-g__inner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}


.vast-block-g__inner-content-wrapper {
    position: relative;
    min-height: 200px;
}

.vast-block-g__inner-image-container {

    top: 0;
    left: 0;
    width: 50%;
    height: 100%;

}

.vast-block-g__inner-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vast-block-g__inner-image-placeholder:before {
    content: 'No image';
    color: #888;
    font-size: 14px;
}

.vast-block-g__inner-item:hover .vast-block-g__inner-image-container {
    opacity: 1;
}

.vast-block-g__inner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vast-block-g__inner-content {
    display: flex
;
    justify-content: center;
    width: 50%;
    z-index: 0;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

/* .vast-block-g__inner-item:hover .vast-block-g__inner-content {
    opacity: 0;
}

.vast-block-g__inner-item--no-image:hover .vast-block-g__inner-content {
    opacity: 1;
} */

.vast-block-g__inner-title {
    font-size: 80px;
    line-height: 80px;
    margin: 0;
    color: #09189E;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-block-g__inner-subtitle {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    color: white;
    font-family: 'Big Shoulders Display';
}

.vast-block-g__inner-button {
    display: inline-flex;
    align-items: center;
    background-color: #060D49;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Big Shoulders Display';
    pointer-events: none; /* Prevents the button from capturing clicks */
}

.vast-block-g__inner-icon:after {
    content: '';
    display: flex
;
    width: 50px;
    height: 20px;
    background-image: url(./assets/images/arrow2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    margin-top: 13%;
    transition: transform 0.3s ease;
}

.vast-block-g__inner-button:hover:after {
    transform: translateX(5px);
}

.vast-block-g__inner-button:hover {
    transform: translateX(-2px);
}

/* block-g block end */


/* cta-a block start */
.vast-cta-a {
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    background-color: #FBEFF2;
    display: flex
;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.vast-cta-a__content {
    flex-direction: row;
    align-items: center;
    width: 100%;
    display: flex
;
    justify-content: center;
}


.vast-cta-a__media-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vast-cta-a__image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-height: calc(100vh - 80px);
}



.vast-cta-a__text-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    width: calc(50% - 60px);
    z-index: 0;
    padding-left: 60px;
}



.vast-cta-a__title {
    font-size: 76px;
    line-height: 105px;
    margin: 0;
    text-align: left;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}



.vast-cta-a__subtitle {
    font-size: 32px;
    color: #060D49;
    max-width: 80%;
    line-height: 46px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: normal;
}

.vast-cta-a__button-container {
    display: flex;
    justify-content: flex-start;
}

.vast-cta-a__button {
    display: inline-block;
    padding: 10px 30px 10px 30px;
    color: #FBEFF2;
    text-decoration: none;
    background-color: #4e1237;
    border-radius: 4.5px;
    font-weight: 800;
    font-family: 'Big Shoulders Display';
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 3px;
    transition: all 0.3s ease;


}

.vast-cta-a__button:hover {
    background-color: #c61d48;
    transition: all 0.3s ease;

}

/* cta-a block end */



/* Video A Block */
.vast-video-a {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.vast-video-a__content {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.vast-video-a__video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.vast-video-a__embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 0px;
}

.vast-video-a__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

/* Post Loop A Block */
.vast-post-loop-a {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.vast-post-loop-a__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.vast-post-loop-a__item {
    position: relative;
    width: calc(50% - 20px);
    transition: transform 0.3s ease;
}

.vast-post-loop-a__item:hover {
    transform: translateY(-0px);
}

.vast-post-loop-a__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vast-post-loop-a__image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.vast-post-loop-a__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vast-post-loop-a__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

.vast-post-loop-a__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px;
    background: #4e1237;
    color: #fbeff2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vast-post-loop-a__item:hover .vast-post-loop-a__content {
    opacity: 1;
}

.vast-post-loop-a__title {
    margin: 0 0 10px;
    font-size: 45px;
    line-height: 61px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}

.vast-post-loop-a__excerpt {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: .5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Big Shoulders Display';
}


.vast-post-loop-a__pagination {
    margin-top: 40px;
    text-align: center;
}

.vast-post-loop-a__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 0 12px;
    font-family: 'Big Shoulders Display';
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vast-post-loop-a__pagination .page-numbers.current {
    color: #fff;
    background: #333;
    border-color: #333;
}

.vast-post-loop-a__pagination .page-numbers:hover:not(.current) {
    background: #f5f5f5;
    border-color: #ccc;
}

.vast-post-loop-a__pagination .page-numbers.prev,
.vast-post-loop-a__pagination .page-numbers.next {
    padding: 0 16px;
}

.vast-post-loop-a__pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.vast-post-loop-a__pagination li {
    margin: 0;
}

@media (max-width: 480px) {
    .vast-post-loop-a__pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 2px;
    }

    .vast-post-loop-a__pagination .page-numbers.prev,
    .vast-post-loop-a__pagination .page-numbers.next {
        padding: 0 12px;
    }
}

/* Form A Block */
.vast-form-a {
    display: inline-block;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.vast-form-a__field {
    margin-bottom: 20px;
    width: 100%;
}

.vast-form-a__field-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.vast-form-a__field:nth-child(3),
.vast-form-a__field:nth-child(4) {
    display: inline-block;
    width: calc(50% - 26px);
    vertical-align: top;
}

.vast-form-a__field:nth-child(4){
    margin-left: 48px;
}

.vast-form-a__field:nth-child(2) {
    margin-right: 20px;
}

.vast-form-a__field label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    color: #333;
    display: none;
}

.vast-form-a__field input,
.vast-form-a__field textarea {
    width: 100%;
    padding: 15px;
    font-family: 'Big Shoulders Display';
    font-size: 22px;
    line-height: 30px;
    border: 2px solid #060D49;
    border-radius: 6px;
    background: #ffffff;
    color: #060D49;
    transition: border-color 0.3s ease;
    display: block;
    max-height: 100px;
}

.vast-form-a__field input:focus,
.vast-form-a__field textarea:focus {
    outline: none;
    border-color: #060D49;
}

.vast-form-a__field input::placeholder,
.vast-form-a__field textarea::placeholder {
    color: #060D49;
    font-size: 22px;
    line-height: 30px;
}

.vast-form-a__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    color: #060D49;
    width: calc(100% + 30px);
    padding: 15px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    font-size: 22px;
    line-height: 30px;
    border: 2px solid #060D49;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.3s ease;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vast-form-a__submit:hover {
    background: #060D49;
    color: #fff;
    border: 2px solid #060D49;
}

.vast-form-a__submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.vast-form-a__spinner {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: vast-form-spin 0.8s linear infinite;
}

@keyframes vast-form-spin {
    to {
        transform: rotate(360deg);
    }
}

.vast-form-a__messages {
    margin-bottom: 32px;
    padding: 16px;
    border-radius: 4px;
}

.vast-form-a__success {
    font-size: 32px;
    color: #060D49;
    max-width: 100%;
    line-height: 46px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: 800;
}

.vast-form-a__error {
    font-size: 32px;
    color: #060D49;
    max-width: 100%;
    line-height: 46px;
    letter-spacing: 1px;
    font-family: 'Big Shoulders Display';
    text-align: left;
    font-weight: 800;
}



/* .footer-inner-left field */

.footer-inner-left .vast-form-a__field input,
.footer-inner-left .vast-form-a__field textarea {
    background-color: transparent;
    border: 1px solid #fbeff2;
    color: #fbeff2;
}

.footer-inner-left .vast-form-a__field input::placeholder,
.footer-inner-left .vast-form-a__field textarea::placeholder {
    color: #fbeff2;
}

.footer-inner-left .vast-form-a__submit {
    background-color: transparent;
    border: 1px solid #fbeff2;
    color: #fbeff2;
}




.footer-inner-left .vast-form-a__field:nth-child(6),
.footer-inner-left .vast-form-a__field:nth-child(7) {
    display: none;
}




/* Registration Form (Form B) */
.vast-form-b {
    max-width: 600px;
    margin: 0 auto;
}

.vast-form-b__title {
    margin-top: 0;
    margin-bottom: 24px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    color: #333;
}

.vast-form-b__field {
    margin-bottom: 24px;
}

.vast-form-b__field label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
    color: #333;
}

.vast-form-b__field input {
    width: 100%;
    padding: 12px;
    font-family: 'Big Shoulders Display';
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.vast-form-b__field input:focus {
    outline: none;
    border-color: #333;
}

.vast-form-b__field input::placeholder {
    color: #999;
}

.vast-form-b__field--checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vast-form-b__field--checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.vast-form-b__field--checkbox label {
    margin-bottom: 0;
    font-size: 16px;
}

.vast-form-b__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 24px;
    font-family: 'Big Shoulders Display';
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    background: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vast-form-b__submit:hover {
    background: #444;
}

.vast-form-b__submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.vast-form-b__spinner {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: vast-form-spin 0.8s linear infinite;
}

.vast-form-b__messages {
    margin-bottom: 32px;
    padding: 16px;
    border-radius: 4px;
}

.vast-form-b__success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.vast-form-b__error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* Image A Block */
.vast-image-a {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}


.vast-image-a__content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.vast-image-a__media {
    width: 20%;
    height: auto;
    display: block;
    margin: auto;
}




/* Paragraph A Block */
.vast-paragraph-a {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-paragraph-a__content {
    max-width: 930px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1px;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}



.vast-paragraph-a__content strong {
    font-weight: normal;
}

.vast-paragraph-a__content p{
    margin-bottom: 20px;

}

.vast-paragraph-a__content a{
    color: #c61d48;
}



/* Paragraph B Block */
.vast-paragraph-b {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-paragraph-b__content {
    max-width: 930px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 1px;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}

.vast-paragraph-b__content strong {
    font-weight: normal;
}

.vast-paragraph-b__content p{
    margin-bottom: 20px;
}

.vast-paragraph-b__content a{
    color: #c61d48;
}


/* Heading A Block */
.vast-heading-a {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-heading-a__content {
    max-width: 930px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: normal;
    color: #060D49;
    font-family: 'Big Shoulders Display';
}



h1.vast-heading-a__content  {
    font-size: 48px;
    line-height: 1.2;
}

h2.vast-heading-a__content  {
    font-size: 76px;
    line-height: 86px;
}

h3.vast-heading-a__content {
    font-size: 24px;
    line-height: 1.4;
}

h4.vast-heading-a__content {
    font-size: 20px;
    line-height: 1.5;
}

h5.vast-heading-a__content {
    font-size: 18px;
    line-height: 1.6;
}

h6.vast-heading-a__content {
    font-size: 16px;
    line-height: 1.7;
}

/* Quote A Block */
.vast-quote-a {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-quote-a__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #0E386B;
    font-family: 'Big Shoulders Display';
}

.vast-quote-a__content blockquote {
    margin: 0;
    padding: 20px 40px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 1px;
    font-style: italic;
    border-left: 4px solid #0E386B;
}

.vast-quote-a__content cite {
    display: block;
    margin-top: 20px;
    padding-left: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
}

/* List A Block */
.vast-list-a {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-list-a__content {
    max-width: 930px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1px;
    color: #060D49;
    font-family: 'Big Shoulders Display';
    font-weight: normal;
}

.vast-list-a__content ul,
.vast-list-a__content ol {
    margin: 0;
    padding-left: 2em;
}

.vast-list-a__content li {
    margin-bottom: 0.5em;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.vast-list-a__content li:last-child {
    margin-bottom: 0;
}

.vast-list-a__content ul {
    list-style-type: disc;
}

.vast-list-a__content ol {
    list-style-type: decimal;
}

.vast-list-a__content ul ul,
.vast-list-a__content ol ol,
.vast-list-a__content ul ol,
.vast-list-a__content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0;
}

/* Details A Block */
.vast-details-a {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.vast-details-a__content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 40px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #0E386B;
    font-family: 'Big Shoulders Display';
}

.vast-details-a__content details {
    margin: 0;
    padding: 0;
}

.vast-details-a__content summary {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid #0E386B;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.vast-details-a__content summary:hover {
    background-color: rgba(14, 56, 107, 0.05);
}

.vast-details-a__content summary::-webkit-details-marker {
    display: none;
}

.vast-details-a__content summary::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
}

.vast-details-a__content details[open] summary::before {
    content: '−';
}

.vast-details-a__inner-content {
    margin-top: 20px;
    padding: 0 20px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #0E386B;
    font-family: 'Big Shoulders Display';
}

.vast-details-a__inner-content strong {
    font-weight: normal;
}

/* ////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////////////////////////// */

/* Mobile styles */



/* large screens 1600 */
@media (min-width: 1600px) {

    .vast-block-a,
    .vast-block-b,
    .vast-block-c,
    .vast-cta-a {
        min-height: 66vh;
    }

    .vast-cta-a__image {
        min-height: 66vh;
    }



    /* Removed empty ruleset */

}




/* tablet 1200px */
@media (max-width: 1200px) {

    
.vast-menu-a__cta{
        margin-right: -30px;
}

.vast-menu-a__cta-button{
font-size: 16px;
        padding: 9px 14px;

}

.vast-menu-a__mobile-logo img{
        width: 80%;
    margin-top: -21px;
}


    .vast-hero-a__content {
        /* flex-direction: column;
        align-items: flex-start;
        overflow: hidden; */
    }

    .vast-hero-a__media-container {
        /* width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        height: calc(85vh + -120px);
        position: absolute;
        bottom: 40px; */
    }

    .vast-hero-a__image, .vast-hero-a__video {
        /* display: block;
        width: 100%;
        height: calc(85vh + -120px);
        object-fit: cover;
        overflow: visible; */
    }


    .vast-hero-a__text-content {
        /* width: 91%;
        position: absolute;
        left: 15px;
        top: 102px; */
    }

    .vast-hero-a__title {
        font-size: 40px;
        line-height: 40px;

    }

    .vast-hero-a__title__image {
        position: initial;
        margin-left: 20px;
    }

    .vast-hero-a__title__image__image {
        width: 83px;
        height: auto;
    }

    .vast-hero-a__title br {
        display: none;
    }


    .vast-hero-b {
        height: auto;
    }

    .vast-hero-b__text-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .vast-hero-b__title {
        font-size: 65px;
        line-height: 90px;
    }


    .vast-hero-b__title__image {
        justify-content: flex-start;
        position: initial;
    }

    .vast-hero-b__title__image__image {
        width: 40px;
        height: auto;
        margin-top: 20px;
    }


    .vast-hero-c {
        height: auto;
    }


    .vast-hero-c__content {
        flex-direction: column;
    }

    .vast-hero-c__media-container{
        width: 100%;
    }

    .vast-hero-c__image,
    .vast-hero-c__video {
        height: auto;
    }

    .vast-hero-c__text-content {
        display: flex
;
        flex-direction: row;
        align-items: flex-end;
        flex-wrap: wrap;
        padding: 0px 40px;
        gap: 40px;
        width: 100%;
    }

    .vast-hero-c__title {
        font-size: 65px;
        line-height: 90px;
        padding: 25px 40px 25px 40px;

    }


    .vast-hero-c__title__image {
        position: relative;

        justify-content: flex-start;
    }

    .vast-hero-c__title__image__image {
        width: 40px;
        height: auto;
        margin-top: 20px;
    }



    .vast-hero-d {
        height: auto;
    }

    .vast-hero-d__content {
        height: auto;
    }

    .vast-hero-d__text-content {
        flex-direction: column;
        align-items: flex-start;
        width: auto;
    }

    .vast-hero-d__title {
        font-size: 65px;
        line-height: 90px;
    }

    .vast-hero-d__title__image {
        justify-content: flex-start;
        position: initial;
    }

    .vast-hero-d__title__image__image {
        width: 83px;
        height: auto;
    }



    .vast-block-a {
        height: auto;
        min-height: auto;
    }

    .vast-block-a__title {
        font-size: 65px;
        line-height: 90px;
    }

    .vast-block-a__subtitle {
        font-size: 28px;
        line-height: 42px;
    }




    .vast-block-b {
        height: auto;
        min-height: auto;
    }

    .vast-block-b__title {
        font-size: 65px;
        line-height: 90px;
    }

    .vast-block-b__subtitle {
        font-size: 22px;
        line-height: 34px;
    }


    .vast-block-c {
        min-height: auto;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .vast-block-c__content {
        flex-direction: column;
        gap: 40px;
        flex-wrap: wrap;
        padding: 100px 0px;
        position: relative;
        align-items: flex-start;
    }

    .vast-block-c__block{
        padding: 40px;
    }

    .vast-block-c__text-content {
        padding: 40px;
    }

    .vast-block-c__title {
        font-size: 60px;
        line-height: 80px;
        padding: 0px 40px;
    }

    .vast-block-c__inner-item {
        padding: 0px 40px;
    }

    .vast-block-c__inner-title {
        font-size: 24px;
        line-height: 35px;

    }

    .vast-block-c__inner-subtitle {
        font-size: 22px;
        line-height: 40px;

    }




    .vast-block-d__title {
        font-size: 60px;
        line-height: 80px;
    }

    .vast-block-d__subtitle {
        font-size: 22px;
        line-height: 34px;
    }



    .vast-block-e__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .vast-block-e__media-container {
        width: 100%;
        position: relative;
        padding-top: 50%;
    }

    .vast-block-e__text-content {
        width: 100%;
        padding: 0px 0px;
    }

    .vast-block-e__title {
        font-size: 35px;
        line-height: 50px;
        padding: 25px 40px 0px 40px;
    }

    .vast-block-e__subtitle {
        padding: 0px 40px 25px 40px;
    }




    .vast-block-f__content {
        width: 100%;
        gap: 0px;
    }

    .vast-block-f__text-content {
        width: 100%;

        flex-direction: row;
        align-items: flex-start;
    }

    .vast-block-f__title {
        font-size: 65px;
        line-height: 90px;
    }

    .vast-block-f__subtitle {
        font-size: 35px;
        line-height: 50px;
    }

    .vast-block-f__form {
        width: 100%;
        margin-top: 40px;
    }

    .wp-block-vast-form-a {
        width: 100%;
    }


    h2.vast-heading-a__content {
        font-size: 40px;
        line-height: 51px;
    }


    .vast-block-g__inner-content{

        width: 100%;  
        display: flex
        ;
            justify-content: center;
            flex-wrap: wrap;
            align-items: flex-start;
            align-content: flex-start;
            flex-direction: column;
    }

    .vast-block-g__inner-item:nth-child(even) {
        flex-direction: column;
    }

    .vast-block-g__inner-item {
        /* width: calc(50% - 20px); */
        margin-bottom: 40px;

        flex-direction: column;
    }
    .vast-block-g__inner-image-container {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .vast-block-g__inner-title{
        font-size: 45px;
        line-height: 45px;
        margin-left: 20px;
        margin: 0;
        margin-left: 30px;
        margin-top: 20px;
        color: #09189E;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Big Shoulders Display';
        text-align: left;
        font-weight: normal;
    }


    .vast-cta-a {
        padding: 0px;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
        min-height: auto;
    }

    .vast-cta-a__content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: flex
;
        justify-content: center;
        flex-wrap: wrap;
    }

    .vast-cta-a__media-container {
        width: 100%;
        display: flex
;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .vast-cta-a__image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        min-height: auto;
    }


    .vast-cta-a__text-content {
        display: flex
;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        position: relative;
        padding: 40px;
        z-index: 0;
    }

    .vast-cta-a__title {
        font-size: 65px;
        line-height: 90px;
        margin: 0;
        text-align: left;

    }

    .vast-cta-a__button-container {
        margin-top: 0px;
        display: flex
;
        justify-content: flex-start;
        padding: 0px 20px 25px 0px;
    }



    .vast-form-a{
        width: calc(100% - 40px);
    }


    .vast-list-a__content {
        padding: 0px 40px 0px 40px;
    }

    .vast-details-a__content {
        padding: 0px 40px 0px 40px;

    }

    .vast-paragraph-a__content {
        padding: 0px 40px 0px 40px;

    }


    .vast-post-loop-a {
        padding: 0px;
    }

    .vast-post-loop-a__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: flex-start;
        flex-direction: column;
        padding: 40px;
    }

    .vast-post-loop-a__item {
        width: calc(100% - 0px);
    }

    .vast-post-loop-a__content {
        opacity: 1.0;
    }





    .footer-inner {
        display: inline-flex;
        width: 100%;
        flex-wrap: nowrap;
        padding: 150px 0px 20px 0px;
        align-items: center;
        flex-direction: column;
    }

    .footer-inner-left {
        padding: 65px 20px;
        display: inline-flex;
        width: calc(100% + -80px);
        border-right: 0px solid white;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }


    .footer-navigation .wp-block-navigation__container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-navigation a {
        text-align: center;
    }
}








