
/* csr starts here  */
.csr_banner{
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.385)) , url(../images/csr\ banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    z-index: -1;
}

.csr_banner h1{
    width: 30%;
    padding-left: 10%;
    font-weight: 600;
    font-style: italic;
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5.5rem;
}
/* ============Media Queries for CSR Banner============ */
@media (min-width:320px) and (max-width:480px){
    .csr_banner{
        width: 100%;
        background-size: cover;
        height: 50vh;
    }
    .csr_banner h1{
        width: 50%;
        line-height: 1.5rem;
        font-size: 24px;
        font-weight: 900;
    }
}
@media (min-width:481px) and (max-width:768px){
    .csr_banner{
        width: 100%;
        background-size: cover;
        height: 60vh;
    }
    .csr_banner h1{
        width: 50%;
        line-height: 2rem;
        font-size: 26px;
        font-weight: 900;
    }
}
/* ============Media Queries for CSR Banner============ */


/* 
.csr-main .csr-banner{
    background-image: url(../images/csr\ banner.jpg);
    background-size: cover;
    width: 100%;
    height: 40vh;
    display: flex;
    animation: fade
     7s linear ;
} */

@keyframes fade{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.csr_section{
    width: 100%;
    display: block;
    padding: 0% 10%;
    margin-top: 20px;
}

.csr_section .csr-main .about h2{
    text-align: center;
    font-style: italic;
    font-weight: 400;
}

.csr_section .csr-main .about p{
    font-size: 1.1rem;
    margin: 10px;
    margin-bottom: 0;
    /* padding-left: 3rem; */
    text-align: justify;
    margin-bottom: 30px;
    /* padding: 10px 70px 20px 70px; */
}
/* ============Media Queries for CSR Intro============ */
@media (min-width:320px) and (max-width:480px){
    .csr_section{
        width: 100%;
    }
    .csr_section .csr-main .about h2{
        width: 100%;
        font-size: 20px;
    }
    .csr_section .csr-main .about p{
        width: 100%;
        font-size: 12px;
    }
}
@media (min-width:481px) and (max-width:768px){
    .csr_section{
        width: 100%;
    }
    .csr_section .csr-main .about h2{
        width: 100%;
        font-size: 22px;
    }
    .csr_section .csr-main .about p{
        width: 100%;
        font-size: 14px;
    }
}
/* ============Media Queries for CSR Intro============ */


/* csr ends here  */


/* slider  */

.slider{
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    object-fit: fill;
    background-color: transparent;
    z-index: 1000;
    margin-top: 0;
    margin-bottom: 10px;
}

.item{
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 400px;
    height: 400px;    
    border-radius: 10px;
    background-color: transparent;
    transition: 0.5s;
    left: calc(50% - 140px);
}

.slider .item {
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    background-color: transparent;
}

.slider .item img{
    width: 900px ;
    height: 600px;
    object-fit: fill;
    background-color: transparent;
}

#next, #prev{
    position: absolute;
    top: 40%;
    color: #000;
    display: none;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-weight: bold;
    left: 50px;
}

#next{
    left: unset;
    right: 50px;
    overflow:visible;
}

/* ============Media Queries for CSR Slider============ */
@media (min-width:320px) and (max-width:480px){
    .slider{
        width: 100%;
    }
    .item{
        width: 100%;
    }
    .slider .item{
        width: 100%;
    }
    .slider .item img{
        width: 100%;
    }
}
@media (min-width:481px) and (max-width:768px){
    .slider{
        width: 100%;
    }
    .item{
        width: 100%;
    }
    .slider .item{
        width: 100%;
    }
    .slider .item img{
        width: 100%;
    }
}
/* ============Media Queries for CSR Slider============ */
