@import"https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap";

html {
    font-size: 16px
}

body {
    font-family: "Nunito Sans", sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif
}

:root {
    --black: #303030;
    --light-blue: linear-gradient(90deg, #1c70d0 0%, #3794ff 100%);
    --orange: #ffc472;
    --light-orange: #ffddaa;
    --gray: #efefef;
    --dark-gray: #303030;
    --light-gray: #c4c4c4;
    --white: #ffffff;
    --hover: #97D0FF
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

.header_top {
    background: linear-gradient(90deg, #1c70d0 0%, #3794ff 100%)
}

.header_top_box {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-column-gap: 20px;
    align-items: center;
    padding: 15px 0
}

.header_top_left {
    display: flex;
    align-items: end;
    gap: 8px
}

.header_top_left a {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-decoration: none;
    transition: color 3ms ease-in-out
}

.header_top_left a:hover {
    color: var(--hover)
}

.header_top_center ul {
    display: flex;
    align-items: center;
    gap: 25px
}

.header_top_center ul li a {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.header_top_center ul li a i {
    font-size: 18px
}

.header_top_center ul li a:hover {
    text-decoration: underline
}

.header_top_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px
}

.header_top_right a {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 1.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    text-decoration: none
}

.header_top_right a:hover {
    text-decoration: underline
}

.header_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0
}

.header_center .logo {
    display: flex;
    align-items: center;
    gap: 50px
}

.header_center .search {
    position: relative;
    width: 483px;
    height: 55px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    padding: 0 5px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header_center .search input {
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0);
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000
}

.header_center .search input::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.header_center .search input::placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.header_center .search button {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #1c70d0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.header_center .search button i {
    color: #fff;
    font-size: 16px
}

.header_center .search button svg path {
    padding: 20px
}

.header_center_right {
    display: flex;
    align-items: center;
    gap: 50px
}

.header_center_right a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    transition: all .3ms easy
}

.burger {
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    width: 136px;
    background: linear-gradient(90deg, #1c70d0 0%, #3794ff 100%);
    color: #fff;
    padding: 20px 15px;
    border-radius: 10px
}

.burger .line1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.burger .line1 span {
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
    cursor: pointer
}

.burger .burger_text {
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff
}

.allcategoriesmobil {
    display: none
}

.header_bottom {
    margin: 50px 20px
}

.header_bottom ul {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header_bottom ul li a {
    position: relative;
    color: #303030;
    transition: color .3s ease-in-out
}

.header_bottom ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #317cda;
    transition: width .3s ease-in-out
}

.header_bottom ul li a:hover {
    color: #317cda
}

.header_bottom ul li a:hover::after {
    width: 100%
}

img {
    max-width: 100%;
    height: auto
}

.mobillang .language {
    position: relative
}

.mobillang span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px
}

.mobillang span b {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 80%;
    letter-spacing: 0%
}

.mobillang .language_list {
    display: none;
    position: absolute;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 25px;
    background: #fff;
    bottom: -120px;
    right: 0px;
    z-index: 20
}

.mobillang .language_list a {
    color: #000;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%
}

.header_top_center ul li a.active {
    color: rgba(255, 255, 255, 0.5019607843)
}

.hero .swiper-slide .container {
    border-radius: 10px
}

.hero img {
    max-width: 100%;
    height: auto
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #3794ff;
    opacity: .5
}

.hero .swiper-pagination-bullet-active {
    width: 25px;
    height: 12px;
    border-radius: 10px;
    background: #1c70d0;
    opacity: 1
}

.sliderbox {
    overflow: hidden
}

.productsslider .swiper-wrapper {
    display: flex
}

.productsslider .swiper-slide {
    width: 100%
}

.productsslider .imgbox img {
    max-width: 100%;
    height: auto
}

.titlbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0
}

.boxproduct {
    width: 100%
}

.boxproduct h2 {
    width: 70%
}

.boxproduct .arrowclass {
    position: relative;
    width: 10%;
    background: red
}

