@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

body {
    background-color: whitesmoke;
}

/* Style the header links */
.header {
    background-color: #f85606;
    font-size: 2rem;
    text-align: center;
    padding: 10px 15px 2px 0;
    /*top, right, bottom, left*/
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-evenly;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.header-img {
    height: 65px;
    margin-left: 170px;
}

#search-items .search {
    margin: 0 20px 0 40px;
    border-radius: 0.85rem;
    margin-top: 14px;
    background-position: right;
    border: none;
    outline: none;
    height: 40px;
    width: 70%;
    padding-left: 0.99rem;
    padding-right: 40px;
}

#search-items #search-icon {
    width: 20px;
    height: 20px;
}

.header-icons {
    display: flex;
    margin: 15px 127px 0 0;
    cursor: pointer;
}

.right-icon {
    width: 30px;
    height: 30px;
}

.header-icons img {
    padding: 3px 10px 3px;
    margin-right: 4px;
    border-radius: 10px;
}

.header-icons img:hover {
    padding: 3px 10px 3px;
    margin-right: 4px;
    border-radius: 5px;
    background-color: #df4d05;
    transition: all ease-in 200ms;
}

.header-icon-box {
    padding-top: 7px;
    /* margin-bottom: 18px; */
    border-radius: 10px;
    background-color: #e99253;
}

.options-containers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.8rem 2rem 0 3rem;
}

.slide-nav {
    height: 330px;
    width: 245px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* padding: 0 0.02rem 0 0; */
    border-radius: .70rem;
    /* transition: all .3s ease; */
    overflow: hidden;
}


.list {
    list-style: none;
    font-size: .9rem;
}

.items {
    padding: 4px 0px 4.5px 12px;
}

.items:hover {
    color: white;
    transition: all ease-in 100ms;
    background-color: #f85606;
    /* color: white; */

}

.img-slider-container img {
    height: 100%;
    width: 932px;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: .75rem;
    margin-left: 1rem;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.items {
    cursor: pointer;
}

/* .img-slider-container {
    width: 932px;
    height: 400px;
    overflow: hidden;
   
    border-radius: .75rem;
    margin-left: 1rem;
}

.img-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
} */
.hero-section {
    margin: 0 10.7rem 3rem 10.7rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    /* margin:0 10.7rem 3rem 10.7rem; */
    border-radius: 0.5rem;
}


.img-container img {
    height: 250px;
    width: 250px;
    border: solid 2px;
    object-fit: cover;
    border-radius: 5px;

}

.left-container {
    background-color: whitesmoke;
    padding: 0px 15px 0 15px;
    margin-left: 23px;
    overflow: hidden;
    border-radius: 5px;
    text-align: justify;
}

.button {
    background-color: #00bcd4;
    color: white;
    border: none;
    margin-bottom: 0.5rem;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.formatting {
    margin: 0 10.7rem 3rem 10.7rem;
}

.text-formating {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.box {
    background-color: whitesmoke;
    padding: 20px 15px 20px 25px;
    overflow: hidden;
    border-radius: 5px;
}

.hyperlink {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0 2rem;
    margin: 0 30rem 2rem 30rem;
    border-radius: 0.5rem;
}

.links img {
    height: 80px;
    width: auto;
    object-fit: cover;
    margin-right: 15px;
}

.img:hover {
    transition: ease-in 200ms;
    transform: scale(1.02);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 85%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.tooltip:hover::before {
    visibility: visible;
    opacity: 1;
}

.products-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}



.laptops-containers {
    width: 255px;
    background-color: #ffffff;
    padding: 15px 15px 0 15px;
    margin: 0 0.4rem 2rem 0.4rem;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.laptops-containers:hover {
    cursor: pointer;
    transition: ease-in 200ms;
    transform: scale(1.02);
}

.footer {
    background-color: cadetblue;
    text-align: center;
    padding: 10px 0;
    width: 100%;

}