* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
}
:root {
    /*color*/

    --Primary-primary: #6E2FD0;
    --Primary-2: #D1BBF1;
    --Primary-3: #F3EEFB;

    --Secondary-1: #FFA794;
    --Secondary-2: #FFF2E6;

    --Neutral-800: #090717;
    --Neutral-700: #191A2F;
    --Neutral-600: #626270;
    --Neutral-500: #8D8D9B;
    --Neutral-400: #D0D0DB;
    --Neutral-300: #ECECEC;
    --Neutral-200: #F8F8F9;
    --Neutral-100: #FFFFFF;

    --S-c-blue-400: #086CD9;
    --S-c-blue-300: #1D88FE;
    --S-c-blue-200: #8FC3FF;
    --S-c-blue-100: #EAF4FF;

    --S-c-green-400: #11845B;
    --S-c-green-300: #05C168;
    --S-c-green-200: #7FDCA4;
    --S-c-green-100: #DEF2E6;

    --S-c-red-400: #DC2B2B;
    --S-c-red-300: #FF5A65;
    --S-c-red-200: #FFBEC2;
    --S-c-red-100: #FFEFF0;

    --S-c-orange-400: #D5691B;
    --S-c-orange-300: #FF9E2C;
    --S-c-orange-200: #FFD19B;
    --S-c-orange-100: #FFF3E4;

    /*font*/
    --font-family-onest: "Onest", sans-serif;

    /*size px*/
    --12: 12px;
    --16: 16px;
    --18: 18px;
    --20: 20px;
    --22: 22px;
    --24: 24px;
    --26: 26px;
    --28: 28px;
    --30: 30px;
    --32: 32px;
    --34: 34px;
    --36: 36px;
    --38: 38px;
    --40: 40px;
    --42: 42px;
    --44: 44px;
    --46: 46px;
    --48: 48px;
    --50: 50px;
    --52: 52px;
    --54: 54px;
    --56: 56px;
    --58: 58px;
    --60: 60px;
    --62: 62px;
    --64: 64px;
    --66: 66px;
    --68: 68px;
    --70: 70px;
    --72: 72px;
    --74: 74px;
    --76: 76px;
    --78: 78px;
    --80: 80px;
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: var( --font-family-onest);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: var(--Neutral-800);
    background: var(--Neutral-200);
}

/* --- Fix low contrast in OneTap toolbar --- */
.onetap-site-container,
.onetap-site-container * {
  color: #1a1a1a !important;
}

/* Language dropdown button */
#onetap-language-list,
.onetap-site-container button.onetap-languages {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #666 !important;
}

/* Hover/focus states */
#onetap-language-list:hover,
#onetap-language-list:focus,
.onetap-site-container button.onetap-languages:hover,
.onetap-site-container button.onetap-languages:focus {
  background: #F3EEFB !important;      /* your light lavender */
  outline: 2px solid #8C58DA !important; /* your purple */
  outline-offset: 2px;
}

/* Dropdown/listbox */
.onetap-site-container [role="listbox"],
.onetap-site-container .onetap-language-list {
  background: #fff !important;
  border: 1px solid #666 !important;
}

/* Selected option */
.onetap-site-container [role="option"][aria-selected="true"] {
  background: #8C58DA !important;
  color: #fff !important;
}


/*Special headings*/
.vp-SH-display-1,
.vp-SH-display-2,
.vp-SH-display-3,
.vp-SH-display-4{
    font-weight: 500;
    color: var(--Neutral-800);
}
.vp-SH-display-1{
    font-size: var(--72);
    line-height: 116.7%;
}
.vp-SH-display-2{
    font-size: var(--50);
    line-height: 120%;
}
.vp-SH-display-6{
    font-size: var(--24);
    font-weight: 600;
    line-height: 132%;
}

/*heading*/
.vp-H1,
.vp-H2,
.vp-H3,
.vp-H4,
.vp-H5,
.vp-H6 {
    font-weight: 600;
    color: var(--Neutral-800);
}
.vp-H1{
    font-size: var(--54);
    line-height: 122.2%;
}
.vp-H2{
    font-size: var(--46);
    line-height: 126.1%;
}
.vp-H3{
    font-size: var(--24);
    line-height: 150%;
}
.vp-H4{
    font-size: var(--22);
    line-height: 127.3%;
}
.vp-H5{
    font-size: var(--18);
    line-height: 155.6%;
}
.vp-H6{
    font-size: var(--16);
    line-height: 137.5%;
}
/*body text*/
.vp-body-large,
.vp-body-default,
.vp-body-small{
    font-weight: 400;
}
.vp-body-large{
    font-size: var(--24);
    line-height: 158.3%;
}
.vp-body-default{
    font-size: var(--18);
    line-height: 166.7%;
}
.vp-text-400-regular,
.vp-text-400-medium,
.vp-text-400-bold{
    font-size: var(--24);
    line-height: 122%;
}
.vp-text-300-regular,
.vp-text-300-medium,
.vp-text-300-bold{
    font-size: var(--20);
    line-height: 128%;
}
.vp-text-200-regular,
.vp-text-200-medium,
.vp-text-200-bold{
    font-size: var(--18);
    line-height: 148%;
}
.vp-text-100-regular,
.vp-text-100-medium,
.vp-text-100-bold{
    font-size: var(--16);
    line-height: 148%;
}
.vp-text-400-regular,
.vp-text-300-regular,
.vp-text-200-regular,
.vp-text-100-regular{
    font-weight: 400;
}
.vp-text-400-medium,
.vp-text-300-medium,
.vp-text-200-medium,
.vp-text-100-medium{
    font-weight: 500;
}
.vp-text-400-bold,
.vp-text-300-bold,
.vp-text-200-bold,
.vp-text-100-bold{
    font-weight: 700;
}

