/* HardWare.css */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html {
    overflow-y: scroll;
}

:root {
    overflow-y: auto;
    overflow-x: hidden;
}

:root body {
    position: absolute;
}

body { font-family: "Noto Sans TC";
    width: 100vw;
    overflow: hidden;
}

.loading-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #ffffff;
    z-index: 99999; /* Ensure it's above other elements */
}

.loading {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Overlay for blurring the background */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 99998; /* Ensure it's below the loading animation but above other content */
}

/* Disable scrolling when loading */
.no-scroll {
    overflow: hidden;
}


/* 導覽列 */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(19px);
}

.home-nav {
    gap: 2%;
    margin-left: 40px;
    flex: 0 0 80%;
}

.navbar-brand {
    margin-left: 10%;
}

.navbar-collapse {
    justify-content: left;
}

.nav-item.active .nav-link {
    border-bottom: 3px solid #3282D8;
}

.nav-bar-first-item {
    margin-left: 0px;
    margin-right: 0px;
}

.nav-item:not(.active) .nav-link {
    border-bottom: 3px solid transparent;
}

.nav-contact-btn {
    background-color: #3282D8;
}

/* 彈出視窗 */
.modal {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 999;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.menu-content {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 9999;
    overflow: hidden;
    width: 60%;
    display: flex;
}

.left-menu {
    flex: 0 0 30%;
    display: flex;
    background-color: #F4F6F8;
    justify-content: center;
    flex-direction: column;
    border-radius: 0px 20px 20px 0px;
}

.menu-btn {
    margin: 10px 20px 10px 20px;
    border-radius: 20px;
    height: 60px;
    border: 0px;
    background-color: #F4F6F8;
    transition: background-color 0.5s ease;
}

.menu-btn.active {
    border-radius: 20px;
    background-color: #3282D8;
    color: #FFFFFF;
}

.right-menu {
    display: flex;
    background-color: #FFFFFF;
    flex-direction: column;
    margin: 10px 20px 10px 40px;
}

.right-text {
    margin: 10px 0px 10px 0px;
    text-decoration: none;
}

.right-url {
    font-size: 18px;
    color: #3282D8;
    cursor: pointer;
}

.menu-btn-slide {
    transition: transform 0.5s ease;
}

/* new navbar item */
.modal2 {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 999;
}

.modal-backdrop2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.menu-content2 {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 9999;
    overflow: hidden;
    width: 70%;
    display: flex;
    height: 85%;
}

.left-menu2 {
    flex: 0 0 30%;
    display: flex;
    background-color: #F4F6F8;
    flex-direction: column;
    border-radius: 0px 20px 20px 0px;
    padding: 20px;
    overflow-y: auto;
}

.footer-menu-title {
    margin: 10px 0px 10px 0px;
    text-align: left;
    font: normal normal normal 16px/20px "Noto Sans TC";
    letter-spacing: 0px;
    color: #3282D8;
}

.left-menu2-title {
    margin: 10px 0px 0px 20px;
    text-align: left;
    font: normal normal bold 18px/20px Noto Sans TC;
    letter-spacing: 0px;
    color: #3282D8;
}

.menu-btn2 {
    margin: 10px 20px 10px 0px;
    border-radius: 20px;
    height: 60px;
    border: 0px;
    background-color: #F4F6F8;
    transition: background-color 0.5s ease;
    text-align: left;
    padding-left: 20px;
}

.menu-btn2.active {
    border-radius: 20px;
    background-color: #3282D8;
    color: #FFFFFF;
}

.right-menu2 {
    background-color: #FFFFFF;
    flex-direction: column;
    margin: 10px 20px 10px 40px;
    width: 100%;
    overflow-y: auto;
}

.right-text2 {
    margin: 10px 0px 10px 0px;
    text-decoration: none;
}

.right-text-title {
    text-align: left;
    font: normal normal medium 20px/20px Noto Sans TC;
    letter-spacing: 0px;
    color: #3282D8;
    display: grid;
    width: 100%;
}

.right-text-url {
    text-align: left;
    font: normal normal normal 100%/120% Noto Sans TC;
    letter-spacing: 0px;
    color: #272727;
    text-decoration: none;
    cursor: pointer;
    margin-top: 5px;
}

.right-url2 {
    font-size: 18px;
    color: #3282D8;
    cursor: pointer;
}

.right-erp {
    margin-top: 10px;
}

.menu-btn2-slide {
    transition: transform 0.5s ease;
}

.modal3 {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 999;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.menu-content3 {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 9999;
    overflow: hidden;
    width: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    position: absolute;
}

.custom-btn {
    cursor: pointer;
    text-decoration: none;
    text-align: left; 
    font: normal normal normal 18px/20px "Noto Sans TC";
    letter-spacing: 0px;
    color: #272727;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block; 
    width: 300px; 
    height: 50px; 
    border-radius: 20px; 
    line-height: 50px; 
}

.custom-btn:hover {
    background-color: #3282D8;
    color: #FFFFFF;
}

.btn-word {
    margin-left: 5%;
}

.slide-down {
    transform: translateY(100%);
}

.slide-up {
    transform: translateY(0%);
}


/* 圖片 */
.img-container {
    position: relative;
    margin-top: 70px;
}

.img-text-container {
    position: absolute;
    top: 40%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: left;
}

.img-text-en {
    font-size: 20px;
    color: #3282D8;
    margin-bottom: 0;
    font: normal normal bold 20px/30px Noto Sans TC;
}

.img-text-ch {
    font-size: 50px;
    color: #272727;
    margin-bottom: 0;
    font: normal normal normal 50px/60px Noto Sans TC;
    white-space: nowrap;
}

.img-text-ch-small {
    font-size: 30px;
    color: #272727;
    margin-bottom: 0;
    font: normal normal normal 50px/60px Noto Sans TC;
}

.img-show-container {
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-show-big {
    position: absolute;
    bottom: 5%;
    border-radius: 20px;
    width: 350px;
    height: 350px;
}


/* 圖片下文字 */
.below-img-text-container {
    display: grid;
    justify-content: center;
    margin: 60px 20px 0px 20px;
}

.below-img-text {
    text-align: center;
}

.below-img-text-up {
    text-align: center;
    color: #3282D8;
    font: normal normal normal 30px/50px Noto Sans TC;
    margin-top: 120px;
}

.below-img-text-down {
    text-align: center;
    color: #272727;
    font: normal normal normal 16px/30px Noto Sans TC;
    text-align: left;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
}


/* ICON */
.below-icon {
    display: flex;
    justify-content: center;
    margin: 80px 0px 80px 0px;
}

.icon-arrange {
    margin-left: 3%;
    margin-right: 3%;
}


/* 表格 */
.table-setting {
    display: flex;
}

.left-table {
    flex: 0 0 50%;
    display: grid;
    justify-content: end;
    padding-right: 50px;
}

.right-table {
    margin-left: 50px;
}

.table-arrange {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 500px;
}

.table-arrange {
    margin-top: 25px;
    margin-bottom: 25px;
}

table {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    font-family: sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

caption {
    caption-side: top;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
}

thead,
tfoot {
    background-color: #FFFFFF;
}

th,
td {
    border: 1px solid #A8A8A8;
    padding: 8px 10px;
    text-align: left;
}

td:last-of-type {
    text-align: left;
}

tbody>tr:nth-of-type(even) {
    background-color: #FFFFFF;
}

tfoot th {
    text-align: right;
}

tfoot td {
    font-weight: bold;
}

.more-info-btn {
    background-color: #707070;
    border: #707070;
    width: 200px;
    height: 50px;
    border-radius: 20px;
    color: #FFFFFF;
    font: normal normal normal 18px/30px Noto Sans TC;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 60px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-info-btn:hover {
    background-color: #555;
    color: #EEE;
}


/* 聯絡資訊 */
.journey { scroll-margin-top: 70px;
    display: flex;
    background-color: #F5F9FD;
}

.left-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-right: 120px;
}

.right-content {
    margin-bottom: 50px;
    margin-right: 3%;
}

.left-right-part {
    margin-top: 30px;
    margin-left: 3%;
}

#name-label::after,
#company-name-label::after,
#phone-label::after,
#email-label::after,
#industry-type-label::after,
#scale-label::after,
#need-title-label::after {
    content: "*";
    color: red;
}

.form-control {
    border-radius: 20px;
    width: 350px;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.submitBtn {
    border-radius: 20px;
    width: 350px;
    height: 50px;
    background-color: #3282D8;
}

.submitBtn-position {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.full-text {
    display: block;
}

.journey-title {
    font: 30px/40px Noto Sans TC;
    font-size: 30px;
}

.journet-inner {
    font: Noto Sans TC;
    font-size: 16px;
}

.footer-url {
    color: #272727;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.footer-copyright {
    color: #272727;
    font-size: 14px;
    display: flex;
    justify-content: end;
    padding-bottom: 50px;
}

.large-footer {
    display: block;
}

.small-footer {
    display: none;
}

.footer-title {
    color: #272727;
    font-size: 20px;
    font-weight: 600;
}

/* 第二個navbar rwd切換 */
.rwd-wrapper {
    display: none;
}

.hidden {
    display: none;
}

.updown-menu {
    width: 100%;
    display: flex;
}

.updown-menu-small {
    display: none;
}

/* RWD */
@media (max-width: 1366px) {

    .full-text {
        display: contents;
    }
    .navbar-brand {
        margin-left: 15%;
    }

    .nav-bar-first-item {
        margin-left: 0px;
        margin-right: 0px;
    }

    .updown-menu {
        width: 100%;
        display: none;
    }

    .updown-menu-small {
        width: 100%;
        display: flex;
    }

    .menu-content2 {
        width: 90%;
    }

    .menu-content {
        width: 90%;
    }

    

    .home-nav {
        gap: 5%;
        display: -webkit-inline-box;
        margin-right: 50px;
    }

    .navbar-collapse {
        flex-basis: 0%;
    }

    .img-text-container {
        top: 50%;
        left: 23%;
    }

    .img-text-ch {
        max-width: 100%;
        font: normal normal normal 30px Noto Sans TC;
    }

    .img-text-ch-small {
        font: normal normal normal 30px Noto Sans TC;
    }

    .img-show-big {
        width: 200px;
        height: 200px;
    }

    .table-setting {
        margin: 5%;
    }

    .pic-container {
        margin-bottom: 30px;
    }

    .pic-position {
        display: grid;
    }

    .pic-container-style {
        height: 50%;
    }

    .slogan-text {
        font: normal normal normal 26px Noto Sans TC;
    }
    
    .text-on-pic-position {
        bottom: 20%;
        left: 20%;
    }

    .text-on-pic {
        font: normal normal normal 30px / 40px "Noto Sans TC";
    }

    .three-pic {
        gap: 50px;
    }

    .content-wrapper {
        width: 90%;
        justify-self: center;
    }

    .softwareAndHardware {
        margin: 0% 5% 0% 5%;
    }

    .left-part-img-inv {
        height: 70%;
        width: 100%;
    }

    .right-part-software-hardware {
        width: 100%;
        gap: 10px;
    }

    .intro-background {
        left: 13.5%;
        width: 80%;
        height: 60%;
    }

    .to-contact-pad {
        margin: 0% 2% 0% 2%;
    }

    .time-left-part-pic {
        width: 100%;
    }

    .right-trapezoid-desc {
        max-width: 90%;
    }

    .brand {
        gap: 0px;
    }

    .left-content {
        padding-right: 30px;
        margin-left: 5%;
    }

    .form-control {
        width: 90%;
    }

    .submitBtn-position {
        display: block;
        justify-content: start;
    }

    .system-right-rectangle {
        bottom: 66%;
    }

    .submitBtn {
        width: 95%;
    }

    .system-content-position {
        width: 100%;
    }

    .system-title {
        font: normal normal normal 16px Noto Sans TC;
    }

    .system-text1 {
        font: normal normal normal 30px Noto Sans TC;
    }

    .blue-bar {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .system-btn-position {
        margin-left: 4%;
    }

    .system-text2 {
        max-width: 90%;
    }

    .system-content-container {
        padding: 20px;
        background-color: #FFFFFF;
        border-radius: 20px;
        display: flex;
    }

    .system-text-position {
        margin-left: 5%;
    }

    .system-pic-style {
        width: 90%;
    }

    .system-right-small-title {
        margin-top: 30px;
    }

    .system-right-desc {
        font: normal normal normal 16px Noto Sans TC;
        max-width: 50%;
    }

    .system-right-desc2 {
        font: normal normal normal 16px Noto Sans TC;
        max-width: 50%;
    }

    .footer-category1 {
        width: 100%;
    }

    .system-right-title-group {
        display: flex;
    }

    .system-right-title2 {
        margin-left: 1%;
    }

    .system-pic-position {
        position: absolute;
        bottom: 34%;
        left: 66%;
    }

    .system-left {
        flex: 0 0 50%;
    }

    .cust-container {
        display: none;
    }

    .trapezoid {
        bottom: 0%;
    }

    .right-part {
        margin-right: 5%;
        align-content: center;
    }

    .right-part-pic {
        width: 100%;
    }

    .cust-container2 {
        display: block;
        background-color: #F6F9FD;
        height: auto;
        width: 100%;
    }

    .cust-content-container {
        display: flex;
    }

    .cust-content-position {
        width: 100%;
    }

    .cust-text-position {
        margin-left: 5%;
    }

    .cust-logo {
        text-align: right;
    }

    .work-text-below {
        width: 80%;
    }

    .work-text-container {
        width: 80%;
    }

    .work-pic-position {
        flex: 0 0 40%;
    }

    .work-pic-style {
        width: 100%;
    }

    .work-right-text-title {
        font: normal normal normal 30px / 40px Noto Sans TC;
    }

    .work-right-text-desc {
        max-width: 100%;
        font: normal normal normal 16px / 26px Noto Sans TC;
    }

    .desc-container {
        text-align: -webkit-center;
    }

    .desc-main-text-container {
        width: 80%;
        margin-left: 0%;
    }

    .overview-left {
        flex: 0 0 40%;
        text-align: end;
    }

    .overview {
        margin: 10% 5% 0% 5%;
    }

    .overview-pic {
        width: 100%;
    }

    .overview-right-title-desc {
        max-width: 100%;
    }

    .trapezoid-text-position {
        left: 20%;
    }

    .trapezoid-desc {
        max-width: 85%;
    }

    .right-part-pic {
        width: 100%;
    }

    .left-part {
        flex: 0 0 40%;
    }

    .left-aprt-pic-style {
        width: 100%;
    }

    .three-pic {
        gap: 10px;
    }

    .three-pic-style {
        width: 30%;
    }

    .table-arrange {
        margin-top: 25px;
        margin-bottom: 25px;
        width: 300px;
    } 
}

@media (max-width: 900px) {

    .brand-img {
        height: 90%;
    }
    .large-footer {
        display: none;
    }

    .small-footer {
        display: block;
    }

    .arrow-icon {
        float: right;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .footer-category.expanded .arrow-icon {
        transform: rotate(180deg);
    }

    .footer-category:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .footer-url-small {
        color: #272727;
        font-size: 14px;
        text-decoration: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .footer-url-small2 {
        color: #3282D8;
        font-size: 14px;
        text-decoration: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .footer-subcategory {
        text-align: left;
        margin-top: 20px;
    }

    .footer-copyright {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

    .nav-container {
        display: none;
    }

    .rwd-wrapper {
        display: block;
        position: fixed;
        z-index: 1000;
        height: 70px;
    }

    .rwd-navbar {
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(19px);
        width: 100%;
        padding: 1.25rem;
        position: relative;
        z-index: 20;
        display: flex;
        gap: 1.25rem;
        align-items: center;
        position: fixed;
        z-index: 1000;
        justify-content: space-between;
    }

    .rwd-logo {
        color: white;
        font-size: 2.5rem;
        line-height: 1;
        font-family: serif;
    }

    .rwd-hamburger-menu {
        width: 2rem;
        height: 2rem;
        position: absolute;
        margin-top: 0.25rem;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .rwd-hamburger-menu .rwd-hamburger-line {
        width: 100%;
        height: 3px;
        background-color: rgb(0, 0, 0);
        transition: transform 0.3s, opacity 0.3s;
    }

    .hidden {
        display: none;
    }

    .rwd-menu {
        width: 100vw;
        height: 100vh;
        background-color: white;
        color: #000000;
        transition: transform 0.3s;
        transform: translateX(-100vw);
        position: relative;
    }

    .rwd-row {
        margin-top: 50px;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .rwd-text-row {
        padding-right: 40px;
        margin-bottom: 30px;
    }

    .rwd-menu.open {
        transform: translateX(0);
        margin-top: 70px;
    }

    .rwd-sub-menu {
        display: none;
        transition: all 0.3s ease;
    }

    .rwd-subcategory {
        text-align: left;
        margin-top: 30px;
        padding-left: 20px;
    }

    .rwd-menu-tile {
        text-align: left;
        font: normal normal normal 20px/20px "Noto Sans TC";
        letter-spacing: 0px;
        color: #3282D8;
    }

    .rwd-title { text-decoration: none;
        color: #272727;
        font-size: 24px;
        font-weight: 400;
    }

    .rwd-url-small {
        color: #272727;
        font-size: 20px;
        text-decoration: none;
        cursor: pointer;
    }

    .rwd-sub-menu.show {
        display: block;
    }

    .rwd-menu ul {
        width: 100%;
        list-style: none;
        padding: 0;
        overflow: hidden;
    }

    .rwd-menu-item {
        width: 80%;
        padding: 1.25rem;
        transition: background-color 0.3s;
        cursor: pointer;
        font-size: 30px;
        font: Noto Sans TC;
    }

    .rwd-arrow-icon {
        float: right;
        margin-right: 10px;
        transition: transform 0.3s ease;
        font-size: xx-large;
    }

    .rwd-category.expanded .rwd-arrow-icon {
        transform: rotate(90deg);
    }

    .rwd-subrow {
        margin-top: 50px;
    }

    .rwd-url-more-small {
        color: #272727;
        font-size: 20px;
        text-decoration: none;
        cursor: pointer;
    }

    .rwd-subsubcategory {
        margin-top: 50px;
    }

    .rwd-sub-arrow-icon {
        float: right;
        margin-right: 10px;
        transition: transform 0.3s ease;
        font-size: large;
    }

    .rwd-subcategory.expanded .rwd-sub-arrow-icon {
        transform: rotate(90deg);
    }

    .rwd-menu-item:hover {
        background-color: white;
    }

    .navbar-brand {
        margin: 0 auto;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .navbar-toggler {
        order: -1;
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .nav-bar-first-item {
        margin-left: 0px;
        margin-right: 0px;
    }

    .img-container {
        margin-top: 70px;
    }

    .img-fluid {
        content: url('../../Handheld Computer/Group 4938.webp');
        width: 100%;
    }

    .img-text {
        color: white
    }

    .toggle-buttons {
        display: flex;
        justify-content: center;
    }

    .toggle-buttons button {
        border-radius: 20px;
        background-color: #F4F6F8;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        box-shadow: 0px 3px 6px #00000029;
    }

    .toggle-buttons button.active {
        color: #3282D8;
    }

    .img-text-container {
        top: 13%;
        font-size: 18px;
        line-height: 26px;
        left: 5%;
        transform: translate(0%, 0%);
    }

    .img-text-ch {
        white-space: break-spaces;
    }

    .img-show-container {
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        justify-content: center;
        margin-top: 280px;
    }

    .img-show-big {
        position: absolute;
        bottom: 110%;
        left: calc(50% - 175px);
        border-radius: 20px;
        width: 350px;
        height: 350px;
    }

    .below-img-text-up {
        text-align: center;
        color: #3282D8;
        font: normal normal normal 30px/50px Noto Sans TC;
        margin-top: 0px;
    }

    .below-icon {
        display: flex;
        justify-content: center;
        margin: 0px 0px 0px 0px;
        flex-wrap: wrap;
    }

    .icon-arrange {
        margin-bottom: 20px;
    }

    .table-arrange {
        margin-top: 25px;
        margin-bottom: 25px;
        width: 100%;
    } 

    .table-setting {
        flex-wrap: wrap;
    }

    .left-table {
        flex: 0 0 100%;
        display: grid;
        justify-content: end;
        padding-right: 20px;
        padding-left: 20px;
    }

    .right-table {
        margin-left: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .journey { scroll-margin-top: 70px;
        display: block;
        background-color: #F5F9FD;
    }

    .left-content {
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        align-items: end;
        padding-right: 0px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .right-content {
        margin-bottom: 0px;
    }

    .left-right-part {
        margin-top: 30px;
    }

    .full-text {
        display: contents;
    }

    .journey-title {
        font-weight: 600;
    }

    .journet-inner {
        font-weight: 600;
    }

    .form-group {
        margin: 0px 20px 0px 20px;
    }

    .submitBtn-position {
       margin-top: 0px;
    }

    .submitBtn {
        margin: 5%;
        width: 80%;
    }

    .large-footer {
        display: none;
    }

    .small-footer {
        display: block;
    }

    .arrow-icon {
        float: right;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .footer-category.expanded .arrow-icon {
        transform: rotate(180deg);
    }

    .footer-category:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .footer-url-small {
        color: #272727;
        font-size: 14px;
        text-decoration: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .footer-url-small2 {
        color: #3282D8;
        font-size: 14px;
        text-decoration: none;
        cursor: pointer;
        margin-top: 10px;
    }

    .footer-subcategory {
        text-align: left;
        margin-top: 20px;
    }

    .footer-copyright {
        margin-top: 20px;
    }

    .contact-btn {
        text-decoration: none;
        align-content: center;
        text-align: -webkit-center;
        font-size: 20px;
        left: 5%;
        bottom: 10%;
        position: absolute;
        width: 90%;
        height: 10%;
        background-color: #3282D8;
        color: #ffffff;
        border: 2px solid #3282D8;
        border-radius: 20px;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .contact-btn:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

    .contact-btn:active {
        background-color: #003d80;
        border-color: #003d80;
    }

}