@font-face {
    font-family: ViolaFont;
    src: url(Alaska.ttf);
}

@font-face {
    font-family: ViolaFontDefault;
    src: url(Poppins-Regular.ttf);
}

:root {
    --background-color: #eef2f4;
    --default-color: #000000;
    --line-color: #000000;
    --sub-line-color: #d8d8d8;
    --primary-color: #90c541;
    --default-font: ViolaFontDefault
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: #eef2f4;
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.viola_section {
    padding: 60px 0;
}

.viola_section1 {
    padding: 100px 0;
}

.viola_container {
    width: 80%;
    margin-left: 10%;
}

.viola_container_manifest_box {
    width: 100%;
}

@media (max-width: 768px) {
    .viola_section {
        padding: 40px 0;
    }
    .viola_section1 {
        padding: 40px 0;
    }
    .viola_container {
        width: 98%;
        margin-left: 1%;
    }
    .viola_container_manifest_box {
        width: 98%;
        margin-left: 1%;
    }
}

.two_section_background_color {
    background-image: linear-gradient(to bottom, #eef2f4, #e8edf0, #e2e8ec, #dce4e8, #d6dfe4);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1020;
}


/* Custom CSS for the mobile menu */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1030;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-button {
    color: #000000;
    font-size: 30px;
    height: 73px;
}


/* The container for the entire menu with horizontal lines */

.menu-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: -5px;
}

.viola_header_logo {
    margin-right: 78px;
}

.viola_header_logo img {
    max-height: 83px;
}

.viola_menu_section {
    height: 74px;
    width: 100%;
}


/* Top horizontal line */

.menu-container::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -10px;
    right: -15px;
    height: 1px;
    background-color: #ebebebe3;
    z-index: -1;
}


/* Bottom horizontal line */

.menu-container::after {
    content: '';
    position: absolute;
    bottom: 11px;
    left: -15px;
    right: -10px;
    height: 1px;
    background-color: #ebebebe3;
    z-index: -1;
}


/* The span to hold each menu item's text and vertical lines */

.menu-item-with-lines {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: ViolaFont;
    letter-spacing: 4px;
    transition: transform 0.2s ease-out;
    /* Add transition for a smooth effect */
    display: inline-block;
    /* Added to make transform work reliably */
}

.menu-item-with-lines:active {
    transform: scale(0.94) translateZ(-6px);
    /* New transform for scaling and backward motion */
}

.menu-item-with-lines:hover {
    color: #90c541;
}


/* Pseudo-element for the left vertical line */

.menu-item-with-lines::before {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -10px;
    left: 0;
    width: 1px;
    background-color: #ebebebe3;
    z-index: -1;
}

.menu_custom_line::before {
    transform: rotate(23deg);
}


/* Pseudo-element for the right vertical line */

.menu-item-with-lines::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -15px;
    right: 4px;
    width: 1px;
    background-color: #ebebebe3;
    z-index: -1;
}


/* Large devices (large desktops, >= 992px) */

@media (min-width: 1360px) and (max-width: 1560px) {
    .menu-item-with-lines {
        font-size: 20px;
        letter-spacing: 3px;
    }
    .menu-item-with-lines::after {
        right: 2px;
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .menu-item-with-lines {
        font-size: 17px;
        letter-spacing: 3px;
    }
    .viola_header_logo img {
        max-height: 73px;
    }
    .viola_menu_section {
        height: 64px;
    }
    .menu-item-with-lines::after {
        right: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .viola_header_logo img {
        max-height: 63px;
    }
    .viola_menu_section {
        height: 54px;
    }
    .menu-item-with-lines {
        font-size: 16px;
        letter-spacing: 0px;
    }
    .menu-item-with-lines::after {
        right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .viola_header_logo img {
        max-height: 53px;
    }
    .viola_menu_section {
        height: 44px;
    }
    .menu-item-with-lines {
        font-size: 13px;
        letter-spacing: 0;
    }
    .menu-item-with-lines::after {
        right: 2px;
    }
    .menu-item-with-lines::after {
        right: -4px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .menu-item-with-lines {
        font-size: 8px;
        letter-spacing: 2px;
    }
    .menu-item-with-lines::after {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .menu-item-with-lines {
        font-size: 14px;
        letter-spacing: 2px;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.viola_footer {
    background-color: black;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.footer_contact_box {
    position: relative;
    height: 100%;
}

.line-container-box {
    position: absolute;
    bottom: -146px;
    left: 50%;
}

.line-container {
    position: relative;
    width: 1px;
    height: 1px;
}

.footerdot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: 2;
}

.footerline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0% 100%;
    height: 1px;
    background-color: #0e0e0e;
    z-index: 0;
}


/* Each line is a separate element rotated to a specific degree */

.footerline:nth-child(2) {
    transform: rotate(191.8deg);
    width: 595px;
}

.footerline:nth-child(3) {
    transform: rotate(198deg);
    width: 697px;
}

.footerline:nth-child(4) {
    transform: rotate(219.5deg);
    width: 325px;
}

.footerline:nth-child(5) {
    transform: rotate(215.5deg);
    width: 199px;
}

.footerline:nth-child(6) {
    transform: rotate(229.5deg);
    width: 285px;
}

.footerline:nth-child(7) {
    transform: rotate(220deg);
    width: 338px;
}

.footerline:nth-child(8) {
    transform: rotate(324deg);
    width: 194px;
}

.footerline:nth-child(9) {
    transform: rotate(310deg);
    width: 286px;
}

.footerline:nth-child(10) {
    transform: rotate(319.5deg);
    width: 298px;
}

.footerline:nth-child(11) {
    transform: rotate(333deg);
    width: 253px;
}

.footerline:nth-child(12) {
    transform: rotate(341deg);
    width: 674px;
}

.footerline:nth-child(13) {
    transform: rotate(348.5deg);
    width: 591px;
}

.footer_box_content {
    height: 80px;
    width: 100%;
}

.footer_box_content i {
    color: #90c541;
    font-size: 35px;
    margin-right: 50px;
}

.footer_box_content p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

.footer_contact_first_box {
    width: 25%;
    position: relative;
    height: 80px;
    margin-right: 5%;
}

.footer_contact_first_transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border: .6px solid rgb(99, 99, 99);
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.74);
}

.footer_contact_first_shadow-box {
    position: absolute;
    top: 30px;
    left: 80px;
    width: 90%;
    height: 80px;
    border: 1px solid rgb(19, 19, 19);
    background-color: rgba(19, 19, 19, 0.76);
    z-index: 2
}


/* The connecting lines */

.connector {
    position: absolute;
    background-color: #131313;
    z-index: 1;
}


/* Top-left to top-left corner line */

.connector.first_top-left {
    top: 0px;
    left: 18px;
    height: 42px;
    width: 1px;
    transform: rotate(-45deg);
}


/* Top-left to top-left corner line */

.connector.first_top-right {
    top: -10px;
    right: -21px;
    height: 53px;
    width: 1px;
    transform: rotate(-52deg);
}

.connector.first_bottom-left {
    bottom: -59px;
    left: 43px;
    height: 87px;
    width: 1px;
    transform: rotate(-71deg);
}

.connector.first_bottom-right {
    bottom: -40px;
    right: -22px;
    height: 53px;
    width: 1px;
    transform: rotate(-49deg);
}

.footer_contact_second_box {
    width: 25%;
    position: relative;
    height: 80px;
    margin-right: 5%;
}

.footer_contact_second_transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border: .6px solid rgb(99, 99, 99);
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.74);
}

.footer_contact_second_shadow-box {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 84.5%;
    height: 80px;
    border: 1px solid rgb(19, 19, 19);
    background-color: rgba(19, 19, 19, 0.76);
    z-index: 2
}


/* Top-left to top-left corner line */

.connector.second_top-left {
    top: 0px;
    left: 18px;
    height: 42px;
    width: 1px;
    transform: rotate(-45deg);
}


/* Top-left to top-left corner line */

.connector.second_top-right {
    top: 0px;
    right: 23px;
    height: 42px;
    width: 1px;
    transform: rotate(45deg);
}

.connector.second_bottom-left {
    bottom: -38px;
    left: 15px;
    height: 42px;
    width: 1px;
    transform: rotate(-45deg);
}

.connector.second_bottom-right {
    bottom: -36px;
    right: 18px;
    height: 42px;
    width: 1px;
    transform: rotate(45deg);
}

.footer_contact_third_box {
    width: 25%;
    position: relative;
    height: 80px;
}

.footer_contact_third_transparent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    border: .6px solid rgb(99, 99, 99);
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.74);
}

