.photos img {
    width: 200px;
    height: 200px;
    border: 2px solid #aaa;
}

.photos img:hover {
    cursor: pointer;
    border: 2px solid black;
}

.main img {
    width: 630px;
    height: 830px;
    border: 2px solid #aaa;
    margin-left: 21px;
}

.gallery {

    z-index: 1;
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    margin-left: 30px;
    display: flex;
}

.photos {
    width: 200px;
    display: flex;
    flex-direction: column;
    height: 830px;
    justify-content: space-between;
}

.container {
    margin-top: 5px;
    z-index: 1;
    padding-top: 100px;
    width: 500px;
    overflow: hidden;
    margin: auto;
}

.ul {
    display: inline-flex;
    animation: slider 8s infinite;
    position: relative;
    list-style-type: none;
}

* {
    margin: 0px;
    padding: 0px;
}

.a {
    width: 500px;
    height: 500px;
}

.aa {
    width: 500px;
    height: 500px;
}

.b {
    width: 500px;
    height: 500px;
}

.bb {
    width: 500px;
    height: 500px;
}

.c {
    width: 500px;
    height: 500px;
}

.cc {
    width: 500px;
    height: 500px;
}

.d {
    width: 500px;
    height: 200px;
}

.dd {
    width: 500px;
    height: 500px;
}

@keyframes slider {
    0% {
        right: 0px;
    }

    30% {
        right: 500px;
    }

    60% {
        right: 1000px;
    }

    90% {
        right: 1500px;
    }
}

.details {
    background-color: #3ca0e7;
    height: 830px;
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: white;
    padding-left: 40px;
}

.name {

    font-size: xx-large;
    font-weight: 800;
}

.checked {
    color: orange;

}

.rate span {
    font-size: xx-large;
}

.del {
    font-size: x-large;
    font-weight: 400;
    opacity: .7;
    color: gray;
    padding: 20px;

}

.prics {
    font-size: xx-large;
    font-weight: 800;
    padding: 20px;
}

.prics span {
    font-size: x-large;
    font-weight: 400;
    opacity: .7;
    color: rgb(48, 123, 39);

}

.list li {
    margin-bottom: 16px;
    font-size: larger;
}

.btn {
    width: 200px;
    height: 40px;
    border-radius: 13px;
    border: 1px solid black;
    align-items: center;
    justify-items: center;
    cursor: pointer;
    transition: .7s;


}

.btn:hover {
    transform: scale(1.1);
}


.recommended {
    color: var(--color-4);
    font-size: xx-large;
    font-weight: 800;

    text-align: center;
    margin: 10px;
}



body {
    font-family: 'Lexend Exa', sans-serif;
    background-color: var(--color-2);
    transition: 0.5s ease;
}

/*-----Head-----*/

.stick_head {
    z-index: 9999;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    top: 0;
    background-color: var(--color-1);
    color: var(--color-2);
    margin: 0px;
    padding: 10px;
    padding-left: 0;
    font-family: 'Lexend Exa', sans-serif;
}

#icon {
    width: 30px;
    cursor: pointer;
    padding-right: 20px;
}

.logo {
    width: 80px;
    margin-left: 0;
}

.sub_head_title {
    display: inline-block;
    margin-left: 0;
}

.sub_head_title:hover {
    color: var(--color-3);
    transition: 0.5s;
    cursor: pointer;
}

.head_title {
    margin: 0px 30px;
}

.head_title:hover {
    cursor: pointer;
}

.head_item {
    flex: 1;
    text-align: right;
    margin: 0px 30px;
    padding-left: 15px;
    border-left: 2px var(--color-3) solid;
}

.head_list {
    list-style: none;
    margin: 0 20px 0 auto;
    display: inline-block;
    padding: 0 30px;
    position: relative;
    text-decoration: none;
    text-align: right;
    cursor: pointer;
}

.head_cat {
    padding-left: 15px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 10;
    left: 0;
    display: none;
    background-color: var(--color-1);
    color: var(--color-2);
    text-decoration: none;
    list-style: none;
}

