:root {
    --primary-color: #364966;
    --secondary-color: #003366;
    --cta-primary-color: #ffd700;
    --cta-secondary-color: #ffcc00;
    --gray1-color: #d1d1d1;
    --gray2-color: #e8e8e8;
    --gray3-color: #f1f1f1;
    --info-color: #87cefa;
    --warning-color: #ff8000;
    --box-shadow-color: #d3d3d3;
    --box-shadow-color-dark: #2a2a2a;
    --page-color: #f7f7f7;

    --main-font: IBM Plex Sans, sans-serif;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

body {
    margin: 0;
    font-family: IBM Plex Sans, sans-serif;
    /*background-color: var(--page-color);*/
}

.mainContainer {
    margin: auto;
    max-width: 1024px;
    width: 100%;
    padding: 0 6rem;
}

.ctaStickyContainer {
    display: none;
    position: sticky;
    top: 2rem;
    justify-content: right;
    z-index: 3;
}

.ctaStickyButton {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1.25rem 0.5rem 1rem;
    font-family: var(--main-font);
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--cta-primary-color);
    margin-right: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctaStickyButton:hover {
    background-color: var(--cta-secondary-color);
}

header {
    display: flex;
    height: 3rem;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.headerLogoContainer {
    height: 3rem;
    padding: 0 2rem;
}

.headerLogoIcon {
    height: 3rem;
    width: auto;
}

.headerLinksContainer {
    display: flex;
    padding-right: 2rem;
    height: 3rem;
    gap: 1rem;
}

.headerLinksContainer a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0 1rem;
    color: #000;
    cursor: pointer;
    cursor: pointer;
    transition: all 0.3s ease;
}

.headerLinksContainer a:hover {
    text-decoration: underline;
}

.strip {
    background-color: #121212 !important;
    color: white;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background-color: var(--gray3-color);
}

.strip div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strip h4 {
    display: flex;
    align-items: center;
    margin: 0 1rem 1rem;
}

.strip h4 .material-symbols-rounded {
    margin-right: 1rem;
    font-size: 2rem;
    font-weight: 400;
    color: var(--info-color);
}

.strip p {
    text-align: center;
    margin: 0;
}

.hero {
    display: flex;
    position: relative;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    /*min-height: calc(100vh - 3rem);*/
    box-sizing: border-box;
    background-image: url("/global-images/hero.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.80),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 80vw;
    color: #fff;
}

.hero h5 {
    max-width: clamp(36rem, 38rem, 42rem);
    font-weight: 300;
    color: #fff;
}

.ctaButton {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1.25rem 0.5rem 1rem;
    font-family: var(--main-font);
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--cta-primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ctaButton:hover {
    background-color: var(--cta-secondary-color);
}

.secondaryButton {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    align-items: center;
    padding: 0.5rem 1.25rem 0.5rem 1rem;
    color: var(--gray3-color);
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid var(--gray3-color);
    border-radius: 0.5rem;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondaryButton:hover {
    color: var(--box-shadow-color-dark);
    background-color: var(--gray2-color);
}

.insight {
    background-color: #121212 !important;
    color: white;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background-color: var(--gray3-color);
}

.insight div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insight h4 {
    display: flex;
    align-items: center;
    margin: 0 1rem 1rem;
}

.insight h4 .material-symbols-rounded {
    margin-right: 1rem;
    font-size: 2rem;
    font-weight: 400;
    color: var(--info-color);
}

.insight p {
    max-width: 32rem;
    text-align: center;
    margin: 0;
}

#solutionsItem-1 .material-symbols-rounded {
    font-size: 6rem;
    font-weight: 100;
    color: var(--gray2-color);
}

#solutionsItem-2 .material-symbols-rounded {
    font-size: 6rem;
    font-weight: 100;
    color: var(--box-shadow-color-dark);
}

#solutionsItem-3 .material-symbols-rounded {
    font-size: 6rem;
    font-weight: 100;
    color: var(--gray2-color);
}

.solutions h4 {
    text-align: center;
    margin: 2rem 0 0;
}

.solutionsContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    gap: 1rem;
}

.solutionsItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background-color: var(--gray3-color);
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
}

#solutionsItem-1 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/image-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

#solutionsItem-2 {
    position: relative;
    overflow: hidden;
    color: var(--box-shadow-color-dark);
    background: url("/global-images/image-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

#solutionsItem-3 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/image-3.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.solutionsItem h5 {
    margin: 0 0 0.5rem;
    font-weight: 500;
    z-index: 2;
}

.solutionsItem p {
    margin: 0 0 0.75rem;
    z-index: 2;
}

#solutionsItem-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.85), transparent);
    background-position: 50% 100%;
    background-size: 100% 150%;
    z-index: -1;
    transition: all 0.3s;
}

