/* .jumbotron {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 20px;
    height: 80vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(255, 136, 0);
    background: linear-gradient(to bottom, rgb(255, 136, 0) 65%, rgba(255,255,255,0), rgb(94, 93, 93));
    border-radius: 30px;
    padding: 0 100px;
    position: relative;
} */
.jumbotron {
    margin-top: 20px;
    height: 75vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    padding: 0 100px;
    position: relative;
}
.jumbotron.first {
    background-color: rgb(255, 136, 0);
}
.jumbotron.second {
    background-color: black;
}
.jumbotron.third {
    background-color: rgb(55, 55, 212);
    background-color: darkblue;
}
.border {
    border: 1px solid red;
}

.jumbotron p {
    color: white;
    font-size: 2.5rem;
}

.jumbotron button{
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.jumbotron button img{
    margin-right: 10px;
}
.jumbotronText {
    width: 50%;
    font-size: 1rem;
}
.jumbotronImages{
    width: 45%;
    height: 100%;
    position: relative;
}
.jumbotronImages img{
    width: 450px;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}

.dotCtn {
    position: absolute;
    bottom: 35px;
    height: 20px;
    width: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dotCtn .active{
    background-color: orangered;
    border: none;
}
.dot {
    height: 10px;
    width: 10px;
    display: block;
    background-color: white;
    border-radius: 50%;
}


main {
    margin-bottom: 100px;
}

.productPage {
    margin-top: 50px;
    padding-bottom: 100px;
    position: relative;
}
.arrowCtn div {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 7px;
    font-weight: bold;
    border-radius: 50%;
    background-color: rgba(128, 128, 128, 0.185);
}
.arrowCtn div:nth-child(1) img {
    transform: rotate(180deg);
}
.productsSection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 30px;
}
.productText {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.productCtnOne {
    background-color: rgba(128, 128, 128, 0.185);
    padding: 15px;
    border-radius: 10px;
}
.binCtn {
    background-color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer
}
.productImg {
    height: 200px;
    width: 200px;
    cursor: pointer;
    margin: auto;
}
.productImg img {
    height: 190px;
    width: 190px;
    transition: all .2s ease;
}
.productImg img:hover {
    height: 200px;
    width: 200px;
}
.productName {
    font-weight: 700;
    font-size: 1rem;
}
.ratingCtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 53px;
    height: 30px;
}
.ratingCtn img{
    display: block;
    width: 20px;
    height: 20px;
}
.rating {
    font-size: 1rem;
    font-weight: 600;
}
.categoryName {
    font-size: .9rem;
    color: rgb(146, 146, 146);
    font-weight: 700;
}

.productCtnTwo {
    margin-top: 15px;
    height: 100px;
    position: relative;
}
.addToCartBtn {
    position: absolute;
    right: 0px;
    bottom: 10px;
    cursor: pointer;
}
.addToCartBtn img{
    width: 33px;
}
.priceCtn {
    display: flex;
    justify-items: start;
    align-items: center;
}
.delPrice {
    margin-right: 15px;
}
.price {
    font-weight: bold;
}
.seeProducts {
    margin-top: 50px;
    background-color: black;
    color: white;
    width: 150px;
    height: 45px;
    border-radius: 7px;
    position: absolute;
    left: 44%;
    cursor: pointer;
    transition: all .3s ease;
    bottom: 0;
    font-weight: 500;
    border: 1px solid black;
    font-size: .9rem;
}
.seeProducts:hover {
    background-color: white;
    border: 1px solid black;
    color: black;
    font-weight: bold;
}




/* Jumbotron Styling Starts */

.slider {
    overflow: hidden;
    position: relative;
}
.slides {
    width: 500%;
    display: flex;
    position: relative;
}
.slides input {
    display: none;
}
.slide {
    width: 20%;
    transition: 2s;
}

/* css for manual slide navigation */

.navigation-manual, .navigation-auto {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 90%;
    left: 2%;
    z-index: 5;
}

.manual-btn, .navigation-auto div {
    background-color: rgba(255, 255, 255, 0.192);
    padding: 5px;
    border-radius:  100%;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child), .navigation-auto div:not(:last-child) {
    margin-right: 20px;
}

.manual-btn:hover {
    background: white;
}

#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -20%;
}
#radio3:checked ~ .first {
    margin-left: -40%;
}

/* css for automatic navigation */

#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: white;
}
#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: white;
}
#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: white;
}
/* Jumbotron Styling Ends */
@media (max-width:1200px) {
    .jumbotronImages {
        width: 30%;
    }
    .jumbotronText {
        width: 40%;
        font-size: .8rem;
    }
    .jumbotron {
        padding: 0 40px;
        height: 60vh;
    }
    .seeProducts {
        left: 32%;
    }
}
@media (max-width:768px) {
    .jumbotronImages {
        display: none;
    }
    .jumbotronText {
        width: 100%;
        font-size: .8rem;
    }
    .jumbotron {
        padding: 0 40px;
        height: 60vh;
    }
    .seeProducts {
        left: 32%;
    }
}