.footer_contact_third_shadow-box {
    position: absolute;
    top: 30px;
    right: 80px;
    width: 90%;
    height: 80px;
    border: 1px solid rgb(19, 19, 19);
    background-color: rgba(19, 19, 19, 0.76);
    z-index: 2
}


/* Top-left to top-left corner line */

.connector.third_top-left {
    top: -6px;
    left: -24px;
    height: 47px;
    width: 1px;
    transform: rotate(54deg);
}


/* Top-left to top-left corner line */

.connector.third_top-right {
    top: -6px;
    right: 15px;
    height: 42px;
    width: 1px;
    transform: rotate(45deg);
}

.connector.third_bottom-left {
    bottom: -37px;
    left: -15px;
    height: 57px;
    width: 1px;
    transform: rotate(54deg);
}

.connector.third_bottom-right {
    bottom: -60px;
    right: 33px;
    height: 92px;
    width: 1px;
    transform: rotate(72deg);
}

.viol_footer_logo_box {
    margin-top: 50px;
}

.logo_box {
    position: relative;
    height: 100%;
    text-align: left;
    padding-left: 2px;
}

.viol_footer_logo_box ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
}

.logo_box::before {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #d8d8d87e;
    z-index: 1;
    left: 0px;
    top: 0;
    bottom: -15px;
}

.logo_box img {
    height: 70px;
    margin-bottom: 30px;
}

.logo_box p {
    font-size: 14px;
    font-weight: 500;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding-bottom: 2px;
}

.logo_box ul li {
    font-size: 8px;
    font-weight: 500;
    color: #e0e0e0;
    text-transform: uppercase;
}

.footer_menu_box {
    position: relative;
    height: 100%;
    text-align: right;
}

.footer_menu_box::before {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #d8d8d87e;
    z-index: 3;
    right: 0px;
    top: 0;
    bottom: -30px;
}

.footer_menu_box ul li:last-child {
    padding-bottom: 0px;
}

.footer_menu_box ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #d4d4d4;
    text-transform: uppercase;
    font-family: ViolaFont;
}

.viola_copywrite {
    position: relative;
    height: 100%;
    text-align: left;
    padding-top: 5px;
}

.viola_copywrite::before {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #d8d8d87e;
    z-index: 3;
    right: -5px;
    left: -7px;
    top: 0;
}

.viola_copywrite p {
    font-size: 10px;
    font-weight: 500;
    color: #8f8f8f;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: ViolaFont;
    padding-left: 5px;
}

@media (max-width: 1058px) {
    .footer_contact_first_box {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        margin-bottom: 15px;
        height: 70px;
    }
    .footer_contact_first_transparent-box {
        height: 70px;
    }
    .footer_contact_second_box {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        margin-bottom: 15px;
        height: 70px;
    }
    .footer_contact_third_box {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        height: 70px;
    }
    .footer_contact_second_transparent-box {
        height: 70px;
    }
    .footer_contact_third_transparent-box {
        height: 70px;
    }
    .footer_box_content {
        height: 70px;
    }
    .home_last_tagline_section h1 {
        font-size: 12px;
    }
    .line-container-box {
        display: none;
    }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Home Hero Section with Menifest Box
--------------------------------------------------------------*/

.manifest-container {
    position: relative;
    margin-top: 5px;
    height: 100%;
    background-color: white;
    padding: 20px 15px 5px;
}


/* Custom CSS for the lines */

.line-h {
    position: absolute;
    width: 103%;
    height: 1px;
    /* Increased thickness for better visibility */
    background-color: var(--line-color);
}

.line-v {
    position: absolute;
    width: 1px;
    /* Increased thickness for better visibility */
    height: 120%;
    background-color: var(--line-color);
}

.line-top {
    top: 0;
    left: -10px;
    right: -5px;
}

.line-bottom {
    bottom: 0;
    left: -5px;
    right: -10px;
}

.line-left {
    left: 0;
    top: -10px;
    bottom: -5px;
}

.line-right {
    right: 0px;
    top: -20px;
    bottom: -10px;
}


/* Custom CSS for the dots */

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--line-color);
    border-radius: 50%;
    /* transform: translate(-50%, -50%); */
}


/* New positioning to align dots perfectly on the lines */

.dot-top-left {
    top: -2px;
    left: -2px;
}

.dot-top-right {
    top: -2px;
    right: -2px;
}

.dot-bottom-left {
    bottom: -2px;
    left: -2px;
}

.dot-bottom-right {
    bottom: -2px;
    right: -2px;
}

.manifest_total_content_box {
    padding: 0 3%;
}

.manifest_text_box_header {
    height: 130px;
    display: flex;
    align-self: flex-start;
}

.manifest_text_box_header_pages {
    height: 60px;
    display: flex;
    align-self: flex-start;
}

.manifest_text_box_text {
    height: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.manifest-heading-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 14px;
    text-transform: uppercase;
    font-family: ViolaFont;
}

.manifest-paragraph-text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    max-width: 60%;
    font-family: var(--default-color);
}

.viola_video_section {
    margin-top: -80px;
    height: 95vh;
}

.direct-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .viola_video_section {
        margin-top: -60px;
        height: 85vh;
    }
    .manifest_text_box_header_pages {
        height: 38px;
        display: flex;
        align-self: flex-start;
    }
}

