.fpb-banner.masthead-container {
	background: #FBFBFB !important;
}

.fpb-banner .masthead-content {
    text-align: left;
}

.fpb-banner.masthead-container .masthead-banner {
    position: absolute;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	width: 100%;
}

.fpb-banner.masthead-container .masthead-banner img {
    height: auto;
}

.fpb-banner .masthead-left {
    width: 100%;
}

.fpb-banner .masthead-right {
    position: relative;
    width: 100%;
    order: -1;
    margin-bottom: 80px;
}

.fpb-banner .masthead h1 {
    font-weight: 700;
    font-size: 45px;
    text-align: left;
    color: #641964;
    margin-bottom: 20px;
}

.fpb-banner .masthead p {
    font-weight: 400;
    font-size: 22px;
    text-align: left;
    color: #641964;
    margin-bottom: 35px;
}

.js-mobile-device-slider {
	position: absolute;
	top: 0;
	left: -90px;
    width: 100%;
    max-width: 325px;
	z-index: 1;
    overflow: hidden;
}

.fpb-banner .banner-mock-content {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    width: 100%;
	max-width: 325px;
	margin: 0 auto;
}

.fpb-banner .banner-mock-content .mobile-device {
    position: relative;
    top: unset;
    left: unset;
    max-width: 325px;
}

.fpb-banner .banner-mock-content .mobile-image {
	width: 247px;
	height: 230px;
    border-radius: 0;
    margin-left: 106px;
}

.fpb-banner .banner-mock-content .mobile-image img {
    border-radius: 23px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.fpb-banner .sms-text {
    text-align: left;
    max-width: 170px;
    padding: 20px 24px;
    font-size: 10px;
    line-height: 12px;
}

.fpb-banner .sms-text::after {
    display: none;
}

.fpb-banner .sms-text-container {
	position: absolute;
	bottom: 49px;
	left: 42px;
    max-width: 250px;
}

/* Keyframes for the pop-up effect with prefixes */
@-webkit-keyframes popUpEffect {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8); /* Start with a larger scale for pop-up */
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes popUpEffect {
    0% {
        opacity: 0;
        -moz-transform: scale(0.8); /* Start with a larger scale for pop-up */
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes popUpEffect {
    0% {
        opacity: 0;
        transform: scale(0.8); /* Start with a larger scale for pop-up */
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Keyframes for the pop-out effect (opposite of pop-up) */
@-webkit-keyframes popOutEffect {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8); /* Shrink down for pop-out */
    }
}

@-moz-keyframes popOutEffect {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(0.8); /* Shrink down for pop-out */
    }
}

@keyframes popOutEffect {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8); /* Shrink down for pop-out */
    }
}

