:root {
    --swiper-theme-color: #2d0e2f;
    --blue: #5464C1;
    --darkblue: #140A32;
    --teal: #1DBEAD;
    --swiper-theme-color: #5464C1;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #908FB7;
}

p {
    margin-bottom: 0.8em;
}
p strong{
    color:#140A32;
}

p:last-child {
    margin-bottom: 0;
}

.small {
    font-size: 13px;
}

a {
    text-decoration: none;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.white {
    color: #fff;
}

h1, h2 {
    font-weight: normal;
}

h2, h1{
    font-weight: bold;
    font-size: 42px;
    line-height: 1.3;
    color: #151515;
    margin-bottom: 0.6em;
}


h2 span ,
h2.teal,
h1 span{
    color: var(--teal);
}

h3 {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 0.6em;
    color: #151515;
}

h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0.4em;
}

.font-small {
    font-size: 14px;
}

.center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

header {
    background: #140A32;
    position: relative;
    z-index: 9999;
}

header img.logo {
    display: block;
    width: 200px;
}
header img.logo-onboarding {
    display: block;
    width: 200px;
    margin: auto;
}
header a {
    color: #fff;
}

header .container {
    height: 75px;
    display: flex;
    align-items: center;
}
header .container-onboarding {
    height: 75px;
     text-align: center;
    align-items: center;
    padding-top: 10px;
}

header nav {
    margin-left: auto;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
}
nav .social-links{
    display:none;
}

header ul.menu {
    display: flex;
    height: 100%;
}

header li {
    display: flex;
    position: relative;
}

li.has-sub:after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    height: 50px;
    top: 100%;
}

header ul.menu li.has-sub>a {
    padding-right: 45px;
}

header ul.menu a {
    padding: 0 15px;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
}

header ul.menu>li>a {
    border-bottom: 3px solid transparent;
}

header ul.menu>li:hover>a {
    border-color: #32B2A3;
}

header ul.menu>li:hover>a {
    background-color: #ffffff2b;
}

header ul.menu>li>ul {
    display: block;
    position: absolute;
    background-color: #fff;
    border: 1px solid #C5C5DE;
    top: 100%;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    opacity: 0;
    pointer-events: none;
    visibility: visible;
    transition: all 0.3s ease;
}

header ul.menu>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    margin-top: 30px;
}

header ul.menu>li>ul {
}

header ul.menu>li>ul:before, header ul.menu>li>ul:after {
    content: '';
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 15px 18px 15px;
    border-color: transparent transparent #C5C5DE transparent;
    transform: rotate(0deg);
    position: absolute;
    left: 30px;
    top: -18px;
}

header ul.menu>li>ul:after {
    top: -17px;
    border-color: transparent transparent #ffffff transparent;
}

header ul.menu ul a {
    color: #151515;
    white-space: nowrap;
    height: 50px;
    display: flex;
    padding: 0;
    border-bottom: 1px solid #c5c5de45;
    /* min-width: 230px; */
    min-width: 170px;
    font-size: 14px;
}
header ul.menu ul a img{
    margin-right: 6px;
}
header ul.menu ul a:hover {
    color: var(--teal);
    font-size: 14px;
}

header ul.menu ul a svg {
    width: 27px;
    margin-right: 10px;
}

header ul.menu ul a path {
    fill: var(--teal);
}

header li.btn>a {
    background: #5464C1;
    border-radius: 20px;
    padding: 5px 30px;
    display: block;
    height: auto;
    margin: auto auto auto 20px;
}
header li.btn>a:hover {
    background-color: #1dbead !important;
        color: #ffffff !important;
}

header ul.menu>li.btn:hover>a {
    background-color: #1dbead;
    color: #ffffff;
    opacity: 1;
    border-color: transparent;
}

.menu .more {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
}

.menu .more:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: -0.125em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23fff' d='m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
}

/*menu btn*/
.m-menu {
}

.m-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: #fff;
    opacity: 1;
    right: 10px;
    border-radius: 2px;
}

.m-menu span:nth-child(1) {
    top: 12px;
}

.m-menu span:nth-child(2) {
    top: 20px;
}

.m-menu span:nth-child(3) {
    top: 28px;
}

.m-menu {
    transform: rotate(0);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 11;
    position: absolute;
    right: 20px;
    top: 13px;
    display: none;
    text-align: right;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.m-menu span {
    transform: rotate(0);
    transition: 0.25s ease-in-out;
}

.mm-open .m-menu span:nth-child(1) {
    top: 20px;
    transform: rotate(135deg);
}

.mm-open .m-menu span:nth-child(2) {
    opacity: 0;
    right: 60px;
}

.mm-open .m-menu span:nth-child(3) {
    top: 20px;
    transform: rotate(-135deg);
}

.hero {
    background-size: cover;
    padding: 100px 0;
    background-position: left bottom;
}

.hero .cta {
}

.margin-top-auto {
    margin-top: auto;
}

.margin-top-40 {
    margin-top: 40px;
}

.hero .slide {
    display: grid;
    grid-template-columns: 60% 1fr;
    margin-bottom: 100px;
}
.hero .slide-price {
    /* display: grid; */
    grid-template-columns: 60% 1fr;
    margin-bottom: 100px;
}
.slide-price .caption p{
    width: 63%;
    margin: 0 auto;
}
.hero .slide.justify{
    align-items: center;
}
.hero .slide.equal{
    grid-template-columns: 1fr 1fr;
}
.hero .slide.margin-bottom-0{
    margin-bottom:0;
}

.hero .caption {
    display: flex;
    flex-direction: column;
}
.hero .sub-title{
    color:var(--teal);
    font-size:25px;
    font-weight:500;
}

.hero .img img {
    max-width: 100%;
}

.hero h2 ,
.hero h1{
    font-weight: bold;
    font-size: 56px;
    line-height: 1.3em;
    margin-bottom: 0.3em;
}

.hero h2 span {
    color: var(--teal);
}

.hero .caption p {
    color: #6C6B92;
    font-size: 18px;
    margin-bottom: 2em;
}

.hero.sub .caption p {
    font-size: 20px;
}

.hero.sub h2 ,
.hero.sub h1{
    font-size: 42px;
}
.hero ul{
    font-size: 17px;
    max-width: 600px;
}
.hero li{
    display:block;
    padding: 5px 0 5px 40px;
    background:url(../images/list-icon-1.svg) no-repeat 0 0;
    background-size:30px;
    margin-bottom: 5px;
}



.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #c5c5de;
}
.image-row-as-seen{
    display: grid;
    grid-gap: 20px;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #c5c5de;
}
.image-row-as-seen .brands{

    background: #fff;
}
.image-row>div {
    flex-grow: 1;
}