#solutionsItem-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.85), transparent);
    background-position: 50% 100%;
    background-size: 100% 150%;
    z-index: -1;
    transition: all 0.3s;
}

#solutionsItem-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.85), transparent);
    background-position: 50% 100%;
    background-size: 100% 150%;
    z-index: -1;
    transition: all 0.3s;
}

.video {
    padding: 2rem 0;
}

.video h4 {
    margin: 0 0 2rem;
    text-align: center;
}

.video video {
    display: block;
    margin: auto;
    width: 640px;
    height: 360px;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
}

.how {
    background-color: var(--gray2-color);
}

.how .material-symbols-rounded {
    font-size: 3rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.how h4 {
    text-align: center;
    margin: 0;
    padding: 2rem 0 0;
}

.howContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    gap: 1rem;
}

.howItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem 2rem;
}

.howItem h3 {
    margin: 0;
}

.howItem h5 {
    text-align: center;
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.howItem p {
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

.functionalities {
    display: grid;
    padding: 2rem 0;
    gap: 1rem;
}

.funcGap, .faqGap {
    display: grid;
    width: 100%;
    box-sizing: border-box;
    gap: 1rem;
}

.functionalities h4 {
    margin: 0 0 1rem;
    text-align: center;
}

.funcAccordionItem button {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--gray3-color);
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
    cursor: pointer;
}

.funcAccordionItem .material-symbols-rounded {
    font-weight: 500;
}

.funcAccordionItem p {
    display: none;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
    background-color: white;
}

.for h4 {
    text-align: center;
    margin: 2rem 0 0;
}

.for p {
    text-align: center;
    margin: 1rem 0 0;
}

.forCarouselElements {
    display: flex;
    position: relative;
}

#for-left-button, #for-right-button {
    display: flex;
    position: absolute;
    height: 3rem;
    width: 3rem;
    align-self: center;
    background: var(--gray3-color);
    border: 1px solid var(--gray1-color);
    border-radius: 100%;
    opacity: 0.85;
}

#for-left-button:hover, #for-right-button:hover {
    opacity: 1;
}

#for-left-button {
    left: 1rem;
}

#for-right-button {
    right: 1rem;
}

.forContainer {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    gap: 1rem;
    margin: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.forContainer::-webkit-scrollbar {
    display: none;
}

.forItem {
    display: flex;
    height: 26rem;
    min-width: 16rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 2rem;
    border-radius: 1rem;
    background-color: var(--gray3-color);
    transition: all 0.3s;
}



#forItem-1 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-2 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-3 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-3.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-4 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-4.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-5 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-5.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-6 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-6.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-7 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-7.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-8 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-8.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-9 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-9.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-10 {
    position: relative;
    overflow: hidden;
    color: var(--gray2-color);
    background: url("/global-images/persona-10.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#forItem-1:hover,
#forItem-2:hover,
#forItem-3:hover,
#forItem-4:hover,
#forItem-5:hover,
#forItem-6:hover,
#forItem-7:hover,
#forItem-8:hover,
#forItem-9:hover,
#forItem-10:hover {
    background-position-y: top;
}

#forItem-1::before,
#forItem-2::before,
#forItem-3::before,
#forItem-4::before,
#forItem-5::before,
#forItem-6::before,
#forItem-7::before,
#forItem-8::before,
#forItem-9::before,
#forItem-10::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.85), transparent);
    background-position: 50% 100%;
    background-size: 100% 150%;
    z-index: 1;
    transition: all 0.3s;
}

#forItem-1:hover::before,
#forItem-2:hover::before,
#forItem-3:hover::before,
#forItem-4:hover::before,
#forItem-5:hover::before,
#forItem-6:hover::before,
#forItem-7:hover::before,
#forItem-8:hover::before,
#forItem-9:hover::before,
#forItem-10:hover::before {
    background-position: 50% 0%;
}

.forItem h5 {
    margin: 0;
    font-weight: 500;
    z-index: 2;
}

.forItem p {
    margin: 0 0 0.5rem;
    z-index: 2;
}

.for button {
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    font-family: var(--main-font);
    font-size: 0.85rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--gray2-color);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.for button:hover {
    background-color: var(--gray1-color);
}

.price {
    padding: 2rem 0;
}

.price h4, .price h5 {
    margin: 0 0 1rem;
    text-align: center;
}

.price h6 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-self: center;
    align-items: center;
    text-align: center;
}

.price h6 .material-symbols-rounded {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.price p {
    margin: 0 0 1rem;
    text-align: center;
}

.packageSelect {
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 2rem 0 0 2rem;
    
}

.packageBoxContainer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 4rem;
}

.packageBox {
    display: grid;
    width: 18rem;
    height: fit-content;
    padding-bottom: 1rem;
    background-color: var(--gray3-color);
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
    transition: all 0.3s;
}

