.websiteContainer.allServices .header .headerText h1 {
    color: white;
    font-size: 60px;
    text-align: center;
    font-weight: 800;
}

.websiteContainer.allServices .header .headerText h2 {
    color: white;
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}

.quickNavigation p {
    font-size: 24px;
    font-weight: 400;
    text-align: right;
    color: black;
}

.quickNavigation .quickNavigationContainer {
    width: 100%;
    margin-top: 20px;
}

.quickNavigation .quickNavigationContainer .quickNavigationRow {
    display: inline-grid;
    text-align: right;
}

.quickNavigationRow a {
    display: contents;
}

.quickNavigationRow button {
    font-size: 16px;
    font-weight: 700;
    color: black;
    border-radius: 12px;
    background: linear-gradient(90deg, #F6823E 0%, #FEC053 100%);
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 15px 6px;
    margin-left: 8px;
    margin-bottom: 14px;
}

.navigationContainer {
    width: 100%;
}

.navSectionTitle {
    margin-bottom: 60px;
}

.navSectionTitle h3 {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
}

.navSection.secondary .navSectionTitle h3 {
    color: var(--secondary);
}

.navSection.primary .navSectionTitle h3 {
    color: var(--primary);
}



.navSection.secondary .navSectionTitle .navSectionDivider {
    background: var(--secondary);
}

.navSection.primary .navSectionTitle .navSectionDivider {
    background: var(--primary);
}

.navSection .navItems {
    display: flex;
    flex-direction: column;
}

.navSection .navItems a {
    display: contents;
}

.navItems .navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 40px;
    border: 2px solid #441D5A;
    background: #FFF;
    box-shadow: 4px 0 4px 2px #662E87;
    width: 100%;
    margin: 80px 0;
}

.navSection.secondary .navItems .navItem {
    border-color: var(--secondary);
    box-shadow: 4px 0 4px 2px rgba(246, 130, 62, 0.5);
}

.navSection.primary .navItems .navItem {
    border-color: var(--primary);
    box-shadow: 4px 0 4px 2px rgba(54, 105, 179, 0.5);
}

.navItem .navItemImage {
    width: 176px;
    height: 183px;
    margin: auto;
    margin-top: -112px;
}

.navItem .navItemImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navItem .navItemName {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.navSection.secondary .navItem .navItemName {
    color: var(--secondary);
}

.navSection.primary .navItem .navItemName {
    color: var(--primary);
}

.navItem .navItemDescription {
    font-size: 22px;
    font-weight: 400;
    text-align: right;
    padding: 0 20px;
    margin-top: 40px;
    color: black;
}

.navItem .navItemBottom {
    padding: 20px 0;
    margin-top: 60px;
    width: 100%;
    color: #EDE9F0;
    font-size: 30px;
    font-weight: 700;
    border-radius: 0 0 40px 40px;
    background: linear-gradient(90deg, #027ACA 0%, #027ACA 0.01%, #441D5A 77.41%);
    box-shadow: 4px 4px 4px 0 #A67CF3;
}

.navItem .navItemBottom .priceHighlight img {
    width: 30px;
}

.desclaimer {
    color: #000;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 80px;
}

/* Laptop Screen 1280px */
@media only screen and (min-width: 1280px) {
    .websiteContainer.allServices .header .headerText h1 {
        font-size: 80px;
    }

    .websiteContainer.allServices .header .headerText h2 {
        font-size: 70px;
    }
    .navSectionTitle {
        display: flex;
        align-items: center;
        margin: 0;
    }
    .navSectionTitle h3 {
        text-align: right;
    }
    .navSectionTitle .navSectionDivider {
        height: 4px;
        flex-grow: 1;
        margin-right: 40px;
    }
    .quickNavigation .quickNavigationContainer .quickNavigationRow {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        margin-bottom: 28px;
    }
    .quickNavigation .quickNavigationContainer .quickNavigationRow:nth-child(even){
        margin-right: 60px;
    }
    .quickNavigationRow button {
        font-size: 20px;
        padding: 15px;
        margin-left: 0;
        margin-bottom: 0;
    }
    .navSection .navItems {
        flex-direction: row;
        align-items: flex-end;
        gap: 30px;
        margin: 160px 0;
    }
    .navItems .navItem {
        flex-grow: 1;
        height: 420px;
        width: calc((100% - 60px) / 3);
        margin: 0;
    }
    .navSectionTitle {
        margin: 0;
    }
}