.image-row img {
    width: 55px;
}

.image-row h4 {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.2;
}

.sms-ftr-row-wrap{
    border: 1px solid #908FB7;
    border-radius: 16px;
    margin-bottom: 80px;
}
.sms-ftr-row{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    text-align: left;
    padding: 30px;
    border-radius: 20px;

}
.sms-ftr-row ul{
    list-style: none;
}
.sms-ftr-row ul li{
    padding-left: 20px;
    line-height: 30px;
}
.sms-ftr-row ul li::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%0A%3Csvg enable-background='new 0 0 128 128' viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%235563C1' d='m44 108c-1.023 0-2.047-.391-2.828-1.172-1.563-1.563-1.563-4.094 0-5.656l37.172-37.172-37.172-37.172c-1.563-1.563-1.563-4.094 0-5.656s4.094-1.563 5.656 0l40 40c1.563 1.563 1.563 4.094 0 5.656l-40 40c-.781.781-1.805 1.172-2.828 1.172z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-left: -23px;
    position: absolute;
    margin-top: 7px;

    /* left: 20px;

    margin-top: -15px; */

}
.sms-ftr-row a{
    color: #908FB7;
}
.sms-ftr-row a:hover{
    color:#1dbead;
}

a.btn {
    color: #fff;
    background-color: var(--darkblue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--darkblue);
}

.hero a.btn, a.btn.large {
    padding: 14px 50px;
}

a.btn.teal {
    background-color: var(--teal);
    border-color: var(--teal);
}

a.btn:hover {
    background-color: #fff;
    color: var(--darkblue);
}

a.btn svg {
    width: 20px;
    margin-left: 4px;
    margin-top: 2px;
}

a.btn.outline {
    background-color: transparent;
    color: var(--darkblue);
    border: 2px solid var(--darkblue);
}

a.btn.outline:hover {
    background-color: var(--darkblue);
    color: #fff;
}

a.btn:hover path {
    fill: var(--darkblue);
}

a.btn.outline:hover path {
    fill: #fff;
}

a.btn.plain {
    padding: 0;
    background: transparent;
    color: var(--darkblue);
    border: none;
}
a.btn.plain:hover{
    text-decoration:underline;
}

a.btn.arrow:after {
    content: '';
    display: block;
    width: 18px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg enable-background='new 0 0 128 128' viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Right_Arrow_4_' d='m44 108c-1.023 0-2.047-.391-2.828-1.172-1.563-1.563-1.563-4.094 0-5.656l37.172-37.172-37.172-37.172c-1.563-1.563-1.563-4.094 0-5.656s4.094-1.563 5.656 0l40 40c1.563 1.563 1.563 4.094 0 5.656l-40 40c-.781.781-1.805 1.172-2.828 1.172z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-left: 5px;
}

a.btn.white {
    border-color: #fff;
    background-color: #fff;
    color: var(--darkblue);
    font-weight: 600;
}

a.btn.white:hover {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
    color: #fff;
}

.hero a.btn {
    margin-right: 20px;
}

.brands {
    background-color: #F7F8FC;
    padding: 30px 0;
    text-align: center;
}
.brands.style-2{
    background-color:transparent;
    border:1px solid #C5C5DE;
    border-radius:20px;
}

.brands h3 {
    font-weight: normal;
    font-size: 20px;
    color: #7B7AA6;
    margin-bottom: 0.8em;
}

.brands img {
    display: block;
    height: 48px;
    margin: auto;
}

.section {
    padding: 80px 0;
}
.section.padding-bottom-0{
    padding-bottom:0;
}

.imagebox {
    display: flex;
}

.imagebox .image {
    flex-grow: 1;
}

.imagebox .text {
    flex: 0 60%;
}

.imagebox.right-image, .row.reverse {
    flex-direction: row-reverse;
}

.monitoring .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    padding-top: 30px;
}

.monitoring .content-box {
}

.monitoring .content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
}

.monitoring .content-box img {
    margin-bottom: 20px;
}

.monitoring .cta {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.content-box.teal {
    background: #1dbead26;
    color: #88ABB6;
}

.content-box.teal h3 {
    color: #1dbead;
}

.content-box.peri {
    background: #F0EDFF;
    color: #908FB7;
}

.content-box.peri h3 {
    color: #1dbead;
}

.content-box.orange {
    background: #e7caa23d;
    color: #B7A28F;
}

.content-box.orange h3 {
    color: #DDBF91;
}

.content-box.blue {
    background: #EDFAFF;
    color: #8FA4B7;
}

.content-box.blue h3 {
    color: #86C6E6;
}

a.btn.small {
    padding: 10px 25px;
}

.section.features {
    background: rgb(91,89,196);
    background: linear-gradient(123deg, rgba(91, 89, 196, 1) 0%, rgba(224, 235, 251, 1) 94%);
    color: #fff;
}

.features h2 {
    color: #fff;
}

.features .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 40px;
    padding: 30px 0;
}

.feature {
    position: relative;
    padding-left: 70px;
    font-size: 14px;
}

.feature img {
    position: absolute;
    left: 0;
    top: 5px;
}

.features .btn {
    margin-bottom: 30px;
}

.protect {
    background: #f7f8fc;
    font-size: 14px;
}