.packageBoxRecommended {
    display: grid;
    width: 18rem;
    height: fit-content;
    padding-bottom: 1rem;
    background: radial-gradient(circle at 30% 20%, #1a3298 0%, var(--box-shadow-color-dark) 100%);
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color-dark);
    color: white;
    border-radius: 1rem;
    transition: all 0.3s;
}

.perCVTag {
    box-sizing: border-box;
    display: inline-block;
    justify-self: end;
    padding: 0.25rem 0.5rem;
    border-radius: 0 0.5rem;
    background-color: var(--cta-primary-color);
    color: #000;
    font-size: 0.75rem;
}

.recommendedTag {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--info-color);
    opacity: 0.8;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.7rem;
}

.recommendedIcon {
    color: var(--secondary-color);
    font-size: 0.85rem;
    align-self: center;
}

.packageName {
    display: inline-block;
    justify-self: start;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem;
}

.packagePrice {
    display: inline-block;
    justify-self: start;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 1rem;
}

.packageSubtitle {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: 0 1rem 0 1rem;
}

.packageIncludes {
    display: inline-block;
    justify-self: start;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem 1rem;
}

.packageElementsContainer {
    display: grid;
    grid-template-columns: 1rem 1fr;
    gap: 0.25rem;
    align-items: center;
    margin: 0 1rem 1rem 1rem;
}

.packageElement {
    display: block;
    justify-self: start;
    white-space: nowrap;
}

.packageElementsContainer span {
    display: inline-flex;
    justify-self: start;
    text-align: left;
    font-size: 0.75rem;
}

.infoIcon {
    color: var(--secondary-color);
    cursor: help;
}

.infoIconRecommended {
    color: var(--info-color);
    cursor: help;
}

.infoIconStart {
    font-size: 1rem;
}

.lock {
    color: var(--gray1-color);
}

.lockRecommended {
    color: #4373c3;
}

.add {
    font-weight: 600;
}

.packageSelectButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-sizing: border-box;
    width: calc(100% - 2rem);
    padding: 0.5rem 1rem;
    margin: 0 1rem 1rem 1rem;
    font-family: inherit;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.packageSelectButtonRecommended {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-sizing: border-box;
    width: calc(100% - 2rem);
    padding: 0.5rem 1rem;
    margin: 0 1rem 1rem 1rem;
    font-family: inherit;
    color: #000;
    background-color: var(--cta-primary-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.packageSelectButtonIcon {
    font-size: 1rem;
}

.price .ctaButton {
    display: flex;
    justify-self: center;
    margin-top: 2rem;
}

.price table {
    max-width: 56rem;
    justify-self: center;
    border-collapse: collapse;
    overflow: hidden;
    font-size: 0.85rem;
}

.price th {
    background-color: var(--gray2-color);
}

.price th:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.price th:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.price tr:nth-child(even) {
    background-color: var(--gray3-color);
}

.price tr:nth-child(even) td:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.price tr:nth-child(even) td:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.price th, .price td {
    text-align: center;
    white-space: nowrap;
    padding: 0.5rem 1rem;
}

.price td:first-of-type,
.price th:first-of-type {
    width: 100%;
    text-align: left;
}

sup {
    font-size: 0.65rem;
    padding: 0.05rem 0.15rem;
    background-color: var(--gray2-color);
    border: 1px solid var(--gray1-color);
    border-radius: 0.25rem;
}

.price table .material-symbols-rounded {
    font-size: 0.85rem;
}

.safety .material-symbols-rounded {
    font-size: 6rem;
    font-weight: 100;
    color: var(--secondary-color);
}

.safety h4 {
    text-align: center;
    margin: 0;
    padding: 2rem 0 0;
}

.safetyContainer {
    display: block;
    padding: 2rem 0;
    gap: 1rem;
}

.safetyItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
}

.safetyItem h5 {
    margin: 0 0 0.5rem;
    text-align: center;
    font-weight: 500;
}

.safetyItem p {
    margin: 0;
    text-align: center;
}

.opinions {
    background-color: var(--gray2-color);
}

.opinions .material-symbols-rounded {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.opinions h4 {
    text-align: center;
    margin: 0;
    padding: 2rem 0 0;
}

.opinionsContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    gap: 1rem;
}

.opinionsItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.opinionsItem h5 {
    text-align: center;
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.opinionsItem p {
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
}

.faq {
    display: grid;
    padding: 2rem 0;
    gap: 1rem;
}

.faq h4 {
    margin: 0 0 1rem;
    text-align: center;
}

.faqAccordionItem {
    margin: 0;
}

.faqAccordionItem button {
    display: flex;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--gray3-color);
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
    cursor: pointer;
}

.faqAccordionItem .material-symbols-rounded {
    font-weight: 500;
}

.faqAccordionItem p {
    display: none;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 0.25rem 0.5rem var(--box-shadow-color);
    background-color: white;
}

.faqAccordionItem strong,
.funcAccordionItem strong {
    display: contents;
    font-weight: 600;
}

.cta {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    
}

.cta div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h4 {
    margin: 0 1rem 1rem;
    text-align: center;
}

.cta p {
    max-width: 30rem;
    text-align: center;
    margin: 0 0 1rem;
    
}

.footer {
    margin-top: 4rem;
    color: white;
    background-color: #000;
}

#footerDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

#footerDiv img {
    margin: auto;
    width: 6rem;
}