.gm-close{
    display: flex;
    outline: none;
    border: none;
    background: transparent;
}

/*button*/
.vp-btn-primary-large,
.vp-btn-primary-medium,
.vp-btn-primary-small,
.vp-btn-primary-white-large,
.vp-btn-primary-white-medium,
.vp-btn-primary-white-small,
.vp-btn-stroke-large,
.vp-btn-stroke-medium,
.vp-btn-stroke-small,
.vp-btn-stroke-white-large,
.vp-btn-stroke-white-medium,
.vp-btn-stroke-white-small{
    display: inline-flex;
    padding: var(--20);
    justify-content: center;
    align-items: center;
    gap: var(--12);
    border-radius: var(--12);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    height: var(--64);
    background: var(--Primary-primary);
    color: var(--Neutral-100);
    transition: background 0.3s ease;
    border: none;
}
.vp-btn-primary-large:hover,
.vp-btn-primary-medium:hover,
.vp-btn-primary-small:hover{
    background: var(--Secondary-1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);

}
.vp-btn-primary-large-dis,
.vp-btn-primary-medium-dis,
.vp-btn-primary-small-dis{
    background: var(--Neutral-500);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}

.vp-btn-primary-small,
.vp-btn-primary-white-small,
.vp-btn-stroke-small,
.vp-btn-stroke-white-small{
    padding:  var(--12);
    height: var(--44);
}

