@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
    padding: 0 !important;
    overflow: auto !important;
}

:root {
    --blue: #19376D;
    --gray: #f5f5f5;
    --yellow: #FFD852;
    --border-color-one: 1px solid var(--blue);
    --font-12: 12px;
    --font-16: 16px;
    --font-14: 14px;
    --font-24: 24px;
    --font-title: 28px;

    --transition-250ms: all 250ms ease-in-out;
    --transition-300ms: all 300ms ease-in-out;
    --transition-500ms: all 500ms ease-in-out;
}

/* ///////////////////////////////////////////////// Mobil Menu ///////////////////////////////////////////////// */

.mobil-menu {
    display: none;
}

.mobil-menu .zeynep {
    background-color: #ffffff;
    color: #404143;
    width: 295px;
}

.mobil-menu .zeynep ul {
    list-style-type: none;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.mobil-menu .zeynep ul>li {
    display: block;
}

.mobil-menu .zeynep ul>li>a {
    color: inherit;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 150ms;
    width: 100%;
}

.mobil-menu .zeynep ul>li>a:hover {
    background-color: #efefef;
    border-radius: 3px;
}

.mobil-menu .zeynep ul>li:not(:last-child)>a {
    border-bottom: 1px solid #efefef;
}

.mobil-menu .zeynep ul>li.has-submenu>a {
    background-image: url("../images/submenu-arrow.svg");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 8px 14px;
}

.mobil-menu .zeynep ul>li.has-submenu>a:hover {
    background-image: url("../images/submenu-arrow-active.svg");
}

/* zeynepjs submenu styles */
.zeynep .submenu {
    background-color: #ffffff;
    left: 295px;
}

.mobil-menu .zeynep .submenu-header {
    background-image: url("../images/menu-back.svg");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: 8px 14px;
    border-bottom: solid 1px #efefef;
    cursor: pointer;
    position: relative;
}

.mobil-menu .zeynep .submenu-header>a {
    color: inherit;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 18px 20px;
    padding-left: 40px;
    text-decoration: none;
}

.mobil-menu .zeynep .submenu-header>a:before {
    background-image: url("../images/submenu-arrow.svg");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 8px 14px;
    content: "";
    height: 100%;
    left: 26px;
    position: absolute;
    top: 0;
    transform: rotate(-180deg);
    width: 20px;
}

.mobil-menu .zeynep .submenu>label {
    color: var(--blue);
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 19px;
    opacity: .5;
    padding-left: 20px;
    width: 100%;
}

/* /////////////////////////////////////////////////// Desktop Menu //////////////////////////////////////////// */

.desktop_menu {
    background-color: var(--gray);
}

.desktop_menu .menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: center;
}

.desktop_menu .menu li {
    margin-inline: 13px;
}

.desktop_menu .menu li a {
    display: inline-block;
    font-size: var(--font-14);
    font-weight: 600;
    color: #333333;
    line-height: 50px;
    height: 100%;
}

.desktop_menu .menu li a.active,
.desktop_menu .menu li a:hover {
    color: var(--blue);
}

.desktop_menu .box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.desktop_menu .box .user_box {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.desktop_menu .box .user_box svg {
    width: 25px;
    height: 25px;
    margin: 0 10px;
}

.desktop_menu .box .user_box span {
    font-size: 12px;
    padding: 3px;
    border-radius: 5px;
}

.desktop_menu .box .dropdown button {
    width: 50px;
    background: none;
    border: 0px;
    color: black;
    margin: 0px 15px;
}

.desktop_menu .box .dropdown .dropdown-menu {
    min-width: 75px;
    padding: 5px;
    border-radius: 5px;
}

.desktop_menu .box .dropdown .dropdown-menu.show {
    -webkit-box-shadow: 0px 0px 0px 2000px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 0px 2000px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 0px 2000px rgba(0, 0, 0, 0.75);
}



.desktop_menu .box .dropdown .dropdown-menu li {
    width: 100%;
}

.desktop_menu .box .dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 5px;
}

.desktop_menu .box .dropdown .dropdown-menu .dropdown-item img {
    width: 25px;
    margin-right: 5px;
}

/* /////////////////////////////////////////////////// Modal //////////////////////////////////////////// */

#login_modal .modal-body,
#sing_modal .modal-body {
    background: #f1f7fe;
    border-radius: 5px;

}

#login_modal .form-box,
#sing_modal .form-box {
    overflow: hidden;
    color: #010101;
    width: 100%;
    padding: 10px 25px;
}


