    :root {
    --bg-header-color: #2b2d42;
    --bg-color: #f5f5f5;
    --alt-bg-color: #dadce2;
    --acent-bg-color: #222335;
    --text-color: #000;
    --alt-text-color: #ffffff;
    --acent-text-color: #ffffff;
    --sec-head-color: #2b2d42;
    --shadow-color: #000000;
    --alt-shadow-color: #ffffff;
    --button-color: #2b2d42;
    --button-glow: #2b2d42;
    --button-text: #ffffff;
    --hl-text-bg: #2b2d42;
    --hl-text-col: #ffffff;
    --call-to-action: #001f3f;
    --cal-bg-filled: red;
    --cal-us-filled: Yellow;
    --cal-ind-filled: green
    }
/* :root {
    --bg-header-color: #000000;
    --bg-color: #ffffff;
    --alt-bg-color: #fcd52a;
    --acent-bg-color: #000000;
    --text-color: #000;
    --alt-text-color: #ffffff;
    --acent-text-color: #ffffff;
    --sec-head-color: #000000;
    --shadow-color: #000000;
    --alt-shadow-color: rgba(255, 223, 52, .8);
    --button-color: #fcd52a;
    --button-glow: #fcd52a;
    --button-text: #000000;
    --hl-text-bg: #000000;
    --hl-text-col: #ffffff;
    --call-to-action: #fcd52a;
    --cal-bg-filled: red;
    --cal-us-filled: Yellow;
    --cal-ind-filled: green
}

[data-theme="Cool"] {
    --bg-header-color: #001f3f;
    --bg-color: #ffffff;
    --alt-bg-color: #f5f5f5;
    --acent-bg-color: #001f3f;
    --text-color: #000;
    --alt-text-color: #ffffff;
    --acent-text-color: #ffffff;
    --sec-head-color: #001f3f;
    --shadow-color: #000000;
    --alt-shadow-color: #ffffff;
    --button-color: #001f3f;
    --button-glow: #001f3f;
    --button-text: #ffffff;
    --hl-text-bg: #001f3f;
    --hl-text-col: #ffffff;
    --call-to-action: #001f3f;
    --cal-bg-filled: red;
    --cal-us-filled: Yellow;
    --cal-ind-filled: green
}

[data-theme="Benign"] {
    --bg-header-color: #2b2d42;
    --bg-color: #f5f5f5;
    --alt-bg-color: #dadce2;
    --acent-bg-color: #222335;
    --text-color: #000;
    --alt-text-color: #ffffff;
    --acent-text-color: #ffffff;
    --sec-head-color: #2b2d42;
    --shadow-color: #000000;
    --alt-shadow-color: #ffffff;
    --button-color: #2b2d42;
    --button-glow: #2b2d42;
    --button-text: #ffffff;
    --hl-text-bg: #2b2d42;
    --hl-text-col: #ffffff;
    --call-to-action: #001f3f;
    --cal-bg-filled: red;
    --cal-us-filled: Yellow;
    --cal-ind-filled: green
} */

@font-face {
    font-family: MyDefault;
    src: url(/assets/fonts/roboto_condensed/robotocondensed-bold.ttf)
}

