*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    font-family: 'Aptos', Helvetica, sans-serif;
    overflow-x: hidden;
	max-width: 100%;
}
:root{
    --dark-purple: #5600CA;
    --light-purple: #8313FF;
    --light-teal: #57C6D2;
    --text-color: #240250;
    --light-fill: #EFEDF7;
    --white-color: #ffffff;
    --text-font-size: 22px;
    --btn-font-size: 22px;
    --navbar-font-size: 20px;
    --radial-bg-gradient: radial-gradient(circle at top left, #8311FC, transparent 50%), radial-gradient(circle at bottom right, #5967FB, transparent 50%), #621BE9;
    --linear-bg-gradient: linear-gradient(90deg, #5300c2 0%, #8212ff 100%);

}
a {
    color: inherit;
    text-decoration: none;
}
.container-fluid {
    max-width: 1900px !important;
    margin: 0 auto;
}
.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-3 {
    z-index: 3;
}
p{
    font-size: var(--text-font-size);
    color: var(--text-color);
}
.container {
    max-width: 1200px;
}
header{
    z-index: 9;
}
#logo img{
    width: 113px;
}
.navbar-light .navbar-nav a.nav-link{
    font-size: var(--navbar-font-size);
    font-weight: 600;
    padding: 0 1.5rem;
    color: var(--dark-purple);
}
.login-link a {
    font-size: var(--navbar-font-size);
    color: var(--dark-purple);
    font-weight: 900;
    font-style: italic;
}
.nav-item.bold_item .nav-link {
  font-weight: 800 !important;
}


/*Hero*/
.hero-banner {
    background: #ffffff url("../images/hero-banner-bg.jpg") no-repeat center;
    background-size: cover;
}
.hero-banner-img {
    width: 140%;
    margin: -30% -30% -40%;
}
.gradient-fill {
    background-image: linear-gradient(90deg, rgba(133,20,254,1) 0%, rgba(90,107,254,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	background-size: 100%;
    background-position: center;
}
.hero-banner h1{
	font-weight: 700;
	font-size: 6rem;
	line-height: 0.9;
	width: 70%;
}
.hero-banner h1 span {
    font-style: italic;
    font-weight: 800;
}
.subtitle {
    font-size: var(--text-font-size);
    color: var(--text-color);
    font-weight: 800;
}
.custom-hero-btn {
    min-width: 260px;
    font-size: var(--btn-font-size);
    font-weight: 800;
    padding: 10px;
    border-radius: 10px;
    border: none;
}
.btn-gradient {
    background: var(--radial-bg-gradient);
}
.btn-outlined-hero {
    border: 4px solid #6C0FEB;
    box-sizing: border-box;
    color: #5614D3;
    padding: 6px;
}
.check-list {
    list-style: none;
    font-size: var(--text-font-size);
    padding: 0;
    color: var(--text-color);
}
/*Hero Ends*/

/*Solutions Section*/
section.solutions {
    background: var(--radial-bg-gradient);
    height: 1050px;
}

.solutions h2{
    color: var(--white-color);
}
.secondory-healine {
    font-size: 5.3rem;
    font-weight: 900;
    line-height: 0.9;
}
#solutionsCarousel .carousel_rotation {
  background-color: #fff;
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
}
#solutionsCarousel .carousel-indicators {
    position: relative;
    margin: 0 10%;
}

#solutionsCarousel .carousel-indicators [data-bs-target] {
    width: auto;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    text-indent: 0;
    background-color: transparent;
    background-clip: padding-box;
    border-top: 0;
    border-bottom: 0;
    opacity: 1;
    font-size: var(--text-font-size);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#solutionsCarousel .carousel-indicators [data-bs-target]::before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    background-color: var(--light-fill);
    border-radius: 50%;
    border: 12px solid var(--dark-purple);
    box-sizing: content-box;
    outline: 12px solid var(--light-fill);
    margin-bottom: 20px;
    outline-offset: 1px;
}
#solutionsCarousel .carousel-indicators button.active[data-bs-target]{
    font-style: italic;
}
#solutionsCarousel .carousel-indicators button.active[data-bs-target]::before {
    background-color: transparent;
    border-color: var(--light-fill);
    outline-color: var(--light-teal);
}
.carousel-item-healine {
    font-size: 26px;
    font-weight: 800;
    color: var(--light-teal);
}
.solution-carousel-img {
    box-shadow: 3rem 0rem 3rem rgba(86, 0, 202, 0.4);
	border-radius: 15px;
}
#solutionsCarousel :where(.carousel-control-next, .carousel-control-prev) {
    top: 50%;
    bottom: auto;
    width: auto;
}
#solutionsCarousel .carousel-control-next {
    right: -80px;
}
#solutionsCarousel .carousel-control-prev {
    left: -80px;
}
/*Solutions Section Ends*/