.vp-btn-primary-white-large,
.vp-btn-primary-white-medium,
.vp-btn-primary-white-small{
    color: var(--Primary-primary);
    background: var(--Neutral-100);
}
.vp-btn-primary-white-large:hover,
.vp-btn-primary-white-medium:hover,
.vp-btn-primary-white-small:hover{
    background: var(--Primary-3);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.vp-btn-primary-white-large-dis,
.vp-btn-primary-white-medium-dis,
.vp-btn-primary-white-small-dis{
    background: var(--Neutral-400);
    color: var(--Neutral-500);
}

.vp-btn-stroke-large,
.vp-btn-stroke-medium,
.vp-btn-stroke-small{
    background: transparent;
    color: var(--Neutral-100);
    border: 1px solid var(--Neutral-100);
}
.vp-btn-stroke-large:hover,
.vp-btn-stroke-medium:hover,
.vp-btn-stroke-small:hover{
    background: var(--Neutral-100);
    color: var(--Neutral-800);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.vp-btn-stroke-large-dis,
.vp-btn-stroke-medium-dis,
.vp-btn-stroke-small-dis{
    border: 1px solid var(--Neutral-500);
    color: var(--Neutral-500);
}
.vp-btn-stroke-white-large,
.vp-btn-stroke-white-medium,
.vp-btn-stroke-white-small{
    border: 1px solid var(--Neutral-400);
    background: var(--Neutral-100);
    color: var(--Neutral-800);
}
.vp-btn-stroke-white-large:hover,
.vp-btn-stroke-white-medium:hover,
.vp-btn-stroke-white-small:hover{
    background: var(--Primary-primary);
    color: var(--Neutral-100);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.vp-btn-stroke-white-large-dis,
.vp-btn-stroke-white-medium-dis,
.vp-btn-stroke-white-small-dis{
    border: 1px solid var(--Neutral-500);
    color: var(--Neutral-500);
    background: var(--Neutral-400);
}
.vp-btn-primary-large-icon,
.vp-btn-primary-medium-icon,
.vp-btn-primary-small-icon,
.vp-btn-primary-white-large-icon,
.vp-btn-primary-white-medium-icon,
.vp-btn-primary-white-small-icon,
.vp-btn-stroke-large-icon,
.vp-btn-stroke-medium-icon,
.vp-btn-stroke-small-icon,
.vp-btn-stroke-white-large-icon,
.vp-btn-stroke-white-medium-icon,
.vp-btn-stroke-white-small-icon{
    display: flex;
    width: var(--64);
    height: var(--64);
    /*padding: var(--20);*/
    justify-content: center;
    align-items: center;
    gap: var(--12);
    flex-shrink: 0;
    border-radius: var(--44);
}
.vp-btn-primary-large-icon,
.vp-btn-primary-medium-icon,
.vp-btn-primary-small-icon{
    background: var(--Primary-primary);
    color: var(--Neutral-100);
    border: none;
}
.vp-btn-primary-large-icon:hover,
.vp-btn-primary-medium-icon:hover,
.vp-btn-primary-small-icon:hover{
    background: var(--Secondary-1);
}
.vp-btn-primary-large-icon-dis,
.vp-btn-primary-medium-icon-dis,
.vp-btn-primary-small-icon-dis{
    background: var(--Neutral-500);
    color: var(--Neutral-100);
}
.vp-btn-primary-white-large-icon,
.vp-btn-primary-white-medium-icon,
.vp-btn-primary-white-small-icon{
    background: var(--Primary-3);
    color: var(--Primary-primary);
}
.vp-btn-primary-white-large-icon:hover,
.vp-btn-primary-white-medium-icon:hover,
.vp-btn-primary-white-small-icon:hover{
    background: var(--Primary-3);
    color: var(--Primary-primary);
}
.vp-btn-primary-white-large-icon-dis,
.vp-btn-primary-white-medium-icon-dis,
.vp-btn-primary-white-small-icon-dis{
    background: var(--Neutral-400);
    color: var(--Neutral-500);
}
.vp-btn-stroke-large-icon,
.vp-btn-stroke-medium-icon,
.vp-btn-stroke-small-icon{
    border: 1px solid var(--Neutral-100);
    background: transparent;
}
.vp-btn-stroke-large-icon:hover,
.vp-btn-stroke-medium-icon:hover,
.vp-btn-stroke-small-icon:hover{
    background: var(--Neutral-100);
    padding: var(--16) var(--20);
}
.vp-btn-stroke-large-icon-dis,
.vp-btn-stroke-medium-icon-dis,
.vp-btn-stroke-small-icon-dis{
    border: 1px solid var(--Neutral-500);
    color: var(--Neutral-500);
}
.vp-btn-stroke-white-large-icon,
.vp-btn-stroke-white-medium-icon,
.vp-btn-stroke-white-small-icon{
    border: 1px solid var(--Neutral-400);
    background: var(--Neutral-100);
    color: var(--Neutral-800);
}
.vp-btn-stroke-white-large-icon:hover,
.vp-btn-stroke-white-medium-icon:hover,
.vp-btn-stroke-white-small-icon:hover{
    border: none;
    background: var(--Primary-primary);
    color: var(--Neutral-100);
}
.vp-btn-stroke-white-large-icon:hover svg path,
.vp-btn-stroke-white-medium-icon:hover svg path{
    fill: #fff;
}
.vp-btn-stroke-white-large-icon-dis,
.vp-btn-stroke-white-medium-icon-dis,
.vp-btn-stroke-white-small-icon-dis{
    border: 1px solid var(--Neutral-500);
    background: var(--Neutral-400);
    color: var(--Neutral-500);
}
.vp-btn-simple-one-large,
.vp-btn-simple-two-large,
.vp-btn-footer-large,
.vp-btn-header-large,
.vp-btn-simple-one-small,
.vp-btn-simple-two-small,
.vp-btn-footer-small,
.vp-btn-header-small{
    display: inline-flex;
    padding: 6px;
    align-items: center;
    gap: 4px;
    transform-style: preserve-3d;
    transition: transform .3s, color .3s;
}
.vp-btn-header-large,
.vp-btn-header-small{
    height: 36px;
    gap: 8px;
    flex-shrink: 0;
    color: var(--Neutral-800);
}
.vp-btn-header-large:hover,
.vp-btn-header-small:hover{
    color: var(--Primary-primary);
}

.vp-btn-simple-one-large,
.vp-btn-simple-one-small{
    color: var(--Primary-primary);
}
.vp-btn-simple-one-large:hover,
.vp-btn-simple-one-small:hover{
    color: var(--Neutral-800);
}
.vp-btn-simple-one-large-dis,
.vp-btn-simple-one-small-dis,
.vp-btn-simple-two-large-dis,
.vp-btn-simple-two-small-dis,
.vp-btn-footer-large-dis,
.vp-btn-footer-small-dis,
.vp-btn-header-large-dis,
.vp-btn-header-small-dis{
    color: var(--Neutral-500);
}
.vp-btn-simple-two-large,
.vp-btn-simple-two-small{
    color: var(--Neutral-800);
}
.vp-btn-simple-two-large:hover,
.vp-btn-simple-two-small:hover{
    color: var(--Primary-primary);
}
.vp-btn-footer-large,
.vp-btn-footer-small{
    color: var(--Neutral-600);
}
.vp-btn-footer-large:hover,
.vp-btn-footer-small:hover{
    color: var(--Primary-primary);
}
.vp-btn-link-large,
.vp-btn-link-small{
    display: inline-flex;
    padding: 2px;
    align-items: center;
    gap: var(--12);
    border-radius: 0;
    border-bottom: 1px solid var(--Neutral-800);
    color: var(--Neutral-800);
}
.vp-btn-link-large:hover,
.vp-btn-link-small:hover{
    color: var(--Primary-primary);
    border-bottom: 1px solid var(--Primary-primary);
}
.vp-btn-link-large-dis,
.vp-btn-link-small-dis{
    color: var(--Neutral-500);
    border-bottom: 1px solid var(--Neutral-500);
}
.vp-btn-articles-larg,
.vp-btn-articles-small{
    display: inline-flex;
    height: var(--64);
    padding: var(--20) var(--24);
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--Neutral-800);
    border-radius: var(--12);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
}
.vp-btn-articles-small{
    height: var(--56);
    padding: var(--16) var(--20);
}
.vp-btn-articles-larg:hover,
.vp-btn-articles-small:hover{
    background: var(--Primary-primary);
    color: var(--Neutral-100);
}
.vp-btn-articles-larg-dis,
.vp-btn-articles-small-dis{
    border: 1px solid var(--Neutral-300);
    background: var(--Primary-3);
    color: var(--Neutral-500);
}
button.vp-mob-dropdown {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}
/*global class*/
ul{
    list-style: none;
}
input,
textarea,
button,
select{
    outline: none;
}
.vp-w-100{
    width: 100%;
}
.vp-max-width-inner{
    max-width: 1920px;
    margin: 0 auto;
}
.vp-max-width{
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 16px;
}
.vp-d-flex{
    display: flex;
}
.vp-d-block{
    display: block;
}
.vp-d-inline-block{
    display: inline-block;
}
.vp-d-none{
    display: none;
}
.vp-d-grid{
    display: grid;
}
.vp-a-i-center{
    align-items: center;
}
.vp-a-i-f-start{
    align-items: flex-start;
}
.vp-a-i-start{
    align-items: start;
}
.vp-a-i-f-end{
    align-items: flex-end;
}
.vp-f-d-column{
    flex-direction: column;
}
.vp-f-d-row{
    flex-direction: row;
}
.vp-a-i-end{
    align-items: end;
}
.vp-a-s-stretch{
    align-self: stretch;
}
.vp-j-c-flex-end{
    justify-content: flex-end;
}
.vp-j-c-flex-start{
    justify-content: flex-start;
}
.vp-j-c-end{
    justify-content: end;
}
.vp-j-c-start{
    justify-content: start;
}
.vp-j-c-center{
    justify-content: center;
}
.vp-j-c-space-between{
    justify-content: space-between;
}
.vp-f-wrap{
    flex-wrap: wrap;
}

.vp-gap-8{
    gap: 8px;
}
.vp-gap-12{
    gap: var(--12);
}
.vp-gap-16{
    gap: var(--16);
}
.vp-gap-20{
    gap: var(--20);
}
.vp-gap-24{
    gap: var(--24);
}
.vp-gap-28{
    gap: var(--28);
}
.vp-gap-32{
    gap: var(--32);
}
.vp-gap-36{
    gap: var(--36);
}
.vp-gap-40{
    gap: var(--40);
}
.vp-gap-44{
    gap: var(--44);
}
.vp-gap-200{
    gap: 200px;
}
.vp-title-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.vp-sub-title > p{
    color: var(--Primary-primary);
    text-transform: uppercase;
}

@media (max-width: 768px ) {
    .vp-SH-display-1{
        font-size: var(--42);
        line-height: 124%;
    }
    .vp-f-d-column-mob{
        flex-direction: column;
    }
    .vp-a-i-center-mob{
        align-items: center;
    }
    .vp-j-c-center-mob{
        justify-content: center;
    }
    .vp-w-100-mob{
        width: 100%;
    }
    .vp-SH-display-4{
        font-size: var(--32);
        line-height: 132%;
    }
    .vp-sub-title > p,
    .vp-title-text .vp-text-200-regular{
        font-size: var(--16);
    }
    .vp-btn-primary-medium-icon,
    .vp-btn-primary-white-medium-icon,
    .vp-btn-stroke-medium-icon,
    .vp-btn-stroke-white-medium-icon{
        padding: var(--16);
        height: var(--56);
        width: var(--56);
    }
    .vp-btn-primary-medium,
    .vp-btn-primary-white-medium,
    .vp-btn-stroke-medium,
    .vp-btn-stroke-white-medium{
        padding: var(--16);
        height: var(--56);
    }
    .vp-btn-primary-small-icon,
    .vp-btn-primary-white-small-icon,
    .vp-btn-stroke-small-icon,
    .vp-btn-stroke-white-small-icon {
        padding:  var(--12);
        height: var(--44);
        width: var(--44);
    }
    .vp-body-small{
        font-size: var(--16);
        line-height: 175%;
    }
    .vp-btn-simple-one-small,
    .vp-btn-simple-two-small,
    .vp-btn-footer-small,
    .vp-btn-header-small{
        font-size: 16px;
    }
    .vp-title{
        text-align: center;
    }
    .vp-title svg,
    .vp-title-inner svg,
    .vp-title-hero svg{
        width: 100%;
    }

    .vp-SH-display-3{
        font-size: var(--42);
        line-height: 124%;
    }
}

/*header start*/

.vp-top-menu {
    padding: 22px 0;
    background: var(--Primary-3);
}
.vp-top-menu a.vp-text-100-regular{
    color: var(--Neutral-800);
}
.vp-top-menu a.vp-text-100-regular img{
    width: var(--24);
    height: var(--24);
}
.vp-logo img{
    width: var(--50);
    height: var(--44);
}
.vp-logo a {
    min-width: 0;
}
.vp-brand-name {
    white-space: nowrap;
}
.vp-brand-name-short {
    display: none;
}
.vp-btn-header-large svg,
.vp-btn-header-small svg{
    /*transform: rotate(180deg);*/
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}
.vp-btn-header-large:hover svg,
.vp-btn-header-small:hover svg{
    /*transform: rotate(180deg);*/
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-180deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.vp-btn-header-large:hover svg path,
.vp-btn-header-small:hover svg path{
    fill: var(--Primary-primary);
}
.vp-dropdown {
    position: absolute;
    left: 0;
    display: none;
    right: 0;
    z-index: 999;
    padding: 24px 0 0 0;
}
.vp-dropdown-block {
    padding: var(--32);
    margin: 0 var(--16);
    border-radius: var(--24);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.vp-main-menu .vp-max-width {
    position: relative;
}
.vp-one-list img {
    width: 28px;
}
.vp-one-list {
    border-bottom: 1px solid var(--Neutral-300);
    padding-bottom: 12px;
}
.vp-menu li:hover .vp-dropdown{
    display: block;
}
.vp-btn-simple-two-large:hover svg path,
.vp-btn-simple-two-small:hover svg path{
    fill: var(--Primary-primary);
}
.vp-btn-simple-one-large:hover svg path,
.vp-btn-simple-one-small:hover svg path{
    fill: var(--Neutral-800);
}
#site-header.site-header {
    background: var(--Neutral-100);
}
.vp-main-menu {
    border-bottom: 1px solid var(--Neutral-300, #ECECEC);
    background: var(--Neutral-100);
    padding: 24px 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}
.vp-menu li .vp-dropdown ul li a:hover{
    transform: translate3d(3px, 0, .01px);
}
.vp-top-menu a:hover{
    color: var(--Primary-primary);
}



/* Mobile menu default hidden */
.vp-mobile-menu .vp-mobile-header,
.vp-mobile-menu .vp-mobile-nav,
.vp-mobile-menu > a{
    padding: 0 16px;
}
.vp-mobile-menu > a {
    margin: 0 16px;
}
.vp-mobile-menu .vp-dropdown.vp-mob-menu-active {
    transform: translateX(0);
    height: 100%;
    background: #fff;
}
.vp-mobile-menu .vp-dropdown {
    top: 70px;
    display: inline;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.vp-mobile-menu .vp-dropdown .vp-dropdown-block{
    padding: 0 16px 60px;
    border: none;
    box-shadow: none;
    gap: 16px;
    border-radius: 0;
    overflow: auto;
    max-height: 650px;
    margin: 0;
}
.vp-mobile-menu .vp-btn-header-large svg,
.vp-mobile-menu .vp-btn-header-small svg {
    transform: rotate(-90deg);
}
.vp-mobile-menu .vp-mobile-nav li {
    width: 100%;
    margin-bottom: 6px;
}
.vp-mobile-menu .vp-mobile-nav li a{
    font-size: 16px;
}
.vp-mobile-menu .vp-mobile-nav li .vp-btn-header-large,
.vp-mobile-menu .vp-mobile-nav li .vp-btn-header-small {
    justify-content: space-between;
    width: 100%;
}
.vp-mobile-menu .vp-dropdown .vp-dropdown-block .vp-f-wrap.vp-gap-24{
    gap: var(--16);
}
.vp-mobile-menu .vp-dropdown .vp-dropdown-block .vp-one-list{
    border-bottom: none;
    padding-bottom: 0;
}
.vp-mobile-menu .vp-dropdown .vp-dropdown-block .vp-one-list a svg{
    display: none;
}
.vp-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 0;
}
body.admin-bar .vp-mobile-menu {
    top: 32px;
    height: calc(100% - 32px);
}
.vp-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}
.vp-mobile-actions {
    display: none;
}
.vp-header-ctas {
    gap: 12px;
    flex-shrink: 0;
}
.vp-header-ctas a {
    white-space: nowrap;
}
.vp-mobile-toggle {
    display: none;
}
.vp-menu-open{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
/* Active menu item */
.vp-btn-header-large.active {
    color: var(--Primary-primary);
}

.vp-btn-header-large.active svg path{
    fill: var(--Primary-primary);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vp-menu {
        gap: 16px;
    }
    .vp-menu > ul {
        gap: 8px;
    }
    .vp-menu > ul > li > a {
        white-space: nowrap;
    }
    .vp-header-ctas > a {
        padding: 16px;
        height: 56px;
        font-size: 16px;
    }
}

@media(max-width: 991px) {
    #site-header.site-header {
        position: sticky;
        top: 0;
        z-index: 9990;
    }
    body.admin-bar #site-header.site-header {
        top: 32px;
    }
    #site-header.site-header.is-scrolled .vp-main-menu {
        border-bottom-color: rgba(110, 47, 208, 0.16);
        box-shadow: 0 10px 26px rgba(9, 7, 23, 0.08);
    }
    .vp-menu {
        display: none;
    }
    .vp-top-menu {
        display: none;
    }
    .vp-main-menu {
        padding: 10px 0;
    }
    .vp-main-menu > .vp-max-width {
        gap: 12px;
    }
    .vp-logo a {
        gap: 10px;
        font-size: 18px;
        line-height: 1.2;
    }
    .vp-logo img {
        width: 40px;
        height: 36px;
        object-fit: contain;
    }
    .vp-brand-name-full {
        display: none;
    }
    .vp-brand-name-short {
        display: inline;
    }
    .vp-mobile-actions {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
    }
    .vp-mobile-footer.vp-top-menu {
        display: block;
        position: absolute;
        width: 100%;
        bottom: 0;
        z-index: 9999;
    }
    .vp-mobile-toggle {
        display: flex;
    }
    .vp-mobile-call,
    .vp-menu-open {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 999px;
    }
    .vp-mobile-call {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6e2fd0;
        background: var(--Primary-3);
        border: 1px solid rgba(110, 47, 208, 0.16);
    }
    .vp-mobile-call:hover,
    .vp-mobile-call:focus-visible {
        color: var(--Neutral-100);
        background: #6e2fd0;
    }
    .vp-mobile-menu .vp-mobile-nav{
        margin-bottom: 28px;
    }
    .vp-mobile-menu .vp-dropdown .vp-dropdown-block ul {
        max-width: 270px;
        width: 100%;
    }
}

@media screen and (max-width: 782px) {
    body.admin-bar #site-header.site-header {
        top: 46px;
    }
    body.admin-bar .vp-mobile-menu {
        top: 46px;
        height: calc(100% - 46px);
    }
}

