@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css);
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
* {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

ul li {
    list-style: none;
}

html,
body {
    position: relative;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

.default-color {
    color: #e3ffe6;
    background-color: #e3ffe6;
}

.color1 {
    color: #e6c744;
}

.color2 {
    color: #c2c8da;
}

.white {
    color: white;
}

.black {
    color: black;
}

.showless {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/*top-header-text*/

.top-header-text {
    width: 100%;
    margin: auto;
    overflow-x: hidden;
    background-color: #e6c744;
}

.target-text {
    font-weight: bold;
    color: white;
    animation-name: rightToLeft;
    margin: auto;
    padding: 10px;
    animation-duration: 23.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* animation: rightToLeft 4.5s linear infinite; */
}

@keyframes rightToLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-360px);
    }
}


/*top-header-text*/


/*middle-header*/

.middle-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #eaebee;
}

.menu1 {
    text-align: center;
}

.menu1 form {
    width: 375px;
    max-width: 100%;
    position: relative;
}

.menu1 form input {
    width: 100%;
    height: 40px;
    border: 1px solid #eaebee;
    border-radius: 5px;
    padding: 0 50px 0 30px;
    outline: none;
}

.menu1 form button {
    position: absolute;
    right: 20px;
    top: 10px;
    border: 0;
    background-color: transparent;
}

.menu1 form button i {
    color: black;
}

.menu2 img {
    width: 170px;
    object-fit: cover;
}

.menu2 {
    text-align: center;
}

.menu3 {
    text-align: center;
}

.menu3 a {
    padding: 0 7px;
    font-size: 1.3rem;
    color: black;
}


/*middle-header*/


/* mainmenu */

.mainmenu {
    background-color: white !important;
    transition: 0.4s;
    /* position: sticky; */
    position: relative;
    width: 100%;
    z-index: 99;
    /* top: 0; */
}

.mainmenu.sticky {
    position: fixed;
    top: 0;
}

.mainmenu ul li {
    padding: 0 20px;
}

.mainmenu ul li a {
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
}