/*Web Accessibility Section*/

.web-accesibility {
    background: #ffffff url("../images/accessibility-bg.jpg") no-repeat center;
    background-size: cover;
}
.web-accesibility h2 {
    line-height: 1;
}
.web-accesibility {
    padding-top: 20rem !important;
}

.playButton {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: none;
    background: none;
}
/*Web Accessibility Section Ends*/



/*Widget Section*/
.widget {
    background-color: var(--light-fill);
}
.widget .secondory-healine {
  max-width: 700px;
}
.widget_subtitle {
    color: #6708E0;
    font-weight: 700;
}
.widget h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 17px;
    background-image: url(../images/line-design.png);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -11px;
}
.widget-graphic {
    margin: -30% 0% -45% -30%;
    width: 160% !important;
}

/*Widget Section Ends*/

/*Level Accessibility*/
.level-accessibily{
    background: var(--radial-bg-gradient);
}
.free-offer h3{
    color: var(--light-fill);
    font-size: 67px;
    font-weight: 900;
}

/*Level Accessibility Ends*/


/*Dynamic Section*/
.dynamic {
    background-color: var(--light-fill);
    background-image: url('../images/dynamic-bg.png');
    background-size: cover;
    background-position: center;
}
.dynamic .play-button {
    top: 61%;
    left: 57%;
}
/*Dynamic Section Ends*/

/*Manage Section*/
.manage-accessibily  {
    background-color: var(--light-fill);
    background-image: linear-gradient(90deg, rgba(134,19,255,0.06) 0%, rgba(90,109,254,0.06) 100%);
}
.access-box {
    background: var(--radial-bg-gradient);
    border-radius: 10px;
    box-shadow: 10px 10px 20px 3px rgba(86, 0, 202, 0.2);
    min-height: 244px;
}
.access-box h4 ,.access-box h2 {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
}
.manage_container {
    max-width: 1450px;
    margin: 0 auto;
}
.manage-accessibily .access-box p {
    font-size: 26px;
}
/*Manage Section Ends*/

/*Testimonial Item*/
.reviews h3 {
  font-size: 91px;
  font-weight: 700;
  background-image: linear-gradient(90deg, #5300C2 0%, #8212FF 100%);
  max-width: 1040px;
  margin: auto;
}
.reviews {
    background-image: url(../images/testimonial-bg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--light-fill);
}
.testimonial-item-wrap {
    background: var(--radial-bg-gradient);
    border-radius: 30px;
}
img.author-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}
h4.author_name {
    font-weight: 900;
    font-size: 28px;
}
.logo-wrap img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
span.company-name {
    font-size: var(--text-font-size);
    font-weight: 800;
}
blockquote.testimonial-text {
    border: 1px solid var(--white-color);
    padding: 25px;
    border-radius: 8px;
    font-size: var(--text-font-size);
    line-height: 1.2;
}
img.top-quote {
    position: absolute;
    left: -40px;
    top: -20px;
    width: 60px;
}
img.bottom-quote {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 60px;
}

.swiper-nav {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button-prev {
    left: -130px;
}
.swiper-button-next {
    right: -130px;
}
.container.custom-logo-container {
    max-width: 1550px;
}
.client-logos img {
  max-width: 380px;
}
.client-logos .col {
  max-width: 20% !important;
  min-width: 20% !important;
}
/*Testimonial Ends*/

/*Compliance Section*/
.compliance {
    background-color: var(--light-fill);
}
.custom-container {
    max-width: 1300px;
}
.compliance-wrap {
    background-image: var(--linear-bg-gradient);
    border-radius: 20px;
}

h3.cpl_head {
    font-size: 105px;
    font-weight: 900;
    line-height: 0.9;
    margin-top: -10px;
}
.cpl-item {
    padding: 10px;
    border-radius: 10px;
}
.cpl-item p {
  max-width: 160px;
}
.complainz_box .col-md-4:first-child p {
  max-width: 100% !important;
}
.cpl-item h4{
    font-weight: 700;
    color: var(--text-color);
}
/*Compliance Section ends*/

/*FAQ Section*/

h2.faq-head {
    color: var(--text-color);
    font-size: 70px;
    font-weight: 900;
}
#FaqAccordion .accordion-item:not(:last-child) {
    margin-bottom: 20px !important;
}
#FaqAccordion .accordion-item {
    background-color: #F0E6FC;
    border-radius: 15px;
    box-shadow: none;
    border: none;
}