@media(max-width: 460px) {
    .vp-mobile-menu .vp-dropdown .vp-dropdown-block .vp-f-wrap.vp-gap-24{
        flex-direction: column;
        gap: 0;
    }
}

@media(max-width: 360px) {
    .vp-main-menu > .vp-max-width {
        padding: 0 12px;
    }
    .vp-logo a {
        gap: 8px;
        font-size: 17px;
    }
    .vp-mobile-actions {
        gap: 2px;
    }
}
/*header end*/

/* ==========================================================================
   Breadcrumbs / Site Navigation
   ========================================================================== */
   .vp-site-navigation {
    padding: 44px 16px 36px;
}

.vp-site-navigation .vp-max-width svg {
    vertical-align: sub;
}

.vp-site-navigation .vp-max-width span {
    margin-right: 4px;
}

.vp-site-navigation .vp-max-width a {
    color: inherit;
    text-decoration: none;
}

.vp-site-navigation .vp-max-width a:hover {
    color: var(--Primary-primary);
}

.vp-site-navigation .vp-breadcrumb-current {
    color: var(--Primary-primary);
}

@media (max-width: 768px) {
    .vp-site-navigation {
        padding: 32px 16px 36px;
    }
    .vp-site-navigation .vp-max-width {
        padding: 0;
    }
}