.text-gradient {
    background: linear-gradient(90deg, var(--gradient-start, #3498db), var(--gradient-end, #e74c3c));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block
}

.lightfilter {
    filter: drop-shadow(2px 2px 4px black)
}

.animatedPara {
    animation: anicolor 3s infinite;
    transition: ease
}

.altColor {
    color: var(--alt-text-color)
}

.blackbg {
    background-color: var(--sec-head-color);
    color: var(--alt-text-color)
}

.bgcolor {
    background-color: var(--bg-color);
    color: var(--text-color)
}

.bgcoloralt {
    background-color: var(--alt-bg-color);
    color: var(--text-color)
}

.hltext {
    background-color: var(--hl-text-bg);
    color: var(--hl-text-col);
    border-radius: 6px
}

.hltext::before,
.hltext::after {
    content: "\00A0\00A0"
}

.meta-info {
    color: var(--alt-text-color)
}

.callToActionPara {
    display: block;
    box-sizing: border-box;
    border-radius: 15px;
    width: 100%;
    height: fit-content;
    text-align: center;
    font-size: 20px;
    background-color: var(--bg-header-color);
    color: var(--bg-color);
    box-shadow: 1px 1px 5px 5px var(--shadow-color);
    border-radius: 7px;
    border-style: groove
}

html {
    font-size: 16px
}

body {
    margin: 0;
    font-family: MyDefault;
    text-align: center;
    color: var(--text-color)
}

a {
    text-decoration: none;
    color: inherit
}

.underlineStyle {
    text-decoration: underline
}

.italicsStyle {
    font-style: italic
}

.boldStyle {
    font-weight: bold
}

.headerLayout {
    width: 100%
}

.headerBar {
    position: fixed;
    width: 100%;
    height: clamp(3rem, 2.5rem + .6vw, 17rem);
    z-index: 500;
    display: flex;
    align-items: center;
    background-color: var(--bg-header-color);
    box-sizing: border-box;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    padding: 0 1rem
}

.logoContainer {
    display: flex;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    gap: .556rem
}

.logoImage {
    height: 70%;
    width: auto;
    object-fit: contain
}

.logotext {
    display: block;
    color: var(--alt-text-color);
    font-size: clamp(17px, 17px + .9vw, 52px);
    white-space: nowrap;
    margin: 0
}

.faq-link {
    box-sizing: border-box;
    position: fixed;
    top: .7rem;
    right: .6rem;
    color: var(--text-color);
    font-size: 1rem;
    z-index: 550;
    border: .2rem solid var(--bg-color);
    padding: 0 .6rem 0 .6rem;
    background-color: var(--alt-bg-color);
    border-style: groove
}

.faq-link:hover {
    box-shadow: 0 0 .3rem .3rem var(--alt-shadow-color);
    border-style: inset;
    border: .3rem
}

.bannerContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 4.4rem;
    padding-bottom: .5rem;
    background-image: url(/assets/images/vantagebpm-banner-mid.webp);
    background-size: cover;
    background-position: left;
    align-items: center;
    justify-content: center
}

.pageHeaderText {
    margin: 0;
    width: 80%;
    font-size: clamp(2rem, 1.5rem + .5vw, 4rem);
    text-shadow: .15rem .15rem .15rem var(--shadow-color)
}

.pageHeader2Text {
    font-size: 1.6rem
}

.pageHeader3Text {
    margin: 0;
    width: 100%;
    height: fit-content;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4rem
}

sup {
    vertical-align: super;
    font-size: .73em;
    line-height: 0;
    position: relative;
    top: -.2em
}

.horizontalBar {
    width: 80%;
    margin-top: .8rem;
    margin-bottom: .6rem;
    height: .5rem;
    box-shadow: .15rem .15rem .2rem var(--shadow-color)
}

.contacts {
    box-sizing: border-box;
    padding: 0;
    width: 80%;
    height: fit-content;
    justify-content: center;
    color: var(--alt-text-color);
    font-style: normal;
    font-size: 1rem;
    line-height: .1rem;
    text-shadow: .12rem .12rem .12rem var(--shadow-color)
}

.pageSummary {
    display: block;
    box-sizing: border-box;
    width: 85%;
    height: fit-content;
    padding: .278rem;
    border-radius: .278rem;
    margin: 1.1rem;
    color: var(--acent-text-color);
    background-color: var(--acent-bg-color);
    filter: opacity(80%);
    text-align: justify;
    font-style: italic;
    line-height: 1.5em;
    box-shadow: -.056rem -.056rem .333rem .278rem var(--alt-shadow-color);
    text-shadow: .056rem .056rem .111rem var(--shadow-color)
}

.sectionContainer {
    box-sizing: border-box;
    width: 100%;
    height: fit-content;
    text-align: justify;
    margin: 0;
    padding: 0
}

.blackheader {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: .556rem;
    background-color: var(--sec-head-color);
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    border: 0;
    border-top: .111rem;
    border-bottom: .111rem;
    border-style: groove
}

.sectionContainerGrid {
    display: grid;
    grid-template-columns: 50% auto;
    column-gap: .278rem;
    box-sizing: border-box;
    width: 100%;
    height: fit-content;
    text-align: justify;
    margin: 0;
    padding: 0
}

.blackheaderGrid {
    box-sizing: border-box;
    grid-column: 1/3;
    margin: 0;
    padding: .556rem;
    font-size: 1.389rem;
    background-color: var(--sec-head-color);
    color: var(--acent-text-color);
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    border: 0;
    border-top: .111rem;
    border-bottom: .111rem;
    border-style: groove
}

.sectionSubContainerFlexCommon {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: fit-content;
    text-align: center;
    margin: 0;
    padding: 0
}

.sectionSubContainerFlexOneTwo {
    grid-column: 1/3;
    margin: 0 .833rem
}

.sectionSubPara1 .sectionSubPara2 {
    padding: 0;
    height: fit-content;
    overflow: hidden
}

.sectionSubPara1-overflow {
    box-sizing: border-box;
    padding: .556rem;
    height: fit-content;
    text-align: justify;
    align-content: baseline
}

.inlineHeader {
    line-height: 1.5rem
}

.inlineFaqPara {
    width: 100%;
    box-sizing: border-box;
    padding: .833rem .833rem;
    padding-top: 0;
    margin: 0;
    text-align: justify;
    line-height: 1.6rem;
    text-align: justify
}

p {
    width: 100%;
    box-sizing: border-box;
    padding: .833rem .833rem;
    margin: 0;
    text-align: justify;
    line-height: 1.6rem
}

.pFlex {
    display: flex;
    height: auto;
    box-sizing: border-box;
    width: 100%;
    overflow: clip !important;
    padding: .278rem .556rem
}

summary {
    list-style: none;
    cursor: pointer;
    padding-left: 0;
    position: relative
}

summary::before {
    content: "◀";
    font-size: 1.4em;
    position: absolute;
    z-index: 20;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bg-color);
    transition: transform .2s
}

