@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {

    font-family: sans-serif;
    /* background-color: #F1F3F2; */
    background: #fff;
    /* color: hsl(356,9%,63%); */
}

/* header */
header {
    position: sticky;
    top: 0;
    text-transform: uppercase;
    width: 100%;
    height: auto;
    background-color: hsl(356, 9%, 63%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
    z-index: 999;

}
header .navheader{

    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;


}
.icon-media{
    color: #ebcb5f;
}

.mediaNlogo a > img{
    width: 250px;
    height: 70px;
}

header .navLeft {
    display: flex;
    justify-content: center;
    font-weight: bolder;
    text-decoration: none;
    margin: auto;

}

header .navLeft .list {
    position: relative;
    padding: 20px;
    text-align: center;
    list-style-type: none;
    position: relative;
    color: #fff;
}

header .navLeft .list::before {

    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: black;
    transition: all 0.5s;
}

header .navLeft .list:hover:before {

    content: '';
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all 0.5s;
    background-color: #fff;
}

header .navLeft .active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all 0.5s;
    background-color: black;
}

header .navLeft .list a {
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    font-size: 16px;
}

/*dropEyeglas */
header .navLeft .list .dropEyeglas {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 120%;
    height: auto;
    background-color: hsl(356, 9%, 63%);
    transition: all 0.5s;
    text-align: left;
    z-index: 999;

}

header .navLeft .list:hover .dropEyeglas {

    display: block;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    transition: all 0.5s;
}

header .navLeft .list .dropEyeglas ul {
    width: 100%;
    height: 100%;
    padding-top: 10px;
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 5px;
}

header .navLeft .list .dropEyeglas ul li {
    width: 100%;
}

header .navLeft .list .dropEyeglas ul li a {
    display: flex;
    gap: 2px;
    align-items: flex-start;
    color: #fff;
    padding: 13px 0;

}

header .navLeft .list .dropEyeglas ul li a:hover {
    color: #ffba00;

}
.dropEyeglas ul li #activeMenu{
    color: goldenrod;
   
    border-bottom: 1px solid goldenrod;
    
}
.fa-bahai{
    color: #000;
}
header .navLeft .list .dropEyeglas ul li a:hover .fa-bahai {
    color: rgb(56, 42, 7);
    transform: rotate(0);
    animation: float 5s ease-out infinite
}

/* header .navLeft .list .dropEyeglas ul li a > .fa-bahai{
    
} */

