

/* sidebar menu start */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index:99;
  }

  .sidebar a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
    white-space: noWrap;
  }

  .sidebar a:hover {
    background-color: #3f3f3f;
  }

  .sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
  }

  .menu-icon {
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 60px;
    left: 28px;
    color: #333;
}

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
  }


/* header part start */
.social-part {
    display: flex;
    gap: 1rem;
}
.social-main .social-part .social-icon{
    padding:5px;
    border-radius: 10px;
}
.social-icon:hover {
    background-color: white;
}
.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill 0.3s ease;
}
.social-icon:hover svg {
    fill: black;
}
.banner{
    background-image: url(/images/factory-images/factory8.jpg);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.banner2{
    background-image: url(/images/factory-images/factory1.jpg);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.banner3{
    background-image: url(/images/factory-images/factory9.jpg);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.banner4{
    background-image: url(/images/factory-images/factory4.jpg);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.slick-prev {
    position:absolute;
    right:0;
    bottom:50%;
    z-index: 9;
    box-shadow: 0px 0px 10px -6px #000;
    padding: 3px 11px;
    border-radius: 15px;
    font-size: 12px;
    color: orange;
}
.slick-next {
    position: absolute;
    left: 0;
    bottom: 50%;
    z-index: 9;
    box-shadow: 0px 0px 10px -6px #000;
    padding: 3px 11px;
    border-radius: 15px;
    font-size: 12px;
    color: orange;
}
.slick-list .slick-track img{
    border-radius: 10px;
}

/* mouse hover section */
.splitview {
    position: relative;
    width: 100%;
    min-height: 45vw;
    overflow: hidden;
}

.panel {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    overflow: hidden;
}

    .panel .content {
        position: absolute;
        width: 100vw;
        min-height: 45vw;
        color: #FFF;
    }

    .panel .description {
        width: 25%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }

    .panel img {
        box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
        width: 35%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


.bottom {
    background-color: rgb(77, 69, 173);
    z-index: 1;
}

    .bottom .description {
        right: 5%;
    }

.top {
    background-color:rgb(255, 177, 60);
    z-index: 2;
    width: 50vw;

}

    .top .description {
        left: 5%;
    }

/* Handle. */
.handle {
    height: 100%;
    position: absolute;
    display: block;
    background-color: rgb(253, 171, 0);
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

/* Skewed. */
.skewed .handle {
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

.skewed .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

.skewed .top .content {
    transform: skew(30deg);
    margin-left: 1000px;
}