.boxproduct .swiper-button-next,
.boxproduct .swiper-button-prev {
    display: flex;
    background: #1c70d0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.boxproduct .swiper-button-next:after,
.boxproduct .swiper-button-prev:after {
    font-size: 12px;
    color: var(--white)
}

.boxproduct .swiper-slide {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: transform .2s ease, box-shadow .2s ease
}

.swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.hero .swiper-slide:hover {
    transform: none;
    box-shadow: none
}

.titleclass {
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%
}

.imgbox {
    display: block;
    position: relative;
    height: 250px
}

.imgbox .fa-heart {
    position: absolute;
    color: var(--black);
    top: 0;
    right: 0;
    font-size: 21px;
    cursor: pointer;
    transition: color .3s
}

.imgbox .fa-heart.active {
    color: #1c70d0
}

.imgbox .fa-heart.active::before {
    font-family: "Font Awesome 6 Free";
    content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾";
    font-weight: 900;
    color: #1c70d0
}

.infobox {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.infobox h3 {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%
}

.infobox p {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%
}

.infobox .cart {
    background: linear-gradient(90deg, #1c70d0 0%, #3794ff 100%);
    color: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 10px 5px
}

.infobox {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.productsslider .imgbox img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain
}

.categotiesbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px
}

.categotiesbox li {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow .3s ease-in-out
}

.categotiesbox li:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1)
}

.categotiesbox li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease-in-out
}

.categotiesbox li a:hover {
    animation: pulse .6s ease-in-out
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1)
    }
}

section {
    margin: 50px 0
}

.categotiesbox .item1 {
    grid-column: 1/3;
    grid-row: 1/3
}

.categotiesbox .item4 {
    grid-column: 3/5
}

.categotiesbox li {
    padding: 20px 0;
    border-radius: 12px
}

.categotiesbox li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.categotiesbox p {
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black)
}

.bannerbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 12px
}

.bannerbox .bannerleft {
    width: 50%
}

.bannerbox .bannerright {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin: 0 auto
}

.bannerbox .bannerright h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--black)
}

.bannerbox .bannerright p {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #787878
}

.bannerbox .bannerright .btn {
    background: #1c70d0;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    height: 61px;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px
}

.sliderbox2 {
    overflow: hidden
}

.section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden
}

h2 {
    text-align: center;
    margin-bottom: 30px
}

#logosrow1 {
    overflow: hidden
}

#logosrow2 {
    overflow: hidden
}

.logos img {
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    transition: filter .3s
}

#logosrow1 {
    margin-top: 50px
}

.formbox .infobox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 40px
}

.formbox .formbox_left {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px
}

.formbox .formbox_left h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 45%
}

.formbox .formbox_left p {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #787878;
    width: 80%
}

.formbox .formbox_right {
    width: 50%
}

.formbox .formbox_right form {
    display: flex;
    gap: 20px
}

.formbox .formbox_right form input,
.formbox .formbox_right form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::-moz-placeholder,
.formbox .formbox_right form textarea::-moz-placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form input::placeholder,
.formbox .formbox_right form textarea::placeholder {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #c4c4c4
}

.formbox .formbox_right form textarea {
    height: 150px;
    resize: none
}

.formbox .formbox_right form button {
    width: 100%;
    background: #1c70d0;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer
}

footer {
    background: #fafafa;
    padding: 50px 0 0 0;
    position: relative;
    background: url(../img/backg.png);
    background-position: top right;
    background-repeat: no-repeat
}

footer .btn {
    background: var(--light-blue);
    color: var(--white);
    border-radius: 8px;
    width: 260px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

footer .footerbox_top {
    display: flex;
    justify-content: space-between
}

footer h3 {
    color: #303030;
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%
}

footer p {
    color: #9c9c9c;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%
}

footer a {
    color: #9c9c9c;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%
}

footer .phone {
    color: #1c70d0;
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%
}

footer .socialbox {
    display: flex;
    justify-content: space-between;
    width: 60%
}

footer .socialbox svg {
    width: 36px;
    height: 36px
}

.footerbox1,
.footerbox2,
.footerbox3,
.footerbox4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%
}

.footerbox_bottom {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0 25%
}