#login_modal .form,
#sing_modal .form {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#login_modal .title,
#sing_modal .title {
    font-weight: bold;
    font-size: var(--font-title);
}

#login_modal .subtitle,
#sing_modal .subtitle {
    font-size: var(--font-16);
    color: #666;
}

#login_modal .form-container,
#sing_modal .form-container {
    overflow: hidden;
    margin: 1rem 0 .5rem;
    width: 100%;
}

#login_modal .input,
#sing_modal .input {
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #5a5858;
    font-size: var(--font-12);
    padding: 0px 10px;
    margin-bottom: 10px;
}

#login_modal .input:focus,
#sing_modal .input:focus {
    border-bottom: 1px solid #146C94;
}

#login_modal .form-section,
#sing_modal .form-section {
    padding: 0;
    font-size: var(--font-14);
    color: #146C94;
    border-radius: 25px;
    width: fit-content;
}

#login_modal .form-section:hover span,
#sing_modal .form-section:hover span {
    color: var(--blue);
}

#login_modal .form-section span,
#sing_modal .form-section span {
    font-weight: bold;
    color: #000;
    transition: color .3s ease;
    padding-left: 10px;
}

#login_modal .form-section a:hover,
#sing_modal .form-section a:hover {
    color: #146C94;
    text-decoration: underline;
}

#login_modal .form button,
#sing_modal .form button {
    background-color: #000;
    color: #fff;
    border: 0;
    border-radius: 5px;
    padding: 10px 16px;
    font-size: var(--font-14);
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
    margin: 1rem 0;
}

#login_modal .form button:hover,
#sing_modal .form button:hover {
    background-color: #146C94;
}









#login_modal .form-check.form-switch,
#sing_modal .form-check.form-switch {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    width: 99%;
    margin-top: 10px;
}

#login_modal .form-switch .form-check-input,
#sing_modal .form-switch .form-check-input {
    margin: 0;
}

#login_modal .form-check-label,
#sing_modal .form-check-label {
    margin: 0px 10px;
    font-size: var(--font-12);
}

#login_modal .form-check-label a,
#sing_modal .form-check-label a {
    color: #146C94;
    text-decoration: underline;
}

#login_modal .form-switch .form-check-input:checked,
#sing_modal .form-switch .form-check-input:checked {
    background-color: #146C94;
}

#login_modal .form-switch .form-check-input:focus,
#sing_modal .form-switch .form-check-input:focus {
    box-shadow: none;
}


/* /////////////////////////////////////////////////// Product Search //////////////////////////////////////////// */

.product_search {
    border-bottom: 1px solid #bbbbbb;
    background-color: white;
    padding: 18px 0;
    z-index: 999;
    width: 100%;
}

.product_search .nav.nav-pills .nav-item .nav-link {
    border-radius: 2px;
    border-bottom: 2px solid #ddd;
    color: #000;
    font-size: var(--font-12);
    margin-inline: 5px;
    padding: 0;
    margin: 0;
    margin-right: 10px;
}

.product_search .nav.nav-pills .nav-item .nav-link.active {
    background: none;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}

.product_search .nav.nav-pills .nav-item .nav-link.active svg {
    fill: var(--blue);
}

.product_search .nav.nav-pills .nav-item .nav-link.active svg path {
    stroke: var(--blue);
}

.product_search .nav.nav-pills .nav-item .nav-link svg {
    width: 40px;
    height: 40px;
}

.product_search .box .row {
    display: flex;
    align-items: center;
}

.product_search .box .row .logo_box {
    padding: 0px 40px;
}

.product_search .box .row .form_one,
.product_search .box .row .form_two {
    display: flex;
    align-items: center;
}

.product_search .box .row .form_two .btn,
.product_search .box .row .form_two input,
.product_search .box .row .form_two select,
.product_search .box .row .form_one .btn,
.product_search .box .row .form_one input,
.product_search .box .row .form_one select {
    padding: 0px 15px;
    margin: 0;
    border-radius: 5px !important;
    border: 1px solid #ddd;
    margin-inline-end: 10px;
    height: 48px;
    font-size: var(--font-14);

}

.product_search .box .row .form_one input {
    max-width: 250px;
}
.product_search .box .row .form_one input::placeholder{
    font-size: var(--font-14);
}

.product_search .nav.nav-pills {
    margin-bottom: 0.5rem;
}
.form_three{

    width: 100%;
}
.form_three input{

    width: 100%;
}
.product_search .box .row .form_two .btn,
.product_search .box .row .form_one .btn {
    background: var(--blue);
    color: #fff;
    width: 90px;
    padding: 0;
    position: relative;
}