/* ==========================================================================
   404 Error Page
   ========================================================================== */
   .vp-error-section {
    margin: 100px auto;
    padding: 60px;
    max-width: 700px;
    border-radius: var(--24, 24px);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.02);
}

.vp-error-section .vp-404 {
    color: var(--Secondary-1);
    text-align: center;
    font-size: 160px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.6px;
}

.vp-error-section .vp-page-not-found {
    text-align: center;
}

.vp-error-section .vp-ligth-text {
    color: var(--Neutral-600);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
}

.vp-error-section .vp-btn-primary-medium {
    width: fit-content;
}

@media (max-width: 570px) {
    .vp-error-section {
        padding: 44px;
        margin-bottom: 0;
    }
    .vp-error-section .vp-404 {
        font-size: 128px;
    }
    .vp-error-section .vp-page-not-found {
        font-size: 32px;
    }
    .vp-error-section .vp-ligth-text {
        font-size: 16px;
    }
}


/*footer start*/
.vp-footer-inner {
    background: var(--Neutral-200);
    padding-top: 60px;
}

/* Footer CTA: Human Connection */
.wch-footer-cta {
    display: grid;
    overflow: hidden;
    margin: 0 0 24px;
    border: 1px solid #e3dcd5;
    border-radius: var(--24);
    background: var(--Neutral-100);
    color: #241d32;
    font-family: var(--font-family-onest);
}
.wch-footer-cta-copy {
    min-width: 0;
    padding: 30px 28px;
}
.wch-footer-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px;
    color: var(--Primary-primary);
    font-size: var(--16);
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: normal;
    text-transform: uppercase;
}
.wch-footer-cta-eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    flex-shrink: 0;
    background: var(--Secondary-1);
}
.wch-footer-cta-title {
    max-width: 690px;
    margin: 0;
    color: inherit;
    font-size: var(--32);
    font-weight: 500;
    line-height: 1.32;
    letter-spacing: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
}
.wch-footer-cta-title span {
    display: block;
    color: var(--Primary-primary);
}
.wch-footer-cta-actions {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.wch-footer-cta .wch-footer-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--12);
    min-width: 0;
    height: auto;
    min-height: var(--56);
    padding: var(--12) var(--20);
    border: 1px solid #bdb4c8;
    border-radius: var(--12);
    box-shadow: none;
    color: #241d32;
    font-size: var(--18);
    font-weight: 700;
    line-height: 1.48;
    text-decoration: none;
    transition: background-color .15s, border-color .15s;
}
.wch-footer-cta .wch-footer-cta-actions .wch-footer-cta-referral {
    justify-content: space-between;
    border-color: transparent;
    background: var(--Primary-primary);
    color: var(--Neutral-100);
}
.wch-footer-cta .wch-footer-cta-referral:hover { background: #5620ab; }
.wch-footer-cta .wch-footer-cta-phone:hover {
    background: var(--Primary-3);
    border-color: var(--Primary-primary);
}
.wch-footer-cta-actions svg {
    flex-shrink: 0;
    width: var(--24);
    height: var(--24);
}
.wch-footer-cta a:focus-visible {
    outline: 3px solid var(--Primary-primary);
    outline-offset: 5px;
}
.wch-footer-cta-photo {
    position: relative;
    overflow: hidden;
    min-width: 0;
    margin: 0 20px 20px;
    border-radius: 80px 12px 12px 12px;
    border-bottom: 7px solid var(--Secondary-1);
    background: #f4e8db;
}
.wch-footer-cta-photo img {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
    object-position: 50% 44%;
}
@media (min-width: 992px) {
    .wch-footer-cta {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: stretch;
    }
    .wch-footer-cta-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 42px 38px;
    }
    .wch-footer-cta-actions { margin-top: 32px; }
    .wch-footer-cta-photo {
        min-height: 334px;
        margin: 18px 18px 18px 0;
        border-radius: 110px 12px 12px 12px;
    }
    .wch-footer-cta-photo img {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 334px;
        object-position: 45% center;
    }
}
/* Keep typography and button sizing aligned with the theme's shared scale. */
@media (min-width: 769px) {
    .wch-footer-cta-eyebrow { font-size: var(--18); }
    .wch-footer-cta-title {
        font-size: var(--50);
        line-height: 1.2;
    }
    .wch-footer-cta .wch-footer-cta-actions a {
        min-height: var(--64);
        padding-block: var(--16);
    }
}
@media (min-width: 1100px) {
    .wch-footer-cta {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        min-height: 372px;
    }
    .wch-footer-cta-copy { padding: 44px 48px; }
}
@media (max-width: 479px) {
    .wch-footer-cta-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }
    .wch-footer-cta-actions a { width: 100%; }
    .wch-footer-cta-photo { margin: 0 16px 16px; }
    .wch-footer-cta-photo img { height: 225px; }
}
@media (prefers-reduced-motion: reduce) {
    .wch-footer-cta *,
    .wch-footer-cta *::before,
    .wch-footer-cta *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.vp-btn-stroke-large:hover svg path,
.vp-btn-stroke-medium:hover svg path,
.vp-btn-stroke-small:hover svg path {
    fill: var(--Neutral-800);
}

.vp-footer {
    padding-top: var(--20);
    gap: var(--40);
}

/* Footer Top - Main Grid */
.vp-footer-top {
    border-bottom: 1px solid var(--Neutral-300);
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 26px;
}

/* Footer Links Grid - 4 columns */
.vp-footer-links {
    display: flex;
    gap: 26px;
    flex: 1;
}

/* Footer Columns */
.vp-footer-col {
    min-width: 140px;
    flex: 1;
}

.vp-footer-col .vp-btn-simple-one-large{
    font-size: 18px;
}

/* Contact Column - Fixed Width */
.vp-footer-contact {
    min-width: 220px;
    flex-shrink: 0;
}

.vp-footer-contact .vp-btn-footer-large{
    padding-top: 0;
}

/* Footer Email - Prevent Overflow */
.vp-footer-contact .vp-email-call a {
    word-break: break-all;
    overflow-wrap: break-word;
}

.vp-footer .vp-one-list p,
.vp-footer .vp-contact-us p {
    padding: 6px;
}

.vp-footer-top .vp-email-call {
    gap: 6px;
} 

.vp-footer-top .vp-email-call img {
    width: 24px;
}

.vp-footer-top ul li a:hover {
    transform: translate3d(3px, 0, .01px);
}

/* Footer Bottom */
.vp-footer-bottom {
    border-radius: var(--24) var(--24) 0 0;
    background: var(--Neutral-300);
    padding: var(--24) var(--36);
}

.vp-footer .vp-copyright {
    color: var(--Neutral-600);
}

.vp-footer .vp-footer-credits a {
    color: var(--Primary-primary);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease;
}

.vp-footer .vp-footer-credits a:hover,
.vp-footer .vp-footer-credits a:focus-visible {
    text-decoration-color: currentColor;
}

.vp-btn-stroke-white-large:hover svg path,
.vp-btn-stroke-white-medium:hover svg path,
.vp-btn-stroke-white-small:hover svg path {
    fill: var(--Neutral-100);
}

.vp-footer .vp-logo a {
    color: var(--Neutral-800);
}

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

/* Large Tablets / Small Desktops */
@media (max-width: 1200px) {
    .vp-footer-links {
        gap: 24px;
    }
    
    .vp-footer-col {
        min-width: 120px;
    }
}

/* Tablets */
@media (max-width: 1090px) {
    .vp-footer-top {
        flex-wrap: wrap;
    }
    
    .vp-footer-links {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .vp-footer-col {
        min-width: calc(50% - 16px);
        flex: 0 0 calc(50% - 16px);
    }
    
    .vp-footer-contact {
        width: 100%;
        min-width: 100%;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--Neutral-300);
    }
}

@media (max-width: 1024px) {
    .vp-footer-inner {
        padding-top: 40px;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .vp-footer-bottom {
        padding: var(--24) var(--32);
        flex-direction: column;
        text-align: center;
    }
    
    .vp-footer-links {
        flex-direction: column;
        gap: 24px;
    }
    
    .vp-footer-col {
        min-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--Neutral-300);
    }
    
    .vp-footer-col:last-child {
        border-bottom: none;
    }
    
    .vp-footer-contact {
        border-top: none;
        padding-top: 0;
    }
    
    .vp-copyright {
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .vp-footer-top {
        gap: 24px;
    }
    
    .vp-footer-col {
        padding-bottom: 12px;
    }
    
    .vp-footer-bottom {
        padding: var(--20) var(--16);
        gap: 16px;
    }
    
    .vp-footer .vp-logo a {
        flex-direction: column;
        gap: 12px;
    }
}

/*footer end*/

.wpforms-required-label {
    color: var(--S-c-red-400, #DC2B2B);
}

/* ========================================
   Google Rating Block (shared site-wide)
   Rendered by wch_render_google_rating()
   ======================================== */
.vp-service-hero-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    width: 210px;
    flex-shrink: 0;
}

.vp-service-hero-rating .vp-rating-word {
    color: #000;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
}

.vp-service-hero-rating .vp-rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vp-service-hero-rating .vp-rating-stars img {
    display: block;
    width: 32px;
    height: 32px;
}

.vp-service-hero-rating .vp-rating-company {
    color: #111;
    font-size: 17px;
    line-height: 1.2;
}

.vp-service-hero-rating .vp-rating-text {
    color: #111;
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
}

.vp-service-hero-rating .vp-rating-text strong {
    font-weight: 800;
}

.vp-service-hero-rating .vp-rating-logo {
    display: block;
    width: 110px;
    height: auto;
    margin-top: 6px;
}

/* Placement inside testimonials headers: block first, title next, arrows right */
.vp-reviews-rating {
    align-self: center;
    order: -1;
    margin-right: 32px;
}

.vp-reviews-header .vp-reviews-nav {
    margin-left: auto;
}

@media (max-width: 768px) {
    .vp-reviews-rating {
        order: 0;
        margin-top: 24px;
        margin-bottom: 0;
        margin-right: 0;
    }
}

/* ==========================================================================
   Header brand text — stacked two-line variant (added 2026-07-16)
   "HarvardCare" over letter-spaced "Home Health" flanked by coral rules
   (—— Home Health ——); text block height equals the logo icon height
   (44px desktop / 36px mobile) and matches the width of "HarvardCare".
   RESTORE ("bring back"): delete this entire block and swap back the
   commented ORIGINAL spans in header.php (2 places: main header +
   mobile drawer). The original .vp-brand-name rules above were left
   untouched and will take over again.
   ========================================================================== */
.vp-brand-stack {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: var(--44); /* equals .vp-logo img height */
    min-width: 0;
}
.vp-brand-line1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #1A1A1A;
    white-space: nowrap;
}
.vp-brand-line2 {
    align-self: stretch; /* exact same width as line 1 */
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--Primary-primary);
    letter-spacing: 0.15em;
    white-space: nowrap;
}
.vp-brand-line2::before,
.vp-brand-line2::after {
    content: "";
    flex: 1; /* equal-length rules fill the leftover space on each side */
    min-width: 0;
    height: 2px;
    background: #FFA794; /* coral accent (--Secondary-1) */
}
@media (max-width: 991px) {
    .vp-brand-stack { height: 36px; } /* matches 40x36 mobile logo */
    .vp-brand-line1 { font-size: 19px; }
    .vp-brand-line2 { font-size: 12px; }
}
@media (max-width: 460px) {
    .vp-brand-line1 { font-size: 17px; }
    .vp-brand-line2 { font-size: 11px; }
}


