/* hero section */

@font-face {
    font-family: hathama;
    src: url(../assets/Hathama-XGVEg.otf);
}
.hero {
    position: relative;
    padding-top: 9vh;
    height: 150vh;
    width: 100%;
    background: #0a0a0f;
    z-index: 1;
}

.hero-container {
    position: relative;
    padding: 20px;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
    overflow: hidden;
    display: flex;
    z-index: 15;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    background: linear-gradient(180deg, #dbeaf900, #a4c2cb);
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: -1;
}

.hero-left {
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 200px;
    height: 135vh;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 15px;
    padding-left: 15px;
    position: relative;
    width: 54%;

}

.hero-title {
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;

}


.tagline {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.368);
    padding: 12px 16px;
    color: #000000;
}

.active-indicator {
    margin-top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #01f466;
    box-shadow: 0 0 0 rgba(0, 255, 106, 0.7);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(1, 212, 89, 0.7);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(0, 255, 106, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 106, 0);
    }
}

.titlewithbtn {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.titlewithbtn h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    background: #FCFCFC;
    background: linear-gradient(to right, #000000, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 85%;

}
.titlewithbtn h1 i img {
   position: static !important;
    width: 52px !important;
    height: 52px !important;
    object-fit: cover !important;
    background: none !important;
    opacity: 1 !important;
}
.titlewithbtn h1 span {
    font-family: 'Gloria Hallelujah';
    background: #FCFCFC;
    background: linear-gradient(to right, #78A2D2, #78A2D2, #78A2D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.titlewithbtn p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
    text-align: left;
}

.titlewithbtn .lower-text {
    margin-top: 15px;
    background-color: #06060667 !important;
    border: none;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    padding: 12px 24px;
    transition: background-color 0.3s ease;
    width: fit-content;
    text-decoration: none;
    font-family: pj;
    font-weight: 600;


    &:hover {
        background-color: #1795a9;
        color: seashell;
    }


}
.lower-text a{
    color: white !important;
}
.stats-box {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.342);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 25px;
    width: 60%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
}

.stats-text {
    color: rgb(0, 0, 0);
    font-size: 1.1rem;
}

.stats-users img:first-child {
    margin-left: 0;
}

.stats-icon {
    font-size: 5rem;
    color: #010101;
}

.stats-icon:hover {
    transform: scale(.9);
    color: rgba(0, 0, 0, 0.719);
    transition: transform 0.3s ease-in-out;
}

.hero-right {
    align-items: flex-end;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 35px;
    height: min-content;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46%;
}

.tags {
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
    overflow: visible;
    padding-right: 25px;
    position: relative;
    width: 50%;
}

.tags .tag {
    backdrop-filter: blur(8px);
    background-color: rgba(136, 152, 171, 0.5);
    border-radius: 16px;
    opacity: 1;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(0, 0, 0);
    font-size: 10px;
}

.cardno {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 25px;
    position: relative;
    width: 100%;
    height: 62vh;
}

.card-left {
    position: relative;
    display: flex;
    align-items: center;
    align-self: flex-end;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    width: 50%;
    height: 80%;
    border-radius: 16px;
}

.card-left .in-top-text {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.insight {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding-right: 25px;
}

.insightbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(128, 128, 128, 0.71);
    padding: 3px 20px;
}

.insightbtn a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.card-left .in-middle-text {
    margin-top: 5px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}

.in-middle-text h2 {
    font-size: 1.5rem;
    color: white;
}

.in-middle-text h2 span {
    color: #1795a9;
}

.in-middle-text p {
    font-size: 0.9rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.838);
}

.in-bottom-text {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
    color: white;
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
}

.in-bottom-text h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.in-bottom-text i {
    font-size: 30px;
}

.card-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #0c6c7a;
    padding: 25px;
    width: 50%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.dna-text{
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    color: white;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.dna-text h2{
    
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: black;
    font-family: pj;
}
.card-right img {
    position: absolute;
    bottom: 0;
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.card-right .img1 {
    opacity: .9;
}

.card-right .img2 {
    opacity: 0;
}

/* Arrow button styling */
.arrow-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.653);
    border: none;
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}


/* clients */
section.clients {
    margin: 150px 0 0 0;
    text-align: center;
}

.clients h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.clients h3.h3-secondary {
    color: rgb(50, 52, 57);
}

.client-logos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.logo-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.logo {
    flex: 1 1 auto;
    min-width: calc((100% - 100px) / 6);
}



/* frustration section */
.frustration-section {
    min-height: 100vh;
    width: 100%;
    background: #000;
    color: white;
    padding: 70px;
    position: relative;
}

.frustration-section svg {
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;

}

.frustration-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.frustration-content p {
    font-size: 1.2rem;
    color: #DBDABE;
}