.head_item:hover>ul,
.head_cat:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 200px;
    text-align: left;
    padding-top: 20px;
    box-shadow: 0px 3px 5px -1px var(--color-1);
}

.head_item:hover {
    color: var(--color-3);
    transition: 0.3s;
    cursor: pointer;
}

.head_btn {
    clear: both;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    border-style: none;
}

.head_btn:hover {
    padding-left: 10px;
    border-left: 2px solid var(--color-3);
    transition: all 0.3s ease;
}

.head_link {
    color: var(--color-2);
    text-decoration: none;
}

.head_link:hover {
    transition: all 0.3s ease;
    color: var(--color-3);
}


/*-----Navigation Bar-----*/

.nav_bar {

    bottom: 0;
    top: 80px;
    background-color: var(--color-1);
    margin: 0 auto;
    display: block;
    padding: 20px 0 20px 0px;
    text-align: center;
    font-size: 16px;
    font-family: 'Lexend Exa', sans-serif;
}

.nav_semi_cat {
    padding: 0 0 0px 20px;
}

.nav_main {
    display: inline-block;
    margin: 0px 30px;
    text-decoration: none;
}

.nav_cat {
    list-style: none;
    margin: 0 auto;
    border-left: 2px solid var(--color-3);
    display: inline-block;
    padding: 0 30px;
    position: relative;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.nav_link {
    color: var(--color-2);
    text-decoration: none;
}

.nav_link:hover {
    color: var(--color-3);
}

.nav_semi_cat {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 10;
    left: 0;
    display: none;
    list-style: none;
    background-color: var(--color-1);
}

ul li:hover>ul,
.nav_semi_cat:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 250px;
    text-align: left;
    padding-top: 20px;
    box-shadow: 0px 3px 5px -1px var(--color-1);
}

.nav_last {
    clear: both;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    border-style: none;
}

.nav_last:hover {
    padding-left: 10px;
    border-left: 2px solid var(--color-3);
    transition: all 0.3s ease;
}

.nav_link:hover {
    transition: all 0.3s ease;
}

/*-----Footer From Here------*/

.foot {
    width: 100%;
    height: 330px;
    color: var(--color-2);
    background-image: url("foot_img.jpg");
    margin: 0 auto;
    display: block;
    padding: 20px;
    text-align: center;
    font-size: 16px;
}

.foot_link {
    color: var(--color-2);
    text-decoration: none;
}

.foot_link:hover {
    color: var(--color-3);

}

.foot_head {
    padding-left: 10px;
    border-left: solid 2px var(--color-3);
    align-items: right;
}

.foot_div {
    margin-top: 0px;
    display: inline-block;
    margin: 40px;
    text-align: center;
    padding-right: 20px;
    text-decoration: none;
    width: 160px;
}

.foot_container {
    list-style: none;
    text-decoration: none;
}

.foot_items {
    margin: 14px;
    text-decoration: none;
    text-align: left;
    align-items: left;
    display: block;
}

.foot_items:hover {
    padding-left: 10px;
    border-left: 2px var(--color-3) solid;
    color: var(--color-3);
    transition: 0.5s;
}

#fb:hover {
    border-color: blue;
    color: blue;
    transition: 0.5s;
}

#tt:hover {

    transition: 0.5s;
}

#yt:hover {
    border-color: red;
    color: red;
    transition: 0.5s;
}

.cp {
    width: 70%;
    align-items: left;
    justify-items: left;
    padding: 0 0 0 230px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 15px;
}

.cp_type {
    text-align: left;
    margin: 10px;
}

:root {
    --color-1: black;
    --color-2: white;
    --color-3: #3ca0e7;
    --color-4: rgb(205, 237, 253);
}

.dark_theme {
    --color-1: white;
    --color-2: black;
    --color-3: rgb(138, 1, 235);
    --color-4: rgb(87, 0, 149);
}