.image-tabs .row {
    display: flex;
    gap: 20px;
}

.image-tabs .images {
    flex: 0 0 40%;
    position: relative;
}

.image-tabs .image {
    display: none;
}

.image-tabs .image.active {
    display: block;
}

.image-tabs .img {
    display: block;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 #00000008;
}

.image-tabs .img.no-shadow {
    box-shadow: none;
}

.image-tabs .tabs {
    flex-grow: 1;
}

.image-tabs h3 {
    font-size: 20px;
    color: #151515;
}

.image-tabs h3 span {
    color: #5B59C4;
    display: inline-block;
    width: 30px;
}

.image-tabs .tabs, .image-tabs .feature-items {
    display: flex;
    flex-direction: column;
}

.image-tabs .feature-items {
    font-size: 14px;
}

.image-tabs .tab {
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
}

.image-tabs .feature-items .tab {
    cursor: initial;
}

.image-tabs .tab a.btn {
    display: none;
}

.image-tabs .tab.active {
    background: #fff;
    box-shadow: 0 4px 4px 0 #00000005;
}

.image-tabs .highlight-gray .tab.active {
    background: #F7F8FC;
}

.image-tabs .tab.active a.btn {
    display: inline-flex;
}

.steps {
    --swiper-theme-color: #5464C1;
}

.steps .row {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
}

.steps .slider {
    flex: 0 0 40%;
    max-width: 40%;
}
.swiper-pagination {
    position: absolute;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    z-index: 1;
    gap: 6px;
}
.swiper-pagination .swiper-pagination-bullet{
    display: block;
    width: 12px;
    height: 12px;
    background: #e5e7ed;
    border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color:#5464C1;
}

.steps .swiper-pagination {
    bottom:30px;
}

.steps h3 {
    color: #151515;
    display: flex;
    align-items: center;
    gap: 20px;
}

.steps h3 span {
    display: inline-block;
    background-color: #fff;
    border: 2px solid var(--teal);
    color: var(--teal);
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 23px;
    font-weight: 500;
}

.steps .active.active h3 span {
    display: inline-block;
    background-color: var(--teal);
    color: #fff;
}

.steps .step {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.steps .step:after {
    content: '';
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 14px 0 14px 19px;
    border-color: transparent transparent transparent #F7F8FC;
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -14px;
    opacity: 0;
}

.steps .step.active {
    background-color: #F7F8FC;
}

.steps .step.active:after {
    opacity: 1;
}

.testimonials .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review {
    border: 1px solid #C5C5DE;
    padding: 20px;
    border-radius: 20px;
}

.review .name {
    display: flex;
    font-weight: 500;
    font-size: 18px;
    color: #151515;
    align-items: center;
    padding-bottom: 20px;
}

.review .avatar {
    width: 48px;
    margin-right: 10px;
}

.review .star {
    margin-left: auto;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.buttons.left{
    justify-content: flex-start;
}

.why.image-tabs .row {
    padding: 20px 0 40px;
}

.image-tabs.reverse .row {
    flex-direction: row-reverse;
}

.image-tabs.why .tab.active {
    background-color: #f0edff;
}

.image-tabs.why h3 {
    font-size: 18px;
}

.image-tabs.why {
    font-size: 14px;
}

.image-tabs.why .images {
    padding-left: 60px;
}

.image-tabs.why .dots {
    position: absolute;
    z-index: 1;
    right: -40px;
    bottom: 100px;
}

.why-icon-1 {
    position: absolute;
    width: 245px;
    left: -10px;
    top: 30px;
}

.why-icon-2 {
    position: absolute;
    width: 245px;
    left: 0;
    top: 10px;
}

.why-icon-3 {
    position: absolute;
    width: 245px;
    left: 0;
    top: 30px;
}

.why-icon-4 {
    position: absolute;
    width: 135px;
    left: 10px;
    top: 30px;
}

.section.grey, .hero.grey {
    background-color: #F7F8FC;
    padding-top: 50px !important;
    padding-bottom: 10px !important;

}

.promise .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding-top: 20px;
}

.promise .content-box {
    background-color: #fff;
    box-shadow: -9px -1px 20px #29194d0f;
    border-radius: 20px;
    padding: 20px;
    font-size: 13px;
}

.promise h3 {
    font-size: 18px;
    border-bottom: 1px solid #C5C5DE;
    padding-bottom: 10px;
}

.promise h3 span {
    color: #5B59C4;
}

.qa {
    margin-bottom: 20px;
}

.qa h3 {
    font-size: 18px;
    background-color: #F7F8FC;
    border-radius: 20px;
    padding: 20px 60px 20px 20px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}

.answer {
    padding: 20px 20px 10px;
    display: none;
}

.qa h3:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml,%0A%3Csvg enable-background='new 0 0 128 128' viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%235563C1' d='m44 108c-1.023 0-2.047-.391-2.828-1.172-1.563-1.563-1.563-4.094 0-5.656l37.172-37.172-37.172-37.172c-1.563-1.563-1.563-4.094 0-5.656s4.094-1.563 5.656 0l40 40c1.563 1.563 1.563 4.094 0 5.656l-40 40c-.781.781-1.805 1.172-2.828 1.172z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-left: 5px;
    position: absolute;
    right: 20px;
    top: 30px;
    margin-top: -15px;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

h3.active+.answer {
    display: block;
}

h3.active:after {
    transform: rotate(270deg);
}

.blog .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding-top: 20px;
}

.blog .post {
    padding: 20px;
    border: 1px solid #C5C5DE;
    border-radius: 20px;
}

.blog .post img {
    margin-bottom: 20px;
    width: 100%;
}

.blog .title {
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    margin-bottom: 20px;
}

.blog .action {
    display: flex;
    justify-content: space-between;
}

.blog a {
    font-weight: bold;
    color: #151515;
}

.blog a:hover {
    color: var(--teal);
}

