@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
	background-color: red;
    margin: 0 !important;
}

:root {
    --primary-color: #7F52C6;
    --white-color: #ffffff;
    --text-gray: #535E76;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p {
    margin: 0;
    padding: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 1px 5px 5px #e2e2e2;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--white-color);
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: none;
}


/*--START Header--*/

.mnHead {
    background-color: var(--primary-color);
    background-image: url(../images/headShape.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: right;
}

header .logo {
    width: 150px;
}

.headWrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headWrp ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 25px;
}

.headWrp ul li a {
    text-decoration: none;
    color: #314259;
}

.headWrp .nav-menu {
    margin: 0 !important;
    padding: 0 !important;
}

.headMenu {
    padding-left: 50px;
}

.headMnMenu {
    margin-bottom: 0;
}

@media only screen and (min-width: 1500px) {
    .mnHead {
        background-size: 72%;
    }
}

@media only screen and (max-width: 1200px) {
    header .logo {
        margin-bottom: 20px;
    }
    header .imgCom {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .mnHead {
        background-image: none;
    }
    .navbar-toggler {
        color: #fff;
    }
    .menu-home-container {
        position: absolute;
        background-color: #fff;
        text-align: center;
        top: 100px;
        right: 0;
        box-shadow: 1px 0 5px #e2e2e2;
    }
}

@media only screen and (max-width: 768px) {
    .headWrp ul li {
        display: block;
        margin-left: 0;
    }
    .headMnMenu {
        margin-left: 0;
        padding: 20px;
    }
    .headMenu {
        padding-left: 0;
    }
    .headMenu button {
        margin: 0 20px !important;
    }
    .headMenu i {
        display: block;
        margin-top: 20px;
    }
    .headWrp ul li {
        list-style-type: none;
        display: block;
        margin-left: 0;
        padding: 5px 0;
    }
}

section{
    display: block !important;
    float: none !important;
}

/*--banner--*/

.banner {
    background: url(../images/bannerBg.png) no-repeat bottom;
    background-size: contain;
    padding: 8rem 0;
}

.banner h1 {
    font-weight: 700;
    color: #314259;
    font-size: 56px;
    font-family: 'Raleway', sans-serif;
}

.banner .pNew {
    font-weight: 500;
    color: #314259;
    font-size: 24px;
    margin: 15px 0;
    width: 60%;
}

.banner .pNewSbh {
    font-weight: 400;
    color: #1B1C39;
    font-size: 20px;
    margin: 15px 0 40px;
    display: block;
}

@media only screen and (max-width: 992px) {
    .banner h1 {
        font-size: 30px;
    }
    .banner {
        padding: 3rem 0;
    }
    .banner .pNew {
        font-size: 18px;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .btnWrp {
        margin: 30px 0;
    }
    .banner .pNewSbh {
        font-size: 16px;
    }
}


/*--START clients--*/

.clients {
    background-color: #7F52C6;
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
}

.clients img {
    width: 130px;
    margin: 0 20px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .clients img {
        width: 120px;
        margin: 10px;
    }
}

/*--END clients--*/


/*--START about-us--*/

.about-us {
    padding: 3rem 0;
}

.about-us button {
    float: right;
}

.about-us .subHead {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 300;
}

.about-us ul {
    margin-top: 30px;
    margin-left: 0;
}

.about-us ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-gray);
}

.about-us ul li::before {
    content: '';
    background: url(../images/purpleChk.png);
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-size: 20px;
}

.about-us h2 {
    font-size: 27px;
    margin-top: 30px;
}

.about-us .button {
    float: right;
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .about-us .subHead {
        font-size: 18px;
    }
    .about-us h2 {
        font-size: 20px;
        margin-top: 10px;
    }
}


/*--END about-us--*/


/*--START cfa-testimonial--*/

.cfa-testimonial {
    margin-bottom: 3rem;
    background-image: url(../images/reviewBg.png);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 50px;
}

.cfa-testimonial:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, #7F52C6, #6A3AB6);
    opacity: .7;
}

.cfa-testimonial .bgRev {
    padding: 30px;
}

.cfa-testimonial h3 {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 35px;
    margin-bottom: 20px;
}

