/* CSS Reset - Modern Baseline */

/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
}

/* HTML and body setup */
html {
    font-size: 20px;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings reset */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* Lists reset */
ol, ul {
    list-style: none;
}

/* Links reset */
a {
    color: inherit;
    text-decoration: inherit;
}

/* Button reset */
button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    color: inherit;
}

/* Form elements reset */
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* Table reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Image reset */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
    font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Improve media defaults */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Remove animations for people who prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles reset */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid 
#0066cc;
    outline-offset: 2px;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Remove default legend styles */
legend {
    padding: 0;
}

/* Address and cite reset */
address,
cite {
    font-style: normal;
}

/* Remove default blockquote styles */
blockquote {
    quotes: none;
}

blockquote::before,
blockquote::after {
    content: '';
    content: none;
}

/* Remove default abbr styles */
abbr[title] {
    text-decoration: none;
}

:root {
    --purple: #422d78;
    --red: #f12373;
    --green: #54c699;
}

.header {
    text-align: right;
    padding: 20px 50px;
    background: #fff;
}

.header .logo-wrap {
    display: inline-block;
    color: var(--purple);
    font-size: 12px;
}

.header .logo-wrap img {
    display: inline-block;
    vertical-align: middle;
    max-width: 90px;
}

.hero {
    font-size: 67px;
    color: var(--purple);
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero .title span.red {
    display: block;
    max-width: fit-content;
    background: var(--red);
    color: #fff;
}

.hero .title span {
    padding: 0 10px;
}

.hero .title {
    line-height: normal;
    position: absolute;
    left: 8%;
    top: 10%;
}

.hero .image-wrap {
    position: absolute;
    bottom: -16%;
    left: 45%;
    width: 100%;
    max-width: 75vh;
}

.hero:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--red);
    opacity: 0.03;
}

.image-section .image-wrap {
    max-width: 700px;
    position: absolute;
    bottom: 0;
}

.image-section.left .image-wrap {
    left: 0;
}

.image-section {
    position: relative;
    text-align: right;
    padding-top: 50px;
}

.image-section .text-wrap {
    max-width: calc(100% - 700px);
    display: inline-block;
    text-align: left;
    padding-right: 100px;
    padding-bottom: 100px;
}

.image-section .text-wrap .title {
    font-size: 55px;
    line-height: normal;
    padding-bottom: 20px;
}

.image-section .text-wrap .title span {
    background: var(--red);
    color: #fff;
    padding: 0 10px;
}

.image-section .text-wrap .text p {
    margin-bottom: 15px;
}

.image-section.left .text-wrap .text {
    font-size: 16px;
}

.banner-section .text {
    font-size: 55px;
    line-height: normal;
    color: #fff;
    text-align: left;
    max-width: 70%;
}

.banner-section {
    padding: 80px 25px 100px 25px;
}

.banner-section .banner-innerr {
    max-width: 90%;
    margin: auto;
}

.banner-section .text span {
    background: var(--red);
    padding: 0 10px;
}

.banner-section.purple {
    background: var(--purple);
}

.banner-section .text sup {
    font-size: 30px;
}

.point-section {
    padding-top: 60px;
    max-width: 90%;
    margin: auto;
    padding-bottom: 100px;
}

.point-section .title {
    font-size: 55px;
    line-height: normal;
    padding-left: 25px;
    max-width: 65%;
}

.point-section .title span {
    background: var(--red);
    color: #fff;
    padding: 0 10px;
}

.point-section .points-wrap {
    padding-top: 40px;
    padding-left: 25px;
    max-width: 60%;
    margin-left: 0;
    margin-right: auto;
}

.point-section .points-wrap .health-point {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    padding-left: 20px;
}

.point-section .points-wrap .health-point .content .health-title {
    font-weight: bold;
}

.point-section .points-wrap .health-point .icon-circle {
    max-width: 85px;
    width: 100%;
}

.point-section .text-wrap {
    padding-top: 30px;
    padding-left: 25px;
}

.point-section .text-wrap p {
    margin-bottom: 15px;
}

.banner-section.red {
    background: var(--red);
}

.banner-section.red span {
    background: var(--green);
}

.point-section.sidebar .points-wrap .normal-point {
    align-items: center;
}

.point-section .points-wrap .subtitle {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 20px;
}

