.pageContainer {
    min-height: 100vh;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4%;
    justify-content: space-between;
    /* overflow: hidden; */
}

.pageContainer.withoutBackground {
    background: none;
}

.pageContainer.mainBackground {
    background: var(--primary-color);
}

.pageContainer.secondaryBackground {
    background: var(--secondary-color);
}

.pageContainer.blogSection {
    justify-content: start;
}

.sectionInfoWrapper {
    z-index: 1;
    width: 50%;
    pointer-events: none;
}

.sectionInfoContainer {
    width: 80%;
    padding-top: 2rem;
}

.sectionLink {
    font-size: 0.8rem;
    padding: 12px 16px;
    pointer-events: all;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.12s ease-in-out,
        background-color 0.12s ease-in-out;
    color: white;
    border: solid 1px #fff;
    letter-spacing: 3px;
    font-weight: 300;
    text-decoration: none;
    margin: 40px 0 0 0;
    padding: 16px 24px;
    border-radius: 2px;
    white-space: nowrap;
}

.sectionLink:active {
    opacity: 0.6;
}

.sectionLink:hover {
    background-color: rgba(250, 250, 250, 0.1)
}








.arrow-container {
    cursor: pointer;
    padding: 0.8em 0;
    z-index: 999;
}

.arrow-container>img {
    width: 25px;
}

.sectionInfoContainer .section-button {
    font-size: 0.7em;
    padding: 12px 16px;
    pointer-events: all;
}

.services-title {
    font-size: 2rem;
    letter-spacing: 1px;
}

.services-title.ios-service-title,
.services-title.service-web-title,
.services-title.desktop-service-title {
    text-transform: none;
}

.service-section .wrapper-carousel .scope-slider {
    min-height: 700px;
}

@media (max-width: 768px) {
    .pageContainer:not(:only-of-type) {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .pageContainer.odd-section {
        background: var(--secondary-color);
    }

    /* .pageContainer:not(:only-of-type):last-of-type {
        padding: 60px 4% 50px 4%;
    } */
    .sectionInfoWrapper {
        position: relative;
        width: 90%;
    }

    .sectionInfoContainer {
        width: 100%;
    }

    .service-section .wrapper-carousel .scope-slider {
        min-height: 600px;
    }
}

.particle.hide-when-is-not-selected {
    opacity: 0;
}

.particle.show-when-selectedd {
    opacity: 1;
}

.particle {
    transition: opacity 0.3s ease-out;
}

@media (max-width: 500px) {
    .service-section .wrapper-carousel .scope-slider {
        min-height: 450px;
    }
}