.footerbox_bottom ul {
    display: flex;
    justify-content: space-between;
    width: 25%
}

footer .footerbox_top ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobillang .language,
.mobilburger {
    display: none
}

.swiper {
    position: relative
}

.swiper-pagination {
    position: relative;
    bottom: 60px !important;
    z-index: 1
}

.copyright {
    background: #272727;
    padding: 40px 0
}

.copyright .copyrightbox {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center
}

.copyright p {
    color: #fff;
    width: 45%
}

.upbtn {
    position: fixed;
    bottom: 100px;
    right: 60px;
    background: #1c70d0;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: background .3s;
    z-index: 100
}

.upbtn:hover {
    background: #1964ba
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #d2d2d2;
    padding: 20px 0
}

.breadcrumb ul li a {
    color: #303030;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%
}

.faq {
    background: #efefef;
    padding: 50px 0
}

.acardion_box {
    width: 80%;
    margin: 0 auto
}

.acardion_box .acardion_item {
    border-bottom: 1px solid gray;
    padding: 20px
}

.acardion_box .acardion_item .acardion_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

.acardion_box .acardion_item .acardion_content {
    height: 0;
    overflow: hidden;
    transition: all 5ms linear
}

.acardion_content {
    height: 0;
    overflow: hidden;
    transition: height .4s ease
}

.acardion_item.open .btn {
    transform: rotate(180deg)
}

.acardion_item.open .acardion_content {
    height: 100%;
    padding: 20px 0
}

.container_about_video {
    max-width: 800px;
    margin: 0 auto
}

.container_about {
    max-width: 1000px;
    margin: 0 auto
}

.video-wrapper {
    position: relative;
    margin: 0 auto
}

video {
    width: 100%;
    display: block
}

.video-overlay {
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border-radius: 20px
}

.video-overlay img {
    width: 100%;
    height: auto;
    display: block
}

.play-btn {
    position: absolute;
    font-size: 70px;
    color: #fff;
    text-shadow: 0 0 15px #000;
    pointer-events: none
}

.banner_about {
    padding: 50px 0
}

.banner_about .banner_about_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 20px
}

.banner_about .banner_about_box li {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    min-height: 180px;
    gap: 20px;
    text-align: center;
    opacity: 90%
}

.banner_about .banner_about_box h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1c70d0
}

.text_content {
    margin: 50px 0;
    font-family: Nunito Sans;
    font-weight: 300;
    font-style: Light;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #303030
}

.text_content P {
    margin: 10px 0
}

.avout_title {
    padding: 20px 0;
    border-bottom: 1px solid #d2d2d2;
    width: 50%;
    margin: 40px auto;
    font-family: Nunito Sans;
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center
}

.teambox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.teambox .teamitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.teambox .teamImg {
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    height: 200px;
    width: 200px
}

.teambox .teamname {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1c70d0
}

.teambox .team_subject {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #a6a6a6
}

.slider_swiper {
    overflow: hidden
}

.galleriya_item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.galleriya_item a {
    border-radius: 10px;
    overflow: hidden
}

.galleriya_item a:nth-child(1),
.galleriya_item a:nth-child(3) {
    grid-column: 1/3
}

.galleriya_item a:nth-child(2),
.galleriya_item a:nth-child(4) {
    grid-column: 3/5
}

.banner_contact {
    background: url(/img/Rectangle_94.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 220px;
    border-radius: 20px
}

.adrress_box {
    display: grid;
    grid-template-columns: 45% 55%;
}

.adrress_box .adrress_box_left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start
}

.adrress_box .adrress_box_left span {
    display: block;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #a6a6a6;
    margin-bottom: 10px
}

.adrress_box .adrress_box_left strong,
.adrress_box .adrress_box_left a {
    color: #000;
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%
}

.vacansiyabox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.vacansiyabox li {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-radius: 15px
}

.vacansiyabox li a {
    color: #303030;
    font-weight: 700;
    font-size: 18px;
    text-align: center
}

.article_news {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px
}

.article_news .newsitem {
    background: #fff;
    width: 48%;
    border-radius: 20px 20px 0 0;
    overflow: hidden
}

