.mkSection {
    width: 100%;
    background-color: white;
    max-width: 1140px;
    margin: auto;
    border-radius: 3px;
    box-shadow: 1px 1px 5px grey;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
}
.mkSectionTitle {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    gap: 0.5rem;
}

.mkSectionTitle .fa {
    animation: leafAnimation 1s  alternate;
}
.mkSectionData {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.productContainer {
    position: relative;
    height: 350px;
    width:280px;
    box-shadow: 1px 1px 5px grey;
    background-color: white;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
    margin: auto
}
.owlItem .productContainer{
     width: 90%;
}
.addToCartFromPreview {
    z-index: 6;
    position: absolute;
    top: -20px;
    background-color: var(--secondary);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    color: white;
    font-weight: bold;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 5px 0px;
    opacity: 0;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.productContainer:hover .addToCartFromPreview {
    opacity: 1 !important;
}
.productContainer:hover {
    box-shadow: 1px 1px 15px var(--primary);
}
@keyframes cartAnimation {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1.5);
    }
}
.cartAnimation {
    animation: cartAnimation 1s  alternate;
}

.productImageContainer {
    width: 100%;
    height: 50%;
    overflow: hidden;
    border-radius: 5px;
}
.productImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: all 0.5s;
}
.productImageTitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s;
}
.productImageDetails {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}
.productContainer:hover .productImageTitle {
    color: var(--secondary);
}
.productContainer:hover .productImageContainer img {
    transform: scale(1.1);
}
.goForMore {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: var(--primary);
    gap: 1rem;
    transition: all 0.5s;
    transform: translateY(99px);
}
.introSection {
    overflow: hidden;
    position: relative;
    flex-direction: row;
}
.introSection:hover .goForMore {
    transform: translateY(0px);
}
.singleIntroSection {
    min-height: 250px;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}
@media screen and (min-width: 601px) {
    .singleIntroSection {
        max-height: 280px;
    }
}
.mkSection.introSection {
    padding: 0;
}
.introSection .singleIntroSection .pageSection {
    box-shadow: none;
    flex-direction: row;
}
.introSection .singleIntroSection .pageSection .pageSectionImage {
    height: 330px;
    width: 30%;
}

.introSection .singleIntroSection .pageSection .pageSectionContent {
    width: 70%;
}
.introSection .singleIntroSection .pageSection .pageTitle {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.introSection .singleIntroSection .pageSection .pageTitle i {
    animation: leafAnimation 1s  alternate;
}
.introSection .singleIntroSection .pageSection .pageSectionContentText {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 1rem 0px;
    width: 95%;
    margin: auto;
    text-align: justify;
    text-justify: inter-word;
}
.introSection.servicesSection .pageSection {
    flex-direction: row-reverse;
}
.flexEnd {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 1100px) {
    .productsGrid {
        gap: 2.2rem;
    }
    .addToCartFromPreview {
        opacity: 1 !important;
    }
}
@media screen and (max-width: 1100px) {
    .mkSection,
    .introSection {
        width: 95% !important;
    }
}
@media screen and (max-width: 600px) {
    .introSection .singleIntroSection .pageSection .pageSectionContentText {
    -webkit-line-clamp: 9;
    }
    .introSection .singleIntroSection{
        min-height: 450px;
    }
    .introSection .singleIntroSection .pageSection {
        flex-direction: column;
    }
    .introSection .singleIntroSection .pageSection .pageSectionContent {
        width: 90%;
        margin: auto;
    }
    .introSection .singleIntroSection .pageSection .pageSectionImage {
        width: 100%;
        height: 150px;
    }

    .pageTitle {
        margin: 0;
    }
    .mkSectionTitle {
        font-size: 1.5rem;
    }
    .productContainer {
        width: 250px;
        height: 280px;
    }
}