details[open] summary::before {
    content: "▼";
    color: var(--alt-bg-color)
}

.divListContainer,
.divListContainervari {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding-top: 0;
    padding-left: .556rem;
    padding-right: 1.111rem;
    padding-bottom: .006rem;
    text-align: justify
}

.divListContainervari {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding-top: 0;
    padding-left: .556rem;
    padding-right: 1.111rem;
    text-align: justify
}

ul ul.checklist,
ul.arrowlist,
ul.crosslist {
    list-style-type: none
}

ul li {
    text-align: justify !important;
    margin-right: .6em !important;
    line-height: 1.6rem
}

ul li::marker {
    content: "\2666\00A0\00A0";
    color: black;
    font-size: larger
}

ul.checklist li::marker {
    content: "\2705\00A0\00A0";
    color: black;
    font-size: medium
}

ul.arrowlist li::marker {
    content: "\27A1\00A0\00A0";
    color: black;
    font-size: medium
}

ul.crosslist li::marker {
    content: "\274C\00A0\00A0";
    color: black;
    font-size: medium
}

ul>li>ul {
    padding-right: 0;
    margin-right: 0;
    padding-left: 1.7em
}

.smallTopGap {
    margin-top: 0;
    padding-top: 3px
}

.smallBottomGap {
    margin-bottom: 0;
    padding-bottom: 3px
}

.customRight {
    padding-right: 10px
}

.pCenterAlign {
    text-align: center
}

.pVerticalAlign {
    width: 100%;
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center
}

.pJustAlign {
    text-align: justify
}

.pEmphasis {
    font-size: 1.111rem
}

.buttonAnchor {
    box-sizing: border-box;
    width: 100%;
    padding: .278rem 1.111rem
}

.pButton {
    box-sizing: border-box;
    width: 100%;
    height: 2.222rem;
    vertical-align: middle;
    align-content: center;
    border-color: #000000;
    border-width: .222rem;
    border-style: groove;
    border-radius: .833rem;
    color: var(--button-text);
    background-color: var(--button-color);
    margin-bottom: .278rem;
    padding: 0;
    box-shadow: .111rem .278rem .556rem var(--button-glow)
}

.pButton:hover {
    border-color: #ffffff
}

.share-Button {
    box-sizing: border-box;
    width: 100%;
    border: var(--bg-color);
    color: var(--alt-bg-color);
    border: .111rem;
    margin-bottom: .278rem;
    padding: 0;
    font-size: 1rem;
    font-weight: bold
}

.trainerDownload {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.trainerSection {
    margin-top: 40px;
    margin-left: 10px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.trainerTitle {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: inherit
}

.trainerContent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start
}

.downloadBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c3e66;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background .3s ease
}

.downloadBtn:hover {
    background: #1e2a4a;
    color: #ffffff;
    text-decoration: none
}

.downloadBtn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 62, 102, .3)
}

.noDecorationAnchor {
    text-decoration: none;
    color: var(--alt-text-color)
}

.bgNegateColour {
    background-color: var(--yellow);
    border-style: none
}

.twoColumnFigure {
    width: 100%;
    box-sizing: border-box;
    padding: 1.111rem;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0
}

@keyframes example {
    0% {
        filter: hue-rotate(0deg)
    }

    50% {
        filter: hue-rotate(50deg)
    }

    100% {
        filter: hue-rotate(0deg)
    }
}