.article_news .newsitem .newstext {
    padding: 20px
}

.article_news .newsitem .newstext h3 {
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 90%;
    margin: 20px 0
}

.article_news .newsitem .newstext a {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #1c70d0
}

.article_news .newsitem img {
    width: 100%
}

.menu_cat_desctop {
    position: fixed;
    top: 0;
    left: 100%;
    background: #fff;
    width: 100%;
    height: 0;
    z-index: 100;
    padding: 50px;
    overflow: scroll;
    transition: all .5s ease-out
}

.menu_cat_desctop .close-btn_desctop {
    background: #1c70d0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center
}

.menu_cat_desctop .close-btn_desctop span {
    font-size: 25px
}

.menu_cat_desctop .close-btn_desctop .fa-xmark {
    font-size: 2em;
    margin-right: 20px
}

.menu_cat_desctop .nav {
    padding: 20px
}

.menu_cat_desctop .nav .menu_ul_desctop {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.menu_cat_desctop .nav .menu_ul_desctop a {
    color: #000
}

.menu_cat_desctop .nav .menu_ul_desctop .firstlevel ul {
    display: none
}

.menu_cat_desctop ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.menu_cat_desctop.activemenu {
    left: 0;
    height: 100%
}

.menu-item-has-children>a {
    font-size: large;
    font-weight: 700
}

.menu-item-has-children>a:after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¡";
    font-family: "FontAwesome";
    margin-left: 8px
}

.menu-item-has-children ul {
    display: none
}

.menu-item-has-children.showopen ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

#line1id {
    cursor: pointer
}

.mobilslidermenu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 85%;
    max-width: 90%;
    background: #fff;
    height: 100%;
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right .3s ease-in-out;
    box-shadow: 1px 1px 1px 1px;
    transition: right .3s ease-in-out
}

.mobilslidermenu .head {
    display: flex;
    justify-content: space-between;
    background: var(--light-blue);
    align-items: center;
    padding: 20px;
    color: #fff;
    font-size: 24px
}

.mobilslidermenu .mobilsliderbox {
    flex: 1;
    overflow-y: auto
}

.mobilslidermenu .mobilsliderbox div {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobilslidermenu .mobilsliderbox div span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%
}

.mobilslidermenu .mobilsliderbox a {
    display: flex;
    align-items: center;
    color: #000;
    gap: 10px
}

.mobilslidermenu .contact {
    padding: 20px;
    border-top: 1px solid #eee;
    font-size: 16px
}

.mobilslidermenu .contact a {
    color: var(--light-blue);
    text-decoration: none
}

.mobilslidermenu .head {
    display: flex;
    justify-content: space-between;
    background: var(--light-blue);
    align-items: center;
    padding: 20px;
    color: #fff;
    font-size: 24px
}

.mobilsliderbox>div:nth-child(2) {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3
}

.mobilsliderbox {
    padding: 20px
}

.mobilsliderbox a {
    display: block
}

.mobilsliderbox a div {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.mobilslidermenu .mobilsliderbox div span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%
}

.mobilslidermenu .mobilsliderbox a {
    display: flex;
    align-items: center;
    color: #000;
    gap: 10px
}

.mobilsliderbottom {
    padding: 25px
}

.slideMenu_menu_box {
    position: fixed;
    width: 85%;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
    z-index: 25;
    transform: translateX(100%);
    transition: transform .3s ease
}

.slideMenu_menu_box .sub_menu {
    position: absolute;
    background: #fff;
    z-index: 26;
    height: 100%
}

.slideMenu_menu_box ul li a,
.slideMenu_menu_box ul li span {
    font-size: 16px;
    font-weight: 700
}

.slideMenu_menu_box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: large;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    margin-left: 30px
}

.slideMenu_menu_box .menu-item-has-children>a:after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦";
    font-family: "FontAwesome";
    color: #979797;
    font-size: 32px
}