/* First SMS text styling */
.fpb-banner .first-sms-text {
    position: relative;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    float: left;
    color: #FFFFFF;
    border-radius: 50px 50px 50px 0px;
    background: linear-gradient(#007d7d 0%, #005252 100%);
    box-shadow: 0px 3px 20px rgba(0, 125, 125, 0.45);
    margin-bottom: 15px;
    transition: all 0.15s ease;
}

/* Second SMS text styling */
.fpb-banner .second-sms-text {
    position: relative;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: unset;
    right: 0;
    float: right;
    color: #FFFFFF;
    border-radius: 46px 46px 0px 46px;
    background: linear-gradient(#00dabc 0%, #009f89 100%);
    box-shadow: 0px 3px 20px rgba(0, 218, 188, 0.45);
    transition: all 0.15s ease;
}

/* Apply the pop-up effect when the SMS is active */
.fpb-banner .first-sms-text.active-sms-text {
    -webkit-animation: popUpEffect 0.15s ease-out forwards;
    -moz-animation: popUpEffect 0.15s ease-out forwards;
    animation: popUpEffect 0.15s ease-out forwards;
}

/* Pop-up effect for the second SMS with delay */
.fpb-banner .second-sms-text.active-sms-text {
    -webkit-animation: popUpEffect 0.15s ease-out forwards;
    -moz-animation: popUpEffect 0.15s ease-out forwards;
    animation: popUpEffect 0.15s ease-out forwards;
    animation-delay: 1s;
}

/* Apply the pop-out effect when SMS is hidden (no active class) */
.fpb-banner .first-sms-text:not(.active-sms-text) {
    -webkit-animation: popOutEffect 0.15s ease-out forwards;
    -moz-animation: popOutEffect 0.15s ease-out forwards;
    animation: popOutEffect 0.15s ease-out forwards;
}

.fpb-banner .second-sms-text:not(.active-sms-text) {
    -webkit-animation: popOutEffect 0.15s ease-out forwards;
    -moz-animation: popOutEffect 0.15s ease-out forwards;
    animation: popOutEffect 0.15s ease-out forwards;
}


@media ( min-width: 768px ) {
    .fpb-banner .masthead-right {
        max-width: 700px;
        margin-bottom: 100px;
    }

    .fpb-banner .masthead-content {
        text-align: center;
    }

    .fpb-banner .masthead h1,
    .fpb-banner .masthead p {
        text-align: center;
    }

    .js-mobile-device-slider {
        left: 0;
        max-width: 500px;
        height: 500px;
    }   

    .fpb-banner .banner-mock-content {
        position: unset;
        display: unset;
        margin: unset;
    }

    .fpb-banner .banner-mock-content .mobile-device {
        max-width: 500px;
    }

    .fpb-banner .banner-mock-content .mobile-image {
        width: 546px;
        height: 393px;
        margin-left: 205px;
    }

    .fpb-banner .banner-mock-content .mobile-image img {
        border-radius: 23px;
        border-top-right-radius: 23px;
        border-bottom-right-radius: 23px;
    }

    .fpb-banner .sms-text-container {
        bottom: 83px;
        left: 62px;
        max-width: 388px;
    }

    .fpb-banner .sms-text {
        font-size: 16px;
        line-height: 19px;
        max-width: 264px;
    }
}

@media ( min-width: 1024px ) {
    .fpb-banner .masthead {
        min-height: 711px;
    }
    
    .fpb-banner .masthead-cont-wrap {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .fpb-banner .masthead-content {
        text-align: left;
    }

    .fpb-banner .masthead h1,
    .fpb-banner .masthead p {
        text-align: left;
    }

    .fpb-banner .masthead h1 {
        font-size: 55px;
    }

    .fpb-banner .masthead-left {
        max-width: 40%;
    }

    .fpb-banner .masthead-right {
        max-width: 60%;
        order: 2;
    }

    .fpb-banner .first-sms-text {
        margin-bottom: 25px;
    }
}

@media ( min-width: 1366px ) {
    .fpb-banner .masthead h1 {
        font-size: 75px;
    }

    .fpb-banner .masthead-left {
        min-width: 632px;
    }

    .fpb-banner .masthead-right {
        min-width: 851px;
    }

    .fpb-banner .banner-mock-content .mobile-image {
        margin-left: 305px;
    }
}

@media ( min-width: 1920px ) {
    .fpb-banner.masthead-container {
        min-height: 700px;
    }

    .fpb-banner.masthead-container .masthead-banner img {
        height: 100%;
        object-position: bottom;
    }
}

.fpb-logo {
    position: relative;
    padding: 40px 0 0;
}

.fpb-logo > .container-fluid {
    width: 100%;
    max-width: 1713px;
}

.fpb-logo .home-logo-wave {
	position: absolute;
	top: 0;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	width: 100vw;
}

.fpb-logo .home-logo-wave img {
	width: 100%;
}

.fpb-logo .js-logo-slider {
	width: 100%;
	min-width: 525px;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
    margin: 0 auto;
}

.fpb-logo .js-logo-slider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 228px;
	height: 100%;
	background: linear-gradient(90deg, rgba(251,251,251,1) 50%, rgba(255,255,255,0) 100%);
	z-index: 1;
}

.fpb-logo .js-logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 228px;
    height: 100%;
    background: linear-gradient(270deg, rgba(251,251,251,1) 50%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.fpb-logo .home-logo-img {
    background: unset;
}

@media ( min-width: 768px ) {
    .fpb-logo .js-logo-slider {
        width: 100%;
        min-width: 0;
        left: 0;
        right: 0;
        transform: none;
    }

    .fpb-logo .js-logo-slider::before {
        left: -110px;
        width: 328px;
        height: 155px;
    }

    .fpb-logo .js-logo-slider::after {
        right: -110px;
        width: 328px;
        height: 155px;
    }
}

@media ( min-width: 1024px ) {
    .fpb-logo {
        padding-top: 0;
        padding-bottom: 80px;
    }

    .fpb-logo .js-logo-slider {
        transform: translateY(-20px);
    }
}

.fpb-feature {
    padding: 40px 0;
}

.fpb-feature .smaller-content {
    padding: 60px 30px !important;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
}

.fpb-feature .smaller-content:hover {
    padding: 30px !important;
}

.fpb-feature .smaller-content .home-cards-image {
    min-height: 95px;
    margin-bottom: 25px;
    opacity: 1;
}

.fpb-feature .smaller-content .home-cards-image img {
    height: 95px;
}

.fpb-feature .smaller-content .home-cards-desc h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.fpb-feature .smaller-content .home-cards-desc p {
    color: #787878;
    font-size: 16px;
    line-height: 22px;
    height: auto;
    -webkit-line-clamp: none;
    margin-bottom: 0;
}

.fpb-feature .smaller-content .btn-wrapper {
    display: none;
    position: relative;
    bottom: 0;
}

.fpb-feature .smaller-content:hover .btn-wrapper {
    display: block;
    bottom: 0;
    margin-top: 18px;
}

.fpb-feature a {
    text-decoration: none;
}

@media ( min-width: 1024px ) {
    .fpb-feature {
        padding: 0 0 80px;
    }

    .fpb-feature .text-section {
        max-width: 811px;
    }

    .fpb-feature .smaller-content {
        height: 360px;
    }

    .fpb-feature .smaller-content:hover .home-cards-desc {
        transform: none !important;
    }

    .fpb-feature .smaller-content:hover .home-cards-desc p {
        position: relative;
        height: 100%;
    }
}

@media ( min-width: 1200px ) {
    .fpb-feature .container {
        max-width: 1264px;
    }
}

.fpb-video-content {
    padding: 40px 0;
}

.fpb-video-content .video-content-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fpb-video-content .video-code-frame {
    max-width: 100%;
    margin: 0;
}

.fpb-video-content .video-code-frame .video-player a {
    width: 100%;
    height: 100%;
}

.fpb-video-content .video-code {
    width: 100%;
    max-width: 616px;
    margin-bottom: 30px;
}

.fpb-video-content .video-content {
    min-height: 0;
    margin-top: 0;
}

.fpb-video-content .video-content h2 {
    margin-bottom: 10px;
}

.fpb-video-content .video-content p {
    color: #0E1B23;
    line-height: 25px;
}

.fpb-video-content .video-content p:last-child {
    margin-bottom: 0;
}

.fpb-video-content .video-content > div {
    margin-bottom: 30px;
}

@media ( min-width: 1024px ) {
    .fpb-video-content {
        padding: 0 0 120px;
    }

    .fpb-video-content .video-content-flex {
        flex-direction: row;
    }

    .fpb-video-content .video-code {
        width: 616px;
        margin-bottom: 0;
    }

    .fpb-video-content .video-code-frame {
        min-height: 345px;
    }

    .fpb-video-content .video-content {
        width: calc(100% - 616px);
    }

    .fpb-video-content .video-content > div {
        margin-bottom: 50px;
    }

    .fpb-video-content .home-video-slip {
        bottom: -120px;
    }

    .fpb-video-content .home-video-slip-img {
        top: -178px;
        left: 0;
    }
}

@media ( min-width: 1200px ) {
    .fpb-video-content .container {
        max-width: 1264px;
        padding: 0;
    }
}

.fpb-advantage {
    padding: 40px 0 80px;
    background: #EFEFEF;
    position: relative;
}

.fpb-advantage:before {
    content: '';
    position: absolute;
    top: -85px;
    left: 0;
    width: 100%;
    height: 100px;
    clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 100%);
    background: #EFEFEF;
    z-index: 0;
}

.advantage-content {
    margin-bottom: 40px;
}

.advantage-content-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.advantage-left {
    position: relative;
    width: 100%;
}

.advantage-right {
    position: relative;
    right: -11px;
    padding-left: 0;
    order: -1;
    width: 353px;
    height: 199px;
    margin-bottom: 30px;
}

.advantage-item {
    position: relative;
	background: #FFFFFF;
	border-radius: 50px;
    margin-bottom: 32px;
	padding: 24px 24px 24px 85px;
}

.advantage-item-icon {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 55px;
	height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 173, 188);
	background: linear-gradient(to bottom, #95E0D6 0%, rgba(0, 227, 193, 1) 100%);
	border-radius: 100%;
}

.advantage-item-desc p {
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
    color: #000;
    margin: 0;
}

.advantage-image {
    position: relative;
    width: 307px;
    height: auto;
    float: right;
    border-radius: 23px;
}

.advantage-graphic {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 165px;
	height: auto;
}

@media ( min-width: 768px ) {
    .advantage-left {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .advantage-item {
        width: 49%;
    }
}

@media ( min-width: 1024px ) {
    .fpb-advantage {
        padding: 80px 0;
    }

    .advantage-content-flex {
        flex-direction: row;
    }

    .advantage-left {
        display: block;
        min-width: 475px;
    }

    .advantage-item {
        width: 100%;
    }

    .advantage-item-desc p {
        font-size: 22px;
    }

    .advantage-right {
        right: 0;
        width: calc(100% - 475px);
        height: auto;
        margin-left: 67px;
        padding-left: 124px;
        padding-bottom: 122px;
        order: 2;
        margin-bottom: 0;
    }

    .advantage-image {
        width: 836px;
        height: auto;
        float: none;
    }

    .advantage-graphic {
        width: auto;
        height: auto;
    }
}

@media ( min-width: 1200px ) {
    .fpb-advantage .container {
        max-width: 1264px;
    }

    .advantage-right {
        margin-left: 157px;
    }
}

.fpb-callout-bar h2 {
    font-size: 22px;
}

.fpb-callout-bar .cbc_btn_cont {
    margin-top: 20px;
}

@media ( min-width: 1024px ) {
    .fpb-callout-bar .cbc_btn_cont {
        margin-top: 0;
    }
}