.twocolumnimage {
    height: auto;
    box-sizing: border-box;
    width: 100%;
    overflow: clip !important;
    padding: 0;
    box-shadow: .111rem .278rem .556rem var(--button-glow);
    border-radius: .833rem
}

.footerContain {
    width: 100%;
    height: 4.444rem;
    box-sizing: border-box;
    padding-top: .833rem;
    background-color: var(--bg-header-color);
    border: 0;
    border-top: .111rem;
    border-style: groove;
    justify-content: center
}

.floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    vertical-align: middle;
    align-items: center;
    background-color: var(--acent-bg-color);
    color: var(--acent-text-color);
    text-align: center;
    padding: .833rem 0;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    box-shadow: 0 -.111rem .556rem var(--alt-shadow-color);
    z-index: 200
}

.disclaimer {
    width: 100%;
    font-size: small;
    align-self: self-end
}

.enroll-button {
    display: inline-block;
    background-color: var(--alt-bg-color);
    color: var(--text-color);
    padding: .444rem 1.111rem;
    margin-left: .833rem;
    border-style: groove;
    border-radius: .222rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color .3s
}

.enroll-button:hover {
    background-color: var(--acent-text-color);
    box-shadow: 0 .111rem .278rem .278rem var(--alt-shadow-color)
}

.imgAutoHeight {
    height: auto
}

.socialImg {
    width: 2.5rem;
    height: auto
}

#menu_toggler {
    z-index: 500;
    position: fixed;
    width: 1.333rem;
    height: 1.333rem;
    align-items: center;
    top: .722rem;
    left: 1.111rem;
    color: var(--white);
    cursor: pointer;
    transform: rotate(0);
    transition: transform 1s ease
}

#toggleIcon {
    color: var(--white);
    width: clamp(1.333rem, 1.333rem + .2vw, 3rem);
    height: 1.333rem
}

.menuIcon {
    width: 1.333rem;
    fill: var(--white);
    font-size: .833rem
}

.menuIconSel {
    width: .833rem
}

#navigation {
    display: flex;
    flex-flow: column;
    position: fixed;
    z-index: 300;
    box-sizing: border-box;
    padding: .111rem;
    padding-left: 1.111rem;
    padding-top: 1.111rem;
    background-color: var(--bg-header-color);
    width: 17.222rem;
    height: 100%;
    top: 3rem;
    transform: translateX(-125%);
    transition: transform 1.2s ease;
    text-align: left
}

.l1menu {
    display: grid;
    grid-template-columns: 1.667rem 12.778rem 1.111rem;
    align-items: center;
    color: var(--alt-text-color);
    font-weight: 600;
    padding: 0;
    padding-top: .389rem;
    padding-bottom: .389rem
}

.l1menu:hover {
    background-color: var(--alt-text-color);
    color: var(--text-color);
    animation: "fade-in 2s"
}

.l2menu {
    display: grid;
    grid-template-columns: 12.222rem 1.111rem;
    align-items: center;
    color: var(--alt-text-color);
    font-weight: 600;
    padding: 0;
    padding-left: 2.222rem;
    padding-top: .389rem;
    padding-bottom: .389rem;
    box-sizing: border-box
}

.l2menu:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
    animation: "fade-in 2s"
}

.menuselected {
    background-color: grey;
    color: var(--black)
}

.menutxt {
    font-size: .833rem;
    font-weight: bold
}

hr {
    width: 100%;
    height: .056rem;
    border-width: 0;
    background-color: var(--alt-text-color);
    color: var(--text-color)
}

.youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--black);
    margin: .278rem
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: 0 0
}

.youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all
}

.youtube-player img:hover {
    filter: brightness(56.25%)
}

.youtube-player .play {
    height: 2.667rem;
    width: 3.778rem;
    left: 50%;
    top: 50%;
    margin-left: -1.889rem;
    margin-top: -1.333rem;
    position: absolute;
    background: url(/assets/images/social/yt.png) no-repeat;
    cursor: pointer
}

.contentContainer {
    width: 100%;
    box-sizing: border-box;
    padding: .833rem;
    border: .556rem;
    border-color: white;
    box-shadow: .111rem .111rem .111rem .111rem black
}

.tablegrid,
.pricinggrid {
    display: grid;
    box-sizing: border-box;
    padding: .278rem .556rem;
    place-items: center;
    font-size: .833rem
}

.tablegrid {
    grid-template-rows: repeat(8, 1.667rem);
    grid-template-columns: repeat(4, auto)
}

.pricinggrid {
    grid-template-rows: repeat(6, 1.667rem);
    grid-template-columns: repeat(5, auto)
}

