* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html
{
    scroll-behavior: smooth;
}
body {
    background-color: rgba(255, 255, 255, 0.682);
}

.sec-header {
    background-color: transparent;
    height: 100px;
    position: sticky;
    width: 100%;
}

header {
    display: flex;
    box-sizing: content-box;
    margin: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    background-color: rgb(96, 123, 176);
}

header div a {
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 22px;
    color: white;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    padding: 0px 5px;
}

header ul li a {
    cursor: pointer;
    display: block;
    padding: 10px 10px;
    border-radius: 1px;
    text-decoration: none;
    color: white;
    transition: all ease-in 0.2s;
}

header ul li a:hover {
    border: solid 1px white;
    box-shadow: 0px 0px 20px 0px rgb(210, 239, 255);
}

.sec-1 {
    background-color: white;
    height: auto;
    width: 100%;
    padding: 10px;

}

.sec-1 div {
    display: flex;
    height: fit-content;
    width: fit-content;
    margin: auto;
    border: solid 1px rgb(149, 149, 149);
    border-radius: 10px;
    padding: 2px;
}

.sec-1 div:hover {
    border: solid 1px rgb(37, 98, 115);
}

.sec-1 div input {
    display: block;
    width: 100px;
    padding: 5px;
    border: none;
    text-transform: capitalize;
}
.sec-1 div input:focus
{
    width: 300px;
    transition: all ease-in-out 0.3s;
}

.sec-1 div input:focus {
    outline: none;
}

.sec-1 div img {
    display: block;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.sec-2 {
    display: flex;
    background-color: rgba(173, 239, 245, 0.8);
    height: 200px;
    justify-content: space-between;
}

.left 
{
    display: block;
    position: absolute;
    border-radius: 0px 50px 50px 0px;
    box-sizing: content-box;
    background-color: rgb(138, 198, 198,0.5);
    height: 180px; width: 30px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    align-content: center;
    cursor: pointer;
    z-index: 9;
}
.left::after
{
    content: '<<';
    display: block;
    padding-top: 80px;
}
.left:hover::after
{
    content: '< <';
    color: rgb(255, 255, 255);
    margin-right: 8px;
    transition: all ease-in-out 0.3s;
}
.left:hover
{
    background-color: rgba(89, 136, 145, 0.7);
    width: 32px;
    transition: all ease-in-out 0.3s;
}

.sec-2 .frame 
{
    display: flex;
    height: 200px; width: 100%;
    background-color: rgb(138, 198, 198);
    column-gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: mandatory;
    scrollbar-color: aqua; 
    align-items: center;
    justify-content: center; 
}
.frame::-webkit-scrollbar
{
    display: none;
    width: 10px;
}
.frame::-webkit-scrollbar-track
{
    background-color: antiquewhite;
}
.frame::-webkit-scrollbar-thumb
{
    background-color: aquamarine;
}

.frame div 
{
    display: block;
    height: 180px; min-width: 700px;
    background-color: grey;
    border-radius: 20px;
}

.right 
{
    display: block;
    position: absolute;
    right: 0;
    border-radius: 50px 0px 0px 50px;
    box-sizing: content-box;
    background-color: rgb(138, 198, 198,0.5);
    height: 180px; width: 30px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    align-content: center;
    cursor: pointer;
}
.right::after
{
    content: '>>';
    display: block;
    padding-top: 80px;
}
.right:hover::after
{
    content: '> >';
    color: rgb(255, 255, 255);
    margin-left: 8px;
    transition: all ease-in-out 0.3s;
}
.right:hover
{
    background-color: rgba(89, 136, 145, 0.7);
    width: 32px;
    transition: all ease-in-out 0.3s;
}

.sec-3
{
    display: flex;
    height: 400px;
    background-color: rgb(172, 203, 214);
    margin-top: 20px;
}
.sec-3 .categories
{
    display: block;
    height: 200px; width: auto;
    background-color: rgb(14, 124, 124);

}