#FaqAccordion button.accordion-button {
    font-size: 28px;
    font-weight: 800;
    border-radius: 15px;
    box-shadow: none;
    background-color: var(--light-purple);
    color: var(--white-color);
    padding: 20px 15px 20px 35px;
}
#FaqAccordion .accordion-body {
    color: var(--dark-purple);
    font-size: var(--text-font-size);
    font-weight: 800;
    font-style: italic;
    padding: 20px 35px;
    line-height: 1.2;
}
#FaqAccordion .accordion-button::after {
    width: 1.8rem;
    height: 1.8rem;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(93%) sepia(14%) saturate(88%) hue-rotate(209deg) brightness(100%) contrast(96%);
}
/*FAQ Section Ends*/


/*Footer Css*/
footer.site-footer  .logo_footer {
    max-width: 65%;
}
footer.site-footer {
    background-image: var(--linear-bg-gradient);
}
.site-footer ul.footer-nav, ul.bottom_footer_nav, .mobile-menu {
    padding: 0;
    list-style: none;
    font-size: var(--text-font-size);
}
.site-footer :is(ul.footer-nav,ul.bottom_footer_nav) a{
    color: var(--white-color);
    text-decoration: none;
}

.site-footer h5 {
    font-weight: 700 !important;
    font-size: 26px !important;
}