.product_search .box .row .form_two .btn #img_one,
.product_search .box .row .form_one .btn #img_one {
    /* position: absolute;
    top: 15%;
    left: 27%; */
    width: 30%;
    margin-right: 5px;
}

/* .product_search .box .row .form_two .btn #img_two,
.product_search .box .row .form_one .btn #img_two {
    position: absolute;
    top: 2%;
    left: 20%;
    width: 60%;
} */

.product_search .box .row .form_two .btn:hover #img_one,
.product_search .box .row .form_one .btn:hover #img_one {
    transform: rotate(360deg);
    transition: var(--transition-500ms);
}

.product_search .box .row {
    width: 100%;
}

.product_search .box .row .form_two input {
    max-width: 200px;
}

.product_search .box .row .basket_box .btn.btn_basket.desktop {
    display: inline-block;
    background: var(--yellow);
    border-radius: 5px;
    padding: 10px;
}

.mobil-menu .mobil_header .btn.btn_basket,
.product_search .box .row .basket_box .btn.btn_basket {
    background: none;
    padding: 0;
    border: 0;
    float: right;
    position: relative;
}

.product_search .box .row .basket_box .btn.btn_basket svg {
    width: 30px;
    height: 30px;
}

.mobil-menu .mobil_header .btn.btn_basket #piece,
.product_search .box .row .basket_box .btn.btn_basket #piece {
    position: absolute;
    top: -27%;
    right: -24%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-12);
    background: var(--yellow);
    color: black;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: 2px solid white;
}

/* /////////////////////////////////////////////////// Basket  //////////////////////////////////////////// */



#basket_canvas .offcanvas-body {
    padding: 0;
}

#basket_canvas .offcanvas-body .product_basket {
    overflow-y: auto;
    padding: 0px 5px;
}

#basket_canvas .offcanvas-body .product_basket .product .row {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray);
    padding: 5px;
    height: 81px;
}

#basket_canvas .offcanvas-body .product_basket .product .row p {
    line-height: 25px;
    font-size: var(--font-14);
}

#basket_canvas .offcanvas-body .product_basket .product .input_box {
    display: flex;
    margin-top: 5px;
}

#basket_canvas .offcanvas-body .product_basket .product .input_box input[type="button"] {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 0;
    background: rgba(128, 128, 128, 0.364);
    margin: 0 5px;
    color: white;
}

#basket_canvas .offcanvas-body .product_basket .product .input_box input[type="number"] {
    width: 30px;
    text-align: center;
    height: 25px;
    border: 1px solid rgba(128, 128, 128, 0.364);
    border-radius: 5px;
    font-size: var(--font-14);
}

#basket_canvas .offcanvas-body .product_basket .product .amounts {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

#basket_canvas .offcanvas-body .product_basket .product .amounts span {
    padding: 0px 2px;
}


/* /////////////////////////////////////////////////// Product Bar  //////////////////////////////////////////// */
.product_bar .products_box .card-horizontal,
.product_bar .products_box .card {
    border: 0;
    background: white;
    border-radius: 5px;
    position: relative;
    transition: var(--transition-300ms);
    margin-bottom: 1.5rem;
}

.product_bar .products_box .card-horizontal {
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 0;
    border-radius: 0;
}

.product_bar .products_box .card-horizontal .text_box,
.product_bar .products_box .card-horizontal a,
.product_bar .products_box .card-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_bar .products_box .card-horizontal:hover {
    background: var(--gray);
    transition: var(--transition-300ms);
}

.product_bar .products_box .card:hover {
    background: var(--blue);
    transition: var(--transition-300ms);
}

.product_bar .products_box .card:hover #product_title{
   color:white;
}

.product_bar .products_box .card:hover h4{
   color:white;
}



												
.product_bar .products_box .card-horizontal:hover .submit_btn {
    border: 1px solid var(--blue) !important;
}

.product_bar .products_box .card-horizontal:hover .img_box img,
.product_bar .products_box .card:hover .img_box img {
    transform: scale(1.2);
    transition: var(--transition-300ms);
}

.product_bar .products_box .card-horizontal:hover .btn_box .submit_btn,
.product_bar .products_box .card:hover .btn_box .submit_btn {
    background: var(--gray);
    color: black;
    transition: var(--transition-300ms);
}

