* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-y: auto;
    /* Allow vertical scrolling */
    overflow-x: hidden;
    /* Hide horizontal scrollbar */
}

.application-header__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -16px;
    position: relative;
}

.application-header__image-wrapper {
    flex: 1;
    max-width: 50%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.application-header__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.application-header__text-wrapper {
    flex: 1;
    max-width: 40%;
    text-align: left;
    z-index: 2;
}

.application-header__main-heading {
    font-weight: 400;
    color: #333;
    font-size: 3.375rem;
}

.application-header__secondary-heading {
    font-size: 1.6rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.line {
    width: 4rem;
    margin: 1.5rem 0;
    background: #333;
    height: 2px;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #0073e6;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005bb5;
}

.scroll-indicator {
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    position: absolute;
    right: 14px;
    top: -148px;
}

.arrow {
    width: 2px;
    height: 125px;
    background-color: #333;
    position: relative;
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: -12px;
    width: 10px;
    /* height: 10px; */
    border: 7px solid transparent;
    border-right: 10px solid #3c3c3c;
    transform: rotate(270deg);
}

.text {
    transform: rotate(-90deg);
    color: #333;
    font-family: sans-serif;
    font-size: 1rem;
    white-space: nowrap;
    text-transform: lowercase;
    margin-right: -25px;
}

@media (max-width: 600px) {

    .application-header__image-wrapper,
    .scroll-content,
    .line,
    .application-header__main-heading {
        display: none;
    }

    .application-header__row {
        padding: 24px;
        margin: 0;
    }

    .application-header__text-wrapper {
        max-width: 100%;
    }

    .animated-circles {
        height: 13%;
    }
}

@media (max-width: 200px) {
    .application-header__row {
        padding: 4px;
    }
    .animated-circles {
        height: 8%;
    }
}
.p-5{
    padding: 5rem 0;
}