@media (max-width: 1000px) {
    .viola_video_section {
        margin-top: -60px;
        height: 85vh;
    }
    .manifest_text_box_header_pages {
        height: 40px;
        display: flex;
        align-self: flex-start;
    }
}


/* Large devices (large desktops, >= 992px) */

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .manifest-heading-text {
        font-size: 28px;
    }
    .manifest-paragraph-text {
        font-size: 14px;
        width: 70%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .manifest-heading-text {
        font-size: 22px;
        letter-spacing: 10px;
    }
    .manifest-paragraph-text {
        font-size: 14px;
        max-width: 80%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .manifest-heading-text {
        font-size: 20px;
        letter-spacing: 5px;
    }
    .manifest-paragraph-text {
        font-size: 14px;
        max-width: 80%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .line-h {
        width: 102%;
    }
    .manifest_text_box_header {
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .manifest-heading-text {
        font-size: 22px;
        letter-spacing: 5px;
        text-align: center;
    }
    .manifest_text_box_text {
        height: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .manifest-paragraph-text {
        font-size: 14px;
        max-width: 80%;
    }
}

@media (max-width: 575.98px) {
    .line-h {
        width: 102%;
    }
    .manifest_text_box_header {
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .manifest-heading-text {
        font-size: 20px;
        letter-spacing: 5px;
        text-align: center;
    }
    .manifest_text_box_text {
        height: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .manifest-paragraph-text {
        font-size: 12px;
        max-width: 90%;
    }
}


/*--------------------------------------------------------------
# Home about us section
--------------------------------------------------------------*/

.story-container {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}


/* Keyframes for the line drawing animation */

@keyframes drawLineFromLeft {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes drawLineFromRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes drawLineFromCenter {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}


/* Keyframes for the text fade-in animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Vertical line divider with animation */

.story-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 34%;
    transform: translateX(-75%) scaleY(0);
    /* Start scaled to 0 */
    transform-origin: center center;
    height: 100%;
    width: 1px;
    background-color: var(--line-color);
    animation: drawLineFromCenter 1s forwards paused;
    animation-delay: .8s;
    /* Delay for the vertical line */
}


/* Top and bottom horizontal lines with animation */

.story-container::before,
.story-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--line-color);
}

.story-container::before {
    top: 25px;
    transform-origin: left center;
    transform: scaleX(0);
    animation: drawLineFromLeft 1s forwards paused;
    animation-delay: 0.2s;
    /* Delay for the top line */
}

.story-container::after {
    bottom: 25px;
    transform-origin: right center;
    transform: scaleX(0);
    animation: drawLineFromRight 1s forwards paused;
    animation-delay: 1s;
    /* Delay for the bottom line */
}

.slash_design {
    content: '';
    position: absolute;
    height: 20px;
    width: 1px;
    background-color: var(--line-color);
    z-index: 10;
    transform: rotate(-45deg);
}

.slash_up {
    top: 15px;
    left: 34%;
}

.slash_down {
    bottom: 16px;
    left: 34%;
}

.slash_box {
    position: absolute;
    left: 4px;
    bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s forwards paused;
    animation-delay: 1.2s;
    /* Delay for the slash box */
}

.box_slash {
    height: 8px;
    width: 2px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: var(--line-color);
    margin-right: 5px;
}


/* Left side heading styles */

.heading-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 14px;
    text-transform: uppercase;
    font-family: ViolaFont;
    opacity: 0;
    animation: fadeIn 1s forwards paused;
    animation-delay: 1.5s;
    /* Delay for the heading text */
}


/* Right side paragraph styles */

.paragraph-text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    padding-left: 20%;
    padding-right: 5%;
    font-family: var(--default-color);
    text-align: left;
    opacity: 0;
    animation: fadeIn 1s forwards paused;
    animation-delay: 1.7s;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .heading-text {
        font-size: 28px;
        letter-spacing: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .heading-text {
        font-size: 20px;
        letter-spacing: 10px;
    }
}

@media (max-width: 768px) {
    .story-divider::before {
        left: 13%;
    }
    .slash_up {
        left: 13%;
    }
    .slash_down {
        left: 13%;
    }
    .heading-text {
        font-size: 22px;
        letter-spacing: 5px;
        padding-left: 20%;
    }
}


/* Class to trigger the animation */

.animate-on-scroll .story-container::before,
.animate-on-scroll .story-container::after,
.animate-on-scroll .story-divider::before,
.animate-on-scroll .slash_box,
.animate-on-scroll .heading-text,
.animate-on-scroll .paragraph-text {
    animation-play-state: running;
}


/*--------------------------------------------------------------
# Home number design
--------------------------------------------------------------*/

.viola_number_section_map {
    background-image: url("../img/home/map_back.png");
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
}


/* Keyframes for the line drawing and fade-in effects */

@keyframes draw-horizontal {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes draw-vertical {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Original user CSS, but without animation properties */

.viola_number_section {
    position: relative;
    overflow: hidden;
}

.viola_number_header h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 14px;
    text-transform: uppercase;
    font-family: ViolaFont;
    opacity: 0;
    position: relative;
    z-index: 1;
    /* Initially hidden */
}

.viola_number_section::after,
.viola_number_section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--line-color);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 0;
}

.viola_number_section::before {
    top: 15px;
}

.viola_number_section::after {
    bottom: 15px;
}

.number_slash_design {
    content: '';
    position: absolute;
    height: 20px;
    width: 1px;
    background-color: var(--line-color);
    z-index: 10;
    transform: rotate(-45deg);
}

.slash_up1 {
    top: 5px;
    left: 33.9%;
}

.slash_up2 {
    top: 5px;
    left: 50.4%;
}

.slash_up3 {
    top: 5px;
    left: 83.5%;
}

.slash_down1 {
    bottom: 5px;
    left: 33.9%;
}

.slash_down2 {
    bottom: 5px;
    left: 67%;
}

.slash_box1 {
    position: absolute;
    left: 4px;
    bottom: 5px;
    opacity: 1;
    animation: fadeIn 1s forwards paused;
    animation-delay: 1s;
}

.viola_number_uppersection {
    position: relative;
}

.viola_number_uppersection::after {
    content: '';
    position: absolute;
    height: 1px;
    top: 49%;
    right: 0px;
    left: -15px;
    background-color: var(--line-color);
    transform: scaleX(0);
    transform-origin: left;
}

.viola_number_container {
    position: relative;
    padding: 10px 15px;
}

.viola_number_container_box::before {
    content: '';
    position: absolute;
    width: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--line-color);
    transform: scaleY(0);
    transform-origin: top;
}

.viola_number_container_box2::after {
    content: '';
    position: absolute;
    width: 1px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--line-color);
    transform: scaleY(0);
    transform-origin: top;
}

.viola_number_uppersection_icon {
    height: 220px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 48px;
}

.viola_number_uppersection_icon img {
    height: 100px;
}

.viola_number_uppersection_text {
    padding-top: 22px;
    padding-bottom: 40px;
    padding-right: 20px;
    padding-left: 20px;
    height: 220px;
    width: 220px;
}