.product_bar .products_box .card-horizontal:hover .text_box h6 {
    background: var(--gray);
    color: black;
    transition: var(--transition-250ms);
}

.product_bar .products_box .card-horizontal .img_box,

.product_bar .products_box .card .img_box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid var(--blue);
}

.product_bar .products_box .card-horizontal .img_box img,
.product_bar .products_box .card .img_box img {
    width: 100%;
    transition: var(--transition-300ms);
    transform: scale(1.0);
    border-radius: 5px;
}

.product_bar .products_box .card-horizontal .text_box,
.product_bar .products_box .card .text_box {
    padding: 20px 0;
    text-align: center;
    width: 100%;
    transition: var(--transition-300ms);
}

.product_bar .products_box .card-horizontal .text_box #product_title,
.product_bar .products_box .card .text_box #product_title {
    font-weight: 700;
    transition: var(--transition-300ms);
}

.product_bar .products_box .card-horizontal .text_box h4,
.product_bar .products_box .card .text_box h4 {
    padding: 10px;
    font-size: var(--font-14);
}

.product_bar .products_box .card-horizontal .text_box h6 {
    color: #373737;
    font-weight: 700;
    text-align: left;
    padding: 0 15px;
    background: var(--yellow);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: var(--font-12);
    text-align: center;
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    transition: var(--transition-300ms);
}

.product_bar .products_box .card .text_box h6 {
    position: absolute;
    top: 2%;
    right: 2%;
    color: #373737;
    font-weight: 700;
    text-align: left;
    padding: 0 15px;
    background: var(--blue);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: var(--font-12);
    text-align: center;
    width: fit-content;
}

.product_bar .products_box .card-horizontal .btn_box {
    display: flex;
    justify-content: space-between;
}

.product_bar .products_box .card-horizontal .btn_box form,
.product_bar .products_box .card .btn_box form {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10px 10px 10px;
}

.product-details .submit_btn,
.product_bar .products_box .card-horizontal .btn_box input,
.product_bar .products_box .card .btn_box input {
    width: 49%;
    height: 48px;
    border-radius: 5px;
}

.product_bar .products_box .card-horizontal .btn_box .piece_btn {
    width: 50%;
    text-align: center;
    border: 0px;
    border: 1px solid rgba(128, 128, 128, 0.249);
    border-radius: 5px;
    height: 48px;
}

.product-details .piece_btn,
.product_bar .products_box .card .btn_box .piece_btn {
    width: 20%;
    text-align: center;
    border: 0px;
    border-bottom: 2px solid var(--yellow);
    height: 48px;
}
/* .product_search input,
.product-details .piece_btn::-webkit-outer-spin-button,
.product-details .piece_btn::-webkit-inner-spin-button,
.product_bar .products_box .card-horizontal .btn_box .piece_btn::-webkit-outer-spin-button,
.product_bar .products_box .card-horizontal .btn_box .piece_btn::-webkit-inner-spin-button,
.product_bar .products_box .card .btn_box .piece_btn::-webkit-outer-spin-button,
.product_bar .products_box .card .btn_box .piece_btn::-webkit-inner-spin-button {
    -webkit-appearance: button;
    margin: 10;
    opacity: 1;
} */


.product-details .submit_btn,
.product_bar .products_box .card-horizontal .btn_box .submit_btn,
.product_bar .products_box .card .btn_box .submit_btn {
    border: 2px solid white;
    background: var(--yellow);
    color: #373737;
    font-weight: 600;
    transition: var(--transition-300ms);
}
.testtt{
    border: 2px solid white;
    background: var(--yellow);
    padding: 18px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-300ms);
}
.submit_btn-2{
    color: #373737;
}
.product_bar .products_box .card-horizontal .btn_box .submit_btn:hover,
.product_bar .products_box .card .btn_box .submit_btn:hover {
    color: var(--blue);
}


.product_bar .products_box .card .btn_box .submit_btn {
    width: 45%;
    height: 40px;
    font-size: 14px;
}

.product_bar .products_box .card .btn_box .piece_btn {
    width: 40%;
    height: 40px;
    font-size: 14px;
}

/* /////////////////////////////////////////////////// Filtre Bar  //////////////////////////////////////////// */


.product_bar #wrapper {
    position: relative;
    /* margin-top: 0.5rem; */
    /*height: 70rem;*/
}

.product_bar #sidebar-wrapper {
    height: fit-content;
    width: fit-content;
    margin-left: -15rem;
    background: #fff;
    transition: margin 0.25s ease-out;
    padding: 10px;
    height: 100%;
}

