* {
    font-style: #b6b6b6
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.divider {
    display: inline-block;
    width: 2px; /* Adjust thickness */
    height: 100%; /* Matches the height of the logos */
    background-color: black; /* Adjust color */
    margin: 0 16px; /* Adjust spacing */
    }
      
.isavia::before {
    content: "";
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: min(var(--gutter)* -1, -16px);
    block-size: 80%;
    -webkit-border-start: 1px solid var(--color-font-contrast);
    border-inline-start: 1px solid var(--color-font-contrast);
    transform: translateY(-50%);
}


.section-container {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    overflow: auto;
}


.section-borders {
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
}

.section-overlap {
    margin-top: -2.5rem;
}


.box-shadow-pricing-center {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.box-shadow-card {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.box-shadow-card-2 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
/*

*/
.section-container-1 {
    background-color: #f6f7eb;
/*
f6f7eb
F18701
2C4251
9792E3
102542
*/
}

.section-container-2 {
    background-color: #FF9D5C; /* #ff6600 */
}

.section-container-3 {
    background-color: #7999B9;
}

.section-container-4 {
    background-color: #FF7096;  /*   #ff0066;*/
}

.section-container-5 {
    background-color: #D9E4B4;
}

.section-container-6 {
    background-color: #FFE270;  /*  #fc0; */
}

.section-container-7 { 
    background-color: #f6f7eb;
}

.privacy-section-container-1 {
    background-color: #FAD4C0
}

#logoMarqueeSection {
    max-width: 1920px !important;
    margin: 0 auto;
}

.default-content-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    width: 100%;
    min-height: 100vh;
}

.default-content-container-inner {
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marqueelogo {
    height: 60px;
}

.logoMarqueeSection>div>div {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
}

/* .marquee-wrapper {
    display: inline-block;
    white-space: nowrap;
} */

.marquee-wrapper {
    display: flex; /* Change from inline-block */
    white-space: nowrap;
    width: max-content; /* Prevent wrapping */
}


.marquee {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    transform: translate3d(0%, 0, 0);
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee a {
    display: inline-block;
    white-space: nowrap;
    /* padding-right: 5.4rem; */
}

@keyframes marquee {
    0% {
        transform: translate3d(0%, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}