body {
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}
.main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 95%;
}
.container {
    /*display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;*/
    width: 420px;
}

.content {
    text-align: justify; /* Justify text in content and title */
}

.sub-content {
    text-align: right;
    border-right: 2px dashed grey;
    padding-right: 11px;
    padding-top: 42px;
}

.info-text {
    margin: 0 auto;
    display: block;
}

.cls-1 {
    fill: #00afcc;
}

.cls-1, .cls-2 {
    stroke-width: 0px;
}

.cls-2 {
    fill: #ff9a00;
}

.hidden {
     display: none;
     visibility: hidden;
}

.visible {
    display: block;
    visibility: visible;
}

.title {
    text-align: left;
}

.title-text {
    color: #008CA3;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 23px;
}

.content-callout {
    color: #008CA3;
    font-weight: bold;
    text-transform: uppercase;
}

.orange-highlight {
    font-weight: bold;
    color: #D48000;
}

.svg_container {
    height: 150px;
    width: 420px;
    text-align: right;
    margin-bottom: 20px; /* Adjusted to 20px for less space */
    margin-top: 42px;
}

.logo {
    height: 150px;
    width: auto;
}

.linkedin {
    align-text: right;
    height: 21px;
}

h1 {
    font-size: 2.5em;
    color: #333;
    text-transform: lowercase;
    /*text-align: center;*/
    font-weight: normal;
    letter-spacing: 5px;
    margin: 5px 0; /* New: Defines top and bottom margins for h1 */
}

span.unscrew {
    font-size: 1.11em;
    color: #333;
    text-transform: lowercase;
    font-weight: normal;
    letter-spacing: 5px;
}

a {
    color: #4EADCA;
    text-decoration: none;
    margin-top: 5px; /* Adds a little space above links */
}

.waitlist {
    color: #ff9a00;
}

.info-icon-div {;
    text-align: right;
    padding-bottom: 42px;
}

.info-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.close-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.close-icon-div {
    text-align: center;
}

.logos {
    margin: 42px 0px 0px 0px;
}

footer {
    text-align: center;
    margin-top: 42px;
    font-size: 12px; /* Smaller font size for copyright text */
    color: #adadad;
}

#Unscrew_Analytics_-_DuoTone_03_Split {
    cursor: arrow;
    transition: transform .5s ease-in-out;
    transform-origin: center;
}
@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1420);
    }
     100% {
        transform: scale(1) rotate(360deg);
     }
}
#Unscrew_Analytics_-_DuoTone_03_Split:active {
    animation: scaleAnimation 10s reverse;
}


/* carousel */

.carousel-container {
    width: 420px;
    height: 50px; /* Can be adjusted to be between 200-300px as needed */
    overflow: hidden;
    position: relative;
    margin: auto;
}

.carousel-track {
    display: flex;
    white-space: nowrap;
    animation: scroll linear infinite;
}

.carousel-item {
    /* display: inline-block;
    height: 50px; */
    display: inline-flex; /* Changed to inline-flex to better control the SVG */
    justify-content: center; /* Center the SVG in the item */
    align-items: center; /* Align SVG vertically */
    height: 50px; /* Full height of the container */
    padding: 0 10px; /* 10px padding on the sides, you can adjust to 20px for more space */
    box-sizing: border-box; /* Ensures padding is included in width calculation */
    border-right: 2px solid  #D48000; /* Stylish border on the right of each item */

}

.carousel-item svg {
    height: 50px;
    width: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Only scroll halfway through the total content to restart seamlessly */
    }
}

@media screen and (max-width: 450px) {
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 20px;
        padding: 10px;
        width: 90%;
    }
    .carousel-container {

    }
    .carousel-track {
            display: flex;
            white-space: nowrap;
            animation: scroll linear infinite;
    }
    .logos {
        margin: 42px 0px 0px 0px;
    }

    .svg_container {
    height: 150px;
    width: 90%;
    text-align: right;
    margin-bottom: 20px; /* Adjusted to 20px for less space */
    margin-top: 42px;
}

}

@media screen and (min-width: 451px) {
    .container {
        width: 420px;
    }
}