.slideMenu_menu_box .sub_menu {
    position: fixed;
    display: block;
    background: #fff;
    position: fixed;
    padding: 40px;
    z-index: 0;
    top: 0;
    right: -99999999px;
    height: 100%;
    width: 100%;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1019607843);
    transition: right .3s ease-in-out
}

.slideMenu_menu_box .menu-item-has-children.openshow .sub_menu {
    right: 0;
    z-index: 10;
    height: 100%
}

.slideMenu_menu_box ul li a,
.slideMenu_menu_box ul li span {
    z-index: 1
}

.SlideMenu-menu {
    padding: 20px
}

.SlideMenu-menu>li:first-child {
    display: flex;
    align-items: center
}

.SlideMenu-menu>li:first-child a {
    width: 100%;
    margin-left: 10px
}

.slideMenu_menu_box ul li:last-child a {
    border-bottom: none
}

.infobox h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.socilgroupteam a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #a6a6a6;
    font-weight: 700
}

.formbox .formbox_left h3 {
    width: 100%;
    display: block;
    overflow: visible
}

@media screen and (max-width: 1200px) {
    .header_top_box .header_top_left a {
        font-size: 16px
    }

    .header_top_center ul li a {
        font-size: 16px
    }

    .header_center .search {
        width: 300px
    }

    .imgbox .fa-heart {
        top: 20px;
        right: 20px;
        height: 20px
    }

    .bannerbox {
        flex-direction: column-reverse
    }

    .bannerbox .bannerright h3 {
        font-size: 2em
    }

    .bannerbox .bannerleft,
    .bannerbox .bannerright {
        width: 100%
    }

    .bannerbox .bannerright {
        padding: 50px 0
    }

    .bannerbox .bannerleft img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .boxproduct .arrowclass {
        width: 11%
    }

    .boxproduct .arrowclass {
        width: 15%
    }

    .footerbox_bottom ul {
        width: 50%
    }
}

@media screen and (max-width: 950px) {
    .formbox .formbox_left h3 {
        font-style: Bold;
        font-size: 32px;
        text-align: center;
        width: 100%
    }

    .bannerbox .bannerright h3 {
        font-size: 36px
    }

    .bannerbox .bannerright {
        padding: 80px
    }

    .footerbox_bottom ul {
        width: 50%
    }

    .header_top_center ul li a {
        font-size: 14px
    }

    .header_center .search {
        width: 260px
    }

    .header_bottom {
        display: none
    }

    .boxproduct .arrowclass {
        width: 15%
    }

    .allcategories {
        display: none
    }

    .titleclass {
        font-size: 24px
    }

    footer h3 {
        font-size: 20px
    }

    footer p,
    footer a,
    footer .phone {
        font-size: 16px
    }

    footer p,
    footer a,
    footer .phone {
        font-size: 20px
    }
}

.sub_menu {
    width: 100%
}