.product_bar #sidebar-wrapper .sidebar-heading {
    font-size: 16px;
    color: var(--blue);
    border: none !important;
}

.product_bar #sidebar-wrapper .list-group {
    width: 100%;
}

.product_bar .products_box {
    display: flex;
    flex-direction: column;
   /* align-items: center; */
    justify-content: space-between;

}

.product_bar #page-content-wrapper {
    min-width: 100vw;
    height: 100%;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    .product_bar #sidebar-wrapper {
        margin-left: 0;
    }

    .product_bar #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: -15rem;
    }
}

.product_bar .link {
    font-size: 14px;
    padding: 10px 0;
}

.product_bar .link a:hover {
    color: var(--blue);
}

.product_bar .link svg {
    width: 25px;
    height: 25px;
}
.product_bar #searchbtn,

.product_bar #sidebarToggle {
    border: 0px;
    border-radius: 5px;
    background: var(--blue);
    border: 1px solid var(--blue);
    display: none;
}
.product_bar #searchbtn svg,

.product_bar #sidebarToggle svg {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}


.product_bar .filter_input_box .filter_input {
    margin-inline-start: 25px;
}


.product_bar .filter_input_box .filter_input select {
    border: 0px;
    border-bottom: 2px solid rgba(128, 128, 128, 0.355);
    color: #007fe3;
}

.product_bar #sidebar-wrapper .accordion-button {
    padding: 18px;
    font-size: var(--font-16);
    text-transform: capitalize;
    background: #FFF;
    box-shadow: none;
    color: #007fe3;
    text-transform: uppercase !important;
    border-radius: 5px;
    font-weight: 700;
}

.product_bar #sidebar-wrapper .accordion-button:not(.collapsed)::after {
    display: none;
}

.product_bar #sidebar-wrapper .accordion-button:focus {
    box-shadow: none;
}

.product_bar #sidebar-wrapper .accordion-button.collapsed {
    background: white;
    color: #000;
    border: 1px solid var(--blue);
    margin: 2px 0;
}
.aq{
    font-size: 18px;
    color: #007fe3;
   
    
}
.product_bar #sidebar-wrapper .accordion-body {
    padding: 0;
    background: #F5F5F5;
    overflow: auto;
}
/*     height: 125px; */

/* width */
.product_bar #sidebar-wrapper .accordion-body::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.product_bar #sidebar-wrapper .accordion-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.product_bar #sidebar-wrapper .accordion-body::-webkit-scrollbar-thumb {
    background: var(--yellow);
}

/* Handle on hover */
.product_bar #sidebar-wrapper .accordion-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product_bar #sidebar-wrapper .accordion-body input {
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0px 10px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 12px;
}

.form_three .btn {
    background: var(--blue);
    color: #fff;
    width: 100%;
    padding: 10px;
    position: relative;
}


.accordion-flush .accordion-item {
    background: #F5F5F5;
}

.product_bar #sidebar-wrapper .accordion-body .form-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0;
}

.accordion {
    background: #F5F5F5 !important;
}

.product_bar #sidebar-wrapper .accordion-body .form-check .form-check-input {
    width: 10px;
    height: 20px;
    border-radius: 3px;
    margin-right: 7px;
    margin-left: -20px;
    margin-bottom: 5px;
}

.product_bar #sidebar-wrapper .accordion-body .form-check .form-check-input:checked {
    background-color: #FFD852;
}

.product_bar #sidebar-wrapper .accordion-body .form-check .form-check-input:focus {
    box-shadow: none;
}

.product_bar #sidebar-wrapper .accordion-body .form-check .form-check-label {
    font-size: var(--font-12);
}

.bg-blue .accordion-body {
    background: var(--gray) !important;
    border-radius: 5px;
}

/* /////////////////////////////////////////////////// Footer  //////////////////////////////////////////// */
footer.footer {
    width: 100%;
    border-top: 2px solid var(--yellow);
    background: #F5F5F5;
}

footer.footer .top .box {
    margin-inline-end: 10px;
    width: fit-content;
}

footer.footer .top .box svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

footer.footer .top .box img {
    width: 200px;
}

footer.footer .center {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 1rem;
}

footer.footer .center ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer.footer .center ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

footer.footer .center ul li:nth-child(1) {
    font-weight: 700;
    margin-bottom: 20px;
}

footer.footer .center ul li:nth-child(1):hover {
    color: var(--blue);
    text-decoration: none;
}