.footer h4 {
    text-align: center;
    margin: auto;
    font-weight: 500;
}

.footer span {
    text-align: center;
    margin: auto;
    font-weight: 300;
}

.footerLinks {
    display: flex;
    justify-content: center;
    width: 100%;
    display: flex;
    gap: 2rem;
    
}

.footerLinks a {
    color: #fff;
    text-decoration: none;
    margin: 2rem 0;
    text-align: center;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footerLinks a:hover {
    color: var(--info-color);
}

.hidden {
    display: none;
}

@media (max-width: 1280px) {
    .mainContainer {
        box-sizing: border-box;
        width: 100%;
        padding: 0 2rem;
    }

    .price table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        box-sizing: border-box;
    }

    .pageMainContainer {
        max-width: 100%;
        margin: 0 0 2rem 0;
    }

    .packageMainContainer {
        display: block;
        max-width: 100%;
        margin: 0 0 1rem;
        border-radius: 0;
    }

    .packageBoxContainer {
        padding: 1rem 0.5rem;
        max-width: 100%;
        overflow-y: hidden;
    }

    .packageBoxContainer::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 1024px) {
    #mobileMenuButton {
        color: #121212;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 4;
    }

    #mobileMenu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        gap: 1rem;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #121212;
        z-index: 3;
    }

    #mobileMenu a {
        height: fit-content;
        align-self: center;
        text-align: center;
        color: white;
        font-size: 1.6rem;
        z-index: 4;
        transition: all 0.3s ease;
    }

    #mobileMenu a:hover {
        color: var(--info-color);
        text-decoration: none;
    }

    #forItem-1.touch,
    #forItem-2.touch,
    #forItem-3.touch,
    #forItem-4.touch,
    #forItem-5.touch,
    #forItem-6.touch,
    #forItem-7.touch,
    #forItem-8.touch,
    #forItem-9.touch,
    #forItem-10.touch {
        background-position-y: top;
    }

    #forItem-1.touch::before,
    #forItem-2.touch::before,
    #forItem-3.touch::before,
    #forItem-4.touch::before,
    #forItem-5.touch::before,
    #forItem-6.touch::before,
    #forItem-7.touch::before,
    #forItem-8.touch::before,
    #forItem-9.touch::before,
    #forItem-10.touch::before {
        background-position: 50% 0%;
    }

    .packageSelect {
        max-width: 100%;
        border-radius: 0;
    }

    .packageBoxContainer {
        justify-content: flex-start;
        padding: 1rem 0.5rem;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .packageBoxContainer::-webkit-scrollbar {
        display: none;
    }

    .packageBox, .packageBoxRecommended {
        min-width: 18rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .mainContainer {
        padding: 0 2rem;
    }

    .hero {
        background-position: 55% center;
    }

    .hero::before {
        background: linear-gradient(
            to top right,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.25)
        );
    }

    .heroContent,
    .insight,
    .solutionsContainer,
    .funcGap,
    .for p,
    .forContainer,
    .price p,
    .packageBoxContainer,
    .price table,
    .price h6,
    .faqGap,
    .cta p {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .insight p {
        line-height: 1.8rem;
    }

    .solutionsContainer {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .video video {
        margin: 0;
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .howContainer, .opinionsContainer {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem 0 2rem;
    }

    .opinions .material-symbols-rounded {
        margin-top: 1rem;
    }

    .price {
        overflow-x: auto;        
    }

    .packageBoxContainer, .price table {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .price table::-webkit-scrollbar {
        display: none;
    }

    .safetyContainer {
        padding-top: 0;
        padding-bottom: 0;
    }

    .cta {
        padding-bottom: 2rem;
    }

    .cta p {
        margin-bottom: 2rem;
    }

    .footerLinks {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0 2rem;
    }

    .footerLinks a {
        margin: 0;
    }
}

@media (max-width: 640px) {
    #for-left-button, #for-right-button {
        display: none;
    }
}

@media (max-width: 420px) {
    #ctaHero {
        margin-right: 0.5rem;
    }

    #secondaryHero {
        margin-top: 1rem;
        margin-left: 0;
    }

    .insight h4 {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .insight h4 .material-symbols-rounded {
        margin: 0 0 0.5rem;
    }
}