.sub_menu li:first-child {
    background: linear-gradient(90deg, #1C70D0 0%, #3794FF 100%);
    border: none
}

.sub_menu li:first-child a {
    border: none;
    color: #fff
}

.mobilsliderbottom {
    position: relative;
    padding: 40px
}

.mobilsliderbottom>span {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%
}

.mobilsliderbottom a {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-family: Nunito Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1c70d0;
    margin: 10px 0
}

@media screen and (max-width: 850px) {
    footer {
        background: #fafafa;
        padding: 50px 0 0 0;
        position: relative;
        background: url(../img/backg.png);
        background-position: 80% 30%;
        background-repeat: no-repeat;
        background-size: 300px
    }

    .header_top {
        display: none
    }

    .header_center_right {
        display: none
    }

    .burger {
        display: none
    }

    .mobillang .language,
    .mobilburger {
        display: block
    }

    .header_center .logo {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center
    }

    .mobillang {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .mobillang .language_list {
        display: none
    }

    .header_center .logo {
        display: flex;
        align-items: center;
        gap: 0;
        row-gap: 25px
    }

    .header_center .search {
        width: 78%;
        flex-direction: row-reverse;
        padding: 0 15px 0 5px;
        height: 60px
    }

    .header_center .search button {
        height: 50px;
        width: 50px
    }

    .mobillang .language {
        width: 30%;
        display: flex;
        flex-direction: row-reverse
    }

    .mobilburger {
        width: 15%
    }

    .header_center .search input {
        width: 100%;
        height: 55px;
        text-align: center
    }

    .arrowclass {
        width: 15%
    }

    .imgbox {
        box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1019607843);
        margin-bottom: 5px
    }

    .formbox .infobox {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin: 20px auto;
        background: #f5f5f5;
        border-radius: 12px;
        padding: 50px 40px
    }

    .formbox .formbox_left {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    .formbox .formbox_right {
        width: 100%
    }

    footer .footerbox_top {
        flex-wrap: wrap;
        gap: 30px;
        align-items: start;
        text-align: left
    }

    .footerbox1,
    .footerbox2,
    .footerbox3,
    .footerbox4 {
        width: 45%
    }

    .footerbox_bottom ul {
        justify-content: space-between;
        width: 50%
    }

    .allcategoriesmobil {
        display: block;
        text-align: center;
        margin: 50px 0
    }

    .categotiesrows {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px
    }

    .footerbox1,
    .footerbox1,
    .footerbox3,
    .footerbox4 {
        border-top: 1px solid #d2d2d2;
        padding: 20px 0
    }
}

@media screen and (max-width: 768px) {
    .boxproduct .arrowclass {
        display: none
    }

    .categotiesbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px
    }

    section {
        margin: 50px 0
    }

    .categotiesbox .item1 {
        grid-column: 1/3;
        grid-row: 1/3
    }

    .categotiesbox .item4 {
        grid-column: 1/3
    }

    .bannerbox .bannerright .btn {
        width: 80%
    }

    .footerbox1,
    .footerbox2,
    .footerbox3,
    .footerbox4 {
        width: 100%
    }

    .banner_about .banner_about_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 20px
    }

    .teambox {
        grid-template-columns: repeat(2, 1fr)
    }

    .galleriya .galleriya_item {
        grid-template-columns: repeat(2, 1fr)
    }

    .galleriya .galleriya_item a {
        grid-column: auto
    }

    .adrress_box {
        display: grid;
        grid-template-columns: 1fr
    }

    .vacansiyabox {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .article_news {
        flex-direction: column
    }

    .article_news .newsitem {
        width: 100%
    }

    .article_news .newsitem .newstext {
        padding: 20px
    }

    .article_news .newsitem .newstext h3 {
        font-size: 20px
    }

    .header_center .search button {
        right: 88%
    }
}

@media screen and (max-width: 600px) {
    .footerbox_bottom ul {
        width: 100%
    }

    .acardion_box {
        width: 100%;
        margin: 0 auto
    }

    .boxproduct .swiper-slide {
        min-height: 400px
    }

    .header_center {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0
    }

    .header_center .logo {
        padding: 0
    }

    .banner_about .banner_about_box li {
        width: 70%;
        margin: 0 auto
    }

    .header_center .search {
        width: 80%;
        flex-direction: row-reverse;
        padding: 0 15px 0 5px;
        height: 60px
    }

    .infobox h3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .product_list li {
        padding: 5px
    }

    .swiper-pagination {
        display: none
    }

    .infobox p {
        font-size: 20px
    }

    .formbox .formbox_right form {
        flex-direction: column;
        gap: 20px
    }

    .copyright .copyrightbox {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 10px
    }

    .copyright .copyrightbox p {
        width: 100%
    }

    .banner_about .banner_about_box {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .banner_about .banner_about_box h3 {
        font-size: 25px
    }

    .teambox {
        grid-template-columns: 1fr 1fr
    }

    .galleriya .galleriya_item {
        grid-template-columns: 1fr
    }

    .formbox .formbox_left h3 {
        font-style: Bold;
        font-size: 20px
    }

    .header_center .search button {
        right: 85%
    }

    .formbox .formbox_left h3 {
        font-style: Bold;
        font-size: 32px;
        text-align: center;
        width: 100%
    }

    .product_list li {
        padding: 10px
    }

    .product_list li .btn {
        font-size: 16px
    }
}

.banner_about .banner_about_box li {
    width: 100%;
    margin: 0 auto
}

.infobox h3 a {
    color: #303030
}

.breadcrumbs {
    margin: 20px 0
}

.stock.in-stock {
    color: green;
    font-weight: 600
}

.stock.out-stock {
    color: red;
    font-weight: 600
}

.header_top_right ul {
    display: flex;
    align-items: center;
    gap: 20px
}

#clearFilter {
    background: none;
    color: #000;
    border: none;
    text-align: center;
    text-decoration: none;
    font-family: Nunito Sans;
    font-style: SemiBold;
    height: 40px;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer;
    font-size: 1rem
}

.no-scroll {
    overflow: hidden
}

#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease, visibility .5s ease
}