footer.footer .center ul li:hover {
    color: var(--blue);
    text-decoration: underline;
}

footer.footer .center ul li:hover a {
    color: var(--blue);
}

footer.footer .social-media svg {
    width: 35px;
    height: 35px;
    margin-inline: 10px;
}

footer.footer .social-media svg:hover {
    fill: var(--blue);
}

footer.footer .social-media button {
    width: fit-content;
    border: 2px solid var(--blue);
    background: var(--blue);
    border-radius: 5px;
    margin-left: 1rem;
    transition: var(--transition-250ms);
}

footer.footer .social-media button a {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: white;
    height: 55px;
    padding: 10px;
}

footer.footer .bottom {
    margin-top: 2rem;
}

footer.footer .social-media button:hover {
    background: var(--gray);
    transition: var(--transition-250ms);
}

footer.footer .social-media button:hover a {
    transition: var(--transition-250ms);
    color: var(--blue);
}

footer.footer .bottom .box ul li {
    margin-inline: 10px;
}

footer.footer .bottom .box svg {
    margin-inline: 10px;
    width: 45px;
    height: 45px;
}

footer.footer .bottom .box ul li:hover {
    text-decoration: underline;
}

#page-content-wrapper .back_img {
    position: relative;
}


#page-content-wrapper .back_img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000a4;
    z-index: 2;
    top: 0;
    left: 0;
}

#page-content-wrapper .text-box {
    position: absolute;
    top: 18%;
    left: 10%;
    color: white;
    font-size: 50px;
    z-index: 3;
}



#page-content-wrapper .text-box p span {
    background: none;
    display: block;
    background: var(--yellow);
    width: fit-content;
    padding: 15px;
    margin-top: 0.5rem;
}

#page-content-wrapper .text-box button {
    margin-top: 0.5rem;
    padding: 10px;
    border: none;
    background: var(--gray);
}

#sidebar-wrapper .catagori {
    width: 250px;
    padding: 10px 0;
    background: #fff;
}

#sidebar-wrapper .catagori .title {
    padding: 10px 20px;
    width: fit-content;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}


#sidebar-wrapper .catagori .domin-link {
    position: relative;
    width: 100%;
}

#sidebar-wrapper .catagori .domin-link>a {
    padding: 10px 20px;
    width: 100%;
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    color: #777;
}

#sidebar-wrapper .catagori .domin-link::before {
    content: "";
    position: absolute;
    right: 5%;
    top: 25%;
    background: url(../images/rightarrow.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    transition: var(--transition-300ms);
}

#sidebar-wrapper .catagori .domin-link .sub-menu {
    position: absolute;
    left: 125%;
    top: -60%;
    z-index: -1;
    background-color: white;
    transition: var(--transition-250ms);
    visibility: hidden;
    opacity: 0.5;
    display: flex;
    width: 600px;
    border-radius: 5px;
    border: 2px solid var(--blue);
}

#sidebar-wrapper .catagori .domin-link .sub-menu .sub-catagori {
    padding: 10px;
    width: 33.33%;
}

#sidebar-wrapper .catagori .domin-link:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 33;
    left: 104%;
    transition: var(--transition-300ms);
}

#sidebar-wrapper .catagori .domin-link:hover>a {
    color: #007fe3;
}

#sidebar-wrapper .catagori .domin-link .sub-menu .sub-link {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--blue);
    padding: 5px;
    transition: var(--transition-250ms);
    font-size: 13px;
    color: #777
}

#sidebar-wrapper .catagori .domin-link .sub-menu .sub-link:hover {
    background: var(--blue);
    color: white;
    border-radius: 5px;
    transition: var(--transition-250ms);
}

#sidebar-wrapper .catagori .domin-link .sub-menu img {
    width: 40%;
    margin: 0 auto;
    border-radius: 5px;
}

#sidebar-wrapper .catagori .domin-link:hover::before {
    transform: rotate(90deg);
    transition: var(--transition-300ms);
}

.about {
    margin: 6rem auto;
}

.about .left h4 {
    font-size: 34px;
}

.about .left h4 b {
    font-weight: 700;
    color: var(--yellow);
    background: var(--blue);
    padding: 0px 10px;
}

.about .left p {
    font-size: 16px;
    line-height: 30px;
    margin: 2rem 0;
}

.about .left .box .btn {
    margin-inline: 10px;
    padding: 10px 15px;
}

.about .left .box a:nth-child(1) .btn {
    background: var(--yellow);
    border: 1px solid black;
}

