
@media only screen and (max-width: 550px){

}

.left-align img{
    margin-right: 6rem;
    margin-left: 0;
}

.builder-cta{
    /* width: 60%; */
    text-align: center;
    background-color: white;
    padding: 2rem var(--borderMargin) 2rem var(--borderMargin) ;
    margin-top: 4rem;
}
.builder-cta p{
    width: 70%;
    margin-left: auto;
    margin-right:auto ;
}

/* Carousel Container */
.carousel-container {
    width: 70vw;
    margin: auto;
    padding-bottom: 3rem;
    /* height: 100vh; */
}

/* Carousel Wrapper */
.carousel-wrapper {
    background-color: white;
    width: 80%;
    height: max-content;
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
    position: relative;
    overflow: hidden; /* Hides overflow for the slide effect */
}

/* Slide Wrapper */
#slide-wrapper {
position: relative;
/* height:; */
}

/* Slide Animation */
.slide {
position: absolute;
width: 100%;
opacity: 0;
transform: translateX(100%);
transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.slide.active {
opacity: 1;
transform: translateX(0);
}

.slide.exit-left {
transform: translateX(-100%);
opacity: 0;
}

.slide.enter-right {
transform: translateX(100%);
opacity: 0;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10; /* Make sure arrows are on top */
    /* height: 50px; */
    left: 0;
}

.nav-arrow {
    font-size: 30px;
    color: #1e2a44;
    cursor: pointer;
    user-select: none;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.nav-arrow.right {
    position: absolute;
    right: 0rem; /* Ensure it sticks to the far right */
}

.nav-arrow.left {
    position: absolute;
    left: 0; /* Ensure it sticks to the far left */
}

/* Dots navigation */
.dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin-left: auto;
    /* margin: auto; */
    display: block;
    /* display: flex; */
    justify-content: center;
}

.glide__bullets{
    position: absolute;
    bottom: -2rem;
    transform: translateY(50%);
    width: 100%;
    /* margin: auto; */
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.glide__bullet{
    background-color: #b3b3b3;
    height: 1rem;
    width: 1rem;
    border: 0;
    border-radius: 100%;
    margin-left: .5rem;
    margin-right: .5rem;
}
.glide__bullet--active{
    background-color: var(--dark);
}   


.glide__arrows{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    /* width: 100%; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* z-index: -1; */
    
}
.glide__arrow{
    background-color: transparent;
    border: 0;
    z-index: 4;
    cursor: pointer;
}
.glide__arrow > img{
    width: 2rem;
}
.glide__arrow--right{
    
    position: absolute;
    /* right: calc(-100vw + var(--borderMargin)*2); */
    right: 0;
    transform: translateX(100%);
    padding-left: 1rem;
    /* transform: translateX(calc(60vw + var(--borderMargin)/2)); */
    
}

.glide__arrow--left{
    padding-right: 1rem;
    transform: translateX(-100%);
}

.glide__track{
    border-radius: 1rem;
    background-color: white;
    text-align: center;
}
.glide__slide{
    margin: auto;
}
.glide__slide >div{
    padding: 2rem 4rem 2rem 4rem;
}
.logo-header{
    height: 7rem;
    padding-top: 2rem;
}
/* .glide img{
    width: 5rem;
} */