.container {
    max-width: 100%;
    padding: 0;
    justify-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 18px 112px;
    width: 100%;
    height: 88px;
}
@media (max-width: 1200px) {
    .header {
        padding: 18px 56px;
    }
}
@media (max-width: 768px) {
    .header {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    .header {
        padding: 18px 14px;
    }
}
.button {
    background-color: #5000ff;
    width: 167px;
    height: 52px;
    gap: 8px;
    border-radius: 8px;
    align-content: center;
}
.first-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url('assets/hero-background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
}
@media (max-width: 768px) {
    .first-container {
        height: 735px;
    }
}
@media (max-width: 480px) {
    .first-container {
        height: 735px;
    }
}
.heading-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 285px;
}

@media (max-width: 768px) {
    .heading-container {
        padding-bottom: 0px;
    }
}
@media (max-width: 480px) {
    .heading-container {
        padding-bottom: 0px;
    }
}

.heading-text {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .heading-text {
        gap: 8px;
    }
}

.animated-heading {
    font-family: Poppins;
    font-size: 72px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

@media (max-width: 1200px) {
    .animated-heading {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .animated-heading {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .animated-heading {
        font-size: 24px;
    }
}

.animated-text {
    display: inline-block;
    transform: translateY(100%);
    animation-fill-mode: forwards;
    animation-name: slideIn;
    animation-duration: 1s;
}

@media (max-width: 768px) {
    .animated-text {
        width: 100%;
    }
}
.animated-heading:nth-child(1) .animated-text {
    animation-delay: 0.5s;
}

.animated-heading:nth-child(3) .animated-text {
    animation-delay: 1.7s;
}

.animated-heading:nth-child(5) .animated-text {
    animation-delay: 2.9s;
}

.pipe {
    display: inline-block;
    margin: 0 10px;
    font-size: 68px;
    font-weight: 300;
    margin-bottom: 12px;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
    }
}

.subheading-text {
    font-family: Poppins;
    max-width: 910px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}
@media (max-width: 768px) {
    .subheading-text {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .subheading-text {
        padding: 20px;
    }
}

.subheading-text-color {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    color: #4f2cda;
}

.second-container {
    display: flex;
    flex-direction: column;
    height: 475px;
    width: 100%;
    background-image: url('assets/second-background.svg');
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .second-container {
        height: auto;
    }
}
@media (max-width: 480px) {
    .second-container {
        height: auto;
    }
}
.second-text-container {
    padding: 115px 112px;
}
@media (max-width: 768px) {
    .second-text-container {
        padding: 64px 64px;
    }
}
@media (max-width: 480px) {
    .second-text-container {
        padding: 48px 48px;
    }
}
.second-text-1 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #9e77ed;
}

.second-text-1-nested {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.second-text-2 {
    font-family: Poppins;
    max-width: 638px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #d9d9d9;
}

.footer-container {
    display: flex;
    flex-direction: column;
    height: 538px;
    width: 100%;
    background-image: url('assets/footer-background.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.footer-text-1 {
    font-family: Poppins;
    font-size: 46px;
    margin: 60px 0 64px 0;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -1px;
    text-align: center;
    color: #d9d9d9;
}
@media (max-width: 768px) {
    .footer-text-1 {
        font-size: 34px;
    }
}
@media (max-width: 480px) {
    .footer-text-1 {
        font-size: 24px;
    }
}

.footer-text-2 {
    font-family: Poppins;
    font-size: 46px;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -1px;
    text-align: center;
    color: #9496ff;
    word-break: break-all;
}

@media (max-width: 768px) {
    .footer-text-2 {
        font-size: 34px;
    }
}
@media (max-width: 480px) {
    .footer-text-2 {
        font-size: 24px;
    }
}
.footer-text-3 {
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    color: #667085;
}
.social-icons-container {
    display: flex;
    justify-content: center;
    margin: 64px 0;
    gap: 20px;
}

.third-container {
    display: flex;
    max-width: 1280px;
    width: 100%;
    flex-direction: column;
    margin-top: 160px;
}

@media (max-width: 1200px) {
    .third-container {
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    .third-container {
        margin-top: 80px;
    }
}

.third-nested-first-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.third-text-1 {
    font-family: Poppins;
    font-size: 64px;
    font-weight: 700;
    line-height: 70.4px;
    letter-spacing: -1px;
}

@media (max-width: 480px) {
    .third-text-1 {
        font-size: 54px;
    }
}

.third-text-2 {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 24px;
    color: #344054;
}

@media (max-width: 1200px) {
    .third-text-2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .third-text-2 {
        text-align: center;
        font-size: 28px;
        padding: 0 20px;
    }
}
@media (max-width: 480px) {
    .third-text-2 {
        text-align: center;
    }
}

.dtc-container {
    display: flex;
    height: 538px;
    width: 100%;
    gap: 104px;
    padding: 0 32px;
    margin-top: 160px;
}
@media (max-width: 1200px) {
    .dtc-container {
        flex-direction: column;
        height: auto;
        gap: 52px;
        padding: 0 20px;
        align-items: center;
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    .dtc-container {
        flex-direction: column;
        height: auto;
        gap: 52px;
        padding: 0 20px;
        align-items: center;
        margin-top: 80px;
    }
}

@media (max-width: 1200px) {
    .dtc-text-container {
        padding: 0 20px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .dtc-text-container {
        text-align: center;
        padding: 0px;
    }
}
.dtc-text-1 {
    font-family: Poppins;
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #101828;
}

@media (max-width: 1200px) {
    .dtc-text-1 {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .dtc-text-1 {
        font-size: 40px;
    }
}

.dtc-text-2 {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 31.5px;
    margin-bottom: 24px;
    color: #475467;
}
@media (max-width: 480px) {
    .dtc-banner {
        width: 100%;
        height: 100%;
        padding: 0 20px;
    }
}
.divider {
    border-bottom: 2px solid #00000014;
}

.bordered-text-container {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .bordered-text-container {
        flex-direction: column;
        align-items: stretch;
    }
}
.bordered-text {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.5px;
    color: #101828;
    border: 2px solid #00000014;
    display: inline;
    border-radius: 24px;
    padding: 8px 16px;
    text-wrap-mode: nowrap;
}

.third-nested-second-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 160px;
    padding: 0 32px;
}
@media (max-width: 1200px) {
    .third-nested-second-container {
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    .third-nested-second-container {
        margin-top: 80px;
    }
}

.third-text-3 {
    font-family: Poppins;
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
@media (max-width: 1200px) {
    .third-text-3 {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .third-text-3 {
        font-size: 40px;
    }
}

.third-text-4 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    max-width: 800px;
    margin-bottom: 48px;
    text-align: center;
    color: #344054;
}

.di-container {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .di-container {
        flex-direction: column;
    }
}

.di-header-text {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #101828;
}
.di-column-container {
    display: flex;
    flex-direction: column;
    flex: 33%;
}
.di-text-container {
    display: flex;
    gap: 12px;
}

.di-text {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #344054;
}
.digital-insights-banner-container {
    display: flex;
    width: 100%;
    gap: 15px;
}
@media (max-width: 1200px) {
    .digital-insights-banner-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    .digital-insights-banner-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 480px) {
    .digital-insights-banner-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

.third-nested-third-container {
    display: flex;
    height: 487px;
    gap: 104px;
    padding: 0 32px;
    margin: 160px 0;
}

@media (max-width: 1200px) {
    .third-nested-third-container {
        flex-direction: column;
        height: auto;
        align-items: center;
        margin: 80px 0;
    }
}
@media (max-width: 768px) {
    .third-nested-third-container {
        flex-direction: column;
        height: auto;
        align-items: center;
        margin: 80px 0;
    }
}
