@import url("index.css");

.company_detail_header {
    text-align: start;
}
.company_img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company_img img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 30px;
}
.company_detail_text {
    font-size: 36px;
    font-weight: bold;
    margin: 5px 0;
}

.company_detail_text strong {
    font-size: 56px;
    color: #00d9ff;
}

.company_detail_aboutMicrocems {
    font-size: 26px;
}

.slideshow-container {
    margin-bottom: 30px;
}

.Vision{
    position: relative;
}

.Vision img{
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

.Vision_card{
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.Vision_card::after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(120, 120, 120);
    opacity: 60%;
    z-index: -1;
    border-radius: 20px;
}
.Vision_card h1{
    font-size: 50px;
}

.Vision_card p{
    font-size: 30px;
}

