/* global */
@font-face {
    font-family: 'Agrandir-GrandHeavy';
    src: url(../css/fonts/Agrandir-GrandHeavy.otf);
}

@font-face {
    font-family: 'Agrandir-TextBold';
    src: url(../css/fonts/Agrandir-TextBold.otf);
}

@font-face {
    font-family: 'Inter-Regular';
    src: url(../css/fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url(../css/fonts/Inter-ExtraLight.ttf);
}

@font-face {
    font-family: 'Inter-Medium';
    src: url(../css/fonts/Inter-Medium.ttf);
}

@font-face {
    font-family: 'Inter-Bold';
    src: url(../css/fonts/Inter-Bold.ttf);
}

:root {
    --primaryColor: #210045;
    --secondaryColor: #811E79;
    --big-font: 'Agrandir-GrandHeavy';
    --big-bold: 'Agrandir-TextBold';
    --body-font: 'Inter-Regular';
    --light-font: 'Inter-ExtraLight';
    --body-medium: 'Inter-Medium';
    --body-bold: 'Inter-Bold';
}

html,
body {
    scroll-behavior: smooth;
}

.big-font {
    font-family: var(--big-font);
}

.body-font {
    font-family: var(--body-font);
}

.body-light {
    font-family: var(--light-font);
    line-height: 1.5;
}

.body-medium {
    font-family: var(--body-medium);
    line-height: 1.5;
}

.body-bold {
    font-family: var(--body-bold);
}

body {
    font-family: var(--body-font);
    font-size: 1rem;
}

a {
    text-decoration: none;
}

ul {
    padding-left: 0;
}

p,
span {}

h1,
h2,
h3,
h4 {
    font-family: var(--big-font);
}

.global-padding {
    padding-left: 5%;
    padding-right: 5%;
}

.padding-section-large {
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: static;
}

.padding-section-small {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.global-padding,
.padding-section-small {
    position: relative;
}

.font-large {
    font-size: 3.5rem;
}

.font-medium {
    font-size: 3rem;
}

.text-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
}

.ellipse.blue {
    background: #6557ff;
    top: -8%;
    left: 15%;
}

.ellipse {
    width: 52%;
    height: 60%;
    position: absolute;
    opacity: .2;
    filter: blur(100px);
    border-radius: 100%;
    z-index: 0;
}

.text-gray {
    color: #747474;
}

.btn-primary {
    background-color: #210045;
    border-color: #210045;
    transition: linear 0.5s;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    transition: linear 0.5s;
}

.btn-round {
    border-radius: 18.5px;
}

.btn-primary>a {
    color: #fff;
    text-decoration: none;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.btn-group>.btn-group>.btn,
.btn-group>.btn {
    border-top-right-radius: 18.5px !important;
    border-bottom-right-radius: 18.5px !important;
}

.btn-group>.btn:first-child {
    margin-right: 5px;
}

.green {
    color: #079E01;
}

a.with-icon {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

a.with-icon .material-symbols-outlined {
    position: absolute;
    top: 0;
    bottom: 0;
    /*! right: -24px; */
}

.btn-light>a {
    color: #000;
    text-decoration: none;
}

.bg-primary {
    background-color: var(--primaryColor) !important;
    color: #fff;
}

/* Header */
.home-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.home-header.with-shade {
    position: relative;
    background: linear-gradient(360deg, #FFF 18.91%, #F7F1FF 39.95%, #EBE3FF 59.82%, #D4C9FF 93.72%);
    padding-bottom: 200px;
}

.backface {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
}

/* animate menu ison */
@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}

.menu-toggle {
    position: relative;
    background: var(--primaryColor);
    border: none;
    padding: 3px;
    border-radius: 100%;
    width: 70px;
    height: 70px;
}

.menu-toggle svg {
    width: 50px;
    height: 50px;
}

.menu-toggle svg>g>path {
    fill: #ffffff !important;
}


.menu-toggle::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    animation-iteration-count: 1;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #254AAD61;
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

.right-head {
    max-width: 96px;
    padding-top: 8px;
}

.right-head li {
    margin-bottom: 8px;
}

.right-head>ul>li {
    max-width: 40px;
}

.right-head>ul>li.col>a>img {

    width: 25px;
}

/*Home Banner */
.section-header {
    background: url('../images/Intersect-head.svg');
    background-repeat: no-repeat;
    background-position: 100% 42%;
    background-size: cover;
    min-height: 600px;
    padding-top: 5.5rem;
    padding-bottom: 5rem;
}

.play-btn-holder {
    position: absolute;
    left: 0;
    right: 0;
    width: 100px;
    margin: 0 auto;
    bottom: 30%;
}

.section-header.internal-interset {
    background: url('../images/internal-intersect.svg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position-y: -100px !important;
    ;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-30px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-30px);
    }
}

.scroll-down {
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    height: 60px;
}

.scroll-down>span {
    display: inline-block;
    background: #210045;
    color: #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.scroll-down>span>a {
    color: #fff;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.scroll-down .material-symbols-outlined {
    font-size: 60px;
}

.btn.with-icon .material-icons {
    vertical-align: middle;
    line-height: 0 !important;
    position: relative;
    top: -1px;
    transform: rotate(90deg);
}

.with-icon:hover .material-symbols-outlined {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg);
    transform-style: preserve-3d;
    transition: all 0.5s;
}

.with-icon .material-symbols-outlined {
    transition: all 0.5s;
}

.hero_tag {
    background: var(--primaryColor);
    transform: rotate(-3.02deg);
    box-shadow: 8px 8px 0 0 var(--secondaryColor);
    color: #fff;
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 18px;
    border-radius: 17px;
}

.hero_tag>h1 {
    margin-bottom: 0;
}

/* Logo Carousel */
.text-secondary {
    color: var(--secondaryColor) !important;
}

.section-logo {
    position: relative;
}

.section-logo .ellipse.blue {
    width: 30%;
    left: auto;
    right: 20%;
    top: 25%;
}

.section-logo .max-width {
    max-width: 1100px;
}


.brand-slider .owl-item,
.brand-slider .owl-item.cloned {
    max-width: 200px;
}

.brand-slider .owl-item img {
    max-width: 100%;
    width: auto !Important;
}

/*Why us*/
.card-embossed {
    background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.75rem;
}

.card-header,
.card-footer {
    background: #fff;
    border-bottom: none;
    border-radius: 22px !important;
}

.card-footer {
    border-top: none;
    padding-bottom: 1.5rem;
}

.card-round {
    border-radius: 22px;
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-why .card-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-why .card-title h3 {
    font-family: var(--big-bold);
    font-size: 1.75rem;
    color: var(--secondaryColor);
}

.card-text {
    text-align: center;
}

/* cta */

.cta {
    background: var(--primaryColor);
    color: #fff;
    border-radius: 52px;
    box-shadow: 29px 29px 0 0 var(--secondaryColor);
}

.cta-body {
    padding: 3rem;
    text-align: center;
}

.cta-body h2 {
    font-size: 3rem;
}

.cta-body .btn-light>a {
    color: #000;
    text-decoration: none;
}

.shadow-btn .btn {
    height: 72px;
    font-size: 26px;
    font-family: var(--big-bold);
    border-radius: 25px;
    box-shadow: 10px 10px 0 0 var(--secondaryColor);
    padding: 8px 35px;
}

/* case Study */
.section-cstudy {
    background-image: url(../images/eclipse.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
}

.section-cstudy .card {
    margin-bottom: 1.75rem;
    background: transparent;
}

.section-cstudy .card-footer {
    background-color: transparent;
}

.section-cstudy .card-title {
    text-align: center;
    font-family: var(--big-bold);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Testimonial */
.section-testimonial {
    position: relative;
}

.testimonial {
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.25);
    border-radius: 35px;
    margin: 46px auto;
    padding-top: 35px;
    padding-bottom: 20px;
    margin-bottom: 90px;
}

.testimonial-card_body {
    position: relative;
}

img.shape.comma-one {
    position: absolute;
    top: -10px;
    left: 5px;
    width: 37px;
    height: 25px;
}

img.shape.comma-two {
    position: absolute;
    bottom: 10px;
    right: 5px;
    width: 37px;
    height: 25px;
}

.testimonial-card_body {
    padding: 15px 25px;
}

.testimonial-card_body p {
    font-size: 1.3rem;
    line-height: 1.5;
}

.testimonial {
    position: relative;
}

.testimonial-card_header {
    text-align: center;
}

.testimonial-card_header>.quote {
    position: absolute;
    right: 5%;
    top: 25%;
}

.feedback-section [class*=avatar-] {
    border-radius: 50%;
    outline-style: solid;
    outline-color: #fff;
    filter: drop-shadow(0px 10px 20px rgba(0, 59, 91, .05));
}

.feedback-section .owl-dots {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 30px;
}

.feedback-section .shapes {
    position: absolute;
    z-index: 0;
}

.feedback-section .avatar-one {
    top: 9%;
    left: 13%;
    animation: jumpFive 3s infinite linear;
}

.feedback-section .avatar-two {
    bottom: 35%;
    left: 5%;
    animation: jumpThree 3s infinite linear;
}

.feedback-section .avatar-three {
    bottom: 67%;
    right: 5%;
    animation: jumpTwo 3s infinite linear;
}

.feedback-section .avatar-four {
    bottom: 25%;
    right: 11%;
    animation: jumpFour 3s infinite linear;
}

/* FAQ */
.section-faq {
    position: relative;
}

.section-faq .ellipse.blue {
    right: 0;
    left: auto;
    top: 0;
    height: 80%;
    filter: blur(100px);
}

.faqWrapper .accordion.accordion-flush>.accordion-item>.accordion-header,
.faqWrapper .accordion.accordion-flush>.accordion-item>h2>button,
.faqWrapper .accordion.accordion-flush>.accordion-item {
    border-radius: 15.133px;
}

.faqWrapper .accordion.accordion-flush>.accordion-item>.accordion-header,
.faqWrapper .accordion.accordion-flush>.accordion-item {
    box-shadow: 0px 4.03548px 20.1774px rgba(0, 0, 0, 0.15);
}

.faqWrapper .accordion.accordion-flush>.accordion-item {
    margin-bottom: 1.5rem;
}

.faqWrapper .accordion.accordion-flush>.accordion-item>h2>button {
    font-family: var(--body-font);
    font-size: 1.75rem;
}

.faqWrapper .accordion-button:not(.collapsed) {
    color: #000;
}

.faq-title h2 {
    line-height: 4.5rem;

}

/* footer */
.footer {
    background: url(../images/Intersect-footer.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    padding-top: 4rem;
    background-color: #fff;
}

.footer-component {
    position: relative;
}

.footer-component .ellipse.blue {
    left: 0;
    filter: blur(100px);
}

.footer-socail {
    max-width: 306px;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.footer-socail ul>li {
    width: 50px;
    text-align: center;

    margin-right: 0 !important;
    margin-bottom: 10px;
}

.footer-socail ul>li>a {
    padding: 5px;
}

.footer-socail ul>li>a>img {
    width: 30px;
    height: 30px;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: radial-gradient(#210045 60%, rgb(255, 255, 255) 62%) !important;
    border-radius: 50%;
    position: relative;
    display: block;
    margin: 30px auto;
    box-shadow: 0px 0px 25px 3px rgb(209, 211, 225)
}

a.play-btn.play-sm {
    width: 50px;
    height: 50px;
    margin: 0px 28px;
}

/* triangle */
.play-sm.play-btn::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 15px solid #fff;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}

.footer-content-top {
    max-width: 427px;
    margin-left: auto;
}

.footer-link {
    color: #fff;
    font-family: var(--body-font);
}

.footer-link h3 {
    font-family: var(--body-font);
    font-size: 1.2rem;
}

.footer-link ul {
    padding-left: 25px;
}

.footer-link li {
    list-style: disc;
    line-height: 2;
}

.footer-link li>a {
    color: #fff;
    transition: all 0.5s;
}

.footer-link li>a:hover {
    transition: all 0.5s;
    color: #b0b0b0;
}

/* Timeline */
.section_timeline {
    z-index: -3;
    display: block;
    position: relative;
}

.timeline_component {
    z-index: 3;
    position: relative;
}

.timeline_timeline {
    z-index: -3;
}

.timeline_layout {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.timeline_progress {
    z-index: -2;
    width: 3px;
    height: 100%;
    background-color: rgba(101, 87, 255, .3);
    position: absolute;
}

.timeline_progress-bar {
    z-index: -1;
    width: 3px;
    height: 50vh;
    background-color: #6557ff;
    position: fixed;
    top: 0;
    bottom: 50vh;
}

.timeline_fade-overlay-top {
    z-index: 1;
    width: 100%;
    height: 6rem;
    background-image: linear-gradient(#fff, rgba(255, 255, 255, 0));
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
}

.timeline_fade-overlay-bottom {
    z-index: 1;
    width: 100%;
    height: 6rem;
    background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.timeline_item.top {
    padding-top: 4rem;
}

.timeline_item {
    z-index: 2;
    width: 100%;
    grid-template-rows: auto;
    grid-template-columns: 1fr 12rem 1fr;
    grid-auto-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: grid;
    position: relative;
}

.timeline_centre {
    justify-content: center;
    align-items: stretch;
    display: flex;
}

.timeline_circle {
    width: .9375rem;
    height: .9375rem;
    background-color: #000;
    border-radius: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 50vh;
    box-shadow: 0 0 0 8px #fff;
    transition: all 1s ease;
}

.grid_area {
    grid-area: span 1/span 1/span 1/span 1;
}

.bg_changer {
    transition: opacity 1s ease;
    /* transition-delay: 0.25s; */
}

.timeline_image-wrapper {
    height: 15rem;
    overflow: hidden;
    text-align: center;
}

/* pricing */

.table-lg th,
.table-lg td {
    padding: 30px 15px;
    font-family: var(--body-font);
}