@keyframes float {
    0% {
        transform: rotate(0px);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* end of header */

/* logo */
header .logo img{
    width: 300px;
    height: 100px;
}

/* end of logo */

/* navright */
header .navright {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    text-decoration: none;
}
header .navright .right{
    display: flex;
    justify-content: center;
    align-items: center;
}
header .navright li {
    padding: 20px;
    text-align: center;
    list-style-type: none;
}
header .navright li .btn-bars{
    font-size: 24px;
    display: none;
}
header .navright li a {
    text-decoration: none;
    font-weight: bolder;
    color: black;
}

header .navright li a>.fa-solid {
    font-size: 24px;
}

header .navright li a>.cart {
    position: relative;
    gap: 3px;
}

header .navright li a>.cart .zero {
    position: absolute;
    top: -50%;
    padding: 1px 5px;
    background-color: aliceblue;
    border-radius: 20%;
    color: goldenrod;

}

header .navright li a>.cart .fa-cart-shopping {
    font-size: 20px;
}

header .navright li a>.price {
    color: goldenrod;
}

header .navright li a .fa-heart {
    color: red;
    filter: drop-shadow(-0px -0px 2px black);
}

/* container */
.container {
    width: 100%;
    height: 640px;
    display: flex;
    background-color: #F1F3F2;
}

.container .content_title {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container .content_title>h1 {
    font-size: 5.5vw;
    font-family: 'Mooli', sans-serif;
    letter-spacing: 12px;
}

.container .content_title>p {
    padding: 40px;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 35px;
    color: rgb(56, 42, 7);
}

.container .content_title>.shop {
    padding: 12px 20px;
    text-align: center;
    background-color: #ffba00;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    position: relative;

}

.container .content_title>.shop:hover {

    background-color: goldenrod;
    color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.container .content_title>.shop:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 5px 5px 0 0;
    background-color: #000;
    transition: all 0.5s;
}

.container .content_title>.shop:hover::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #000;
    transition: all 0.5s;
    border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.container .content_img {
    pointer-events: none;
    width: 50%;
    height: 100%;

}

.container .content_img>img {
    width: 100%;
    height: 100%;
}

/* end of container */

/* container2 */
.container2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.container2 .card-content {
    width: 22%;
    height: 600px;
    overflow: hidden;
}


/* img */
.container2 .card-content .img {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.container2 .card-content .img>img {
    width: 100%;
    height: 100%;
}

.container2 .card-content .img .changeImg {
    display: none;
}

.container2 .card-content:hover .changeImg {
    display: block;
    transition: all 0.5s;
}

/* des */
.container2 .card-content .des {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50%;
    overflow: hidden;
    padding: 0 12px;
    text-align: center;
    color: rgb(56, 42, 7);
    line-height: 22px;
}

.container2 .card-content .des1 {
    border-top: 0.5px solid rgba(128, 128, 128, 0.468);
    border-left: 0.5px solid rgba(128, 128, 128, 0.468);
}

.container2 .card-content .des2 {
    border-bottom: 0.5px solid rgba(128, 128, 128, 0.468);

}

.container2 .card-content .des3 {
    border-top: 0.5px solid rgba(128, 128, 128, 0.468);

}

.container2 .card-content .des4 {
    border-right: 0.5px solid rgba(128, 128, 128, 0.468);
    border-bottom: 0.5px solid rgba(128, 128, 128, 0.468);
}

/* end of container2 */

/* ti1 */
.ti1{
    font-family: 'Mooli', sans-serif;
    letter-spacing: 8px;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    display: none;
}
/* end ti1 */

/* container3 */
.container3 {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    background-color: #F1F3F2;
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
}

.container3 .title {
    width: 40%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;

}

.container3 .title h1 {
    font-family: 'Mooli', sans-serif;
    letter-spacing: 8px;
    font-size: 35px;
    line-height: 50px;

}

.container3 .title p {
    letter-spacing: 1px;
    font-size: 21px;
    line-height: 1.8rem;

}

.container3 .title .readMore {
    padding: 13px 20px;
    text-align: center;
    background-color: #ffba00;
    text-decoration: none;
    color: #F1F3F2;
    text-transform: uppercase;
    font-weight: bold;
}

.container3 .title .readMore:hover {
    background-color: #000;
}

/* img */
.container3 .img {
    width: 40%;
    height: 500px;
    overflow: hidden;

}

.container3 .img>img {
    width: 100%;
    height: 100%;
}

/* end of container3 */

/* container4 */
.container4 {
    width: 100%;
    height: auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 1rem;
}

.container4>h1 {
    font-family: 'Mooli', sans-serif;
    letter-spacing: 8px;
    font-size: 35px;
    line-height: 50px;
}

/* content */
.container4 .content {
    width: 100%;
    height: 500px;
    display: block;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
    padding: 50px;

    &::-webkit-scrollbar {
        background-color: #1e1f26;
        height: 20px;
        width: 20px;
    }

    &::-webkit-scrollbar-thumb {
        background: #383d4d;
        border-radius: 99em;
        border: 6px solid #1e1f26;
    }
}


/* .container4 .content >img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  } */

.container4 .content ul {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.container4 .content li {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    row-gap: 50px;
    padding-left: 20px;
    width: min(50vw, 350px);
    display: inline-block;
    text-align: center;
    /* background-color: #F1F3F2; */
    color: #9b9dad;
    padding-bottom: 1.5rem;
    font-size: clamp(18px, 2.5vw, 22px);
    box-shadow: -10px 0 30px 0 rgba(#000, 0.25);
    margin-left: -4px;
}

.container4 .content li>img {
    background-color: #F1F3F2;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    /* border: 0.5px solid black; */
    pointer-events: none;
}

.container4 .content li .cart_fav {
    position: absolute;
    display: none;
    color: #000;
    top: 0;
    right: 0;
    padding: 5px;
    row-gap: 5px;

}

.container4 .content li .cart_fav a {
    color: #000;

}

.container4 .content li:hover .cart_fav {
    display: block;
    display: flex;
    flex-direction: column;

}

.container4 .content li .title {
    font-size: 12px;
    position: absolute;
    bottom: 10%;
    left: -15%;
    width: 100%;
    height: 100px;

}

.container4 .content li .title h2 {
    color: #000;
}

.container4 .content li .title p {
    font-size: 17px;
}

.container4 .content li .ViewPro {
    padding: 13px 20px;
    text-align: center;
    background-color: goldenrod;

    color: #F1F3F2;
    text-transform: uppercase;
    font-weight: bold;
}

/* end of container4 */

/* container5 */
.container5 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
}

.container5 .card {
    width: 15%;
    border: 0.5px solid #b8bab9;
    height: auto;
    padding: 20px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s;
}

.container5 .card:hover {
    transition: all 0.5s;
    background: #b8bab9;
}

.container5 .card a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #383d4d;

}

.container5 .card .img {
    width: 100%;
    height: 80px;
    margin: auto;

}

.container5 .card .img>img {
    width: 100%;
    max-width: 40%;
    height: 60px;

}

/* des */
.container5 .card .des {
    line-height: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.container5 .card .des h2 {
    font-size: 15px;
    transition: all 0.5s;
    text-transform: uppercase;
}

.container5 .card:hover h2 {
    color: #fff;
    transition: all 0.5s;
}

/* end of container5 */

/* footer */

footer {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;

}

footer>p {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
}

/* end of footer */


/* media 547px */

@media only screen and (max-width: 576px) {
  /* header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 ;
    background-color: #fff;

}

header .navLeft {
    width: 100%;
    order: 2;
    display: flex;
    position: absolute;
    left:  -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    text-decoration: none;
    background-color: hsl(356, 9%, 63%);

}
header .navLeftShow {
    left: 0;
    top: 100%;
}


header .logo{
    order: 3;
    width: 100%;
    position: absolute;
    left:  -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(356, 9%, 63%);
    
}
header .logoShow {
    left: 0;
    top: 430%;
    transition: 1s all;
}
header .navright{

    width: 100%;
    background-color: hsl(356, 9%, 63%);
       display: flex;
    justify-content: space-between;
    /* align-items: center;
    font-weight: bolder;
    text-decoration: none; */

}

header .navright li .btn-bars{
    display: block;
   
}
/* end of header */

/* container */
.container {
    height: auto;
    padding: 20px 0;
}


.container .content_title>h1 {
    font-size: 3.5vw;

}
.container .content_title>p {
    padding: 10px;
    font-size: 17px;
}
.container .content_img>img {
    max-height: 70%;
}

/* end of container */


/* container2 */
.container2 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto ;
}

.container2 .card-content {
    width: 100%;
    max-width: 70%;
    height: 500px;
    overflow: hidden;
    margin: auto;
}
/* img */
.container2 .card-content .img {
    width: 100%;
    height: 50%;
    max-height: 50%;
    overflow: hidden;

}

.container2 .card-content .des1 {
    border: none;
}

.container2 .card-content .des2 {
    border: none;

}

.container2 .card-content .des3 {
    border-top: 0.5px solid rgba(128, 128, 128, 0.468);

}
.container2 .card-content .des4 {
    border: none;
}

/* end of container2 */

/* container3 */
.container3 {
    width: 100%;
    height: auto;
    padding: 5px;
    
}
.container3 .title {
    width: 100%;
    height: auto;
    text-align: center;
}
/* img */
.container3 .img {
    display: none;
}
/* end of container3 */

/* container5 */
.container5 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
}

.container5 .card {
    width: 50%;

}
/* end of container5 */

/* footer */
footer>p {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: center;
}
/* end of footer */

}


/*  */
@media only screen and (min-width:577px ) and (max-width: 768px){
  /* header */
  header {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 ;
    background-color: #fff;

}

header .navLeft {
    width: 100%;
    order: 2;
    display: flex;
    position: absolute;
    left:  -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    text-decoration: none;
    background-color: hsl(356, 9%, 63%);

}
header .navLeftShow {
    left: 0;
    top: 100%;
}


header .logo{
    order: 3;
    width: 100%;
    position: absolute;
    left:  -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(356, 9%, 63%);
    
}
header .logoShow {
    left: 0;
    top: 430%;
    transition: 1s all;
}
header .navright{

    width: 100%;
    background-color: hsl(356, 9%, 63%);
       display: flex;
    justify-content: space-between;
    /* align-items: center;
    font-weight: bolder;
    text-decoration: none; */

}

header .navright li .btn-bars{
    display: block;
   
}
/* end of header */


/* container */
.container {
    height: auto;
    padding:  0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container .content_title>h1 {
    font-size: 3.5vw;

}
.container .content_title>p {
    padding: 10px;
    font-size: 20px;
}
.container .content_img >img {
    max-height: 70%;
}

/* end of container */


/* container2 */
.container2 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto ;

    margin: 0px;
}

.container2 .card-content {
    width: 100%;
    max-width: 70%;
    height: 400px;
    overflow: hidden;
    margin: auto;
}
/* img */
.container2 .card-content .img {
    width: 100%;
    height: 50%;
    max-width: 70%;
    overflow: hidden;
    margin: auto;

}

.container2 .card-content .des1 {
    border: none;
}

.container2 .card-content .des2 {
    border: none;

}

.container2 .card-content .des3 {
    border-top: 0.5px solid rgba(128, 128, 128, 0.468);

}
.container2 .card-content .des4 {
    border: none;
}

/* end of container2 */

/* container3 */
.container3 {
    width: 100%;
    height: auto;
    padding: 5px;
    
}
.container3 .title {
    width: 100%;
    height: auto;
    text-align: center;
}
/* img */
.container3 .img {
    display: none;
}
/* end of container3 */

/* container4 */
.container4 {
    width: 100%;
    height: auto;
    padding:  0;
    margin: 0;
}
/* content */
.container4 .content {
    width: 100%;
    height: 450px;
    padding: 50px 0;
}


.container4 .content ul {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
    padding-bottom: 0;
}

.container4 .content li {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    row-gap: 0;
    padding-left: 20px;
    width: min(40vw, 380px);
    display: inline-block;
    text-align: center;
    color: #9b9dad;
    padding-bottom: 1.5rem;
    font-size: clamp(18px, 2.5vw, 22px);
    box-shadow: -10px 0 30px 0 rgba(#000, 0.25);
    margin-left: -4px;
}

.container4 .content li>img {
    background-color: #F1F3F2;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 230px;
    margin-bottom: 1.5rem;
    /* border: 0.5px solid black; */
    pointer-events: none;
}

/* end of container4 */

/* container5 */
.container5 {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-evenly;
    align-items: start;
    padding-bottom: 30px;
}

.container5 .card {
    width: 30%;

}

/* end of container5 */

/* footer */
footer>p {
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
    text-align: center;
}
/* end of footer */
}

/*  */

/*  */
@media only screen and (min-width:769px ) and (max-width: 992px){
  /* header */
  header {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 ;
    background-color: #fff;

}

header .navLeft {
    width: 100%;
    order: 2;
    display: flex;
    position: absolute;
    left:  -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    text-decoration: none;
    background-color: hsl(356, 9%, 63%);

}
header .navLeftShow {
    left: 0;
    top: 100%;
}


header .logo{
    order: 3;
    width: 100%;
    position: absolute;
    left:  -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(356, 9%, 63%);
    
}
header .logoShow {
    left: 0;
    top: 430%;
    transition: 1s all;
}
header .navright{

    width: 100%;
    background-color: hsl(356, 9%, 63%);
       display: flex;
    justify-content: space-between;
    /* align-items: center;
    font-weight: bolder;
    text-decoration: none; */

}

header .navright li .btn-bars{
    display: block;
   
}
/* end of header */

/* container */
.container {
    height: auto;
    padding:  0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container .content_title>h1 {
    font-size: 3.5vw;

}
.container .content_title>p {
    padding: 10px;
    font-size: 20px;
}
.container .content_img >img {
    max-height: 70%;
}

/* end of container */

/* container2 */
.container2 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto auto ;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    padding: 0px 40px;
}

.container2 .card-content {
    width: 100%;
    height: 600px;
    overflow: hidden;
}


/* img */
.container2 .card-content .img {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.container2 .card-content .img>img {
    width: 100%;
    height: 100%;
}

.container2 .card-content .img .changeImg {
    display: none;
}

.container2 .card-content:hover .changeImg {
    display: block;
    transition: all 0.5s;
}

/* des */
.container2 .card-content .des {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50%;
    overflow: hidden;
    padding: 0 12px;
    text-align: center;
    color: rgb(56, 42, 7);
    line-height: 22px;
}


/* end of container2 */

/* ti1 */
.ti1{
    padding: 0 30px;
    display: block;
}
/* end ti1 */

/* container3 */


.container3 {
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container3 .title {
    width: 50%;
    height: 300px;
}
.container3 .title h1{
    display: none;
}
/* img */
.container3 .img {
    width: 40%;
    height: 300px;
    overflow: hidden;

}

/* end of container3 */

/* container4 */
.container4 {
    width: 100%;
    height: auto;
    padding:  0;
    margin: 0;
}
/* content */
.container4 .content {
    width: 100%;
    height: 450px;
    padding: 50px 0;
}


.container4 .content ul {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
    padding-bottom: 0;
}

.container4 .content li {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    row-gap: 0;
    padding-left: 20px;
    width: min(30vw, 380px);
    display: inline-block;
    text-align: center;
    color: #9b9dad;
    padding-bottom: 1.5rem;
    font-size: clamp(18px, 2.5vw, 22px);
    box-shadow: -10px 0 30px 0 rgba(#000, 0.25);
    margin-left: -4px;
}

.container4 .content li>img {
    background-color: #F1F3F2;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 230px;
    margin-bottom: 1.5rem;
    /* border: 0.5px solid black; */
    pointer-events: none;
}

/* end of container4 */
/* container5 */
.container5 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
}

.container5 .card {
    width: 24%;
    border: 0.5px solid #b8bab9;
    height: auto;
    padding: 20px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s;
}

.container5 .card:hover {
    transition: all 0.5s;
    background: #b8bab9;
}

.container5 .card a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #383d4d;

}

.container5 .card .img {
    width: 100%;
    height: 80px;
    margin: auto;

}

.container5 .card .img>img {
    width: 100%;
    max-width: 40%;
    height: 60px;

}

/* des */
.container5 .card .des {
    line-height: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.container5 .card .des h2 {
    font-size: 15px;
    transition: all 0.5s;
    text-transform: uppercase;
}

.container5 .card:hover h2 {
    color: #fff;
    transition: all 0.5s;
}

/* end of container5 */

}




/*  */
/*  */
@media only screen and (min-width:993px ) and (max-width: 1200px){

/* header */

header .navLeft {
    display: flex;
    justify-content: center;
    font-weight: bolder;
    text-decoration: none;
}

header .navLeft .list {
    position: relative;
    padding: 10px;
    text-align: center;
    list-style-type: none;
    position: relative;
    font-size: 15px;
}

/* logo */

header .logo {
    position: relative;
    user-select: none;
    font-weight: bolder;
    display: flex;
    justify-content: end;
    letter-spacing: 5px;
    width: 15%;
    font-size: 25px;
    color: #fff;
}
header .logo > img{
    width: 150px;
}
/* end of logo */


/* end of header */

/* start container2 */
.container2 .card-content{
    width: 24%;
}
/* end of container2 */


/* container3 */
.container3 {
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.container3 .title {
    width: 60%;
    height: 400px;
}
/* .container3 .title h1{
    display: none;
} */
/* img */
.container3 .img {
    width: 40%;
    height: 400px;
    overflow: hidden;

}

/* end of container3 */

/* container4 */
.container4 {
    width: 100%;
    height: auto;
    padding:  0;
    margin: 0;
}
/* content */
.container4 .content {
    width: 100%;
    height: 450px;
    padding: 50px 0;
}


.container4 .content ul {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scroll-behavior: smooth;
    padding-bottom: 0;
}

.container4 .content li {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    row-gap: 0;
    padding-left: 20px;
    width: min(30vw, 380px);
    display: inline-block;
    text-align: center;
    color: #9b9dad;
    padding-bottom: 1.5rem;
    font-size: clamp(18px, 2.5vw, 22px);
    box-shadow: -10px 0 30px 0 rgba(#000, 0.25);
    margin-left: -4px;
}

.container4 .content li>img {
    background-color: #F1F3F2;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 230px;
    margin-bottom: 1.5rem;
    /* border: 0.5px solid black; */
    pointer-events: none;
}

/* end of container4 */
/* container5 */
.container5 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
}

.container5 .card {
    width: 20%;
    border: 0.5px solid #b8bab9;
    height: auto;
    padding: 20px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s;
}

.container5 .card:hover {
    transition: all 0.5s;
    background: #b8bab9;
}

.container5 .card a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #383d4d;

}

.container5 .card .img {
    width: 100%;
    height: 80px;
    margin: auto;

}

.container5 .card .img>img {
    width: 100%;
    max-width: 40%;
    height: 60px;

}

/* des */
.container5 .card .des {
    line-height: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.container5 .card .des h2 {
    font-size: 15px;
    transition: all 0.5s;
    text-transform: uppercase;
}

.container5 .card:hover h2 {
    color: #fff;
    transition: all 0.5s;
}

/* end of container5 */

}

/*  */

/* 1275 */
@media only screen and (min-width:1201px ) and (max-width: 1275px){
    /* header */

header .navLeft {
    display: flex;
    justify-content: center;
    font-weight: bolder;
    text-decoration: none;
}

header .navLeft .list {
    position: relative;
    padding: 16px;
    text-align: center;
    list-style-type: none;
    position: relative;
    font-size: 15px;
}

/* logo */

header .logo {
    position: relative;
    user-select: none;
    font-weight: bolder;
    display: flex;
    justify-content: end;
    letter-spacing: 5px;
    width: 15%;
    font-size: 25px;
    color: #fff;
}
header .logo > img{
    width: 250px;
}
/* end of logo */


/* end of header */

.container5 .card{
    width: 20%;
}

}
/*  */