/* ===================== General styles ===================== */

h1 {
    line-height: 72px;
    letter-spacing: -2.5%;
    text-align: center;
    padding-bottom: 20px;
}

.margin-bottom {
    margin-bottom: 50px;
}

/* ===================== Section 1 styles ===================== */

.coworkingImage {
    width: 100%;
    max-width: 596;
    height: 600;
    margin-top: 50px;
}


/* ===================== Section 2 styles ===================== */

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 70px;
    margin-bottom: 60px;
}

.carousel-wrapper-images {
    display: flex;
    gap: 60px;
    will-change: transform;
}

.carousel-item-images {
    width: auto;
    height: 100px;
    object-fit: cover;
}

.carousel-item-images img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.carousel-button-container img {
    width: 24px;
    height: 24px;
    top: 6px;
    left: 7px;
}


/* ===================== Section 2 and 4 style. (Carrousel button container) ===================== */

.carousel-button-container {
    text-align: center;
    margin-top: 30px;
}

.btnFeatures {
    width: 256px;
    height: 56px;
    border-radius: 10px;
    background-color: #007A6D;
    border: none;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    color: white;
    cursor: pointer;
}

.btnFeatures-container-img {
    width: 24px;
    height: 24px;
    top: 6px;
    left: 7px;
}

/* ===================== Section 3 styles ===================== */

.white {
    background-color: rgba(255, 255, 255, 0.5);
}

.gray {
    background-color: #F9F9F9;
}

.texture-right::before,
.texture-left::before {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('/images/textureImage/Texture.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.texture-right::before {
    right: 0;
}

.texture-left::before {
    left: 0;
}

.officeContent {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 5%;
    position: relative;
    z-index: 1;
}

.officeContent img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.titlec h2 {
    line-height: 72px;
    letter-spacing: -2.5%;
}

.titlec p {
    line-height: 40px;
    letter-spacing: 0%;
}

/* ===================== Section 4 styles ===================== */

.cardContent {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 15px;
}

.card-title {
    line-height: 40px;
}

.card-text-features {
    line-height: 1.5;
}

.btn-card-container {
    align-self: flex-end;
}

.btn-card {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-decoration: none;
    color: #007A6D;
    cursor: pointer;
}

.btn-card-container a img {
    width: 10px;
    height: auto;
    top: 6px;
    left: 7px;
}


/* ===================== Section 4 styles ===================== */

.carousel-wrapper {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.carousel-card {
    flex-shrink: 0;
    width: 300px;
}

.card {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border-radius: 20px;
    border: 1px solid #ccc;
    gap: 24px;
}

.card-body {
    padding: 1rem;
}

.card-body img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.card-body h6 {
    width: 111px;
    height: 40px;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.card-body small {
    width: 128px;
    height: 24px;
    font-size: 0.875rem;
    color: #848386;
}

.card-text {
    width: 100%;
    height: 100px;
    opacity: 0.8;
    margin-top: 1rem;
    font-size: 0.95rem;
    overflow-y: auto;
    word-wrap: break-word;
}

.card-text::-webkit-scrollbar {
    width: 4px;
}

.card-text::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

@media (min-width: 768px) {
    .carousel-card {
        width: 300px;
    }
}