#page-preloader.hide {
    opacity: 0;
    visibility: hidden
}

#page-preloader .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.mobillang .language_list.active {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.mobilslidermenu.activemenu {
    right: 0
}

.head {
    display: flex;
    justify-content: space-between;
    background: var(--light-blue);
    align-items: center;
    padding: 20px;
    color: #fff;
    font-size: 24px
}

.slideMenu_menu_box.activemenu {
    right: 85%
}

.slideMenu_menu_box ul li a,
.slideMenu_menu_box ul li span {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #303030
}

@media screen and (max-width: 600px) {
    .header_center .search button {
        right: 82%
    }

    .boxproduct h2 {
        width: 100%
    }

    .bannerbox .bannerright {
        padding: 20px
    }

    .product_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0
    }

    .infobox h3 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .hero .swiper-slide {
        width: 100%
    }

    .bannerbox .bannerright {
        gap: 20px
    }

    .teambox .teamImg {
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        height: 200px;
        width: 100%
    }

    .bannerbox .bannerright h3 {
        font-size: 32px
    }

    .bannerbox {
        padding: 20px
    }
}

@media screen and (max-width: 500px) {
    .header_center .search button {
        right: 76%
    }

    .bannerbox .bannerright h3,
    .formbox .formbox_left h3 {
        font-size: 8vw
    }

    .formbox .infobox {
        padding: 40px 10px
    }

    .boxproduct .swiper-slide {
        padding: 0
    }
}

@media screen and (max-width: 400px) {
    .formbox .formbox_left h3 {
        font-size: 6vw
    }

    .formbox .formbox_left p {
        font-size: 5vw
    }

    .bannerbox .bannerright p {
        font-size: 5vw
    }
}

@media screen and (max-width: 350px) {

    .bannerbox .bannerright h3,
    .formbox .formbox_left h3 {
        font-size: 7vw
    }
}

@media screen and (max-width: 250px) {

    .bannerbox .bannerright h3,
    .formbox .formbox_left h3 {
        font-size: 20px
    }
}

.infobox .cart {
    background: linear-gradient(90deg, #1c70d0 0%, #3794ff 100%);
    color: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all .5ms ease-in-out
}

.infobox .cart {
    transition: all .3s ease
}

.infobox .cart:hover {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #1c70d0;
    color: #1c70d0
}

.imgbox {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
    transition: all .5s linear
}

.imgbox img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .6s ease
}

.imgbox:hover img {
    transform: scale(1.1)
}

.countclass {
    position: relative
}

.countclass span {
    position: absolute;
    top: -15px;
    left: 25%;
    font-size: 12px;
    background: blue;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif
}

.custom-modal.active {
    display: flex
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px)
}

.modal-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    z-index: 10;
    animation: fadeIn .3s ease
}

.modal-box h2 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #0d47a1
}

.modal-box p {
    color: #555;
    margin-bottom: 20px
}

.modal-box label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    color: #333
}

.modal-box input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 5px
}

.submit-btn {
    width: 100%;
    background: #0d47a1;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: .3s
}

.submit-btn:hover {
    background: #0b3c91
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer
}

@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.breadcrumbs li:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.slide-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px
}

.slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block
}

.mobile-img {
    display: none
}

@media(max-width: 768px) {
    .desktop-img {
        display: none
    }

    .mobile-img {
        display: block
    }
}