.about .left .box a:nth-child(2) .btn {
    background: var(--blue);
    color: white;
    border: 1px solid var(--blue);
}

.about .right {
    background: var(--blue);
    padding: 10px 0;
    border-radius: 5px;
}

.about .right .box {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: white;
}

.about .right .box svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;

}

.about .right .box svg path {
    fill: white;
}

.new-prices h4 {
    font-size: 24px;
    font-weight: 700;
	padding-left:10px;
   
}


.new-prices .product_bar {
    margin: 3rem 0;
}

.fancy {
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
    border-radius: 5px;
}

.fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 1px;
    background: var(--blue);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--blue);
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: white;
    background: var(--blue);
}

.fancy:hover::before {
    width: 0.9375rem;
    background: white;
}

.fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.img-box {
    position: relative;
}

.img-box::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000a4;
    top: 0;
    left: 0;
    position: absolute;
}

.img-box .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    z-index: 33;
}

.img-box .text h4 {
    background: var(--gray);
    padding: 25px;
    border-radius: 5px;
    font-size: 26px;
    margin-bottom: 0.5rem
}

.img-box .text .btn {
    background: var(--yellow);
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    border: 0;
    width: 150px;
}


.img-text .img {
    position: relative;
}


.img-text .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a4;
    z-index: 33;
}

.img-text .text {
    position: absolute;
    top: calc(520px/3);
    left: calc(940px/2);
    width: 50%;
    height: fit-content;
    background: #ffffff;
    padding: 40px;
    z-index: 33;
    border-radius: 5px;
}

.img-text .text h4 {
    font-size: 34px;
    margin: 0 0 2rem 0;
    text-align: center;
}

.img-text .text h4 b {
    font-weight: 700;
    color: var(--yellow);
    background: var(--blue);
    padding: 0px 10px;
}

.img-text .text p {
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}


.img-text .CardSwiper {
    width: 100%;
    height: 100%;
    margin: 8rem 0;
}

.img-text .CardSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-text .CardSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-text .CardSwiper .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-color: var(--blue);
    background: var(--gray);
    transition: var(--transition-300ms);
}


.img-text .CardSwiper .card h4 {
    font-weight: 600;
    margin: 10px 0;
    font-size: 18px;
}

.img-text .CardSwiper .card p {
    line-height: 24px;
    font-size: 14px;
}


.img-text .CardSwiper .card:hover {
    background: var(--yellow);
    transition: var(--transition-300ms);
}

.blog {
    margin: 2rem auto;
}

.blog .big-blog-card {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.blog .big-blog-card .text {
    position: absolute;
    bottom: 0%;
    width: 100%;
    height: 15%;
    background: #000000d9;
    padding: 20px 10px 10px 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: var(--transition-500ms);
}

.blog .big-blog-card .text span {
    background: var(--blue);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition-500ms);
    width: fit-content;
}

.blog .big-blog-card .text h4 {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 18px;
}

.blog .big-blog-card .text p {
    text-align: right;
    width: 100%;
}

.blog .big-blog-card:hover .text {
    background: #00000052;
    height: 100%;
    transition: var(--transition-500ms);
}

.blog .big-blog-card:hover .text span {
    background: black;
    transition: var(--transition-500ms);
}


.blog .small-blog-card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
}

.blog .small-blog-card img {
    width: 40%;
    margin-right: 15px;
    border-radius: 5px;
}



.blog .small-blog-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog .small-blog-card p {
    width: 100%;
    font-size: 14px;
    color: white;
}



.blog h6 {
    font-weight: 700;
    border-bottom: 1px solid #007fe3;
    width: fit-content;
    padding: 5px 0;
    margin-bottom: 20px;
    color: #007fe3;
    font-size: 24px;
}

.contact-form {
    margin: 6rem auto;
}

.contact-form .wrapper {
    background: #dfdfde6f;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form .wrapper h3 {
    line-height: 1.5;
    font-weight: 400;
    color: #000;
    font-size: 28px;
    padding-left: 15px;
}

.contact-form .wrapper .contact-wrap {
    padding: 2rem;
}

.contact-form .wrapper .contact-wrap .form-group {
    margin-bottom: 2rem;
}

.contact-form .wrapper .contact-wrap .form-group label {
    margin-bottom: 0.7rem
}

.contact-form .wrapper .contact-wrap .form-group textarea:focus,
.contact-form .wrapper .contact-wrap .form-group input:focus {
    box-shadow: none;
    border: 1px solid var(--blue);
}