.frustration-content h2 {
    font-family: 'Gloria Hallelujah';
    font-size: 2.3rem;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    font-weight: 600;
}

.frustration-content h2 span {
    color: #78A2D2;
}

.frustration-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.frustration-listsbox {
    position: relative;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    z-index: 1;
}

.frustration-listsbox .frustration-box {
    padding: 20px;
    width: 350px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.frustration-listsbox .frustration-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.frustration-box .f-icon {
    display: flex;
    justify-content: center;
}

.frustration-box .f-icon i {
    color: #78A2D2;
    font-size: 2rem;
}

.frustration-box p {
    font-size: 1.2rem;
    text-align: center;
    font-family: montserrat;
}

.familiar-text {
    display: flex;
    justify-content: right;
    margin-top: 20px;
    color: white;
    font-family: 'Gloria Hallelujah';
    transform: rotate(-5deg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.familiar-text i {
    margin-top: 10px;
    font-size: 1.5rem;
}

/* Background Grid */
.graph-bg-dark {
    position: relative;
    min-height: 130vh;
    padding: 50px 20px;
    text-align: center;
    background-color: #000000;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.196) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.196) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #f1f1f1;
}

.graph-bg-dark h2 {
    font-size: 36px;

    color: #ffffff;
}

.graph-bg-dark h2 span {
    font-family: 'Gloria Hallelujah';
    color: #01f466;
}

.graph-bg-dark p {
    font-size: 18px;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.instructor-nav-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 50;
}

.instructor-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.instructor-btn:hover {
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.9);
}

.instructor-arrow {
    font-size: 1.6rem;
    color: #01f466;
    transition: transform 0.3s ease;
}

.instructor-prev:hover .instructor-arrow {
    transform: translateX(-4px);
}

.instructor-next:hover .instructor-arrow {
    transform: translateX(4px);
}



.levitate-icon1 {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 5rem;
    color: #ffffffb4;
    animation: levitate 3s ease-in-out infinite;
    transform: translateX(40px) rotate(30deg);

}

.levitate-icon2 {
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 5rem;
    color: #ffffffb4;
    animation: levitate 3s ease-in-out infinite;
    transform: translateX(40px) rotate(30deg);
}

@keyframes levitate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.instructor-container {
    padding: 10px 100px;
    display: flex;
    gap: 8px;
    height: 500px;
    /* assuming each "fr" = 100px in original grid */
}

.ins-pic {
    flex: 0 0 44%;
    /* spans 2 of 5 columns = 40% */
    background: #000000b9;
    border-radius: 26px;
    padding: 5px;
}

.ins-pic img {
    object-fit: cover;
    border-radius: 22px;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ins-bio {
    flex: 0 0 70%;
    /* spans 3 of 5 rows = 60% */
    background: rgb(0, 0, 0);
    border-radius: 26px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.ins-bio-name {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: start;
    flex-direction: column;
    padding-bottom: 20px;
}

.ins-bio-name h3 {
    font-size: 1.5rem;
}

.ins-bio-name h4 {
    color: rgba(202, 199, 199, 0.854);
    font-size: 1.2rem;

}

.ins-bio-name .signature {
    font-family: hathama;
    font-size: 1.6rem;
    position: absolute;
    top: 10%;
    right: 5%;
    transform: rotate(-10deg);
}

.ins-bio-main {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.ins-bio-main h2 {
    font-size: 1.4rem;
    color: #78A2D2;
}

.ins-bio-main p {
    font-size: 1rem;
    text-align: left;
}

.ins-social {
    flex: 0 0 20%;
    /* spans 2 of 5 rows = 40% */
    background: rgb(0, 0, 0);
    border-radius: 26px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.ins-social a {
    color: #78A2D2;
    font-size: 3rem;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.ins-social a:hover {
    color: #01f466;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(1, 244, 102, 0.7);
}


/* acheivement section */
.achievement {
    position: relative;
    min-height: 130vh;
    padding: 50px 20px;
    background-color: #000;
    text-align: center;
}

.achievement svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;

}

.achievement h2 {
    font-family: 'Gloria Hallelujah';
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.achievement h2 span {
    color: #78A2D2;
}

.achievement p {
    font-size: 18px;
    color: #bbbbbb;
}

/* Grid Layout */
.parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0px;
    width: 100%;
    height: 100%;
    margin-top: 40px;
    padding: 20px;
}

.parent div {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 18px;
    box-sizing: border-box;
    text-align: center;
}

/* Icon */
.icond {
    font-size: 28px;
    margin-bottom: 15px;
    color: #78A2D2;
}

/* Grid positions (same as before) */
.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    border: 1px dashed #444;
    /* Border fix */
    border-top: none;
    border-left: none;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    border: 1px dashed #444;
    /* Border fix */
    border-top: none;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    border: 1px dashed #444;
    /* Border fix */
    border-top: none;
    border-right: none;
}

.div4 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-row-start: 4;
    border: 1px dashed #444;
    /* Border fix */
    border-left: none;
    border-bottom: none;
}

.div5 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 4;
    border: 1px dashed #444;
    /* Border fix */
    border-bottom: none;
}

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 4;
    border: 1px dashed #444;
    /* Border fix */
    border-right: none;
    border-bottom: none;
}

/* reviews */
.testimonial-section {
    position: relative;
    min-height: 150vh;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-section svg {
    width: 100%;
    position: absolute;
    top: 0;
}

.testimonial-heading {
    flex: 1;
    padding-right: 40px;
}

.testimonial-heading h2 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #fffffff3;
    gap: 20px;
}

.testimonial-heading p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffffa4;
}

.testimonial-heading span {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #888;
    /* or use a soft gray */
    margin-top: 2px;
}

.slider {
     max-height: 400px;
    flex: 2;
    overflow: hidden;
    position: relative;
    margin-top: 65px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.slider-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    position: relative;
    min-width: 100%;
    padding: 40px;
    background: #64a0e4b3;
    border-radius: 15px;

}

.slide svg {
    height: 30px !important;
    width: 30px !important;
    position: absolute;
    top: 5%;
    left: 5%;
    transform: rotate(180deg);
}

.slide p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000000;
       font-family: 'Gloria Hallelujah';

}