.trial .container {
    background: rgb(91,89,196);
    background: linear-gradient(123deg, rgba(91, 89, 196, 1) 0%, rgba(224, 235, 251, 1) 94%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
}

.trial h2 {
    font-weight: 500;
    font-size: 25px;
    color: #fff;
}

.trial .info {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 50px;
}

.trial .image {
    flex: 0 0 50%;
    position: relative;
    padding-left: 80px;
}

.trial .image img {
    border-radius: 20px;
}

.trial .image-icon {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    background-color: #fff;
    border-radius: 20px;
    color: #151515;
    position: absolute;
    left: 0;
    width: 230px;
    padding: 12px;
    align-items: center;
}

.trial .image-icon img {
    width: 45px;
}

.trial .image-icon.icon-1 {
    top: 20px;
}

.trial .image-icon.icon-2 {
    top: 100px;
}

.footer {
    background-color: #140A31;
    padding-top: 70px;
    font-size: 15px;
}

.footer h4 {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.footer .container {
    display: flex;
    gap: 70px;
}

.footer li {
    display: block;
}

.footer a {
    color: #ffffff80;
    padding: 5px 0;
    display: block;
}

.footer a:hover {
    color: #fff;
}

.footer .company {
    flex-grow: 1;
}

.footer .logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer .company h4 {
    font-weight: normal;
}

.footer .social-link {
    display: flex;
    gap: 10px;
}

.footer .social-link a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding: 15px;
    width: 100%;
    border-top: 1px solid var(--teal);
    margin-top: 30px;
}
.copyright a {
  display: inline-block;
  margin-right: 15px;
}
.key-features {
    border-radius: 20px;
    border: 1px solid #C5C5DE;
    padding: 35px;
    font-size: 14px;
}

.key-features .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-top: 30px;
}

.key-features h4 {
    font-weight: bold;
    font-size: 16px;
    color: #151515;
    display: flex;
    gap: 10px;
    align-items: center;
}

.section-info {
    max-width: 1020px;
    margin: auto;
    padding-bottom: 40px;
}

.phone-monitoring .row {
    display: flex;
    gap: 20px;
    /* align-items: flex-start; */
}

.phone-monitoring .image {
    flex: 0 0 45%;
}

.phone-monitoring .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
    flex-grow: 1;
    /* align-content: center; */
}

.phone-monitoring .icon-box {
    background: #fff;
    border-radius: 15px;
    font-size: 13px;
    padding: 20px;
}

.phone-monitoring .icon-box img {
    width: 45px;
}