.point-section .points-wrap .normal-point {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.point-section .points-wrap .normal-point .icon {
    background: var(--red);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.image-section.right .points-wrap .normal-point .content {
    width: calc(100% - 20px);
    line-height: normal;
}

.point-section .points-wrap .subtitle:first-child {
    padding-top: 0;
}

.point-section.sidebar .main-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-wrap .sidebar {
    max-width: 400px;
    /*
    background: var(--red);
    color: #fff;
    */
    background: #fff;
    color: var(--red);
    padding: 20px 50px;
    text-align: center;
}

.sidebar-wrap .sidebar .title {
    text-transform: uppercase;
    font-size: 45px;
    padding-left: 0;
}

.sidebar-wrap .sidebar .subtitle {
    text-transform: capitalize;
    font-size: 25px;
    background: var(--green);
    display: inline-block;
    padding: 0 10px;
}

.sidebar-wrap .sidebar .img-wrap {
    max-width: 180px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: inline-block;
}

.sidebar-wrap .sidebar .text {
    font-size: 25px;
    line-height: normal;
    font-weight: 500;
    color: var(--red);
}

.sidebar-wrap .sidebar .bar {
    height: 20px;
    /*
    background: #fff;
    */
    background: var(--red);
    margin-top: 40px;
    margin-bottom: 50px;
    border-radius: 30px;
}

.sidebar-wrap .sidebar .bar:first-child {
    margin-bottom: 30px;
}

.point-section .sidebar-wrap {
    margin-left: 15%;
}

.banner-section.green {
    background: var(--green);
}

.graph-section {
    max-width: 90%;
    margin: auto;
    padding-top: 80px;
}

.graph-section .title {
    font-size: 55px;
    line-height: normal;
    padding-left: 25px;
    max-width: 65%;
}

.graph-section .title span {
    background: var(--red);
    color: #fff;
    padding: 0 10px;
}

.graph-section .subtitle {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
}

.graph-section .graph-wrap {
    max-width: 90%;
    margin: auto;
    padding-bottom: 25px;
}

.graph-section .subtitle:last-child {
    padding-bottom: 50px;
    font-weight: bold;
}

.graph-section .subtitle:last-child a {
    color: var(--red);
}

.point-section .points-wrap .subtitle:last-child a {
    color: var(--red);
}

.banner-section.blue {
    background: #422C78;
}

.image-section.right .points-wrap .normal-point {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.image-section.right .points-wrap .normal-point .icon {
    background: var(--green);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.image-section.right .text-wrap .subtitle {
    font-weight: bold;
}

.image-section.right .image-wrap {
    right: 0;
}

.image-section.right .text-wrap {
    padding-bottom: 240px;
    padding-left: 25px;
}

.image-section.right {
    text-align: left;
    max-width: 90%;
    margin: auto;
}

.footer .reference-wrap {
    font-size: 14px;
}

.footer .reference-wrap .number-list-wrap ol {
    list-style: decimal;
}

.footer .reference-wrap .number-list-wrap {
    padding: 20px 70px;
}

.footer .reference-wrap .footer-bottom-wrap .logo-wrap {
    max-width: 200px;
    padding-bottom: 15px;
}

.footer .reference-wrap .footer-bottom-wrap p {
    margin-bottom: 15px;
    line-height: normal;
}

.footer-bottom-wrap {
    padding: 0 50px 70px 50px;
}

.footer .reference-wrap .number-list-wrap li {
    word-wrap: break-word;
}

.footer .banner-section {
    padding-top: 40px;
    padding-bottom: 50px;
}

.image-section.right .points-wrap .normal-point .content, 
.point-section .points-wrap .content,
.point-section .points-wrap .subtitle,
.point-section .text-wrap p,
.graph-section .subtitle {
    font-size: 16px;
}

.point-section .text-wrap {
    max-width: 70%;
}

.footer .banner-section.green:last-child {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer .disclaimer-wrap {
    padding: 40px 50px 40px 50px;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
}

.header {
  display: flex;
   /* adjust vertical alignment if needed */
  gap: 20px; /* space between left and right */
  align-items: flex-start;
}

.header .top-left {
  flex: 0 0 55%; /* fixed at 60% */
  text-align: left;
  font-size: 12px;
}

.header > .logo-wrap {
  flex: 1; /* take the remaining space (40%) */
  text-align: right; /* optional: align right content */
  padding-top: 5px;
}

.header .top-left .logo-inner {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    padding-bottom: 20px;
}

.header .top-left .logo-inner .logo-wrap img {
    max-width: 160px;
}

.header .top-left .logo-inner .logo-wrap {
    padding-right: 30px;
}

.header .top-left p.small {
    line-height: normal;
    font-size: 10px;
}

/* Animation Related */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.parallax-main {
    margin-top: 627px;
    background: #fff;
    z-index: 2;
    position: relative;
}





@media (max-width: 991px){

    .hero .image-wrap {
        max-width: 40vh;
    }

    .point-section .text-wrap {
        max-width: 100%;
    }

    .banner-section {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .image-section {
        display: flex;
        flex-direction: column;
    }

    .image-section .image-wrap {
        position: relative;
    }

    .image-section .text-wrap {
        max-width: 100%;
        padding: 30px;
    }

    .header {
        text-align: center;
    }

    .point-section.sidebar .main-wrap {
        flex-direction: column;
    }

    .point-section .sidebar-wrap {
        margin: auto;
        padding-top: 20px;
    }

    .image-section.right {
        flex-direction: column-reverse;
        padding-top: 10px;
    }

    .hero {
        font-size: 32px;
        height: 36vh;
    }

    .image-section .text-wrap .title {
        font-size: 30px;
    }

    .banner-section .text {
        font-size: 30px;
    }

    .point-section .title {
        font-size: 30px;
        padding-left: 10px;
    }

    .point-section .points-wrap .health-point {
        padding-left: 0;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .point-section .points-wrap {
        padding-left: 10px;
        max-width: 100%;
    }

    .graph-section .title {
        font-size: 30px;
    }

    .image-section.right .text-wrap {
        padding-bottom: 20px;
    }

    .point-section {
        padding-bottom: 30px;
    }

    .footer-bottom-wrap {
        padding-bottom: 30px;
    }

    .header {
        flex-direction: column-reverse;
        padding: 20px 35px;
        align-items: center;
    }
    .banner-section .text sup {
        font-size: 20px;
    }

    .header .logo-wrap {
        padding-top: 0;
    }

    
}

@media (max-width: 450px) {

    .hero .image-wrap {
        max-width: 35vh;
        left: 30%;
    }

    .header .top-left .logo-inner {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .header .top-left .logo-inner .logo-wrap {
        padding-bottom: 10px;
        padding-right: 0;
        margin: auto;
    }

    .header .logo-wrap {
        font-size: 7px;
        padding-top: 0;
    }

    .header .top-left {
        font-size: 10px;
    }
}