.author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-name {
    color: rgb(0, 0, 0);
    font-weight: 600;
}

.author-role {
    font-size: 0.9rem;
    color: #000000a6;
}


/* faq */

.faq-container {
    max-width: 600px;
    width: 100%;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.faq-title {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.faq-title span {
    color: #78A2D2;
    font-family: 'Gloria Hallelujah';
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    background: #000000;
    color: #ffffff;
}

.faq-question::after {
    content: '+';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 15px 20px;
    max-height: 300px;
}

/* discover */
section.discover {
    position: relative;
    width: 100%;
    margin: 150px 0 100px 0;
}

.discover h2 {
    color: #78A2D2;
    text-align: center;
    margin: 24px 0px;
    font-size: 60px;
}

.discover span {
    font-family: 'Gloria Hallelujah';
    color: white;
}

.discover svg {
    position: absolute;
    top: 0;
    right: -5%;
    z-index: -6;
    height: 100%;

}

.icons {
    position: relative;
    margin: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 10px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid var(--color-border);
    border-radius: 100%;
    background: radial-gradient(circle,
            rgba(66, 41, 139, 0.2) 0%,
            rgba(66, 41, 139, 0.1) 20%,
            rgba(66, 41, 139, 0.05) 40%,
            rgba(0, 0, 0, 0) 60%);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    font-size: 30px;
    color: rgba(255, 255, 255, 0.75);
}

.icon#main-icon {
    width: 125px;
    height: 125px;
    background: radial-gradient(circle,
            rgba(66, 41, 139, 0.2) 0%,
            rgba(66, 41, 139, 0.1) 20%,
            rgba(66, 41, 139, 0.05) 40%,
            rgba(0, 0, 0, 0) 60%);
    color: #352274;
    font-size: 30px;
}

.icon-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--color-border);
    border-radius: 100%;
    background: #78A2D2;
}

.icon:nth-child(2),
.icon:nth-child(6) {
    width: 75px;
    height: 75px;
}

.icon:nth-child(1),
.icon:nth-child(7) {
    width: 65px;
    height: 65px;
}

.icon i {
    position: relative;
    top: 0;
}

.pulses {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    transform-origin: center;
    border: 1px solid var(--color-border);
    border-radius: 100%;
    opacity: 0;
    transform: scale(0);
    animation: pulse 4s infinite forwards;
}

.pulse-1 {
    width: 175px;
    height: 175px;
    background: rgba(66, 41, 139, 0.5);
    animation-delay: 0s;
}

.pulse-2 {
    width: 225px;
    height: 225px;
    background: rgba(66, 41, 139, 0.3);
    animation-delay: 0.75s;
}

.pulse-3 {
    width: 275px;
    height: 275px;
    background: rgba(66, 41, 139, 0.1);
    animation-delay: 1.5s;
}

@keyframes pulse {

    0%,
    20% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    25% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(0.75);
    }

    70%,
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    75% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.task-copy {
    text-align: center;
    margin: 0 auto;
}

.hero-callout {
    padding-top: 40px;
    text-align: center;
    margin: 0 auto;
}

.hero-callout a {
    color: white;
}