.phone-monitoring h3 {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gradient-1 {
    background: rgb(91,89,196);
    background: linear-gradient(112deg, rgba(91, 89, 196, 1) 0%, rgba(224, 235, 251, 1) 94%);
    color: #fff;
}

.safety {
}

.safety .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.safety .icon-box {
    background: #fff;
    border-radius: 20px;
    padding: 20px 20px 20px 90px;
    position: relative;
    font-size: 14px;
    color: #9C9BB1;
}

.safety .icon-box img {
    position: absolute;
    left: 20px;
    top: 23px;
    display: block;
    width: 54px;
}

.safety h3 {
    font-size: 18px;
}

.usage-icon-2-1 {
    position: absolute;
    left: -40px;
    top: 30px;
    width: 140px;
}

.usage-icon-2-2 {
    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 190px;
}

.usage-icon-3-1 {
    position: absolute;
    left: -40px;
    top: -35px;
    width: 130px;
}

.usage-icon-3-2 {
    position: absolute;
    right: -20px;
    top: 70px;
    width: 160px;
}

.policy {
}

.policy .container, .border-box {
    border: 1px solid #C5C5DE;
    border-radius: 20px;
    padding: 35px;
}

.policy .row {
    display: flex;
    gap: 30px;
}

.policy .image {
    flex: 0 0 40%;
}

.policy .image img {
    width: 100%;
}

.policy .info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.policy h4 {
    background: url(images/icon-check.svg) no-repeat 0px 5px;
    padding: 10px 0 10px 45px;
    color: #151515;
}

.benefits {text-align: center;}

.benefits .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.benefits h4 {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #151515;
}

.benefits img {
    margin-bottom: 10px;
}

.benefits .row>div {
    border-radius: 20px;
    border: 1px solid #C5C5DE;
    padding: 20px;
    font-size: 14px;
}

.how-it-work {
}

.how-it-work .row {
    display: flex;
    gap: 50px;
}

.how-it-work .steps {
}

.how-it-work .step {
    padding: 0 0 60px 70px;
}

.how-it-work .step:before {
    content: '';
    display: block;
    background-color: #5B59C4;
    width: 1px;
    top: 60px;
    bottom: 20px;
    left: 27px;
    position: absolute;
}

.how-it-work .step:last-child:before {
    display: none;
}

.how-it-work h4 {
    font-size: 20px;
    font-weight: bold;
    color: #151515;
}

.how-it-work .image {
    flex: 0 0 53%;
}

.how-it-work h4 span {
    width: 54px;
    height: 54px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #5B59C4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -10px;
}

.pricing {
}

.pricing .row {
    display: flex;
    gap: 20px;
}

.pricing .price-box {
    flex-grow: 1;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    border:1px solid #5564C2;
    font-size: 18px;
    text-align: left;
    flex: 0 0 50%;
}

.pricing .price-box:before {
}
.pricing .price-box>*{
    position:relative;
}
.price-box.gray{
    background-color:#F7F8FC;
}
.pricing .price-box a.btn{
    padding:12px 50px;
}
.price-box .title{
    font-size:25px;
    font-weight:500;
    color:#151515;
    display:flex;
}
.price-box .title span{
    display:block;
    margin-left:auto;
    font-size:17px;
    font-weight:500;
    background-color:#F1F3F9;
    padding:10px 30px;
    border-radius:20px;
    color:#5564C2;
}
.price-box .compatible{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.price-box.gray .title span{
    background-color:#fff;
}
.price-box .price{
    font-weight: 500;
    font-size:63px;
    color:#151515;
}
.price-box .price span{
    font-size:20px;
    color:#7B7AA6;
}
.price-row{
    display:flex;
    border-bottom: 1px solid #a9b3e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.price-box .price-info{
    margin: auto 0 15px auto;
    font-weight: 600;
}
.price-box .features h4{
    font-size:20px;
    color:#151515;
    font-weight:600;
}
.price-box ul{
    margin-bottom:20px;
}

.price-box ul li{
    font-size:18px;
    font-weight: 500;
    background: url(../images/icon-check-2.svg) no-repeat 0px center;
    background-size:35px;
    display:block;
    min-height: 40px;
    padding: 10px 0 10px 50px;
}

.features-box{

}
.features-box .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.features-box .row .intro{
    padding-right:50px;
}
.icbox-2{
 padding:40px;
    border-radius:20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.icbox-2>div{
    background-color:#fff;
    border-radius:15px;
    padding:20px;
    font-size:13px;
    color:#908FB7;
}
.icbox-2 h3{
    font-size:16px;
    display:flex;
    gap:10px;
    align-items: center;
}
.icbox-2 img{
    width:54px;
}

.how-steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding-top: 50px;
    align-items: start;
}
.how-steps>div{
    background-color:#F7F8FC;
    position:relative;
    padding:20px;
    border-radius:20px;
}
.how-steps h3{
    display:flex;
    gap:10px;
    align-items: center;
}
.how-steps .step-1,
.how-steps .step-3{
    margin-top:50px;
}
.how-steps .step-1:before{
    content:'';
    display:block;
    background:url(images/arrow-1.svg) no-repeat center;
    background-size:contain;
    width:56px;
    height:140px;
    position:absolute;
    right:-10px;
    bottom: 100%;
    transform:rotate(63deg);
}

.how-steps .step-2:before{
    content:'';
    display:block;
    background:url(images/arrow-2.svg) no-repeat center;
    background-size:contain;
    width:56px;
    height:140px;
    position:absolute;
    right:-10px;
    top: 100%;
    transform: rotate(-63deg);
}

.videobox .row{
    display:flex;
    gap:50px;
}
.videobox .row .video{
    flex:0 0 55%;
}
.videobox .row .video iframe{
    width:100%;
}

.feature-slider{
    font-size:13px;
    padding-top: 30px !important;
}
.feature-slider .swiper-slide{
    transform-origin: center;
    max-width: 225px;
    /* transition:all 0.5s ease; */
    padding: 10px;
    transition-delay:0.2s;
}
.feature-slider  .swiper-slide-active{
}

.feature-slider .swiper-slide{
    /* transform: scale(0.8) !important; */
}
.feature-slider .text{
    transition:all 0.5s ease;
    max-height:0;
        overflow:hidden;
}
.feature-slider  .swiper-slide-active{
    transform: scale(1) !important;
    min-width: 300px;
    max-width: 300px;
}
.feature-slider  .swiper-slide-active .text{
    display:block;
    max-height: 50px;

}
.feature-slider  .swiper-slide-active a{
    color: #908FB7;
}

.feature-slider .fbox{
    border-radius:20px;
    background-color:#f7f8fc;
    text-align:center;
    padding: 20px;
    transition:all 0.5s ease;
}
.feature-slider .swiper-slide-active .fbox{
    transform:translateY(-30px);

}


.feature-slider img{
    width:50px;
    display: block;
    margin: auto auto 10px;
}
.feature-slider h3{
    display:flex;
    flex-direction:column;
    text-align: center;
    font-size: 16px;
}
.fslider{
    position:relative;
}
.swiper-button-prev,
.swiper-button-next{
    display:block;
    position:absolute;
    z-index:22;
    width:45px;
    height:45px;
    top: 50%;
    background: url(../images/slider-arrow.svg) no-repeat center;
    background-size: contain;
    cursor:pointer;
    margin-top: -30px;
}
.swiper-button-prev{
    left: -50px;
    transform:rotate(180deg);
}
.swiper-button-next{
    right: -50px;
}
.feature-slider .swiper-wrapper{
    transition-property: transform, margin;
    /* margin-left: 15px; */
}

.column-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-gap:30px;
}
.benefit-image{
    position:relative;
    padding-top:50px;
}
.benefit-image a.btn{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:30px;
    padding: 12px 50px;
    box-shadow: 0 4px 4px 0 #00000026;
}

.check-boxes{
    font-size:13px;
}
.check-boxes>div{
    font-size:13px;
    background-color:#fff;
    border-radius:20px;
    padding:20px;
}

.check-boxes h3 {
  font-size: 18px;
  border-bottom: 1px solid #C5C5DE;
  background: url(../images/list-icon-1.svg) no-repeat 0 0;
  background-size: 25px;
  padding: 1px 0 11px 50px;
}


.support-options .row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.support-options .sbox{
    background-color:#fff;
    border-radius:20px;
    padding:20px;
    font-size: 13px;
    display:flex;
    flex-direction:column;
    align-items: flex-start;
}
.support-options .sbox img{
    display:block;
    width:60px;
    margin-bottom:30px;
}
.support-options .sbox.plain{
    background-color:transparent;
    padding:0;
    font-size: 14px;
}
.support-options h3{
    font-size:18px;
}
.support-options a.btn{
    font-size:16px;
    font-weight:600;
    margin-top:auto;
}

.contact-us .content{
    display:flex;
    flex-direction:column;
    align-items: flex-start;
}
.contact-us .social-links{
    margin-top:auto;
}
.contact-us .social-links h4{
    font-size:18px;
    font-weight:normal;
}
.contact-us .links{
    gap:8px;
    display:flex;
}
.contactbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding:40px;
    border-radius:20px;
    color:#908FB7;
    font-size:13px;
}
.contactbox h3{
    font-size:16px;
    display:flex;
    align-items: center;
    gap: 10px;
}
.contactbox h3 img{
    width:30px;
}
.contactbox>div{
    background-color:#fff;
    border-radius:12px;
    padding:20px;
}
.price-tab-btn{
    height:69px;
    border-radius:50px;
    border:1px solid #C5C5DE;
    display:inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    margin-bottom: 40px;
}
.price-tab-btn li{
        padding: 0 50px;
        background-color:transparent;
        height:100%;
        display: flex;
        align-items: center;
        border-radius: 45px;
        font-size: 17px;
        font-weight: 500;
    cursor:pointer;
    transition:all 0.3s ease;
}
.price-tab-btn li.active{
    color:#fff;
    background-color:var(--teal);
}
.payment-info{
    padding-top:30px;
}
.payment-info img{
    height:25px;
}
.price-pack .row{
    display:none;
}
.price-pack .row.active{
    display:flex;
}
.mobile-flex,
.mobile-block{
    display: none !important;
}
@media(max-width:1200px){
    .container{
        padding:0 20px;
    }
}
@media(max-width:1024px){
    header nav{
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 222;
        background-color: #fff;
        height: auto;
        font-size: 16px;
        padding: 20px;
        transform:translateY(10px);
        transition:all 0.3s ease;
    }
    .m-menu{
        display:block;
    }
    .mm-open header nav{
        opacity:1;
        pointer-events:all;
        visibility:visible;
        box-shadow: 0 0 5px #00000091;
        transform:translateY(0);
    }

    header ul.menu>li:hover>a,
    header a{
        color:#151515;
    }
    header ul.menu{
        flex-direction:column;
    }
    header ul.menu>li{
        margin-bottom:10px;
        flex-direction: column;
    }
    header ul.menu>li>a{
        border:none;
        background-color:#F7F8FC;
        display:block;
        width:100%;
        padding: 10px 20px;
        border-radius:20px;
    }
    header ul.menu>li:hover>a{
        background-color:#F7F8FC;
    }
    header ul.menu>li:hover>ul,
    header ul.menu>li>ul{
        position: relative;
        top: 0;
        left: 0;
        opacity: 1;
        opacity: 1;
        pointer-events: all;
        visibility: visible;
        margin-top: 30px;
        padding: 0;
        border: none;
        margin: 0;
        font-size: 14px;
        padding-left: 20px;
        display: none;
    }
    header ul.menu>li.active>ul{
        display: block;
    }
    header ul.menu>li>ul:before, header ul.menu>li>ul:after{
        display:none;
    }
    header ul.menu ul a svg{
        width:23px;
    }
    header ul.menu ul a{
        width:100%;
    }
    header ul.menu ul li:last-child>a{
        border-bottom:0;
    }
    header ul.menu>li.btn>a{
        background-color:#5464c1;
        color:#fff;
        margin:0;
        text-align:center;
        padding: 12px;
        border-radius: 30px;
    }
    header ul.menu>li.btn>a:hover {
        background-color: #1dbead !important;
        color: #ffffff;
    }
    nav .social-links{
        display:flex;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
    }
    nav .social-links h4{
        font-size:14px;
        font-weight:normal;
    }
    nav .social-links .links{
        display:flex;
        justify-content: center;
        gap: 10px;
    }
    nav .social-links img{
        width:40px;
    }
    .menu .more{
        /* top: 0px;
        right: 0;
        margin: 0;
        padding: 10px 15px;
        width: auto;
        height: auto;
        cursor: pointer; */
        top: 0px;
        right: 15px;
        margin: 0;
        padding: 10px 15px;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    .menu .more:after {
    /* background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23151515' d='m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0'/%3E%3C/svg%3E") no-repeat center;
    width: 20px;
    height: 20px;
    background-size: contain;
    margin-top: 0px;
    transition: all 0.3s ease;
    transform: rotate(180deg); */


    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23151515' d='m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0'/%3E%3C/svg%3E") no-repeat center;
        width: 20px;
        height: 20px;
        background-size: contain;
        margin-top: 0px;
        transition: all 0.3s ease;
        transform: rotate(180deg);
        position: absolute;
        right: 0px;
    }
    .menu .active .more:after {
        transform: rotate(0deg);
    }
    .hero h2, .hero h1, .trial .info{
        font-size:40px;
    }
    .section.policy{
        padding:50px 20px;
    }

}

@media(max-width: 767px){
    body{
        color: #7B7AA6;
    }
    .price-box .price{
        font-size:40px;
    }
    .hero h2, .hero h1,
    .trial .info,
    .hero.sub h2, .hero.sub h1{
        font-size: 28px;
    }
    h2, h1{
        font-size:24px;
    }
    .price-box .title{
        font-size:20px;
    }
    .how-steps h3{
        font-size:18px;
    }
    .hero .caption p,
    .steps h3,
    .trial h2,
    .hero.sub .caption p,
    .how-it-work h4,
    .price-box ul li{
        font-size:16px;
    }
    .steps .step,
    .qa h3,
    .answer,
    .price-box .price span,
    .price-box .price-info,
    .contact-us .social-links h4{
        font-size:14px;
    }
    .steps h3 span{
        font-size:13px;
    }


    .mobile-flex{
        display: flex !important;
    }
    .mobile-block{
        display: block !important;
    }
    .desktop-flex,
    .desktop-block{
        display:none !important;
    }

    .hero .slide{
        display:flex;
        flex-direction:column;
    }
    .features .row{
        grid-template-columns:1fr;
    }

    .hero .cta{
        display:flex;
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
    .hero .img{
        padding-top:50px;
    }
    .hero.sub .img{
        margin-bottom:40px;
    }
    .hero,
    .section{
        padding:50px 0;
        overflow: hidden;
    }
    a.btn{
        justify-content: center;
    }
    .hero .image-row{
        background-color:#fff;
        border-radius:20px;
        border:1px solid #C5C5DE;
        grid-template-columns:1fr;
        padding:30px;
        gap:30px;
    }
    .slide-price .caption p{
        width: 96%;
        margin: 0 auto;
    }
    .brands img{
        height:auto;
        max-width:200px;
    }
    .imagebox.right-image, .row.reverse,
    .image-tabs .row,
    .steps .row,
    .image-tabs.reverse .row,
    .trial .container,
    .footer .container,
    .buttons,
    .pricing .row,
    .policy .row,
    .videobox .row{
        flex-direction:column;
    }
    .imagebox .image{
        text-align:center;
    }
    .section.features ,
    .gradient-1{
        background: linear-gradient(90deg, rgba(91, 89, 196, 1) 0%, #a9bde4 94%);
    }
    .steps .slider{
        flex:0 0 100%;
        max-width: 100%;
    }
    .image-tabs.why .images{
        padding:0 30px;
    }
    .why-icon-2{
        width:130px;
    }
    .image-tabs.why .dots{
        bottom: 20px;
        width: 80px;
        right: 0px;
    }
    .why-icon-1,
    .why-icon-3{
        width:115px;
    }
    .why-icon-4{
        width:80px;
        left: -10px;
    }
    .section.trial{
        padding:50px 20px;
    }
    .trial .image{
        padding: 0;
        margin-bottom: 30px;
    }
    .trial .image-icon{
        font-size:6px;
        border-radius: 9px;
        padding: 8px;
        width: 110px;
    }
    .trial .image-icon img{
        width:20px;
    }
    .trial .image-icon.icon-1{
        top: 20px;
        left:10px;
    }
    .trial .image-icon.icon-2{
        top: 65px;
        left: 10px;
    }
    .trial .container{
        padding:20px;
    }
    .trial .info{
        margin-bottom:30px;
    }
    .footer .container{
        gap:20px;
    }
    .footer{
        padding-top:40px;
    }
    .phone-monitoring .features{
        grid-template-columns:1fr 1fr;
    }
    .phone-monitoring .image{
        order:99;
    }
    .hero li{
        background-size:25px;
        background-position: 0px 3px;
        font-size: 14px;
        min-height: 37px;
        padding-left: 35px;
    }
    .image-tabs.feature-tabs .tab{
        padding-left:0;
        padding-right:0;
    }
    .how-it-work h4 span{
        width: 45px;
        height: 45px;
        font-size: 15px;
        top: 0;
    }
    .how-it-work .step{
        padding-bottom: 30px;
        padding-left: 60px;
        padding-l;
    }
    .how-it-work .step:before{
        left:22px;
    }
    .how-it-work .image{
        order:10;
    }
    .how-it-work .row{
        gap:20px;
    }
    .pricing .price-box a.btn{
        width:100%;
    }
    .policy .container,
    .icbox-2,
    .contactbox{
        padding:20px;
    }

    .appstore-link{
        text-align:center;
    }
    .features-box .row{
        grid-template-columns:1fr;
        gap:30px;
    }
    .how-steps img{
        width:50px;
    }
    .how-steps{
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 0;
    }
    .how-steps .step-1:before{
        width: 30px;
        transform: rotate(180deg);
        height: 75px;
        right: -32px;
        bottom: -40px;
        margin-top: 0;
    }
    .how-steps .step-2:before{
        width: 30px;
        transform: rotate(0deg);
        height: 75px;
        left: -32px;
        bottom: -42px;
        margin-top: 0;
        top: auto;
    }
    .how-steps .step-3,
    .how-steps .step-1{
        margin-top:0;
    }
    .features-box .row .intro{
        padding-right:0;
    }
    .videobox .row{
        gap:0;
    }
    .column-2{
        grid-template-columns:1fr;
    }
    .benefit-image a.btn{
        width:100%;
        position:relative;
        transform: none;
        left: 0;
        bottom: 0;
        padding: 15px;
    }
    .benefit-image{
        margin-left:-20px;
        margin-right:-20px;
    }
    .benefit-image>div{
        padding: 20px 20px 50px 20px;
    }
    .slider-section .container{
        padding:0;
    }
    .swiper-button-prev{
        left:20px;
        top:100%;
    }
    .swiper-button-next{
        right:20px;
        top:100%;
    }
    .feature-slider .swiper-wrapper{
        margin-left:0 !important;
    }
    .hero a.btn{
        margin-right:0;
    }
    .support-options h2{
        font-size:42px;
    }
    .contact-us .social-links{
        justify-content: space-between;
        align-items: center;
    }
    .contact-us .social-links h4{
        margin-bottom:0;
    }
    .contact-us .social-links img{
        width: 40px;
    }
    .monitoring .content-box{
        text-align:left;
    }
    .monitoring .content-box img{
        width:50px;
    }
    .monitoring .content-box h3{
        font-size:20px;
    }
    .price-tab-btn li{
        padding: 0px 20px;
        font-size: 15px;
    }
    .price-box .compatible img{
        height:40px;
    }
}
.remove-cursor-pointer{
    cursor: text !important;
}
.nav-more-ftr-link a{
    text-align: center;
    display: block !important;
    padding: 0 !important;
    padding-top: 15px !important;
    border: none !important;
    height: auto !important;
    min-width: auto !important;
}
.test-fre-mid{
    text-align: left;
    padding-top: 20px;
}
.test-fre-mid h4{
    padding: 0px !important;
}
.test-fre-mid img{
    position: relative;
    top:10px;
}
.test-fre-mid p{
    padding-top: 0px;
}

/* .on-boarding-wrapper{} */

.on-boarding-wrapper .row {
    display: grid;
    grid-template-columns: repeat(1,  5fr  1fr 5fr 1fr 5fr);
    gap: 10px;
    align-items: flex-start;
}
/* .on-boarding-wrapper .row .ob-steps{
    gap: 20px;
} */


.on-boarding-wrapper .icon-box {
    background: #fff;
    border-radius: 15px;
    font-size: 13px;
    padding: 20px;
}
.on-boarding-wrapper .icon-box h3 {

    font-size: 18px;
}


.ob-steps>div {
    position: relative;
    text-align: center;
    line-height: 45px;
}
.ob-steps>div a {
    display: block;
    color: #908FB7;
    font-size: 14px;
    background-color: #F7F8FC;
    padding:0px 8px ;
    height:45px;
    border-radius:50px;
    border:1px solid #908FB733 ;
}
.ob-steps>div.completed a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    background-color:  #5564C2;
    ;
    padding:0px 8px ;
    height:45px;
    border-radius:50px;
    border:1px solid #5564C2 ;
}
.ob-steps>div.completed a > img {
    position: relative;
    top: 6px;
}

.ob-steps>div.current a {
    display: block;
    color: #5564C2;
    font-size: 14px;
    background-color: #F0EDFF;
    padding:0px 8px ;
    height:45px;
    border-radius:50px;
    border:1px solid #F0EDFF ;
}




.how-box-step-gap-1,
.how-box-step-gap-2 {
    flex: 1 0 20%; /* Single width columns */
    border-bottom: 1px solid #cecece;
    padding-top: 22px;
}

@media screen and (max-width: 992px) {
    .on-boarding-wrapper .row {
        display: grid;
        grid-template-columns: repeat(1,  1fr) !important;
        gap: 20px;
        align-items: flex-start;
    }
    .slide-price .caption p{
        width: 80%;
        margin: 0 auto;
    }
    .ob-steps {
      display: none !important;
    }
}
.create-account-content{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 50px !important;
}
.cac-img{
    background-color: #f7f8fc;
    border-radius: 16px;
    border: 1px solid #EAEBEF;
    padding: 16px;
    order: 1;
}
.cac-content {
  order: 2;
}
.cac-vid{
    background-color: #140A32;
    border-radius: 16px;
    border: 1px solid #EAEBEF;
    padding: 16px;
    display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
}
.cac-img .icon-box{
    margin-bottom: 16px;
}
.cac-img .icon-box-last{
    margin-bottom: 0px;
    background: #fff;
    border-radius: 15px;
    font-size: 13px;
    padding: 20px;
}
.cac-img-top{
          text-align: center;
          margin: 20px 0;
}
.cac-img-bottom{
    text-align: center;
    padding: 20px 20px;
}
.cac-content .buttons {
    justify-content: left;
}
.cac-content .buttons a{

    color: #ffffff !important;
}
.cac-content .buttons a svg{
     fill: #ffffff !important;
}
.cac-content .buttons a:hover {
    color:#140a32 !important;
}
.cac-content h3{
    color: #1DBEAD;
    font-size: 35px !important;
}
.cac-content h5{
    color: #000000;
    font-size: 24px !important;
    padding-bottom: 16px;
}
.cac-content form .input-box{
    background-color: #F7F8FC;
    height: 55px;
    border-radius: 16px;
    color: #B0AFCC !important;
    border: 0px;
    padding: 10px 20px;
    font-size: 17px;
    width: 100%;
    margin-bottom: 16px;
    outline: none;
}
.cac-content p{
    font-size: 16px;
    position: relative;
    padding-left: 8px;
    top: -3px;
}
.cac-content span{
    font-weight: 600;
}
.checkbox-cust-cont{
    display: flex;
}
.cac-content .checkbox-cust{
    width: 20px;
    border-radius: 6px;
}
.cac-content a{color: #1DBEAD;}
.cac-already-account{
    margin-top: 40px;
    border-top: 1px solid #EAEBEF;
    padding-top: 30px;
}
@media screen and (max-width: 992px) {
  .create-account-content {
    flex-direction: column;
  }

  .cac-img {
    order: 2; /* Move image section to the bottom */
    max-width: 521px;
    text-align: center;
  }

  .cac-content {
    order: 1; /* Move content section to the top */
  }
}
input.checkbox-cust[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1DBEAD;
    border: 1px solid #1DBEAD;
    color: #ffffff;
  }

  input.checkbox-cust[type=checkbox]:checked   {

    color: #fff !important;
    text-align: center;
  }
  .icon-box-cp{
    display: flex;
  }
  .icon-box-cp-l img{
    position: relative; left: 0; top: 5px; width: 54px
  }
  .icon-box-cp-r{
    padding-left: 16px;
  }
  /*-onboarding price selection */

  .container-check {
    /* display: flex; */
    align-items: center;
    margin-bottom: 20px;
  }
  .container-check h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
  }
  .info-box {
    padding: 15px 15px 15px 60px;
    border: 1px solid #ccc;
    border-radius: 20px;
    /* margin-left: 10px; */
    flex-grow: 1;
    transition: background-color 0.3s ease;
    /* left: -46px; */
    position: relative;
    z-index: 0;
  }
  .info-box.selected {
    background-color: #e0f7fa;
    border-color: #00acc1;
  }
   .child-devices.selected {
    background-color: #ffffff;
    border-color: #ffffff;
  }
  /* Hide the original radio buttons */
  input[type="radio"] {
    display: none;
  }
  /* Style the custom checkbox */
  input[type="radio"] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    /* border: 2px solid #ccc; */
    border-radius: 3px;
    margin-right: -34px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    background: url("../images/cust-unchecked.svg") no-repeat 0 0;
    left: 14px;
    position: relative;
  }
  input[type="radio"]:checked + label::before {
    /* background-color: #00acc1; */
    background: url("../images/cust-checked.svg") no-repeat 0 0;
    border-color: #00acc1;
    z-index: 2;
  }
  .child-devices{
    text-align: center;
    background-color: #E8F8F6;
    border-radius: 18px;
    line-height: 36px;
    color: #1DBEAD;
  }
  .ob-price-rate{
    font-weight: 600;
    font-size: 16px;
    color: #140A32;
    margin-top: 8px;
  }
  .ob-price-rate span{
    color:#7B7AA6;
  }
  .ob-price-rate-cross{
    font-weight: 600;
    font-size: 16px;
    color: #7B7AA6;
    text-align: right;
    margin-top: 8px;
  }
  .success-msg p{
    padding-left: 0px;
  }
  .txt-center{
    text-align: center;
  }
  .on-boarding-wrapper .adjust-ob-gfx {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 20px;
        align-items: flex-start;
    }
    