.fullHeader,
.subHeader,
.gapCell,
.sideHeaderWkend,
.sideHeaderWkdays,
.gridItem {
    display: inline-flex;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: .111rem solid #000
}

.fullHeader {
    grid-column: 2/5;
    background-color: var(--alt-bg-color);
    font-size: 1rem
}

.subHeader {
    background-color: var(--bg-header-color);
    color: var(--alt-text-color)
}

.gapCell {
    grid-column: 1/2;
    grid-row: 1/3;
    background-color: var(--bg-header-color)
}

.sideHeaderWkend {
    grid-column: 1/2;
    grid-row: 3/5;
    background-color: var(--alt-bg-color)
}

.sideHeaderWkdays {
    grid-column: 1/2;
    grid-row: 5/9
}

.gridItem {
    border: .056rem solid var(--shadow-color)
}

.bgFilled {
    background-color: var(--cal-bg-filled)
}

.bgOpUs {
    background-color: var(--cal-us-filled)
}

.bgOpInd {
    background-color: var(--cal-ind-filled);
    color: white
}

.formfield {
    margin-bottom: .778rem;
    width: 100%;
    outline: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: .111rem;
    font-size: .611rem;
    padding: 0;
    padding-left: .833rem;
    height: 2.444rem;
    border-radius: .556rem;
    border-color: var(--acent-bg-color);
    box-sizing: border-box
}

.textareaHeight {
    height: 11.944rem
}

.captchUserInput {
    text-transform: none
}

.hiddenSection {
    display: none
}

.captchaImage {
    margin-bottom: .778rem;
    width: 100%;
    border: none;
    letter-spacing: .444rem;
    text-decoration: line-through;
    font-style: oblique;
    font-size: 1.222rem;
    font-weight: bolder;
    color: var(--red);
    padding: 0;
    padding-left: .833rem;
    height: 2.444rem;
    border-radius: .222rem;
    box-sizing: border-box
}

.themeToggler {
    box-sizing: border-box;
    position: fixed;
    width: 2.222rem;
    height: 5rem;
    top: 6.667rem;
    right: -.667rem;
    color: var(--text-color);
    font-size: large;
    z-index: 490;
    border: .167rem solid var(--bg-color);
    border-radius: .556rem;
    padding: 0 .556rem 0 .556rem;
    background-color: var(--alt-bg-color);
    box-shadow: 0 0 .167rem .111rem var(--alt-shadow-color);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    opacity: .1;
    animation: fadeIn 1s ease-in forwards
}

.themeToggler:hover {
    cursor: pointer
}

@keyframes fadeIn {
    from {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

.themeToggler:hover {
    cursor: pointer
}

#noscript-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box
}

.warning-content {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 3px solid #fff;
    animation: pulse-warning 2s infinite
}

.warning-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px
}

.warning-text strong {
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    line-height: 1.3
}

.warning-text p {
    margin: 0;
    font-size: 16px;
    opacity: .9;
    line-height: 1.5
}

@keyframes pulse-warning {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, .7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0)
    }
}

@media (max-width:768px) {
    .warning-content {
        padding: 30px 25px;
        margin: 20px
    }

    .warning-icon {
        font-size: 36px;
        margin-bottom: 15px
    }

    .warning-text strong {
        font-size: 20px
    }

    .warning-text p {
        font-size: 14px
    }

    .trainerContent {
        flex-direction: column;
        gap: 20px
    }

    .trainerKeyPoints {
        flex: auto;
        width: 100%
    }

    .trainerDownload {
        flex: auto;
        width: 100%;
        margin-top: 10px
    }

    .downloadBtn {
        display: inline-block;
        width: auto
    }
}

@media (max-width:480px) {
    .warning-content {
        padding: 25px 20px
    }

    .warning-icon {
        font-size: 32px
    }

    .warning-text strong {
        font-size: 18px
    }

    .warning-text p {
        font-size: 13px
    }
}

@media (max-width:576px) {
    html {
        font-size: clamp(17px, 16px + .3vw, 23px)
    }
}

@media (max-width:835px) {
    .logotext {
        display: none
    }
}

@media (max-width:992px) {}

@media (max-width:1024px) {
    .logotext {
        font-size: clamp(17px, 16px + .5vw, 52px)
    }

    .sectionSubContainerFlexOne {
        grid-column: 1/3
    }

    .sectionSubContainerFlexTwo {
        grid-column: 1/3
    }
}

@media (max-width:1100px) {}

@media (max-width:1200px) {}

@media (max-width:1440px) {}

@media (max-width:1920px) {}