/* #region common */
.timekeeping-page {
    position: relative;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #181D27;
}

.timekeeping-page .container {
    width: 100%;
    max-width: 1310px;
}

.nowrap {
    white-space: nowrap;
}

.section-p {
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

.text-medium {
    font-family: Inter Medium;
}

.text-semibold {
    font-family: Inter SemiBold;
}

.text-bold {
    font-family: Inter Bold;
}

.text-uppercase {
    text-transform: uppercase;
}

.default-title {
    font-family: Inter Bold;
    font-weight: normal;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin: 0;
}

.pb-title {
    padding-bottom: 12px;
}

.default-subtitle {
    font-size: 20px;
    color: #414651;
}

.default-desc {
    background: url(/sites/amis/images/pages/agentic-timekeeping/ic-check.svg) no-repeat top left;
    background-size: 24px;
    padding-left: 32px;
    color: #414651;
    letter-spacing: -0.2px;
}

.gradient-text {
    background: linear-gradient(75.18deg, #FF5B2A -9.33%, #E459E2 73.87%, #7839EE 157.06%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

.play-video-item {
    position: relative;
    cursor: pointer;
}

.cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.justify-center {
    justify-content: center;
}

a.base-btn {
    position: relative;
    font-family: Inter SemiBold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 12px;
    transition: all ease 0.5s;
    box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03),
        0px 8px 30px -6px rgba(116, 135, 255, 0.05);

}

a.primary-btn {
    background: linear-gradient(45deg, #FF5E14 0%, #FFAC70 100%);
    padding: 14px 26px;
    color: #FFF;
}

a.second-btn {
    border: 2px solid transparent;
    padding: 12px 24px;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(45deg, #FF5E14 0%, #FFAC70 100%) border-box;
    color: #FF5E14;
}

a.third-btn {
    background-color: #FFF;
    border: 2px solid transparent;
    padding: 12px 24px;
    color: #FF5E14;
}

a.arrow-btn img {
    transform: translateX(0px);
    transition: transform 0.3s ease;
}

a.arrow-btn:hover img {
    transform: translateX(4px);
}

a.shadow-btn {
    opacity: 1 !important;
}

.shadow-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #22d3ee,
            #4ade80,
            #ff6ec4);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.shadow-btn:hover::before {
    opacity: 1;
    animation: shadowMove 4s linear infinite;
}

.border-btn:hover {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #ff6ec4,
            #7873f5,
            #4ade80,
            #22d3ee,
            #ff6ec4) border-box;
    background-size: 200% 200%;
    animation: borderMove 3s linear infinite;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.bg-play-btn {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #FF5637;
    animation: pulse 1.2s ease infinite;
}

.timekeeping-page form[lz-id='825040a3-b1cc-4c93-ab1b-d9775e3ec9cf'].private-form .submit-wrapper .btn-form-submit {
    background: linear-gradient(45deg, #FF5E14 0%, #FFAC70 100%);
    padding: 14px 20px !important;
    height: 52px !important;
    font-family: Inter SemiBold !important;
    font-size: 16px !important;
    border-radius: 12px !important;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes shadowMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 979px) {
    .default-title {
        font-size: 28px;
    }

    .default-subtitle {
        font-size: 18px;
    }

    .section-p {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .default-title {
        font-size: 24px;
    }

    .cta-group {
        display: grid;
        justify-content: center;
    }

    .play-btn {
        width: 36px;
        height: 36px;
    }

    .section-p {
        padding: 30px 0;
    }
}

/* #endregion */

/* #region hero */
.hero-section {
    background: url(/sites/amis/images/pages/agentic-timekeeping/bg-hero.webp) no-repeat center;
    background-size: cover;
    padding: 120px 0 100px;
}

.hero-wrap {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-image {
    position: relative;
    width: 58%;
    max-width: 668px;
    aspect-ratio: 668/456;
    flex-shrink: 0;
}

.hero-image img {
    position: absolute;
    max-width: unset;
    width: 104%;
    left: -2%;
}

.hero-agent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
}

.hero-agent-name,
.hero-title {
    font-family: Inter Bold;
    font-size: 40px;
    margin: 0;
}

.hero-title {
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    padding-top: 16px;
    color: #252B37;
}

.hero-cta {
    flex-wrap: wrap;
    padding-top: 32px;
}

@media (max-width: 1100px) {
    .hero-wrap {
        flex-direction: column;
    }

    .hero-section br {
        display: none;
    }
}

@media (max-width: 979px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }

    .hero-agent-name,
    .hero-title {
        font-size: 32px;
    }

    .hero-cta,
    .hero-agent {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-wrap {
        gap: 24px;
    }

    .hero-agent-name,
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        padding-top: 24px;
    }
}

@media (max-width: 350px) {
    .hero-agent img {
        display: none;
    }
}

/* #endregion */

/* #region ai agent */
.ai-agent-bg {
    max-width: 1472px;
    margin: 0 auto;
    padding: 96px 0;
    border-radius: 24px;
    background: url(/sites/amis/images/pages/agentic-timekeeping/bg-ai-agent.webp) no-repeat center;
    background-size: cover;
}

.agent-wrap {
    display: flex;
    gap: 64px;
    justify-content: space-between;
    padding-top: 40px;
}

.agent-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
}

.agent-desc .default-desc {
    background: url(/sites/amis/images/pages/agentic-timekeeping/ic-check-gradient.svg) no-repeat top left;
}

.agent-cta {
    position: relative;
    z-index: 1;
}

.agent-video {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    max-width: 732px;
    width: 58%;
    padding: 16px;
    border: 2px solid var(--Border-White, #FFFFFF);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.60);
    position: relative;
    cursor: pointer;
}

@media (min-width: 1400px) {
    .ai-agent {
        margin-top: 50px;
    }
}

@media (max-width: 1300px) {
    .ai-agent-bg {
        padding: 40px 0;
    }

    .ai-agent .br {
        display: none;
    }
}

@media (max-width: 979px) {
    .ai-agent-bg {
        padding: 16px 0;
    }

    .agent-wrap {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-top: 0;
    }

    .agent-desc {
        gap: 12px;
        padding: 24px 0;
    }

    .agent-video {
        padding: 12px;
        width: 100%;
    }
}

/* #endregion */
/* #region benefit */
.benefit-wrap {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    padding-top: 40px;
}

.benefit-content {
    width: 484px;
    flex: 0 0 auto;
}

.benefit-tabs {
    display: flex;
    flex-direction: column;
}

.benefit-tab {
    display: flex;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.benefit-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 54px;
    bottom: 6px;
    width: 4px;
    background: #F5F5F5;
    border-radius: 9999px;
}

.benefit-tab.active:not(:last-child)::after {
    background: #FF7E37;
}

.tab-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--Neutral-Gray-100, #F5F5F5);
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter SemiBold;
    font-size: 16px;
    color: #717680;
    transition: all 0.3s ease;
}

.benefit-tab.active .tab-number {
    background: #FF7E37;
    border-color: transparent;
    color: #fff;
}

.tab-body {
    flex: 1;
    padding: 16px 20px 24px;
    margin-bottom: 20px;
}

.benefit-tab.active .tab-body {
    border-radius: 24px;
    border: 1px solid #FEF3E0;
    box-shadow: 0px 8px 30px -4px rgba(10, 27, 137, 0.03), 0px 8px 30px -6px rgba(116, 135, 255, 0.05);
}

.tab-title {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #252B37;
}

.tab-desc {
    color: #535862;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
    opacity: 0;
    display: none;
}

.benefit-tab.active .tab-desc {
    display: block;
    max-height: unset;
    opacity: 1;
    padding-top: 8px;
}

a.tab-link {
    display: none;
    align-items: center;
    gap: 4px;
    font-family: Inter SemiBold;
    color: #FF5E14;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.benefit-tab.active .tab-link {
    display: inline-flex;
    max-height: 40px;
    opacity: 1;
    margin-top: 12px;
}

.benefit-cta {
    padding-top: 32px;
    flex-wrap: wrap;
}

.benefit-images {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.benefit-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(8px);
    pointer-events: none;
}

.benefit-image.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.benefit-image img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 979px) {
    .benefit-wrap {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .benefit-content {
        width: 100%;
    }

    .benefit-images {
        width: 100%;
        min-height: unset;
    }

    .benefit-image {
        position: absolute;
    }

    .benefit-image.active {
        position: relative;
    }
}

@media (max-width: 767px) {
    .benefit-wrap {
        padding-top: 24px;
        gap: 24px;
    }

    .tab-title {
        font-size: 16px;
    }

    .tab-title br {
        display: none;
    }

    .benefit-tab {
        gap: 8px;
    }

    .tab-body {
        padding: 8px 8px 12px;
    }
}

/* #endregion */

/* #region feature */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-top: 64px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 64px;
}

.feature-item-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex-shrink: 0;
    width: 48%;
    max-width: 608px;
    border-radius: 24px;
    overflow: hidden;
    background: #EEF2FF;
}

.feature-image img {
    width: 100%;
    display: block;
}

.feature-item-content {
    flex: 1;
}

.feature-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 0 32px;
}

.feature-desc-subtitle {
    font-family: Inter Bold;
    font-size: 16px;
    color: #414651;
}

.feature-cta {
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .feature-item {
        gap: 40px;
    }

    .feature-image {
        width: 46%;
    }
}

@media (max-width: 979px) {
    .feature-list {
        gap: 48px;
        padding-top: 32px;
    }

    .feature-item,
    .feature-item-reverse {
        flex-direction: column;
        gap: 28px;
    }

    .feature-image {
        width: 100%;
        max-width: 100%;
    }

    .feature-desc {
        gap: 12px;
        padding: 12px 0 24px;
    }
}

@media (max-width: 767px) {
    .feature-list {
        gap: 32px;
    }

    .feature-cta {
        gap: 12px;
    }
}

/* #endregion */

/* #region certificate */
.certificate {
    background: radial-gradient(72.4% 88.41% at 50% 100%, rgba(247, 221, 231, 0.5) 0%, rgba(255, 200, 184, 0.5) 28.67%, rgba(255, 224, 194, 0.2) 59.62%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
    margin: 50px 0;
}

.cert-wrap {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    flex: 1;
    background-color: #FFF;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 24px 50px -8px rgba(10, 27, 137, 0.03), 0 4px 8.7px 4px rgba(10, 27, 137, 0.02);
}

.cert-item img {
    max-height: 100%;
}

@media (min-width: 1300px) {
    .certificate {
        padding: 96px;
    }
}

@media (max-width: 979px) {
    .certificate {
        margin: 40px 0 0;
    }

    .cert-wrap {
        padding-top: 28px;
        gap: 24px;
    }

    .cert-item {
        flex: unset;
        width: calc(33.33% - 24px);
    }
}

@media (max-width: 767px) {
    .certificate {
        margin: 30px 0 0;
    }

    .cert-wrap {
        padding-top: 24px;
        gap: 16px;
    }

    .cert-item {
        width: calc(50% - 16px);
    }
}

/* #endregion */

/* #region Prize */
.prize {
    background: #FFF;
}

.prize-wrap {
    padding: 40px 60px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.prize-item {
    max-width: 268px;
    margin: 0 auto;
}

.prize-cup {
    aspect-ratio: 267/245;
    max-width: 267px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.prize-item:hover .prize-cup {
    background: url(/sites/amis/images/pages/agentic-timekeeping/bg-circle.png) no-repeat center;
    background-size: cover;
}

.prize-title {
    font-family: Inter Medium;
    font-size: 18px;
    text-align: center;
}

.prize-wrap.owl-carousel .owl-item img {
    object-fit: contain;
    width: auto;
}

.prize-wrap.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: #E9EAEB;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FF5637;
}

.prize-wrap.owl-theme .owl-nav {
    margin: 0;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-'] {
    display: none;
    margin: 0;
}

.prize-wrap:hover .owl-nav [class*='owl-'] {
    display: block;
}

.prize-wrap.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: transparent;
}

.prize-wrap.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}

.prize-wrap.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

@media (max-width: 979px) {

    .prize .default-subtitle br,
    .prize-title br {
        display: none;
    }

    .prize-wrap {
        padding: 32px 0 0;
    }
}

@media (max-width: 767px) {
    .prize-wrap {
        padding: 24px 0 0;
    }
}

/* #endregion */

/* #region Customer */
.customer-wrap {
    padding-top: 60px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.customer-item {
    width: 296px;
    box-shadow: 0 2px 20px -6px rgba(116, 135, 255, 0.12), 0 12px 46px -4px rgba(10, 27, 137, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.customer-item-head {
    font-family: Inter SemiBold;
    font-size: 18px;
    color: #FFF;
    padding: 8px 16px;
    background-color: #FF5E14;
    text-align: center;
}

.customer-item-content {
    padding: 16px 16px 36px;
}

@media (max-width: 979px) {
    .customer-wrap {
        padding-top: 30px;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .customer-wrap {
        padding-top: 24px;
    }

    .customer-item-head {
        font-size: 16px;
    }
}

/* #endregion */

/* #region register */
.register-page {
    background: url(/sites/amis/images/pages/agentic-timekeeping/bg-register.webp) no-repeat center;
    background-size: cover;
}

.register-page-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.register-page-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.register-page-desc .default-desc {
    color: #252B37;
    background: url(/sites/amis/images/pages/agentic-timekeeping/ic-check-gradient.svg) no-repeat top left;
}

.register-page-form {
    width: 100%;
    max-width: 515px;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(45deg, #FF9EA0 0%, #FFDD9F 100%) border-box;
}

.register-page-form-title {
    font-family: Inter SemiBold;
    font-size: 20px;
    text-align: center;
    padding: 24px 24px 4px;
    color: #252B37;
}

.register-page-form-subtitle {
    color: #000;
    text-align: center;
}

.register-page-agent {
    position: absolute;
    left: 36%;
    bottom: -96px;
    width: 313px;
}

.register-page-extend {
    border-radius: 12px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.register-page-extend::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(76.24deg, rgba(120, 57, 238, 0.8) 0%, rgba(228, 89, 226, 0.8) 65.27%, rgba(255, 91, 42, 0.8) 130.54%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.rp-extend-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: Inter SemiBold;
}

@media (min-width: 1366px) {
    .register-page {
        padding: 96px 0;
        margin: 50px 0;
    }
}

@media (max-width: 1100px) {
    .register-page-agent {
        display: none;
    }

    .register-page-wrap {
        gap: 24px;
    }
}

@media (max-width: 979px) {
    .register-page-wrap {
        flex-direction: column;
    }

    .register-page-desc {
        gap: 12px;
    }

    .register-page-desc br {
        display: none;
    }

    .register-page .default-title br {
        display: none;
    }
}

/* #endregion */

/*#region Question */
.question-wrap {
    margin-top: 40px;
}

.question .panel-group .panel {
    border-radius: 16px;
    border-color: #E9EAEB;
}

.question .panel-group .panel:not(:first-child) {
    margin-top: 20px;
}

.question .panel-default>.panel-heading {
    padding: 24px 64px 12px 24px;
    background-color: #fff;
    border-radius: 24px;
    cursor: pointer;
    background: url(/sites/amis/images/pages/agentic-timekeeping/ic-minus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #FF5637;
}

.question .panel-default>.panel-heading.collapsed {
    padding-bottom: 24px;
    background: url(/sites/amis/images/pages/agentic-timekeeping/ic-plus.svg) no-repeat right 24px top 24px;
    background-size: 24px;
    color: #181D27;
}

.answer-text {
    padding: 0 64px 24px 24px;
    color: #414651;
    letter-spacing: -0.2px;
}

.answer-text p {
    display: block;
}

.answer-text a {
    font-family: Inter SemiBold;
    color: #FF5637;
}

@media (max-width: 979px) {
    .question-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .question-wrap {
        margin-top: 24px;
    }

    .question .panel-group .panel:not(:first-child) {
        margin-top: 16px;
    }

    .question .panel-default>.panel-heading {
        font-size: 14px;
        padding: 16px 24px 8px 16px;
        background-position: top 16px right 0;
    }

    .question .panel-default>.panel-heading.collapsed {
        background-position: top 16px right 0;
        padding-bottom: 16px;
    }

    .answer-text {
        font-size: 14px;
        padding: 0 24px 16px 16px;
    }
}

/*#endregion */

/* #region cta section */
.cta-section-wrap {
    background: url(/sites/amis/images/pages/agentic-timekeeping/bg-cta-section.webp) no-repeat center;
    background-size: cover;
    padding: 55px 114px;
    min-height: 200px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.cta-section-title {
    font-family: Inter Bold;
    font-size: 38px;
    line-height: 1.25;
    background: var(--color-oneai, linear-gradient(270deg, #FF6F55 0%, #F64C2D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 12px;
}

.cta-section-desc {
    color: #535862;
    font-size: 20px;
}

.cta-section-desc span {
    font-family: Inter SemiBold;
    background: var(--color-oneai, linear-gradient(270deg, #FF6F55 0%, #F64C2D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section-cta {
    position: absolute;
    right: 85px;
    bottom: 50px;
}

@media (max-width: 1100px) {
    .cta-section-cta {
        position: unset;
        margin-top: 16px;
    }

    .cta-section-wrap {
        padding: 24px 16px;

    }
}

@media (max-width: 767px) {
    .cta-section-wrap {
        background-position: top left;
    }

    .cta-section-title {
        font-size: 24px;
    }
}

/* #endregion */