.viola_number_uppersection_text h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    font-family: ViolaFont;
}

.viola_number_uppersection_text p {
    font-size: 14px;
    text-align: left;
}

.viola_number_header {
    position: relative;
}

.viola_number_header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    height: 1px;
    width: 1000%;
    background-color: var(--sub-line-color);
}

.viola_number_header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;
    height: 1px;
    width: 1000%;
    background-color: var(--sub-line-color);
}


/* New CSS class to trigger the animations */

.viola_number_section.animate-lines::before {
    animation: draw-horizontal 0.8s ease-out forwards 0s;
}

.viola_number_header h2.animate-lines {
    animation: fade-in 2.0s ease-out forwards 2.4s;
}

.viola_number_section.animate-lines::after {
    animation: draw-horizontal 0.8s ease-out forwards 2s;
}

.viola_number_uppersection.animate-lines::after {
    animation: draw-horizontal 0.8s ease-out forwards 1.8s;
}

.viola_number_container:nth-of-type(1) .viola_number_container_box.animate-lines::before {
    animation: draw-vertical 0.8s ease-out forwards 0.6s;
}

.viola_number_container:nth-of-type(2) .viola_number_container_box.animate-lines::before {
    animation: draw-vertical 0.8s ease-out forwards .8s;
}

.viola_number_container:nth-of-type(3) .viola_number_container_box.animate-lines::before {
    animation: draw-vertical 0.8s ease-out forwards 1s;
}

.viola_number_container:nth-of-type(4) .viola_number_container_box.animate-lines::before {
    animation: draw-vertical 0.8s ease-out forwards 1.2s;
}

.viola_number_container_box2.animate-lines::after {
    animation: draw-vertical 0.8s ease-out forwards 1.6s;
}


/* Staggered content appearance after lines are drawn */

.viola_number_container:nth-of-type(1) .viola_number_uppersection_icon.animate-lines,
.viola_number_container:nth-of-type(1) .viola_number_uppersection_text.animate-lines {
    animation: fade-in 0.5s ease-in forwards 5.6s;
}

.viola_number_container:nth-of-type(2) .viola_number_uppersection_icon.animate-lines,
.viola_number_container:nth-of-type(2) .viola_number_uppersection_text.animate-lines {
    animation: fade-in 0.5s ease-in forwards 6.0s;
}

.viola_number_container:nth-of-type(3) .viola_number_uppersection_icon.animate-lines,
.viola_number_container:nth-of-type(3) .viola_number_uppersection_text.animate-lines {
    animation: fade-in 0.5s ease-in forwards 6.4s;
}

.viola_number_container:nth-of-type(4) .viola_number_uppersection_icon.animate-lines,
.viola_number_container:nth-of-type(4) .viola_number_uppersection_text.animate-lines {
    animation: fade-in 0.5s ease-in forwards 6.8s;
}


/* Large devices (large desktops, >= 992px) */

@media (min-width: 1560px) and (max-width: 1700px) {
    .viola_number_uppersection_icon {
        height: 200px;
        width: 200px;
        padding-top: 25px;
    }
    .viola_number_uppersection_text {
        height: 200px;
        width: 200px;
    }
}