.contact-form .wrapper .contact-wrap .form-group input {
    height: 45px;
}

.ssx{
    width: 100%;
    background: var(--blue);
    border-radius: 5px;
    padding: 10px;
    border: 1px solid var(--blue);
}
.ssx:hover{
    background: transparent;
    color: var(--blue);
}
.contact-form .wrapper .contact-wrap .form-group input[type="submit"] {
    width: 100%;
    background: var(--blue);
    border-radius: 5px;
    padding: 10px;
    border: 1px solid var(--blue);
}

.contact-form .wrapper .contact-wrap .form-group input[type="submit"]:hover {
    background: transparent;
    color: var(--blue);
}

.contact-form .wrapper iframe {
    width: 100%;
    height: 100%;
}

.contact-form .row .bottom {
    margin-top: 5rem;
}

.contact-form .row .bottom svg {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
    border-radius: 50%;
    padding: 10px;
    background: var(--blue);
    border: 1px solid var(--blue);
    transition: var(--transition-250ms);
}

.contact-form .row .bottom svg path {
    fill: white;
    transition: var(--transition-250ms);
}

.contact-form .row .bottom .text p {
    line-height: 22px;
}

.contact-form .row .bottom .text p span {
    color: var(--blue);
    font-weight: 700;
}

.contact-form .row .bottom svg:hover {
    background: transparent;
    border: 1px solid var(--blue);
    transition: var(--transition-250ms);
}

.contact-form .row .bottom svg:hover path {
    fill: var(--blue);
    transition: var(--transition-250ms);
}

.title-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c9c9c9;
}

.aaa {
    padding: 30px;
}

.col_box {
    margin: 0;

}

.title-content h2 {
    font-size: 18px;
    color: #007fe3;
    font-weight: 700;
    text-transform: uppercase;
}

.title-content .flt-btn {
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #007fe3;
    color: #007fe3;
    box-shadow: none;
}


.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.productSwiper2 {
    height: 80%;
    width: 100%;
}

.productSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.productSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.productSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-details .submit_btn {
    width: 30%;
}

.product-details {
    margin: 3rem auto;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 2rem;
}
.breadcrumb{
    display: flex;
flex-wrap: wrap;
padding: 1.5rem 1rem;
margin-bottom: 1rem;
list-style: none;
background-color: #e9ecef;
border-radius: 0.25rem;
}


.product-details table {
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    width: 100%;
    border-bottom: 1px solid var(--yellow);
    padding: 10px;
}

.product-details table th,
.product-details table td {
    width: fit-content;
    padding: 10px 5px;
}

.product-details p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 3rem;
}

.product-details .tit,
.product-details p span {
    color: #007fe3;
    display: inline-block;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.product-details a {
    color: #007fe3;
}

.product-details h4 {
    font-size: 16px;
    line-height: 30px;
    margin: 1rem 0 3rem 0;
}

.anySwiper {
    width: 100%;
    height: 100%;
}

.anySwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding: 5px;
}

.anySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.product_bar .products_box .swiper-slide .card-horizontal,
.product_bar .products_box .swiper-slide .card {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.link-bar {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bbbbbb;
}

.link-bar svg {
    width: 25px;
    height: 25px;
}

.link-bar a:hover {
    color: #007fe3;
}


.blog p {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
}

.blog h2 {
    margin: 2rem 0 0.1rem 0;
    font-weight: 700;
    width: 100%;
    padding: 5px 0;
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

#continue {
    margin-top: 3rem;
    border-top: 1px solid black;
}

.price-input {
    width: 20%;
    font-weight: 700;
    font-size: 24px;
    height: 48px;
    border: none;
}

.img_box2 {

    width: 100px;
    padding: 5px;
    margin-right: 10px;
}

.buttons {
    display: flex;
    justify-content: end;

}

.buttons a {
    margin: 2rem 0 2rem 1rem;
}





a.custom-btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 400;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
   }
   
   a.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    transition: all 250ms
   }
   
   a.custom-btn:hover {
    color: #e8e8e8;
   }
   
   a.custom-btn:hover::before {
    width: 100%;
   }

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.brands .row{
    --bs-gutter-x: 5rem;
}
.brands .brands-head{
    margin-bottom: 1.5rem;
}
.brands .brands-head h4{
    text-transform: uppercase;
    color: #011c36;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1.75rem;
}
.brands .brands-content{
    background-color: #f5f4f4;
    text-align: center;
}
.brands .brands-content .brands-content-img img{
    width: 130px;
    height: 65px;
}