span.social-icons {
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #fff;
    padding: 7px;
    text-align: center;
    border-radius: 7px;
}
span.social-icons:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
span.social-icons img {
    display: inline-block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.modal-backdrop.show {
    display: none !important;
}


/*Contact Us page*/
.contact-us {
    background-image: url(../images/about-us-bg.png);
	background-position: center;
	background-size: cover;
}
.contact-us h1.main-heading {
    font-size: 83px;
    font-weight: 900;
    line-height: 1;
}
.contact-us .subtitle {
  max-width: 570px;
}
.form-wrap h2 {
    font-size: 60px;
    font-weight: 900;
    color: var(--dark-purple);
}
.form-wrap {
    border-radius: 30px;
}


/*Landing Page*/

.landing {
    background: var(--radial-bg-gradient);
}

.landing h1.main-heading {
    font-size: 88px;
    line-height: 0.75;
    font-weight: 700;
}
.landing h1.main-heading span {
    color: var(--light-teal);
}
.landing h1.main-heading strong{
    font-weight: 800;
}
.landing li {
    font-weight: 600;
}
.landing .check-list {
  max-width: 690px;
}
.video-box-landing{
    background-color: var(--light-fill);
}
.video-box-landing h2.video-heading {
    font-size: 90px;
    font-weight: 700;
    line-height: 0.9;
    background: linear-gradient(90deg, rgba(128,18,252,1) 0%, rgba(45,4,168,1) 50%, rgba(131,19,254,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.video-box-landing h2.video-heading.text-center i {
    font-weight: 800 !important;
}
.video-box-landing .playButton {
	left: 120px;
	bottom: 30px;
	top: auto;
}





/*Landing Page*/
.website-audit {
    background: var(--radial-bg-gradient);
}
h1.audit-heading {
    color: var(--white-color);
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
}
p.audit-subtitle {
    font-size: 46px;
    color: var(--light-teal);
    line-height: 1;
    font-style: italic;
}
ul.audit-list {
    counter-reset: auditList;
	font-size: 24px !important;
}
.audit-list li:before {
    content: counter(auditList);
    counter-increment: auditList;
    background-color: #fff;
    color: var(--light-purple);
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    padding: 1px;
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    margin-right: 17px;
}

/*Support*/
.support {
    background: var(--light-fill);
    background-image: url(../images/support-bg.png);
    background-position: top left;
    background-size: 100%;
    background-repeat: no-repeat;
}
.we-got-back h1 {
    font-size: 97px;
    font-weight: 900;
    background: linear-gradient(90deg, rgba(128,18,252,1) 0%, rgba(45,4,168,1) 50%, rgba(131,19,254,1) 100%);
    -webkit-background-clip: text;
}
.we-got-back .subtitle {
    color: var(--dark-purple);
}
.we-got-back .btn.btn-primary {
    min-width: 350px;
	background-image: url(../images/support-btn-bg.jpg);
	background-size: cover;
	background-position: center;
}
.support .access-box {
	box-shadow: 10px 10px 20px 3px rgba(86, 0, 202, 0.4);
}
.support .access-box img {
    height: 65px;
    display: inline-block;
    width: 75px;
    object-fit: contain;
}
.support .access-box.first_box {
	padding-left: 2rem !important;
}
.support .access-box.second-box {
	padding-right: 2rem !important;
}

.support .access-box h2 {
    font-size: 2.1rem;
}
.support .access-box {
    border-radius: 30px;
    background: linear-gradient(90deg, #5700CB 0%, #8012FC 100%);
}
.support .col-md-4:nth-child(2) .access-box {
    background: var(--light-purple);
}
.support .access-box.full-width {
    background: linear-gradient(90deg, #7622FF 0%, #57C6D2 100%);
}
.support .access-box.full-width img {
    height: auto;
}


/*About us*/
.about-us-banner {
	background-color: var(--light-fill);
    background-image: url(../images/about-us-banner-bg.png);
	background-size: cover;
	background-position: 0 calc(100% + -66px);
	background-repeat: no-repeat;
}
.about-us-banner h1 {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.9;
    padding-right: 22%;
}
.about-us-banner h1 span{
    color: var(--light-teal);
}
.unordered_images .col:nth-child(3), .unordered_images .col-4:nth-child(1) {
    margin-top: 5rem !important;
}
.about-us-banner img {
    border-radius: 40px;
    box-shadow: 0 0 40px 9px rgb(86 0 202 / 70%);
}
.about-content .content-wrap {
    background-image: url(../images/guy-with-dog.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 15px solid #ACABB0;
    border-radius: 50px;
}
.about-content {
    background-color: var(--light-fill);
}
.about-content :is(h2,p){
    color: var(--white-color);
}
.about-content p {
  font-weight: 600;
}
.about-content h2 {
    font-size: 120px;
    line-height: 0.9;
    font-weight: 800;
}
.about-content .content-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, 
    rgba(29, 28, 31, 1) 0%, 
    rgba(37, 2, 83, 1) 25%,
    rgba(64, 57, 74, 1) 75%, 
    rgba(131, 19, 255, 0) 100%);
    opacity: 0.52;
    border-radius: 36px;
    z-index: 1;

}
/* .about-us-banner .row{
    margin-bottom: -100px;;
} */
/* .about-content {
    padding-top: 320px !important;
    background-image: url(../images/abt-bg-png.png);
    background-size: 124%;
    background-position: top center;
    background-repeat: no-repeat; 
}*/
 



@media (max-width: 576px) {
    :root{
        --text-font-size: 18px;
        --btn-font-size: 18px;
    }
    body {
        background-color: var(--light-fill);
    }
    .headercta a {
        min-width: auto;
        padding: 5px 21px;
        font-weight: 600;
        border-radius: 17px;
    }
    #logo img {
        width: 65px;
    }
    .modal-header {
        border: none;
        background-color: var(--white-color);
    }
    .modal-body {
        background-color: var(--light-fill);
    }
    .mobile-menu {
        font-size: 22px;
    }
    ul.mobile-menu a {
        text-decoration: none;
        color: var(--dark-purple);
        padding: 4px 0;
        font-weight: 600;
        display: inline-block;
    }
    .popup-btn a {
        width: 100%;
        padding: 8px;
        background: linear-gradient(90deg, #8613FF 0%, #5A6DFE 100%);
    }
    #menuPopup .btn-close {
        opacity: 1;
    }


    /*Hero Banner*/
    .hero-banner, .dynamic, .manage-accessibily, .support {
        background-image: none;
        background-color: transparent;
    }
    p.subtitle.top-sub {
        color: #6708E0;
        font-style: italic;
        font-weight: 600;
    }
    .hero-banner h1 {
		width: 100%;
        font-size: 2.2rem;
    }
    .btm-sub {
        font-weight: 400;
        line-height: 1.3;
    }
    .hero-banner a.custom-hero-btn, .dynamic .btn {
        border-radius: 15px;
        width: 100%;
    }
    .mobile-img {
        margin: -14rem -2rem 0 -2rem;
        width: calc(100% + 4rem);
    }
    .secondory-healine {
        font-size: 2.8rem;
    }


    /*Solutions*/

    .solution-headline .secondory-healine {
        font-size: 1.8rem;
    }
    .solutions .carousel-inner {
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }
    .solutions .subtitle {
        font-weight: 400;
    }
    #solutionsCarousel .carousel-indicators {
        margin: 0;
    }
    #solutionsCarousel .carousel-control-next {
        right: -25px;
    }
    #solutionsCarousel .carousel-control-prev {
        left: -25px;
    }
    .solution-carousel-img {
        box-shadow: 3rem 0rem 2rem rgba(86, 0, 202, 0.4);
    }
    #solutionsCarousel .carousel-indicators [data-bs-target]::before {
       width: 10px;
        height: 10px;
        border-width: 6px;
        outline-width: 6px;
        margin-bottom: 13px;
    }
    #solutionsCarousel .carousel-indicators [data-bs-target] {
        font-size: 9px;
    }
    h4.carousel-item-healine{
        font-size: 16px;
    }
    section.solutions {
        height: 410px;
    }


    /*Accessibility*/

    .web-accesibility {
        padding-top: 130px !important;
    }
    .playButton img {
        width: 65px;
    }

    .free-offer h3 {
        font-size: 32px;
    }
	

    .widget-graphic-mobile {
        margin: -6rem -1.5rem 0 -1.5rem;
        width: calc(100% + 3rem) !important;
    }
    .widget h2::after {
        width: 275px;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
        top: 3px;
    }
    .manage-accessibily .subtitle {
        font-weight: 400;
    }
    .access-box {
        min-height: auto;
    }
	.manage-accessibily .access-box p {
		font-size: 20px;
	}

    /*Reviews*/
	.reviews h3 {
	  font-weight: 900;
		font-size: 37px;
	}
    img.author-img {
        width: 70px;
        height: 70px;
    }
    h4.author_name {
        font-weight: 900;
        font-size: 18px;
    }
    blockquote.testimonial-text {
        padding: 20px 10px;
    }
    .testimonial-item-wrap {
        border-radius: 60px;
    }
    img.top-quote {
        left: -20px;
        top: -10px;
        width: 35px;
    }
    img.bottom-quote {
        right: -20px;
        bottom: -10px;
        width: 35px;
    }
    .swiper-button-prev {
        left: -35px;
    }
    .swiper-button-next {
        right: -35px;
    }
    :is(.swiper-button-prev,.swiper-button-next) img {
        width: 30px;
    }
    .logo-wrap img {
        width: 60px;
        height: 60px;
    }
    span.company-name {
        font-size: 15px;
        padding-top: 4px;
        display: inline-block;
    }
    .client-logos {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
	.client-logos .col {
	  max-width: 33% !important;
	  min-width: 33% !important;
	}

    /*Compliance*/
    h3.cpl_head {
        font-size: 50px;
    }
    .compliance-wrap {
        padding-bottom: 8rem !important;
		padding-top: 4rem !important;
        border-radius: 35px;
    }
	.cpl-item h4 {
		font-size: 26px;
	}


    /*FAQ*/
    h2.faq-head {
        font-size: 0;
    }
	h2.faq-head::before {
	  content: 'FAQ';
	  font-weight: 900;
	  font-size: 60px;
	background-image: linear-gradient(90deg, rgba(133,20,254,1) 0%, rgba(90,107,254,1) 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	  background-size: 100%;
	  background-position: center;
	}
    #FaqAccordion .accordion-button::after {
        width: 1.4rem;
        height: 1.4rem;
    }

    #FaqAccordion button.accordion-button,#FaqAccordion .accordion-body {
        font-size: 20px;
        font-weight: 600;
        padding: 10px 20px;
    }
    #FaqAccordion .accordion-item:not(:last-child) {
        margin-bottom: 10px !important;
    }
    

    /*Footer*/
	.footer-nav li:not(:last-child) {
	  margin-bottom: 7px;
	}
    img.logo_footer {
        width: 100px;
    }
    span.social-icons img {
        width: 14px;
        height: 14px;
    }
    span.social-icons {
        margin-right: 3px;
        padding: 0px 5px;
    }
    .logo_col {
        border-bottom: 1px solid var(--white-color);
        padding: 0 1.5rem;
    }
    .btm-ftr-links {
        padding: 0 0 5rem 0;
    }
    .bottom_footer {
        width: -webkit-fill-available;
        margin: 1.5rem;
    }
	ul.bottom_footer_nav li {
	  font-weight: 700;
	  font-size: 20px;
	}
	
	/*Contact Page*/
	.contact-us {
		background: var(--radial-bg-gradient);
	}
	.contact-us h1.main-heading {
    	font-size: 50px;
	}    
	.contact-us .subtitle {
		font-weight: 400;
	}
	.contact-us span.social-icons {
        padding: 7px;
    }
	.contact-us span.social-icons img {
		width: 24px;
		height: 20px;
	}
	.col-form .form-wrap {
		border-radius: 0;
		margin: 0 -2.3rem;
	}
	.form-wrap h2 {
    	font-size: 40px;
	}

    /*Website landing*/
    .landing ul.check-list {
        background-color: rgba(87, 198, 210, 0.17);
        padding: 25px !important;
        border-radius: 30px;
        margin: 30px -15px;
    }
	.landing .form-wrap {
	  background-color: var(--light-fill) !important;
	}
    .landing ul.check-list li {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
        text-align: center;
    }
    .landing ul.check-list li img {
        width: 25px;
    }
    .landing h1.main-heading {
        font-size: 41px; 
        line-height: 0.9;
    }
    .video-box-landingh2 .video-heading {
        font-size: 39px;
        font-weight: 700;
        line-height: 1.1;
    }
    .video-box-landing .playButton {
        left: 45px;
   		bottom: 15px;
    }
	.video-box-landing .playButton img {
		width: 45px;
	}
	.video-box-landing h2.video-heading {
  		font-size: 42px; 
		line-height: 1.25;
	}
	.video-box-landing {
		background-color: var(--white-color);
	}

    /*Websit Audit*/
    h1.audit-heading {
        font-size: 43px;
    }
    p.audit-subtitle {
        font-size: 18px;
    }

    /*Support*/
    .we-got-back h1 {
        font-size: 32px;
    }
    .we-got-back .subtitle {
        font-weight: 400;
		font-size: 20px;
    }
    .we-got-back .btn.btn-primary {
        width: 100% !important;
		min-width: auto;
		line-height: 1.4;
    }
	
    .we-got-back .mobile-outlined {
        background: transparent !important;
        border: 2px solid #240250;
        color: #240250;
		line-height: 1.2 !important;
    }
    .support .access-box.full-width img {
        height: 280px;
        object-fit: cover;
        object-position: top left;
    }
    /*About*/
	.about-us-banner {
		background: var(--radial-bg-gradient);
	}
    .about-us-banner h1 {
        font-size: 33px;
		padding-right: 0;
		line-height: 1.25;
    }
	.about_carousel-wrapper swiper-slide {
	  padding: 10px;
	}
    .about-us-banner .row {
        margin-bottom: -0px;
    }
    .about-content {
        padding-top: 50px!important;
		background-color: var(--white-color);
    }
    .about-content .content-wrap {
        background: var(--radial-bg-gradient);
        border: none;
        border-radius: 20px;
    }
	.about-content .content-wrap::before {
		background-image: url(../images/about-us-mobile-bg.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		opacity: 1;
		border-radius: 20px;
	}
	
    .about-content h2 {
        font-size: 55px;
    }
    .about-content p {
        line-height: 1.3;
    }
    .about-us-banner img {
        border-radius: 15px;
        box-shadow: 0 0 10px 0px rgb(86 0 202 / 65%);
    }
    .about_carousel-wrapper {
        margin-bottom: -100px;
    }
    .about_carousel-wrapper img {
        height: 250px;
		object-fit: cover;
		object-position: top;
    }
    
}

@media(min-width: 1200px) {
	#solutionsCarousel .carousel-inner {
		width: calc(100% + 250px);
		margin: 0 -125px;
	}
}