.mainmenu ul li a>img {
    width: 13px;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler span {
    display: none;
}

.navbar-toggler::before {
    content: '\f0c9';
    font-family: "Font Awesome 5 free";
    font-weight: 900;
}

.mainmenu .dropdown-menu {
    background: white none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    transition: all 0.3s ease 0s;
    border: 0;
    border-radius: 3px;
    border-top: 3px solid #e6c744;
}

.dropdown-item:active {
    background-color: #e6c744;
}

.form-check-input:checked {
    background-color: #e6c744;
    border-color: #e6c744;
    box-shadow: none !important;
    outline: none !important;
}


/*mainmenu*/


/*swiper*/

.swiper {
    width: 100%;
    height: 800px;
    background-color: #fcf3ce;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #e6c744;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #e6c744;
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-pagination-bullet-active {
    background-color: #e6c744 !important;
}

.swiper-slide .slider-text {
    position: absolute;
    top: 30%;
    left: 10%;
    text-align: left;
}

.swiper-slide .slider-text span {
    font-size: 2rem;
    font-weight: 700;
}

.swiper-slide .slider-text h1 {
    font-size: 6rem;
    font-weight: 900;
}

.swiper-slide .slider-text .btn-slider {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: black;
    border: 1px solid black;
    padding: 1rem 3rem;
    background-color: transparent;
    border-radius: 4px;
}

.swiper-slide .slider-text .btn-slider:hover {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: black;
    border: 1px solid black;
    padding: 1rem 3rem;
    transition: .5s ease-in-out;
    border-radius: 4px;
}


/*swiper*/


/*catarea*/

.catarea {
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.cat-tit {
    font-size: 2rem;
    font-weight: 600;
}

.catarea .card {
    border: 0px;
    margin-left: 10px;
}

.catarea .card img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.catarea .coverlink {
    text-decoration: none;
    color: black;
}


/*catarea*/


/*firstbanner*/

.firstbanner {
    background-color: #e6c744;
}


/*firstbanner*/


/*trending*/

.trending {
    padding-top: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.trending .nav-pills .nav-link.active {
    background-color: #e6c744;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.trending .nav-pills .nav-link {
    color: black;
    font-weight: 600;
    font-size: 1.1rem;
}

.trending .productdetail .card a {
    text-decoration: none;
    color: black;
    font-weight: 700;
}

.trending .productdetail .card .price {
    color: #e6c744;
    border: 1px solid #e6c744;
    padding: 0.25rem;
    border-radius: 5px;
    margin: auto 0;
}

.trending .productdetail .card .insight {
    background-color: #e6c744;
    color: white;
    padding: 0.25rem;
    border-radius: 5px;
}

.trending .productdetail .card .insight:hover {
    background-color: white;
    color: #e6c744;
    padding: 0.25rem;
    border-radius: 5px;
    transition: .3s ease-in-out;
}

.trending .productdetail .card {
    border: 1px solid #e3ffe6;
    overflow: hidden;
}

.trending .productdetail .card img {
    width: 100%;
    transition: 0.6s;
}

.trending .productdetail .card:hover img {
    transform: scale(1.05);
}


/*trending*/


/*blog*/

.blog {
    background-color: #f3f4f6;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.blog .card {
    padding: 2rem;
}

.blog a {
    color: black;
    text-decoration: none;
}

.blog .card .card-body {
    color: black;
    text-decoration: none;
}

.blog .card .card-body h5 {
    font-weight: 800;
    margin: 0;
}

.blog .card .card-body span {
    color: gray;
    font-size: 13px;
}


/*blog*/


/*footerbanner*/

.footerbanner {
    background-color: #e6c744;
    padding: 4rem 0;
}

.footerbanner .footbantit {
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
}

.footerbanner .footbandet {
    color: white;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
}

.footerbanner input {
    padding: 1rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none !important;
    border: 1px solid white !important;
}

.footerbanner button {
    border: 0;
    background-color: white;
    padding: 1rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 1px solid #e6c744;
}


/*footerbanner*/


/*footer*/

.footer {
    border-top: 1px solid #d4d6cb;
    padding: 2rem 0;
}

.footer .logofooter {
    width: 150px;
}

.footer .socialmedia a {
    text-decoration: none;
    color: black;
    padding: 0.25rem 0;
}

.footer .list-group li {
    padding: 0.25rem;
}

.footer .list-group li a {
    color: black;
    text-decoration: none;
    padding-left: 0.25rem;
}

.footer .list-group li a:hover {
    color: #e6c744;
    text-decoration: none;
    padding-left: 0.25rem;
    transition: .3s ease-in-out;
}


/*footer*/


/*lastfooter*/

.copyright-text a {
    background: url(../img/hizliczmblackfooter.png) 0 0/150px 70px no-repeat;
    margin: 5px auto;
    text-align: end;
    height: 70px;
    width: 50px;
    transition: .5s ease-in;
    display: inline-block
}

.copyright-text a:hover {
    height: 70px;
    width: 170px;
    transition: .5s ease-in
}

.lastfooter {
    border-top: 1px solid #d4d6cb;
}


/*lastfooter*/


/*about*/

.about {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.about .aboutdet {
    line-height: 35px;
    margin: auto;
}

.about img {
    margin: auto;
    width: 100%;
    object-fit: cover;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #e6c744;
    box-shadow: none !important;
    outline: none !important;
    color: white;
    transition: .4s ease-in-out;
}

.faq .accordion-button {
    border: 1px solid #e6e3d5;
    box-shadow: none !important;
    outline: none !important;
}

.spinner-border {
    width: 1.25rem;
    height: 1.25rem;
}


/*about*/


/*products*/

.products {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.products a {
    color: black;
    text-decoration: none;
    text-align: center;
}

.products .card {
    overflow: hidden;
    cursor: pointer;
}

.products .card img {
    width: 100%;
    transition: 0.6s;
}

.products .card:hover img {
    transform: scale(1.05);
}

.products .card .price {
    color: #e6c744;
    border: 1px solid #e6c744;
    padding: 0.25rem;
    border-radius: 5px;
    margin: auto 0;
}

.products .card .insight {
    background-color: #e6c744;
    color: white;
    padding: 0.25rem;
    border-radius: 5px;
}

.products .minmaxarea input {
    width: 80px;
    margin-left: 10px;
    padding: 0.25rem;
    border: 1px solid #abb3c2;
    border-radius: 5px;
}

.products .minmaxarea input:focus {
    outline: 0 !important;
}

.producturun .list-group li {
    border: 0;
}

.product-quantity-cart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-quantity-cart .product-quantity-form {
    border: 1px solid white;
    border-radius: 4px;
}

.product-quantity-cart .product-quantity-form form {
    display: flex;
    flex-direction: column;
}

.product-quantity-cart .cart-minus {
    height: 55px;
    width: 55px;
    background-color: #e6c744;
    border: none;
}

.product-quantity-cart .cart-plus {
    height: 55px;
    width: 55px;
    background-color: #e6c744;
    border: none;
}

.product-quantity-cart .cart-input {
    height: 55px;
    width: 55px;
    border: none;
    text-align: center;
}

.productdetailimg {
    width: 100%;
    aspect-ratio: 9/9;
    object-fit: cover;
}

.butongroup a {
    padding: 1rem 0;
}

.detailimgs {
    width: 100%;
    aspect-ratio: 3/3;
    object-fit: cover;
}

.producturun .card-body .urun:nth-child(2) {
    margin-left: 15px;
}

.producturun .card-body .urun:nth-child(3) {
    margin-left: 15px;
}

.relatedpro .card {
    overflow: hidden;
    border: 1px solid #e3ffe6;
}

.relatedpro .card .relatedimg {
    width: 100%;
    transition: 0.6s;
}

.relatedpro .card:hover img {
    transform: scale(1.05);
}

.relatedpro .card .insight {
    color: black;
    font-weight: 500;
}


/*products*/


/*blog*/

.blogin {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.blogin a {
    color: black;
    text-decoration: none;
}

.btnblogs .btn-blog {
    padding: 0.75rem 2rem;
}

.blogin .card .card-body {
    padding-left: 0;
}

.blogin .list-group li {
    padding-left: 0;
}

.blogdetailblog {
    line-height: 35px;
    font-weight: 600;
}


/*blog*/


/*contact*/

.bordercontact {
    border: 1px solid #eaebee;
    padding: 1rem;
    border-radius: 7px;
}

.contactdiv input {
    outline: none !important;
    box-shadow: none !important;
}

.contactdiv input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #fff5c8;
}

.contactdiv textarea {
    outline: none !important;
    box-shadow: none !important;
}

.contactdiv textarea:focus {
    outline: none !important;
    border: 1px solid #fff5c8;
    box-shadow: none !important;
}


/*404*/

.title404 {
    font-size: 10rem;
    font-weight: 900;
    margin: 1rem 0 0 0;
    padding: 0;
    text-align: center;
}

.detail404 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.btn404 {
    padding: 0.5rem 1rem;
    margin-bottom: 5rem;
}


/*404*/

@media (max-width:900px) {
    .hidden-img img {
        width: 130px;
    }
    .menu2 img {
        display: none;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .swiper-slide .slider-text {
        position: absolute;
        top: 20%;
        left: 10%;
        text-align: left;
    }
    .swiper-slide .slider-text h1 {
        font-size: 5rem;
        font-weight: 900;
    }
    .footer h3 {
        margin-top: 1rem;
    }
    .products .card {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .product-quantity-cart {
        margin-bottom: 1rem;
    }
    .butongroup a {
        margin-bottom: 1rem;
    }
    .relatedpro .card {
        justify-content: center;
        margin: auto;
    }
    .bordercontact {
        margin-bottom: 1rem;
    }
    .contactdiv {
        margin-bottom: 1rem;
    }
}

@media (max-width:768px) {
    .hidden-img img {
        width: 130px;
    }
    .menu2 img {
        display: none;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .swiper-slide .slider-text {
        position: absolute;
        top: 20%;
        left: 10%;
        text-align: left;
    }
    .swiper-slide .slider-text h1 {
        font-size: 5rem;
        font-weight: 900;
    }
    .footer h3 {
        margin-top: 1rem;
    }
    .products .card {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .product-quantity-cart {
        margin-bottom: 1rem;
    }
    .butongroup a {
        margin-bottom: 1rem;
    }
    .relatedpro .card {
        justify-content: center;
        margin: auto;
    }
    .bordercontact {
        margin-bottom: 1rem;
    }
    .contactdiv {
        margin-bottom: 1rem;
    }
}

@media (max-width:600px) {
    .target-text {
        white-space: nowrap;
    }
    .hidden-img img {
        width: 130px;
    }
    .menu2 img {
        display: none;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .mainmenu ul li {
        padding: 0 15px;
    }
    .swiper-slide .slider-text {
        position: absolute;
        top: 20%;
        left: 10%;
        text-align: left;
    }
    .swiper-slide .slider-text h1 {
        font-size: 5rem;
        font-weight: 900;
    }
    .footer h3 {
        margin-top: 1rem;
    }
    .products .card {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .product-quantity-cart {
        margin-bottom: 1rem;
    }
    .butongroup a {
        margin-bottom: 1rem;
    }
    .relatedpro .card {
        justify-content: center;
        margin: auto;
    }
}


/*contact*/

@media (max-device-width:480px) {
    nav .hidden-img img {
        width: 150px;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .menu2 img {
        display: none;
    }
    .swiper {
        width: 100%;
        height: 500px;
        background-color: #fcf3ce;
    }
    .mainmenu ul li {
        padding: 0 15px;
    }
    .swiper-slide .slider-text {
        position: absolute;
        top: 20%;
        left: 10%;
        text-align: left;
    }
    .swiper-slide .slider-text h1 {
        font-size: 3rem;
        font-weight: 900;
    }
}