/* ============================================================
   Footer — legal links as a single inline row below the menu
   columns; first three columns absorb the reclaimed width.
   Theme breakpoints in this file: 1200 / 1090 / 768 / 480.
   ============================================================ */
.vp-footer-legal-row{
    padding: var(--20) 0;
    border-bottom: 1px solid var(--Neutral-300);
}
.vp-footer-legal-row ul,
.vp-footer-legal-row .vp-legal-inline{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.vp-footer-legal-row li{ position: relative; }
.vp-footer-legal-row li + li::before{
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 1px;
    height: 14px;
    transform: translateY(-50%);
    background: var(--Neutral-500);
    opacity: .5;
}

/* Reclaimed width — desktop only, so the 1200/1090/768/480 rules
   above keep full control at every smaller breakpoint. */
@media (min-width: 1201px){
    .vp-footer-links{ gap: 40px; }
    .vp-footer-col{ min-width: 180px; }
}

@media (max-width: 1090px){
    .vp-footer-legal-row ul{ gap: 8px 20px; }
}
@media (max-width: 480px){
    .vp-footer-legal-row{ padding: var(--16) 0; }
    .vp-footer-legal-row ul{ justify-content: center; gap: 8px 16px; }
    .vp-footer-legal-row li + li::before{ display: none; }
}