@media (min-width: 1360px) and (max-width: 1560px) {
    .viola_number_uppersection_icon {
        height: 160px;
        width: 160px;
        padding-top: 16px;
    }
    .viola_number_uppersection_icon img {
        height: 70px;
    }
    .viola_number_uppersection_text {
        height: 160px;
        width: 160px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .viola_number_uppersection_text h3 {
        font-size: 28px;
    }
    .viola_number_uppersection_text p {
        font-size: 12px;
        text-align: left;
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .viola_number_uppersection_icon {
        height: 160px;
        width: 160px;
        padding-top: 16px;
    }
    .viola_number_uppersection_icon img {
        height: 70px;
    }
    .viola_number_uppersection_text {
        height: 160px;
        width: 160px;
    }
    .viola_number_uppersection_text h3 {
        font-size: 22px;
    }
    .viola_number_uppersection_text p {
        font-size: 12px;
        text-align: left;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .viola_number_header h2 {
        font-size: 28px;
        letter-spacing: 10px;
    }
    .viola_number_uppersection_icon {
        height: 130px;
        width: 130px;
        padding-top: 16px;
    }
    .viola_number_uppersection_icon img {
        height: 50px;
    }
    .viola_number_uppersection_text {
        height: 130px;
        width: 130px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 5px;
    }
    .viola_number_uppersection_text h3 {
        font-size: 20px;
    }
    .viola_number_uppersection_text p {
        font-size: 10px;
        text-align: left;
    }
    .viola_number_header::after {
        bottom: 17px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .viola_number_header h2 {
        font-size: 22px;
        letter-spacing: 10px;
    }
    .number_slash_design {
        display: none;
    }
    .viola_number_header::after {
        bottom: 17px;
    }
    .viola_number_header::before {
        top: 4px;
    }
    .viola_number_section::before {
        top: 72px;
    }
    .viola_number_uppersection_icon {
        height: 120px;
        width: 120px;
        padding-top: 0px;
    }
    .viola_number_uppersection_icon img {
        height: 50px;
    }
    .viola_number_uppersection_text {
        height: 120px;
        width: 120px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 5px;
    }
    .viola_number_uppersection_text p {
        font-size: 10px;
        text-align: left;
    }
    .viola_number_uppersection_text h3 {
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .viola_number_header h2 {
        font-size: 22px;
        letter-spacing: 10px;
    }
    .viola_number_header::after {
        bottom: 17px;
    }
    .viola_number_header::before {
        top: 4px;
    }
    .viola_number_section::before {
        top: 72px;
    }
    .number_slash_design {
        display: none;
    }
    .viola_number_uppersection_icon {
        height: 120px;
        width: 120px;
        padding-top: 0px;
    }
    .viola_number_uppersection_icon img {
        height: 50px;
    }
    .viola_number_uppersection_text {
        height: 120px;
        width: 120px;
        padding-right: 5px;
        padding-left: 5px;
        padding-top: 5px;
    }
    .viola_number_uppersection_text p {
        font-size: 10px;
        text-align: left;
    }
    .viola_number_uppersection_text h3 {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .viola_number_container {
        padding: 0px;
    }
    .viola_number_header h2 {
        font-size: 20px;
        letter-spacing: 10px;
    }
    .viola_number_header::after {
        bottom: 18px;
    }
    .viola_number_header::before {
        top: 4px;
    }
    .number_slash_design {
        display: none;
    }
    .viola_number_section::before {
        top: 72px;
    }
    .viola_number_container_box::before {
        display: none;
    }
    .viola_number_container_box::after {
        display: none;
    }
    .viola_number_uppersection_icon {
        height: 100px;
        width: 100%;
        padding-top: 0px;
    }
    .viola_number_uppersection_icon img {
        height: 60px;
    }
    .viola_number_uppersection_text {
        height: 100%;
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    .viola_number_uppersection_text p {
        text-align: center;
    }
    .viola_number_uppersection_text h3 {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# Home rund circle design
--------------------------------------------------------------*/

.home_sustainability {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1200px;
    margin: 0;
}

.home_sustainability_container {
    position: relative;
    /* width: 100%;
    height: 100%; */
    width: 1050px;
    height: 1050px;
}

.line-svg,
.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.line-path {
    stroke: #dbdbdb;
    stroke-width: 1px;
    fill: none;
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    animation: drawLine 2s forwards paused;
}

.circle-path {
    stroke: #b1b1b1;
    stroke-width: 1px;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawCircle 2s forwards paused;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}


/* Text Boxes */

.text-box {
    position: absolute;
    width: 300px;
    font-size: 0.9em;
    opacity: 0;
    animation: fadeIn 1s forwards paused;
    z-index: 2;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.text-box-1 {
    top: 24%;
    left: -12%;
    transform: translateY(-100%);
    animation-delay: 5.5s;
}

.text-box-2 {
    top: 23.5%;
    right: 3.4%;
    animation-delay: 6s;
}

.text-box-3 {
    top: 77%;
    left: -6%;
    transform: translateY(-100%);
    animation-delay: 6.5s;
}

.text-box-4 {
    top: 76.9%;
    right: -2.6%;
    animation-delay: 7s;
}

.text-box h2 {
    font-size: 32px;
    margin: 0 0 5px 0;
    font-weight: 500;
    font-family: ViolaFont;
}

.text-box p {
    line-height: 1.4;
    margin: 0;
    font-size: 14px;
}

.main-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    letter-spacing: 16px;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 1s forwards paused;
    animation-delay: 7.5s;
    font-family: ViolaFont;
}


/* Start animations when the 'animated' class is applied to the body */

body.animated .circle-path,
body.animated .line-path,
body.animated .text-box,
body.animated .main-heading {
    animation-play-state: running;
}


/* Large devices (large desktops, >= 992px) */

@media (min-width: 1360px) and (max-width: 1560px) {
    .home_sustainability {
        height: 1050px;
    }
    .home_sustainability_container {
        position: relative;
        width: 950px;
        height: 950px;
    }
    .text-box-2 {
        top: 23.2%;
        right: .6%;
        margin-top: 5px;
        animation-delay: 6s;
    }
    .text-box-4 {
        bottom: 19%;
        right: -5.4%;
        margin-bottom: -100px;
        animation-delay: 7s;
    }
    .main-heading {
        font-size: 28px;
        letter-spacing: 16px;
    }
    .text-box h2 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .home_sustainability {
        height: 950px;
    }
    .home_sustainability_container {
        position: relative;
        width: 850px;
        height: 850px;
    }
    .text-box-2 {
        top: 23.2%;
        right: -3%;
        animation-delay: 6s;
    }
    .text-box-4 {
        bottom: 20%;
        right: -9%;
        animation-delay: 7s;
    }
    .main-heading {
        font-size: 22px;
        letter-spacing: 16px;
    }
    .text-box h2 {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .home_sustainability {
        height: 800px;
    }
    .home_sustainability_container {
        position: relative;
        width: 700px;
        height: 700px;
    }
    .text-box-2 {
        top: 23.2%;
        right: -11%;
        animation-delay: 6s;
    }
    .text-box-4 {
        bottom: 20%;
        right: -17%;
        animation-delay: 7s;
    }
    .main-heading {
        font-size: 22px;
        letter-spacing: 16px;
    }
    .text-box h2 {
        font-size: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .home_sustainability {
        height: 650px;
    }
    .home_sustainability_container {
        position: relative;
        width: 550px;
        height: 550px;
    }
    .text-box-2 {
        top: 23.2%;
        right: -22%;
        animation-delay: 6s;
    }
    .text-box-4 {
        bottom: 20%;
        right: -28%;
        animation-delay: 7s;
    }
    .main-heading {
        font-size: 22px;
        letter-spacing: 16px;
    }
    .text-box h2 {
        font-size: 22px;
    }
    .text-box p {
        font-size: 13px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .home_sustainability {
        height: 600px;
    }
    .home_sustainability_container {
        position: relative;
        width: 400px;
        height: 400px;
    }
    .text-box {
        width: 90%;
    }
    .text-box-1 {
        top: 4%;
        left: -6%;
    }
    .text-box-2 {
        top: 14%;
        right: 0;
        left: -6%;
    }
    .text-box-3 {
        top: 90%;
        left: -6%;
    }
    .text-box-4 {
        top: 100%;
        right: 0;
        left: -6%;
    }
    .main-heading {
        font-size: 20px;
        letter-spacing: 10px;
        left: 30%;
        top: 56%;
    }
    .text-box h2 {
        font-size: 20px;
    }
    .text-box p {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .home_sustainability {
        height: 700px;
    }
    .home_sustainability_container {
        position: relative;
        width: 300px;
        height: 300px;
    }
    .text-box {
        width: 95%;
    }
    .text-box-1 {
        top: -20%;
        left: -6%;
    }
    .text-box-2 {
        top: -10%;
        right: 0;
        left: -6%;
    }
    .text-box-3 {
        top: 110%;
        left: -6%;
    }
    .text-box-4 {
        top: 120%;
        right: 0;
        left: -6%;
    }
    .main-heading {
        font-size: 20px;
        letter-spacing: 10px;
        left: 40%;
        top: 56%;
    }
    .text-box h2 {
        font-size: 20px;
        letter-spacing: 2px
    }
    .text-box p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Home solution design
--------------------------------------------------------------*/

.solutions-container {
    width: 100%;
    background-color: transparent;
    position: relative;
}

.viola-horizontal-line {
    content: '';
    width: 1px;
    background-color: rgba(212, 212, 212, 0.5);
    position: absolute;
    z-index: 1;
    top: -20px;
    bottom: -25px;
    z-index: 0;
}

.viola-horizontal-line p {
    font-size: 10px;
    color: rgba(212, 212, 212, 0.5);
}

.solutions-header {
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

.solutions-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(61, 61, 61, 0.5);
}

.solutions-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(61, 61, 61, 0.5);
}

.solutions-header h2 {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: ViolaFontDefault;
}

.solution-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    border-bottom: 1px solid rgba(61, 61, 61, 0.5);
}

.solution-icon {
    position: relative;
    height: 100px;
    width: 5%;
}

.solution-icon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 45px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #333;
    transform: translateX(-50%);
}

.solution-number {
    padding: 1rem;
    position: relative;
}

.solution-title {
    padding: 1rem;
    position: relative;
}

.solution-description {
    padding: 14px;
    position: relative;
}

.solution-number {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    flex-basis: 15%;
    text-align: right;
    font-family: ViolaFont;
}

.solution-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    flex-basis: 35%;
    font-family: ViolaFont;
}

.solution-description {
    font-size: 1rem;
    color: #666;
    flex-basis: 50%;
}

.viola-horizontal-line-1 {
    left: 56px;
}

.viola-horizontal-line-2 {
    left: 17.99%;
}

.viola-horizontal-line-3 {
    left: 20.2%;
}

.viola-horizontal-line-4 {
    left: 41%;
}

.viola-horizontal-line-5 {
    left: 53.5%;
}

.viola-horizontal-line-6 {
    right: .5%;
}

@media (min-width: 1360px) and (max-width: 1466px) {
    .viola-horizontal-line-4 {
        left: 42.5%;
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .viola-horizontal-line-4 {
        left: 46.5%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .viola-horizontal-line-4 {
        left: 48.5%;
    }
    .solution-title {
        font-size: 28px;
    }
    .solutions-header h2 {
        font-size: 28px;
    }
    .solution-icon {
        height: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .solution-icon {
        height: 40px;
    }
    .viola-horizontal-line {
        display: none;
    }
    .solution-title {
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .solution-icon {
        height: 40px;
    }
    .viola-horizontal-line {
        display: none;
    }
    .solution-title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .solution-title {
        font-size: 20px;
    }
    .solution-icon {
        height: 40px;
    }
    .viola-horizontal-line {
        display: none;
    }
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .solutions-container {
        flex-direction: column;
        padding: 1rem;
    }
    .solutions-header,
    .solution-item,
    .solution-number,
    .solution-title,
    .solution-description {
        border-right: none;
        text-align: left;
    }
    .solutions-header h2 {
        letter-spacing: 0.1em;
    }
    .solution-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .solution-number {
        text-align: left;
        flex-basis: auto;
    }
    .solution-number::before {
        display: none;
    }
    .solution-title,
    .solution-description {
        flex-basis: auto;
        padding: 0.5rem 0;
    }
    .solution-item::before,
    .solution-item::after,
    .solution-number::after,
    .solution-title::after {
        display: none;
    }
}


/*--------------------------------------------------------------
# Home solution design
--------------------------------------------------------------*/

.partners-container {
    width: 100%;
}

.partners-header {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 15px;
    text-transform: uppercase;
    font-family: ViolaFont;
    position: relative;
    text-align: center;
}

.partner_header-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: ViolaFont;
    transform: rotate(-90deg);
    white-space: nowrap;
    display: inline-block;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
}

.partner-logo-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: .5px solid #d4d4d4;
    border-bottom: .5px solid #d4d4d4;
    box-sizing: border-box;
    height: 250px;
    width: 250px;
}

.partner-logo {
    max-width: 60%;
    max-height: 60%;
    filter: grayscale(100%);
}

@media (max-width: 1600px) {
    .partner-logo-box {
        flex: 1 1 20%;
        /* 4 boxes per row on tablets */
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .partner-logo-box {
        flex: 1 1 20%;
        /* 4 boxes per row on tablets */
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .partner-logo-box {
        flex: 1 1 20%;
        /* 4 boxes per row on tablets */
    }
}


/* Responsive adjustments */

@media (max-width: 1024px) {
    .partner-logo-box {
        flex: 1 1 25%;
        /* 4 boxes per row on tablets */
    }
    .partner-logo-box {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .partner-logo-box {
        flex: 1 1 33.33%;
        /* 3 boxes per row on larger mobile */
    }
    .partner-logo-box {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .partner-logo-box {
        flex: 1 1 50%;
        /* 2 boxes per row on small mobile */
    }
    .partners-header {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    .partners-header::before,
    .partners-header::after {
        width: 10%;
    }
    .partner-logo-box {
        height: 200px;
        width: 200px;
    }
}


/*--------------------------------------------------------------
# Home tagline section
--------------------------------------------------------------*/

.viola_section_tagline {
    height: 200px !important;
    padding: 15px 0;
}

.voiola_tagline_box {
    position: relative;
    background-color: #90c541;
}

.viola_tagline_img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    width: 150px;
}

.viola_tagline_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_last_tagline_section {
    height: 170px;
    display: flex;
    justify-content: start;
    align-items: end;
}

.home_last_tagline_section h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
}

@media (max-width: 1058px) {
    .home_last_tagline_section h1 {
        font-size: 16px;
    }
    .viola_section_tagline {
        height: 100px !important;
        padding: 15px 0;
    }
    .viola_tagline_img {
        width: 80px;
    }
    .home_last_tagline_section {
        height: 80px;
    }
}


/*--------------------------------------------------------------
# VIOLA ABOUT PAGE SECTION DESIGN START HERE
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Viola About Us page
--------------------------------------------------------------*/

.viola_image_box {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
}

.viola_image_box img {
    height: 100%;
    width: auto;
}

.viola_aboutpage_header_box {
    position: relative;
    z-index: 1;
}

.viola_aboutpage_header_box::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_aboutpage_header_box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_aboutpage_header_box h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 15px;
    text-transform: uppercase;
    font-family: ViolaFont;
}

.viola_aboutpage_header p {
    font-size: 18px;
    color: black;
    font-weight: 300;
    text-align: justify;
    padding-bottom: 10px;
}

@media (max-width: 767.98px) {
    .viola_aboutpage_header_box h2 {
        font-size: 20px;
        letter-spacing: 10px;
    }
    .viola_aboutpage_header p {
        font-size: 14px;
    }
    .viola_aboutpage_header_box::before {
        top: 6px;
    }
    .viola_aboutpage_header_box::after {
        bottom: 9px;
    }
}


/* mission vission */


/* Renamed container class */

.viola_about_mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.viola_about_mission_line1 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 10px;
    right: 5px;
    top: 23px;
    z-index: 0;
}

.viola_about_mission_line2 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 10px;
    right: 5px;
    top: 49px;
    z-index: 0;
}

.viola_about_mission_line3 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 0;
    right: 0;
    top: 250px;
    z-index: 0;
}


/* Renamed card class */

.viola_about_mission-card {
    background-color: transparent;
    border-radius: 1rem;
    flex: 1;
    transition: transform 0.3s ease-in-out;
}


/* Renamed header class */

.viola_about_mission-card .viola_about_mission-header {
    padding: 1rem;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #212529;
    text-transform: uppercase;
    font-family: ViolaFont;
}


/* Renamed content class */

.viola_about_mission-card .viola_about_mission-content {
    padding: 1rem;
}

.viola_about_mission-card .icon {
    height: 100px;
    width: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.viola_about_mission-card .icon img {
    height: 100%;
    width: auto;
}

.viola_about_mission-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    width: 100%;
}


/* Responsive layout for tablets and desktops */

@media (min-width: 768px) {
    .viola_about_mission {
        flex-direction: row;
    }
    /* Renamed divider class */
    .viola_about_mission-divider {
        width: 1px;
        height: auto;
        background-color: #b7b7b7;
        align-self: stretch;
        margin: 10px;
    }
}


/* Hide the divider on mobile */

@media (max-width: 767px) {
    .viola_about_mission-divider {
        display: none;
    }
    .viola_about_mission-card .viola_about_mission-header {
        font-size: 20px;
    }
    .viola_about_mission-card p {
        font-size: 14px;
    }
    .viola_about_mission_line3 {
        display: none;
    }
    .viola_about_mission_line1 {
        display: none;
    }
    .viola_about_mission_line2 {
        display: none;
    }
}


/* The main grid container */

.viola_page_section_background {
    padding-top: 100px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
    position: relative;
}

.viola_about_principles_horizon_line1 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 2px;
    right: 9px;
    top: 135px;
}

.viola_about_principles_horizon_line2 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 4px;
    right: 10px;
    top: 224px;
}

.viola_about_principles_horizon_line3 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 3px;
    right: 8px;
    top: 384px;
}

.viola_about_principles_horizon_line4 {
    position: absolute;
    height: 1px;
    background-color: #d6d4d4;
    z-index: 0;
    left: 11px;
    right: 8px;
    bottom: 165px;
}

.viola_about_principles {
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    /* Ensures rounded corners */
}


/* Each cell in the grid */

.principle-cell {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 30px 20px;
    height: 250px;
    position: relative;
    z-index: 1;
}

.principle-cell .header {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 15px;
    color: #90c541;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    min-height: 80px;
    font-family: ViolaFont;
}

.principle-cell .description {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    line-height: 1.5;
    margin: 0;
}

.principle-cell .header {
    position: relative;
}

.principle-cell .header::before {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 1000px;
    background-color: #d6d4d4;
    z-index: 0;
}


/* Responsive grid layout */

@media (min-width: 1522px) {
    .viola_about_principles {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(4n) {
        border-right: none;
    }
    .principle-cell:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (min-width: 1360px) and (max-width: 1521px) {
    .viola_about_principles {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(4n) {
        border-right: none;
    }
    .principle-cell:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .viola_about_principles {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(3n) {
        border-right: none;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .viola_about_principles {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(3n) {
        border-right: none;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .viola_about_principles {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(3n) {
        border-right: none;
    }
    .viola_about_principles_horizon_line3 {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .viola_about_principles {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(2n) {
        border-right: 1px solid #b7b7b7;
    }
    .viola_about_principles_horizon_line3 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .viola_about_principles {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(1n) {
        border-right: 1px solid #b7b7b7;
    }
    .viola_about_principles_horizon_line3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .viola_about_principles {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    .principle-cell {
        border-right: 1px solid #b7b7b7;
        border-bottom: 1px solid #b7b7b7;
    }
    .principle-cell:nth-child(1n) {
        border-right: 1px solid #b7b7b7;
    }
    .viola_about_principles_horizon_line3 {
        display: none;
    }
    .viola_about_principles_horizon_line2 {
        display: none;
    }
    .viola_about_principles_horizon_line1 {
        display: none;
    }
    .viola_about_principles_horizon_line4 {
        display: none;
    }
}


/* team */

.viola_about_team {
    border-radius: 1rem;
    /* Using Bootstrap's .row class handles flexbox layout */
    overflow: hidden;
}

.viola_about_team .profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.viola_about_team .profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viola_about_team .profile-text-content {
    padding: 1.5rem;
    text-align: left;
}

.viola_about_team .profile-text-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0;
    font-family: ViolaFont;
}

.viola_about_team .profile-text-content .title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #495057;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.viola_about_team .profile-text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1rem;
    text-align: justify;
}


/* New CSS for the drop cap effect */

.viola_about_team .profile-text-content .first-letter-dropcap::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    float: left;
    line-height: 1;
    padding-right: 0.5rem;
}

@media (max-width: 767px) {
    .viola_about_team .profile-text-content p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Viola Contact form
--------------------------------------------------------------*/

.viola_contact_form {
    width: 100%;
    border-radius: 1rem;
}

.social_link {
    margin-top: -20px;
}

.social_link ul li {
    color: black;
    font-size: 10px;
}

.social_link ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
}


/* Styling for the form inputs */

.form-control {
    border: none;
    border-bottom: 1px solid #aaaaaa;
    border-radius: 0;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #495057;
    background-color: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: #28a745;
}

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.form-floating label {
    left: 0;
    color: #adb5bd;
    font-style: italic;
}


/* Styling for the custom select arrow */

.form-select {
    border: none;
    border-bottom: 1px solid #aaaaaa;
    border-radius: 0;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #495057;
    background-color: transparent;
}

.viola_contact_form select:focus {
    box-shadow: none;
    border: transparent;
}


/* Styling for the submit button */

.btn-custom-contact {
    background-color: black;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: ViolaFont;
    border-radius: 0;
}

.btn-custom-contact:hover {
    background-color: #90c541;
    color: white;
}


/* Responsive adjustments for smaller screens */

@media (max-width: 768px) {
    .viola_contact_form {
        padding: 1rem;
    }
    .viola_contact_form h2 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

.viola_contact_info {
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    /* Add the background image with low opacity */
    background-image: url('../img/home/header_img.png');
    background-repeat: no-repeat;
    background-position: 80% 20%;
    position: relative;
    z-index: 1;
}


/* Use a pseudo-element for the low opacity effect to not affect text color */

.viola_contact_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dee2e6;
    opacity: .98;
    z-index: -1;
}

.viola_contact_info::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 40px;
    width: 1px;
    height: 94%;
    background-color: #d4d4d4;
}

.viola_contact_info .info-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #ced4da;
}


/* Remove the border from the last item */

.viola_contact_info .info-section:last-child {
    border-bottom: none;
}

.viola_contact_info .info-section .header {
    position: relative;
    z-index: 1;
}

.viola_contact_info .info-section .header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    height: 1px;
    background-color: #d4d4d4;
    z-index: 0;
}

.viola_contact_info .info-section .header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 1px;
    background-color: #d4d4d4;
    z-index: 0;
}

.viola_contact_info .info-section .header h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #28a745;
    font-family: ViolaFont;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.viola_contact_info .info-section .contact_content {
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    line-height: 1.6;
}

.viola_contact_info .social-icons {
    position: relative;
    z-index: 0;
}

.viola_contact_info .social-icons::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    height: 1px;
    background-color: #d4d4d4;
    z-index: 0;
}

.viola_contact_info .social-icons::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13px;
    height: 1px;
    background-color: #d4d4d4;
    z-index: 0;
}

.viola_contact_info .social-icons a {
    color: #212529;
    font-size: 40px;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.viola_contact_info .social-icons a:hover {
    color: #28a745;
}

@media (max-width: 767px) {
    .viola_page_header h1 {
        margin-bottom: 15px;
        margin-top: 0;
        font-size: 32px;
        letter-spacing: 15px;
    }
    .viola_page_bottom_header h2 {
        font-size: 18px;
    }
    .viola_page_bottom_header p {
        font-size: 16px;
        letter-spacing: 0;
    }
    .violaservicepagebox {
        padding: 20px;
    }
    .viola_home_about h5 {
        letter-spacing: 8px;
    }
    .viola_section_small {
        letter-spacing: 8px;
    }
    .home_solutions_header h6 {
        letter-spacing: 8px;
    }
    .process-step .step-box {
        left: 30%;
    }
    .process-step {
        height: 250px;
    }
}


/* FAQ SECTION */

.faq-section {
    margin: auto;
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-header p {
    color: #4CAF50;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: ViolaFont;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #d4d4d4;
    background-color: transparent;
}

.accordion-item:first-of-type {
    border-top: 1px solid #d4d4d4;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    background-color: transparent;
    padding: 1.5rem 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: transparent;
}

.accordion-button:focus {
    box-shadow: none;
}


/* --- Custom icon styles using + and - --- */

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
    transform: none;
    /* Override default Bootstrap rotation */
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    transform: none;
    /* Override default Bootstrap rotation */
}

.accordion-body {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    padding: 0 0 1.5rem 0;
}


/*--------------------------------------------------------------
# Viola Project Page deisgn
--------------------------------------------------------------*/

.viola_project-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 400px;
    /* Adjust height as needed */
    display: flex;
    background-color: #d8d8d8;
}

.project_image-container {
    position: relative;
    flex-grow: 1;
    background-image: url('../img/project/viola_project.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.project_image-container2 {
    position: relative;
    flex-grow: 1;
    background-image: url('../img/project/viola_project2.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.project_image-container3 {
    position: relative;
    flex-grow: 1;
    background-image: url('../img/project/viola_project3.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.project_text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 50%;
    width: 70%;
    background-color: #c3c4c4c4;
}

.project_text_box {
    padding: 0 20px;
}

.project_text_box p {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.project_text_box h2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: black;
    font-family: ViolaFont;
}


/* The crosshair lines */

.viola_project-container::before,
.viola_project-container::after {
    content: '';
    position: absolute;
    background-color: #000000;
    z-index: 1;
}

.viola_project-container::before {
    top: -15px;
    bottom: -15px;
    left: 70%;
    width: 1px;
    height: 105%;
    transform: translateX(-50%);
}

.viola_project-container::after {
    top: 50%;
    left: 0;
    right: -15px;
    width: 105%;
    height: 1px;
    transform: translateY(-50%);
}

.viola_margin {
    margin-top: 100px;
}


/* Responsive adjustments */

@media (min-width: 1200px) and (max-width: 1359.99px) {
    .viola_project-container {
        height: 340px;
    }
    .project_text_box p {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .viola_project-container {
        height: 300px;
    }
    .project_text_box p {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .viola_project-container {
        height: 300px;
    }
    .project_text_box p {
        font-size: 12px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .viola_project-container {
        height: 400px;
    }
    .project_text_box p {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .viola_project-container {
        height: 400px;
    }
    .project_text_box p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Viola Services Page Design
--------------------------------------------------------------*/

.viola_solutions_box_box {
    position: relative;
    margin-bottom: 50px;
}

.viola_solutions_box_box::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_solutions_box_box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_solutionspage_box_container {
    position: relative;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: -7px;
    height: 100%;
}

.viola_solutionspage_box_container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--sub-line-color);
    z-index: 0;
}

.viola_solutionspage_box_container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--sub-line-color);
    z-index: 0;
}

.viola_servicepage_header {
    position: relative;
}

.viola_servicepage_header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_header h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: ViolaFont;
    position: relative;
    z-index: 1;
}

.viola_servicepage_description {
    position: relative;
}

.viola_servicepage_description::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_listing {
    position: relative;
    margin-top: 20px;
}

.viola_servicepage_listing::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_listing::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_listing_box_box {
    position: absolute;
    top: -15px;
    left: 48.8%;
    bottom: -15px;
    width: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_listing_box_box2 {
    position: absolute;
    top: -15px;
    left: 51%;
    bottom: -15px;
    width: 1px;
    background-color: #e0dede;
    z-index: 0;
}

.viola_servicepage_image {
    height: 100%;
    width: 100%;
}

.viola_servicepage_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.viola_servicepage_description p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    position: relative;
    z-index: 1;
}

.viola_servicpage_listing_image {
    height: 60px;
    width: auto;
    padding: 10px;
    text-align: center;
    background-color: rgb(208, 208, 224);
}

.viola_servicpage_listing_image img {
    height: 40px;
    width: auto;
}

.viola_servicpage_listing_content {
    height: 60px;
    background-color: white;
    padding-left: 10px;
    margin-left: 20px;
}

.viola_servicpage_listing_content p {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.viola_process_steps {
    width: 100%;
    margin: auto;
}

@media (max-width: 1100px) {
    .viol_custom_margin {
        margin-bottom: 24px;
    }
    .viola_servicepage_description p {
        font-size: 14px;
    }
    .viola_servicepage_listing_box_box,
    .viola_servicepage_listing_box_box2 {
        display: none;
    }
    .viola_servicepage_image {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .viola_solutionspage_box_container {
        margin-top: 20px
    }
    .viola_servicepage_image {
        height: 300px;
    }
}


/* Main grid for the three-column layout */

.process-step {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    align-items: center;
    position: relative;
    background-color: #eef2f4;
    z-index: 1;
    height: 140px;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step .step-number {
    font-size: 10rem;
    font-weight: 700;
    color: rgba(134, 134, 134, 0.7);
    line-height: 1;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: -40px;
    z-index: 0;
    font-family: ViolaFront;
}

.process-step:last-child .step-number {
    bottom: -10px;
}

.process-step .step-box {
    width: 88%;
    position: absolute;
    left: 14%;
    top: 0;
    bottom: 0;
}

.process-step .step-title {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    font-family: ViolaFront;
}

.process-step .step-description {
    font-size: 14px;
    font-weight: 400;
    color: #495057;
    line-height: 1.6;
    margin: 0;
    font-family: ViolaFontDefault;
}


/* Responsive adjustments for smaller screens */

@media (max-width: 768px) {
    .viola_process_steps {
        padding: 1rem;
    }
    .process-step {
        padding: 1rem 0;
    }
    .process-step .step-number {
        font-size: 120px;
    }
}


/*--------------------------------------------------------------
# Viola Manifest Page
--------------------------------------------------------------*/

.viola_manifest_box {
    position: relative;
}

.viola_manifest_box_line1 {
    position: absolute;
    width: 1px;
    background-color: rgba(212, 212, 212, 0.5);
    z-index: 0;
    top: -20px;
    bottom: -25px;
    left: 0;
}

.viola_manifest_box_design {
    position: relative;
    background-image: url("../img/about_others/pattern_design.png");
    height: 250px;
    background-position: start;
    background-repeat: no-repeat;
    background-size: contain;
}

.viola_manifest_box_design_title {
    position: absolute;
    bottom: 10px;
    left: 15px;
}

.viola_manifest_box_design_title h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    font-family: ViolaFont;
}

.viola_manifest_box_design1 p {
    text-align: left;
    padding-left: 0;
    width: 80%;
    font-size: 16px;
    margin-top: 20px;
}

.download-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.viola_investment_box_design {
    background-color: #90c541;
    padding: 30px;
    height: 100%;
}

.viola_investment_box_design p {
    font-size: 14px;
}