@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
ul,li{
    padding:0 ;
}

.title {
    font-weight: 600;
    font-size: 36px;
    line-height: 30px;
    color: #333;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 60px;
}

.title:after {
    position: absolute;
    content:
        "";
    left: 0;
    bottom: -20px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--primary-color);
    width: 70px;

}

/* header */
.general-header {
    height: 115px;
    display: flex;
    align-items: center;
}

.general-header .general-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.general-header .header-logo {
       width: 235px;
    height: 44px;
}

.general-header .header-logo img {
    width: 100%;
    height: 100%;
}

.general-header .nav {
    flex: 1;

}

.general-header .nav ul {
    display: flex;
    height: 120px;
    gap: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.general-header ul li a {
    color: #333;
    font-size: 18px;
    color:#666;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: capitalize;
}

.general-header ul li a:hover {
    color: var(--primary-color);

}

.mobile-header {
    height: 100px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.mobile-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content .header-logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.mobile-header .nav-icon {
    display: flex;
    height: 35px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-right: 20px;
}

.nav-icon .line {
    width: 50px;
    background-color: var(--primary-color);
    height: 3.5px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.menu {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 9;
    transform: translateY(-4000px);
    transition: 0.4s ease;

}

.menu.show {
    transform: translateY(0);
}

.menu .menu-header {
      padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu .menu-header svg {
    cursor: pointer;
}

.menu .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.menu .nav ul {
    width: 100%;
}

.menu .nav ul li {
    padding: 10px 0;
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 36px;
    transition: 0.4s ease;
    width: 100%;
}

.menu .nav ul li:hover {
    background-color: var(--primary-color);
}

.menu .nav ul li:hover a {
    color: #fff;
}
.menu .search-area{
    display:none;
}
.search-area .search-icon {
    cursor: pointer;
}

.search-modal {
     background-color: rgba(72, 52, 212,0.4);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
   
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.search-modal.active{
    display: flex;
}
.search-modal .close-modal {
    position: absolute;
    right: 60px;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.4s;
    top: 60px;
}
.search-modal .close-modal:hover{
    opacity: 1;
}
.search-modal .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #fff;
    height: 60px;
    width: 700px;
    margin: 0 auto;
}

.search-modal .form-group input {
    padding: 0 20px;
    width: 100%;
    border: none;
    outline: none;

}

.search-modal .form-group button {
    padding: 0 20px;
    border: none;
    background-color: transparent;

}

footer {
    padding: 50px 0 10px;
    background-image: url('../assets/img/foot-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #F3F4F8;
}

footer .footer-nav ul {
    margin-bottom: 30px;
}

.footer-top .footer-nav-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 20px;
}

.footer-nav ul li {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;

}

.footer-nav ul li a {
    transition: all 0.4s ease;
    color: #303030;
    position: relative;
}

.footer-nav ul li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: 1px;
    width: 0;
    transition: all 0.4s ease;
    background-color: var(--primary-color);
}

.footer-nav ul li a:hover:after {
    width: 100%;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #848484;
    margin-bottom: 15px;
}

.footer-middle .contact-number,
.footer-middle .contact-number li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-middle .contact-number .img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7F7F7;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 50%;
}
.footer-middle .contact-number .img i{
    font-size:24px;
    color:var(--primary-color);
}
.footer-middle .footer-nav ul li {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #303030;
}

.footer-middle .footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 30px;
}


.footer-middle .footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #F7F7F7;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.footer-middle .footer-social a:hover {
    transform: translateY(-4px);
}

footer .copyright {
    text-align: center;
    color: #9C9C9C;
    font-weight: 600;
    font-size: 12px;
}

.breadcrumb-area {
    position: relative;
    background-image: url('../assets/img/breadcrumb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 280px;
    width: 100%;
}

.breadcrumb-area:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.breadcrumb-area ul {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    z-index: 2;
}

.breadcrumb-area ul li,
.breadcrumb-area ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    transition: all 0.4s ease;
}


.breadcrumb-area ul li a:hover {
    color: var(--primary-color);
}

.breadcrumb-area .breadcrumb-title {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 2;
    line-height: 50px;
    margin-bottom: 30px;
}
.show_me ul:first-child{
    list-style:none;
}
.slick-next,.slick-prev{
        background: rgba(255,255,255,0.4);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
      color:#ffff;
    z-index:999;
    border: 1px solid #fff;
}
.slick-next:hover,.slick-prev:hover{
      background: rgba(255,255,255,0.9);
    
}
.slick-prev{
        background: rgba(255,255,255,0.4);
    width: 50px;
    height: 50px;
    position: absolute;
    left: 10px;
    top: 50%;
    border: 1px solid #fff;
}
.slick-next{
        background: rgba(255,255,255,0.4);
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 50%;
    border: 1px solid #fff;
}
.filter-btn{
        height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px auto 20px;
    width: 90%;
    border-radius: 5px;
}

.pagination .active .page-link,.pagination .page-item .page-link:hover {
    border-color: var(--primary-color)!important;
    color: #fff!important;
    background-color: var(--primary-color)!important
}

.pagination .page-link,.pagination .page-link:first-child {
    box-shadow: none;
    color: #222;
    font-size: 14px;
    margin: 0 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    background-color: #eee;
    align-items: center;
    justify-content: center
}
.all-products nav{
        margin: 30px auto 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-mobile{
    background-color:#fff;
    position:fixed;
    overflow-y:auto;
    top:0;
    left:0;
    z-index:99;
        padding: 24px;
    height: 100vh;
    display:none;
    
}.close-sidebar{
    cursor:pointer;
}