.fourFeaturesDiv{
    width: 88%;
    background-color: white;
    position: absolute;
    bottom: -110px;
    right: 0;
    left: 0;
    margin: auto;
    padding: 13px 0;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.04);
}
.fourFeaturesDiv .borderRight a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    position: relative;
    text-decoration: none;
    color: black;
}
.fourFeaturesDiv .borderRight{
    position: relative;
}
.borderRight img, .borderRight p{
    transition: all .5s ease;
}
.borderRight:hover img{
    transform: translateY(10px);
}
.borderRight:hover p{
    color: #d20220;
}
.homeProductsContainer .productCard{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 2.5rem;
    margin-bottom: 1.5rem;
}
.homeProductsContainer .productCard .productImgHolder{
    position: relative;
    margin-bottom: 1rem;
}
.homeProductsContainer .productCard .productImgHolder img{
    border-radius: 36px 36px 36px 0px;
    max-width: 100%;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.homeProductsContainer .productCard .productImgHolder span{
    position: absolute;
    bottom: 13px;
    left: 0;
    width: fit-content;
    background-color: #E31E39;
    color: white;
    padding: 4px 9px;
    font-size: 1.3rem;
    font-weight: 600;
}
.homeProductsContainer .productCard p{
    font-weight: 500;
    margin-bottom: .4rem;
}
.homeProductsContainer .productCard small{
    margin-bottom: 1rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.viewMoreProductContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.viewMoreProduct{
    display: flex;
    height: fit-content;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    color: #E31E39;
    text-decoration: none;
    font-weight: 500;
}
.viewMoreProduct svg{
    transition: all .5s ease;
}
.viewMoreProduct:hover svg{
    transform: rotate(130deg);
}
.homeApplicationSection{
    background-color: #E31E39;
}

.homeApplicationSection .buttonHolder{
    display: flex;
    flex-direction: column;
    min-width: 35%;
}
.homeApplicationSection .buttonHolder button{
    background-color: #FFF5F5;
    border: none;
    text-align: start;
    padding: 2rem 0.5rem 2rem 2rem;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
}
.homeApplicationSection .buttonHolder button:not(.showed):hover{
    background-color: #fff5f5ce;
}
.homeApplicationSection .buttonHolder .showed{
    background-color: transparent;
    color: white;
}
.homeApplicationSection .contentHolder{
    padding: 3rem 2rem;
    color: white;
}
.homeApplicationSection .contentHolder .contentDiv img{
    max-width: 100%;
    max-height: 250px;
}
.homeApplicationSection .contentHolder .contentDiv a{
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 11px 25px;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
    transition: all .5s ease;
}
.homeApplicationSection .contentHolder .contentDiv a:hover{
    box-shadow: 4px 5px 14px 0px rgb(255 255 255 / 35%);
    transform: translateY(4px);
}


.homeApplicationSection .contentHolder .contentDiv ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.homeApplicationSection .contentHolder .contentDiv ul li:nth-child(odd) {
    grid-column: 1;
}

.homeApplicationSection .contentHolder .contentDiv ul li:nth-child(even) {
    grid-column: 2;
}
.homeApplicationSection .contentHolder .contentDiv h2{
    margin-bottom: 1.5rem;
}
.homeApplicationSection .contentHolder .contentDiv p{
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    /* line-clamp: 5; */
    /* -webkit-line-clamp: 5; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videoGallerySlider .sliderItem::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.17);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.videoGallerySlider .sliderItem {
    position: relative;
}
.videoGallerySlider .sliderItem:not(:last-child) {
    margin-right: 15px;
}
.videoGallerySlider .sliderItem img{
    max-width: 100%;
    width: 100%;
}
.videoGallerySlider .sliderItem svg{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: all .5s ease;
}
.videoGallerySlider .sliderItem svg:hover {
    transform: scale(1.1);
}

.videoGallerySlider .slick-arrow{
    position: absolute;
    top: 0;
    font-size: 0;
    height: 35px;
    width: 37px;
    border: none;
    background-color: #E31E39;
}
.videoGallerySlider .slick-prev{
    right: 5.5%;
}
.videoGallerySlider .slick-next{
    right: 0%;
}
.videoGallerySlider .slick-prev::after{
    content: "";
    position: absolute;
    right: 34%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 14px solid #ffffff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent
}
.videoGallerySlider .slick-next::after{
    content: "";
    position: absolute;
    right: 27%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid #ffffff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent
}
.whyPaperImg{
    height: 450px;
}





.myTypeOfAccordion .accordion-item {
	border-bottom: 1px solid #dddddd;
	padding: 22px 0;
}

.myTypeOfAccordion .accordion-button::after {
	content: "";
	background-image: url(../img/home/plus.svg);
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background-size: cover;
}

.myTypeOfAccordion .accordion-button:not(.collapsed)::after {
	background-image: url(../img/home/minus.svg);
	width: 15px;
	height: 2px;
	background-repeat: no-repeat;
	background-size: cover;
}

.myTypeOfAccordion .accordion-body .contentDiv ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 0;
}

.myTypeOfAccordion .accordion-body .contentDiv ul li:nth-child(odd) {
    grid-column: 1;
}

.myTypeOfAccordion .accordion-body .contentDiv ul li:nth-child(even) {
    grid-column: 2;
}

.myTypeOfAccordion .accordion-button:not(.collapsed){
    color: #E31E39;
}

.myTypeOfAccordion .accordion-body {
	margin-top: 20px;
	color: #666666;
	font-weight: 400;
	font-size: .9rem;
}

.myTypeOfAccordion .accordion-button {
	font-weight: 400;
}
.myTypeOfAccordion .contentDiv img{
    display: none;
}

























@media (min-width: 768px) {
    .fourFeaturesDiv > div .borderRight:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background-color: #E4E4E4;
    }
    .fourFeaturesSection{
        margin-bottom: 11rem;
    }
}

@media (max-width: 767px) {
    .fourFeaturesDiv{
        position: static;
        margin: 16px 0;
        width: 100%;
    }
    .videoGallerySlider .slick-arrow{
        display: none !important;
    }
    .whyPaperImg{
        height: 250px;
    }
    .allBlogCardsSs .blogCardHolderSs{
        padding: 0 1rem;
    }
}