/* Who We are */
.who-we-are {
    margin: 0px;
}

.who-we-are .content {
    text-align: right;
    padding-top: 36px;
    padding-right: 64px;
    padding-bottom: 16px;
    color: var(--color-primary) !important;
}

.who-we-are img {
    height: 100%;
}


.who-we-are .desc {
    font-weight: 500;
    font-size: 22px;
}

@media screen and (max-width: 600px) {

    .who-we-are {
        padding: 20px 0px;
    }

    .who-we-are .content {
        text-align: center;
        padding: 20px 12px;
    }

    .who-we-are .desc {
        font-size: 14px;
    }
}


/* What We Offer */

.what-we-offer {
    padding-top: 32px;
}

.what-we-offer .what-we-offer-item {
    position: relative;
}

.what-we-offer-item .offer-header {
    position: absolute;
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
}

.what-we-offer-item .offer-header h3 {
    font-weight: 700;
    color: white;
    font-size: 36px;
}

.what-we-offer-item .offer-header p {
    color: var(--color-secondary);
    font-size: 18px;
}

.what-we-offer-item .offer-header i {
    font-size: 40px;
    color: var(--color-secondary);
}

.what-we-offer .img-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.to-right {
    background: linear-gradient(to right, #000000C0, #00000090, #00000060);
}

.to-left {
    background: linear-gradient(to left, #000000C0, #00000090, #00000060);
}

.what-we-offer .desc-card {
    position: absolute;
    height: fit-content;
    width: fit-content;
    background-color: white;
    width: 30%;
    top: 50%;
    padding: 32px;
    padding-top: 48px;
    transform: translateY(-50%);
    z-index: 1
}

.desc-card img {
    max-width: 100%;
    margin-bottom: 24px;
}

.desc-card p {
    font-size: 16px;
    font-weight: 300;
    color: #656565;
    white-space: pre-wrap;
}

.what-we-offer-item .align-left {
    left: 5%;
}

.what-we-offer-item .align-right {
    right: 5%;
}

@media screen and (max-width: 600px) {

    .what-we-offer {
        /* display: none; */
    }

    .what-we-offer .scroll-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        position: relative;
        display: inline-flex;
    }

    .what-we-offer .img-overlay {
        /* display: none; */
        height: 50%;
    }

    .what-we-offer-item {
        width: 80%;
        max-width: 90%;
        margin: 0px 16px;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
        margin-bottom: 1.5rem !important;
        /* height: fit-content; */
    }

    .what-we-offer-item .offer-header {
        transform: none;
        top: 2%;
        padding: 8px 10px;
        white-space: pre-wrap;
        width: 100%;
        text-align: left !important;
        display: flex;
        flex-direction: column;
    }

    .offer-header h3, i {
        font-size: 20px !important;
        margin-bottom: 0px;
    }

    .offer-header p {
        font-size: 16px !important;
        padding-top: 4px;
        margin-bottom: 0px;
    }

    .what-we-offer-item .desc-card {
        position: relative;
        width: 100%;
        transform: none;
        top: 0;
        padding: 20px;
        padding-top: 16px;
        text-align: left !important;
    }

    .what-we-offer-item .align-left {
        left: 0%;
    }
    
    .what-we-offer-item .align-right {
        right: 0%;
    }
}


/* Whats New */

.whats-new {
    padding: 64px;
    padding-top: 32px;
    padding-bottom: 16px;
}

.whats-new .news-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
}

.whats-new .news-container-mobile {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    /* height: 100px; */
    position: relative;
    display: inline-flex;
}

.block-1 {
    flex-grow: 1;
    flex-basis: 340px;
}

.block-2 {
    flex-grow: 2;
}

.block-3 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.block-4 {
    display: flex;
    flex-direction: row;
}

.whats-new .news-container .news-item {
    width: 100%;
    position: relative;
}

.whats-new .news-container-mobile .news-item {
    min-width: 100%;
    height: 350px;
    margin: 8px;
}

.news-item .overlay-black {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background: linear-gradient(#00000000,#00000000,#00000000);
    /* background: linear-gradient(to top, #00000020, #00000005, #00000000); */
    /* background: linear-gradient(to top, #00000075, #00000015, #00000000); */
}

.news-item img { 
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.news-item .news-content {
    position: absolute;
    z-index: 1;
    color: white;
    width: 100%;
    font-weight: 100;
    padding: 20px;
    bottom: 0;
}

.card-content .descHome {
    font-size: 14px;
    /*padding-top: 16px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.block-3 .news-item {
    height: 100%;
}

.news-item .news-content h6 {
    padding-bottom: 20px;
    font-weight: 500;
}

.news-item .news-content p {
    white-space: pre-wrap;
}

@media screen and (max-width: 600px) {
    .whats-new {
        padding: 24px;
        padding-top: 32px;
    }
}


.who-we-are-content{
    color: #F8991D;
    font-size:13px;
    font-weight: 600;
}