.cfa-testimonial .testimonial-inner img {
    width: 100px !important;
    margin: 0 5px;
}

.cfa-testimonial .testimonial-inner{
    background-color: #fff;
    border-radius: 13px;
}

.cfa-testimonial .owl-carousel .owl-nav button.owl-next:hover,
.cfa-testimonial .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--white-color);
}

.cfa-testimonial .owl-carousel .owl-nav.disabled {
    display: block;
}

.cfa-testimonial .reviewWrap .review-text-new {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin: 15px 0;
}

.cfa-testimonial .reviewWrap .anew {
    text-decoration: none;
    display: block;
    color: #000;
}

.cfa-testimonial .reviewWrap img {
    width: 100px;
    margin-right: 20px;
}

.cfa-testimonial .reviewWrap {
    background: #fff;
    box-shadow: 0 30px 60px hsla(208, 9%, 67%, .2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    height: 13rem;
}

.cfa-testimonial .reviewWrap h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.cfa-testimonial .owl-carousel .owl-nav button.owl-next,
.cfa-testimonial .owl-carousel .owl-nav button.owl-prev {
    border: none;
    padding: 0!important;
    font: inherit;
    background-color: var(--white-color);
    color: var(--primary-color);
    height: 30px;
    width: 30px;
    border-radius: 40px;
}

@media only screen and (max-width: 992px) {
    .cfa-testimonial h3 {
        font-size: 20px;
    }
    .cfa-testimonial .reviewWrap h4 {
        font-size: 16px;
    }
    .cfa-testimonial .reviewWrap .review-text-new {
        font-size: 14px;
    }
    .cfa-testimonial .reviewWrap {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .cfa-testimonial .reviewWrap {
        display: block;
    }
    .cfa-testimonial .reviewWrap img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cfa-testimonial .reviewWrap {
        padding: 1.5rem;
    }
    .specialized-components .subHead {
        font-size: 20px;
    }
}


/*--START specialized-components--*/

.specialized-components .subHead {
    display: block;
    margin-bottom: 20px;
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

.specialized-components .imgWrp {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
	height: 100%;
}

.specialized-components .imgWrp img {
    border-radius: 10px;
    width: 100%;
	height: 100%;
	object-fit: cover;
    transition: 0.5s;
}

.specialized-components .imgWrp img:hover {
    transform: scale(1.1);
}

.specialized-components .imgWrp span {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #7f52c6d9;
    padding: 10px 20px;
    color: var(--white-color);
    font-size: 18px;
    border-radius: 0 10px 10px 10px;
}


/*--START schedule-demo--*/

.schedule-demo {
    margin-bottom: 3rem;
    background-image: url(../images/schedule-demoBg.png);
    background-attachment: fixed;
    position: relative;
    z-index: 1;
	height: 35rem !important;
    padding: 5rem 0 0 0;
}

.schedule-demo:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, #7F52C6, #6A3AB6);
    opacity: .8;
    z-index: -1;
}

.schedule-demo .frmWrp {
    background-color: var(--white-color);
    padding: 50px 60px;
    border-radius: 10px;
    box-shadow: 1px 5px 5px #e2e2e2;
    margin-bottom: -16rem !important;
}

.schedule-demo .frmWrp h2 {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.schedule-demo .frmWrp .sbHead {
    display: block;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.schedule-demo .input-group-append {
    cursor: pointer;
}

.schedule-demo .frmWrp .form-control, .schedule-demo .frmWrp .form-select {
    background-color: #F9F6F6;
    border: none;
    border-radius: 50px;
    margin-bottom: 20px;
    padding: 15px 30px;
}

.schedule-demo .imgWrp {
    position: relative;
}

.schedule-demo .btnWrp {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-48%, 10%);
    background-color: var(--primary-color);
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.schedule-demo .btnWrp .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: none;
}

.input-group.date .input-group-text {
    height: 54px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #e8dbdb;
    border: none;
    border-radius: 0 50px 50px 0;
}

.schedule-demo .datepicker td,
.schedule-demo th {
    text-align: center;
    padding: 8px 12px;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .schedule-demo .frmWrp {
        padding: 20px;
    }
    .schedule-demo .frmWrp h2 {
        font-size: 20px;
    }
    .schedule-demo .imgWrp {
        margin-top: 20px;
    }
    .schedule-demo .btnWrp {
        transform: translate(-50%, 70%);
        width: 230px;
        height: 60px;
    }
    .get-quote .txtWrp {
        margin-top: 20px;
    }
}


/*START get-quote--*/

.get-quote {
    padding: 8rem 0 3rem;
}

.get-quote h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 30px;
}

.get-quote span {
    display: block;
    color: #000;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.get-quote .txtWrp {
    margin-top: 5rem;
}

.get-quote .btn {
    margin-top: 2rem;
}

@media only screen and (max-width: 768px) {
    .get-quote .txtWrp {
        margin-top: 20px;
    }
}


/*--footer--*/

.cfaFooter {
    padding: 40px 0;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.cfaFooter:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, #000000, #000000);
    opacity: .7;
    z-index: -1;
}

.cfaFooter .logo {
    margin-bottom: 30px;
}

.cfaFooter h6 {
    color: var(--white-color);
}

.cfaFooter ul li {
    list-style-type: none;
    margin-bottom: 10px;
    text-align: left;
}

.cfaFooter .ftMenuHd {
    color: var(--white-color);
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
    font-size: 18px;
}

.cfaFooter .scIconWrap {
    display: flex;
    align-items: center;
}

.cfaFooter .scIconWrap i {
    color: var(--white-color);
    font-size: 25px;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.cfaFooter .scIconWrap a {
    text-decoration: none;
}

.cfaFooter ul {
    margin-left: 0;
}

.cfaFooter ul li:first-child {
    border-left: none;
}

.cfaFooter ul li a {
    color: var(--white-color);
    font-size: 14px;
    text-decoration: none;
}

.cfaFooter ul li a:hover {
    color: var(--white-color);
}

.cfaFooter .cpyRight {
    color: var(--white-color);
    font-size: 14px;
    display: block;
    text-align: center;
    border-top: 1px solid #8f8f8f;
    padding-top: 20px;
    margin-top: 20px;
}
.formStyle {
    border-radius: 10px;
    border: 0;
}
.formFiledStyle .form-control, .formFiledStyle input, .formFiledStyle textarea{
    padding: 10px 7px !important;
}
.formFiledStyle .wpcf7-submit {
    padding: 13px 25px !important;
    background-color: var(--primary-color);
    color: #ffffff;
    border: unset;
    font-size: 18px;
    border-radius: 6px;
}

@media only screen and (max-width: 992px) {
    .cfaFooter ul li {
        margin-bottom: 0;
    }
    .cfaFooter .cpyRight {
        margin-top: 50px;
    }
    .cfaFooter .scIconWrap {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .cfaFooter .scIconWrap {
        margin-bottom: 20px;
    }
}




.bookly-form + div{
    display: none;
}
.bookly-form select {
    padding: 10px 10px !important;
}






.selectMultiple {
    width: 100%;
    position: relative;
}
.selectMultiple select {
    display: none;
}
.selectMultiple > div {
    position: relative;
    z-index: 2;
    padding: 8px 12px 2px 12px;
    border-radius: 3px;
    background: #fff;
    font-size: 14px;
    min-height: 44px;
    /*box-shadow: 0 4px 16px 0 rgba(22, 42, 90, 0.12);*/
    border: 1px solid #dddddd;
    transition: box-shadow 0.3s ease;
}
.selectMultiple > div:hover {
    /*box-shadow: 0 4px 24px -1px rgba(22, 42, 90, 0.16);*/
}
.selectMultiple > div .arrow {
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    width: 37px;
    background-color: #cbd2da;
    position: absolute;
}
.selectMultiple > div .arrow:before, .selectMultiple > div .arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: 8px;
    border-bottom: 8px solid #000000;
    top: 43%;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.selectMultiple > div .arrow:before {
    right: 14px;
    transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
    left: 16px;
    transform: rotate(130deg);
}
.selectMultiple > div span {
    color: #99A3BA;
    display: block;
    position: absolute;
    left: 12px;
    cursor: pointer;
    top: 8px;
    line-height: 28px;
    transition: all 0.3s ease;
}
.selectMultiple > div span.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate(-4px, 0);
}
.selectMultiple > div a {
    position: relative;
    padding: 0 24px 6px 8px;
    line-height: 28px;
    color: #1E2330;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    margin: 0 6px 0 0;
}
.selectMultiple > div a em {
    font-style: normal;
    display: block;
    white-space: nowrap;
}
.selectMultiple > div a:before {
    content: "";
    left: 0;
    top: 0;
    bottom: 6px;
    width: 100%;
    position: absolute;
    display: block;
    background: rgba(228, 236, 250, 0.7);
    z-index: -1;
    border-radius: 4px;
}
.selectMultiple > div a i {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 28px;
    display: block;
}
.selectMultiple > div a i:before, .selectMultiple > div a i:after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #4D18FF;
    border-radius: 1px;
}
.selectMultiple > div a i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.selectMultiple > div a.notShown:before {
    width: 28px;
    transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}
.selectMultiple > div a.notShown i {
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}
.selectMultiple > div a.notShown em {
    opacity: 0;
    transform: translate(-6px, 0);
    transition: all 0.4s ease 0.3s;
}
.selectMultiple > div a.notShown.shown {
    opacity: 1;
}
.selectMultiple > div a.notShown.shown:before {
    width: 100%;
}
.selectMultiple > div a.notShown.shown i {
    opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
    opacity: 1;
    transform: translate(0, 0);
}
.selectMultiple > div a.remove:before {
    width: 28px;
    transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.selectMultiple > div a.remove em {
    opacity: 0;
    transform: translate(-12px, 0);
    transition: all 0.4s ease 0s;
}
.selectMultiple > div a.remove.disappear {
    opacity: 0;
    transition: opacity 0.5s ease 0s;
}
.selectMultiple > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    z-index: 1;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    border-radius: 8px;
    transform: translate(0, 20px) scale(0.8);
    transform-origin: 0 0;
    filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
    transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
}
.selectMultiple > ul li {
    color: #1E2330;
    background: #fff;
    padding: 12px 16px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease 0.3s, opacity 0.5s ease 0.3s, border-radius 0.3s ease 0.3s;
}
.selectMultiple > ul li:first-child {
    border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li:first-child:last-child {
    border-radius: 8px;
}
.selectMultiple > ul li:last-child {
    border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li:last-child:first-child {
    border-radius: 8px;
}
.selectMultiple > ul li:hover {
    background: #4D18FF;
    color: #fff;
}
.selectMultiple > ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
.selectMultiple > ul li.beforeRemove {
    border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li.beforeRemove:first-child {
    border-radius: 8px;
}
.selectMultiple > ul li.afterRemove {
    border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li.afterRemove:last-child {
    border-radius: 8px;
}
.selectMultiple > ul li.remove {
    transform: scale(0);
    opacity: 0;
}
.selectMultiple > ul li.remove:after {
    -webkit-animation: ripple 0.4s ease-out;
    animation: ripple 0.4s ease-out;
}
.selectMultiple > ul li.notShown {
    display: none;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.4s ease;
}
.selectMultiple > ul li.notShown.show {
    transform: scale(1);
    opacity: 1;
}
.selectMultiple.open > div {
    box-shadow: 0 4px 20px -1px rgba(22, 42, 90, 0.12);
}
.selectMultiple.open > div .arrow:before {
    transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
    transform: rotate(50deg);
}
.selectMultiple.open > ul {
    transform: translate(0, 12px) scale(1);
    opacity: 1;
    visibility: visible;
    filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}

@-webkit-keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(30, 30);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(30, 30);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}
html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}
*:before, *:after {
    box-sizing: inherit;
}
.imgWrp .kc-elm.kc-title-wrap {
    position: absolute !important;
    left: 0;
    bottom: 0;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-inner {
    padding: 20px 13px !important;
}
.wpmtst-testimonial-heading.testimonial-heading {
    width: 77%;
    font-size: 27px;
    margin-left: auto;

}
.wpmtst-testimonial-content.testimonial-content h6{
    clear: none !important;
}




