@import url('https://fonts.cdnfonts.com/css/ford-antenna');

:root {
    --primary: #044F8F !important;
    --secondary: #58595B !important;
    --primary-dark: #002C53 !important;
    --primary-light: #E5F2FF !important;

    --whatsapp: #6BCE72 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong {
    color: var(--primary);
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Ford Antenna', sans-serif !important;


    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    overflow-x: hidden;
    overflow-y: scroll
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.pointer {
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none !important;
    transition: 400ms !important;
}

a,
button {
    cursor: pointer;
}

.btn-theme {
    background: var(--secondary);
    color: #fff;
    border-radius: 0;
    height: 45px;
    width: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
}

.primary-bg {
    background: var(--primary);
}

.light-bg {
    background: var(--primary-light);
}



/*** Header ***/

.mobile-header {
    display: none;
}

.header-top {
    height: 50px;
    display: flex;
    align-items: center;
    background: #F7F7F7;
}

.header-top .header-slogan span {
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 300;
}

.header-top .header-contact {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header-top .header-contact .header-contact-item {
    margin-left: 60px;
}

.header-top .header-contact .header-contact-item img {
    margin-right: 25px;
}

.header-top .header-contact .header-contact-item span {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 400;
}

.header-menu {
    height: 125px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 51px;
    width: 260px;
    object-fit: contain;
    object-position: left;
}

.menu-dropdown,
.lang-dropdown {
    position: absolute;
}

ul.header-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-menu-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

ul.header-menu-list li .header-menu-link {
    font-size: 14px;
    /* color: var(--primary); */
    color: var(--secondary);
    padding: 25px;
    margin: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 0;
    cursor: pointer;
    transition: 400ms;
}

ul.header-menu-list li .header-menu-link a {
    color: var(--secondary);
    /* transition: 400ms; */
}

ul.header-menu-list li:hover .header-menu-link a {
    color: #fff !important;
    /* transition: 400ms; */
}

ul.header-menu-list li .header-menu-link:hover {
    background: var(--primary);
    color: #fff;
    transition: 400ms;
}

ul.header-menu-list li.has-dropdown .header-menu-link {
    border-radius: 0;
}

ul.header-menu-list li.has-dropdown:hover .header-menu-link {
    background: var(--primary);
    color: #fff;
    transition: 400ms;
}

ul.header-menu-list li.has-dropdown:hover ul.menu-dropdown {
    opacity: 1;
    pointer-events: all;
    transition: 400ms;
}

ul.menu-dropdown {
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    margin-top: -15px;
    margin-right: 15px;
    list-style: none;
    padding: 0;
    width: 275px;
    background: var(--primary);
    border-radius: 0;
    right: 0;
    overflow: hidden;
    transition: 400ms;
}

ul.menu-dropdown li {
    padding: 0 30px;
    transition: 400ms;
}

ul.menu-dropdown li:hover {
    background: #034680;
    transition: 400ms;
}

ul.menu-dropdown li a {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    transition: 400ms;
}

ul.menu-dropdown li:not(:last-child) a {
    border-bottom: 1px solid #034680;
}


ul.header-menu-list li {
    position: relative;
}

ul.header-lang-list * {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.header-lang-list {
    position: relative;
    padding: 0;
    margin: 0;
}

ul.header-lang-list li span {
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    /* padding: 15px; */
}

ul.header-lang-list span {
    background: var(--primary);
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    overflow: hidden;
    transition: 400ms;
}

ul.header-lang-list:hover span {
    border-radius: 0;
    transition: 400ms;
}


ul.lang-dropdown {
    width: 45px;
    background: var(--primary);
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: 400ms;
}

ul.header-lang-list:hover ul.lang-dropdown {
    opacity: 1;
    pointer-events: all;
    transition: 400ms;
}

ul.header-lang-list * {
    font-size: 14px !important;
    z-index: 999;
    color: #fff !important;
    font-size: 12px;
    cursor: pointer;
    font-weight: 200;
}

ul.header-lang-list .lang-dropdown li {
    padding: 8px 10px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-menu-button {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--primary);
    color: #fff;
    position: absolute;
}

/*** Header-End ***/


/*** Page-Top ***/

.page-top {
    border-bottom: #E5F2FF 2px solid;
    border-left: #E5F2FF 2px solid;
    border-radius: 0;
    padding: 25px 25px 30px 60px;
    background: #fff;
    position: relative;
    z-index: 9;
}

h4.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 25px;
}

h2.section-title {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

.bread-content {
    display: flex;
    justify-content: end;
}

.breadcrumb {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
}

.breadcrumb * {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb span {
    margin: 0 4px 0 2px;
}

.page-banner {
    position: relative;
    z-index: 7;
    width: 100%;
    height: 370px;
    margin-top: -65px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map,
.banner-image {
    width: 100%;
    height: 100%;
}

.page-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*** Page-Top-End ***/


/*** Contact-Page ***/

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 55px;
    border-radius: 0;
    border: 1px solid var(--primary);
    margin-bottom: 22px;
    padding: 20px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 300;
    transition: 400ms;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: var(--primary-light);
    outline: none !important;
    transition: 400ms;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--primary);
    font-size: 16px;
    font-weight: 300;
}

.contact-form textarea {
    height: 200px;
}

.theme-button {
    border: 1px solid var(--primary);
    outline: none !important;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    background: transparent;
    padding: 18px 30px 18px 35px;
    transition: 400ms;
    cursor: pointer;
}

.theme-button:hover {
    background: var(--primary);
    transition: 400ms;
}

.theme-button span {
    color: var(--primary);
    letter-spacing: 4px;
    font-weight: 400;
    margin-right: 50px;
    transition: 400ms;
}

.theme-button:hover span {
    color: #fff;
    transition: 400ms;
}

.theme-button img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(59%) saturate(3902%) hue-rotate(194deg) brightness(96%) contrast(97%);
    transition: 600ms;
}

.theme-button:hover img {
    filter: unset;
    rotate: 45deg;
    transition: 600ms;
}

.contact-informations {
    padding-left: 125px !important;
}

span.contact-item-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 18px;
    display: block;
}

.contact-item {
    margin-bottom: 75px;
}

.contact-item i {
    margin-right: 25px;
    color: var(--primary);
    font-size: 20px;
    line-height: 1.5;
    padding-top: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--primary) !important;
    font-size: 22px;
    font-weight: 200;
    margin: 0;
    transition: 400ms;
}

.contact-item a:hover {
    letter-spacing: 1px;
    transition: 400ms;
}

/*** Contact-Page-End ***/


/*** Footer ***/

footer {
    background: var(--primary-light);
    padding-top: 85px;
    margin-top: 150px;
}

.footer-logo img {
    height: 51px;
    width: 260px;
    object-fit: contain;
}

.footer-logo {
    margin-bottom: 50px;
}

span.footer-about-title {
    font-size: 14px;
    margin-bottom: 35px;
    display: block;
}

p.footer-about-text {
    font-size: 14px;
    font-weight: 300;
}

h3.footer-menu-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item ul li a {
    line-height: 45px;
    color: var(--primary);
    font-weight: 300;
    font-size: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact ul li {
    text-align: end;
}

.footer-menu-item .footer-address {
    color: var(--primary) !important;
    font-weight: 300 !important;
    font-size: 16px !important;
}

.footer-socials.socials a {
    font-size: 26px;
    color: var(--primary);
    margin-right: 15px;
}

.footer-socials.socials {
    margin-bottom: 25px;
}

a.footer-whatsapp {
    margin-top: 25px;
    padding: 45px 28px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    background: none;
    border: 1px solid var(--whatsapp);
    transition: 400ms;
}

a.footer-whatsapp:hover {
    background: var(--whatsapp);
    transition: 400ms;
}

a.footer-whatsapp * {
    color: var(--whatsapp) !important;
    transition: 400ms;
}

a.footer-whatsapp:hover * {
    color: #fff !important;
    transition: 400ms;
}

.footer-whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-whatsapp-content span {
    color: #fff;
}

.footer-whatsapp-content span.light {
    font-size: 14px;
    font-weight: 300;
}

.footer-whatsapp-content span.bold {
    font-size: 18px;
    font-weight: 600;
}

.footer-whatsapp-icon i {
    font-size: 65px;
    color: #fff;
    padding-left: 15px;
}

.copyright {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 55px;
    margin-top: 50px;
}

.copyright span {
    font-size: 14px;
    color: #CBCBCB;
}

.copyright a {
    display: flex;
    align-items: end;
    height: 100%;
}


/*** Footer-End ***/


/*** Teamkom-Page ***/

.teamkom-top .col-md-4 {
    padding: 0px 100px 70px 70px;
    display: flex;
    flex-direction: column;
}

span.teamkom-top-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

span.teamkom-top-title {
    font-size: 32px;
    font-weight: 900;
}

.teamkom-top-description p {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.teamkom-bottom {
    height: 715px;
    width: 100%;
    background: url(images/teamkom-bottom.jpg);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.teamkom-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 150px;
    padding-top: 50px;
}

.teamkom-bottom-content .subtitle {
    font-size: 44px;
    line-height: 124px;
}

.teamkom-bottom-content .title {
    font-size: 90px;
    line-height: 130px;
    font-weight: 900;
    margin-bottom: 25px;
}

/*** Teamkom-Page-End ***/


/*** Media-Page ***/

a.media-video-item,
a.media-photo-item {
    width: 100%;
    height: 350px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

a.media-video-item img,
a.media-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.media-news-item img {
    object-fit: cover;
    width: 100%;
    height: 350px;
    border-radius: 0;
}

span.media-section-title {
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 35px;
    display: block;
}

.media-list-section {
    padding-bottom: 40px;
    margin-bottom: 35px;
}


.media-page .media-news-list,
.media-page .media-photos-list {
    border-bottom: 1px solid #EAEAEA;
}

.media-list-section .row .col-md-4 {
    padding: 8px;
}

span.news-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 300;
    padding-right: 25px;
    line-height: 30px;
}

span.news-title {
    font-size: 30px;
    font-weight: 300;
    margin-top: 50px;
    margin-bottom: 30px;
    display: block;
}

a.media-news-item {
    margin-bottom: 50px;
    display: block;
}


.catalog-col {
    background: #014179;
    height: 250px;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    padding: 15px;
}

.catalog-col span.documents-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
}

.documents-title-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    padding-left: 55px;
}

.logos-col {
    background: var(--primary-light);
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 75px 35px 35px 35px;
}

.logos-col .logos {
    display: flex;
}

.logos-col a {
    height: 90px;
    width: 90px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 400ms;
}

.logos-col a:hover {
    background: var(--primary);
    transition: 400ms;
}

.logos-col a img {
    transition: 400ms;
}

.logos-col a:hover img {
    filter: invert(1) brightness(9);
    transition: 400ms;
}

.logos-col span.documents-title {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    padding-left: 10px;
}

/*** Media-Page-End ***/


/*** Product-Detail-Page ***/

.product-big-image .image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    /*background: var(--primary-light);*/
    border-radius: 0;
	padding:15px;
    position: relative;
}

.product-big-image .image:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -100px;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
}

.thumbnails {
    margin-top: 15px;
}

.thumbnails a {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--primary-light);*/
	border:1px solid var(--secondary);
    border-radius: 0;
	padding:5px;
    transition: 400ms;
}

.thumbnails a:hover {
    border-radius: 0;
    transition: 400ms;
}

.product-detail-col {
    padding-top: 75px;
}

.product-description-title,
span.product-detail-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    display: block;
}

span.product-feature-title {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    /*background: var(--primary-light);*/
	border:1px solid var(--secondary);
    margin-bottom: 15px;
    border-radius: 0;
    padding-left: 30px;
    font-size: 15px;
}

span.product-feature-description {
    /*background: #CEE5FE;*/
	border:1px solid var(--secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-size: 15px;
    height: 48px;
}

.product-features .col-md-9 {
    padding-left: 0;
}

.product-features {
    margin-bottom: 45px;
}

.product-description-conten {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}

.similar-products {
    margin-top: 135px;
}

span.similar-products-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    display: block;
}

.product-description-conten p{
color:var(--secondary) !important;
}

/*** Product-Detail-Page-End ***/


/*** Product-List-İtem ***/


.product-list-item .item-bottom {
    border-top: 1px solid var(--secondary);
    background: #fff;
    border-radius: 0;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    transition: 400ms;
}

.product-list-item .item-bottom:hover {
    background: var(--primary);
    transition: 400ms;
}


.product-list-item .item-bottom span {
    letter-spacing: 5px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 300;
    padding-left: 30px;
    transition: 400ms;
}

.product-list-item .item-bottom:hover span {
    color: #fff;
    transition: 400ms;
}

.product-list-item span.product-list-item-title {
    padding-bottom: 40px;
    margin-left: 30px;
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 34px;
    color: var(--secondary);
}

.product-list-item .item-top {
    background: #fff;
    border-radius: 0;
    z-index: 9;
    height: 475px;
}


.product-list-item .item-bottom .patch {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    z-index: -9;
}

.product-list-item .item-bottom:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -50px;
    background: var(--primary);
    width: 50px;
    height: 50px;
    z-index: -9;
}

/*
.product-list-item .item-bottom:after {
    content: "";
    display: block;
    position: absolute;
    left: 15%;
    bottom: 0px;
    background: #044f8f;
    width: 70%;
    height: 40px;
    z-index: -9;
    filter: blur(20px);
}*/

.product-list-item .product-list-image {
    width: 100%;
    height: 400px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-item .product-list-image img {
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    object-position: center;
}

.categories-items .product-list-item,
.product-list .product-list-item {
    margin-bottom: 50px;
    display: block;
}

a.product-list-item {
    margin-bottom: 50px;
    display: block;
    border: 1px solid var(--secondary)
}

/*** Product-List-İtem-End ***/


/*** aside ***/

.aside {
    border: 1px solid var(--primary);
    border-radius: 0;
    padding: 35px 55px;
    position: relative;
    margin-bottom: 50px;
	margin-top:15px;
}

.aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*
.aside:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -75px;
    height: 75px;
    width: 75px;
    background: var(--primary-light);
}
*/

li.aside-main-link {
    height: 95px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #CEE5FE;
    padding: 0 20px;
}

li.aside-main-link a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

li.aside-main-link:last-child {
    border-bottom: none !important;
}

li.aside-main-link a .aside-link-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

li.aside-main-link a span.aside-link-number {
    color: #CEE5FE;
    font-size: 24px;
    font-weight: 700;
    transition: 400ms;
}

li.aside-main-link a:hover span.aside-link-number {
    color: var(--primary);
    transition: 400ms;
}

/*** aside-End ***/


/*** Kommar-Page ***/

.kommar-page-content .page-image img {
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.kommar-page-content .page-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 115px;
    margin-bottom: 95px;
}

section.kommar-page .page-banner {
    margin-bottom: 0;
}

section.kommar-page .page-content-left {
    position: relative;
    background: var(--primary);
    border-radius: 0;
    padding: 70px 45px 60px 45px;
}

section.kommar-page .page-content-left:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -75px;
    width: 75px;
    height: 75px;
    background: var(--primary);
}

section.kommar-page .left-icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

section.kommar-page .left-icons img {
    height: auto !important;
    width: auto !important;
    object-fit: contain;
}

section.kommar-page span.left-title {
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    line-height: 62px;
}

section.kommar-page .page-content-right {
    padding-top: 70px;
    padding-left: 45px;
}

section.kommar-page .page-content-right .content-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.page-counter-top {
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-counter-top .subtitle {
    font-size: 21px;
    font-weight: 300;
    color: #CEE5FE;
    letter-spacing: 1.5px;
    line-height: 29px;
    margin-bottom: 10px;
}

.page-counter-top .title {
    font-size: 39px;
    font-weight: 700;
    line-height: 54px;
}

div#counter .col-md-3 .counter-item {
    border-radius: 0;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    position: relative;
}

div#counter .col-md-3 .counter-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 8%;
    width: 84%;
    height: 75%;
    bottom: -5px;
    background: var(--primary);
    z-index: -9;
    opacity: .37;
    filter: blur(17px);
}

div#counter .col-md-3:nth-child(1) .counter-item {
    border-radius: 0;
    background: var(--primary);
}

div#counter .col-md-3:nth-child(2) .counter-item {
    background: #CEE5FE;
}

div#counter .col-md-3:nth-child(3) .counter-item {
    background: #002C53;
}

div#counter .col-md-3:nth-child(4) .counter-item {
    background: #E5F2FF;
    border-radius: 0;
}

div#counter .col-md-3 .counter-item img {
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

div#counter span.number {
    font-size: 69px;
    font-weight: 600;
    line-height: 97px;
}

div#counter .item-left {
    display: flex;
    flex-direction: column;
}

div#counter span.counter-item-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

div#counter .col-md-3:nth-child(odd) * {
    color: #fff;
}




.page-brands {
    margin-top: 175px;
}

.brand-top-image img {
    height: auto !important;
    width: auto !important;
    object-fit: contain;
}

.brand-top-slider {
    display: flex;
    align-items: center;
    height: 100%;
}

a.brand-top-item .brand-top-image {
    border-right: 1px solid #E5F2FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-top-title {
    height: 290px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 0;
}

.brand-top-title span {
    font-size: 52px;
    font-weight: 800;
}


.page-brands .brands-tabs {
    border: none !important;
    height: 150px;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    border-radius: 0;
}

/* .page-brands .brands-tabs:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--primary-light);
    width: 75%;
    z-index: -1;
    scale: 1.03;
    transform: translate(-16px, 0);
    border-radius:0 ;
} */

.page-brands .brands-tabs:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: -2px;
    height: 100%;
    border: 1px solid var(--primary-light);
    width: 75%;
    border-radius: 0;
    border-left: 0;
    pointer-events: none;
}

.page-brands .nav-link {
    border: none !important;
    background: none !important;
}

.brands-tab-image img {
    width: 60px !important;
    height: auto !important;
    object-fit: contain;
    transition: 400ms;
}

.brands-tab-image {
    padding: 0px 65px;
}

.brands-tabs .nav-link {
    padding: 0 !important;
}

.brands-tabs .nav-link.active img {
    filter: brightness(0.6);
    transition: 400ms;
}





.page-call-center {
    padding-top: 235px;
}


.call-center-content {
    background: var(--primary);
    height: 260px;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.call-center-image img {
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
    bottom: 0;
}

.call-center-image {
    display: flex;
    justify-content: end;
    padding-right: 75px;
}

span.call-center-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 20px;
    display: block;
}

.call-center-content a.call-center-item {
    border: 1px solid #E5F2FF;
    height: 180px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.call-center-content .col-md-6:last-child a.call-center-item {
    background: #E5F2FF;
    border-radius: 0;
}

.call-center-content a.call-center-item span.title {
    font-weight: 300;
    line-height: 14px;
    margin-bottom: 20px;
}

.call-center-content .col-md-6:first-child a.call-center-item span.title,
.call-center-content a.call-center-item span.email {
    color: #E5F2FF;
}

.call-center-content a.call-center-item span.phone {
    font-size: 50px;
    font-weight: 700;
}

.call-center-content a.call-center-item span.email {
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.call-center-content a.call-center-item span.email * {
    color: #e5f2ff !important;
    line-height: 35px
}

.call-center-content .call-center-left {
    height: 260px;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 45px;

}


/*** Kommar-Page-End ***/


/*** Main-Media ***/

.main-media .main-media-item {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.main-media .main-media-item img {
    width: 100%;
    height: calc(100% - 50px);
    filter: brightness(.6);
    object-fit: cover;
    transition: 400ms;
}

.main-media .main-media-item:hover img {
    filter: brightness(1);
    transition: 400ms;
}


.main-media .main-media-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 35px 40px;    
	letter-spacing: 2px;
    font-weight: 400;
	background:#fff;
    color:var(--primary) !important;
	transition:400ms;
}
.main-media .main-media-item:hover span {
	letter-spacing: 3px;
    color:#fff !important;
    background:var(--primary) !important;
	transition:400ms;
}

.main-media .col-md-3:nth-child(1) .main-media-item span {
    color: #fff;
    border:1px solid var(--secondary);
}

.main-media .col-md-3:nth-child(2) .main-media-item span {
    border:1px solid var(--secondary);
}

.main-media .col-md-3:nth-child(3) .main-media-item span {
    border:1px solid var(--secondary);
}


.main-media .main-media-contact-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-end;
    height: 600px;
    background: var(--secondary);
    border-radius: 0;
    padding: 120px 40px;
}

.main-media .main-media-contact-item * {
    color: #fff !important;
}

.main-media .media-contact-item .email {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 30px;
}

.main-media .media-contact-item .phone {
    font-size: 73px;
    text-align: end;
    font-weight: 600;
    line-height: 84px;
    margin-top: 20px;
    margin-bottom: 35px;
    display: block;
}

.main-media .media-contact-item {
    text-align: end;
}

.main-media .main-media-contact-item .theme-button {
    padding-right: 15px;
    border-color: #fff;
}

.main-media .main-media-contact-item .theme-button:hover span {
    color: var(--primary) !important;
}

.main-media .main-media-contact-item .theme-button:hover {
    background-color: #fff;
}

.main-media .main-media-contact-item .theme-button img {
    filter: unset;
}

.main-media .main-media-contact-item .theme-button:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(59%) saturate(3902%) hue-rotate(194deg) brightness(96%) contrast(97%);
}

/*** Main-Media-End ***/


/*** Main-Brands ***/
.main-brands {
    margin-bottom: 150px;
    margin-top: 25px;
}

.main-brands-top {
    padding: 20px 100px 70px 100px;
    background: #fff;
    position: relative;
    border-radius: 0;
}

.main-brands-top-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* .main-brands-top:after {
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    bottom: 3px;
    height: 90%;
    background: var(--primary-light);
    width: 71%;
    z-index: -1;
    scale: 1.03;
    transform: translate(-16px, 0);
    border-radius:0 ;
} */
.main-brands-top:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 93%;
    border: 1px solid var(--primary-light);
    width: 71%;
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    pointer-events: none;
}

.main-brands-top-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-brands-top-title .subtitle {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.main-brands-top-title .title {
    font-size: 58px;
    font-weight: 900;
    line-height: 70px;
    text-align: start;
}

.main-brands-top-text p {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 65px;
    display: block;
    color: var(--secondary);
}

.main-brands-slider {
    padding: 0 50px;
    height: 145px;
    display: flex;
    align-items: center;
}

.main-brands-slider .owl-carousel .owl-item img {
    display: block;
    width: 65px;
    height: 65px;
    object-fit: contain;
}


.main-brands-bottom {
    position: relative;
    background: #fff;
    border-radius: 0;
    margin-top: 2px;
}

/* .main-brands-bottom:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--primary-light);
    width: 75%;
    z-index: -1;
    scale: 1.03;
    transform: translate(-16px, 0);
    border-radius:0 ;
} */

.main-brands-bottom:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: -4px;
    height: 100%;
    border: 1px solid var(--primary-light);
    width: 75%;
    border-radius: 0;
    border-left: 0;
}

/*** Main-Brands-End ***/


/*** Main-Middle ***/

.main-middle-area {
    margin: 150px 0 100px 0;
    overflow: hidden;
}

.right-container {
    position: relative;
}

.middle-area-background {
    position: absolute;
    right: 0;
    top: 0;
    background: #E5F2FF;
    width: 1090px;
    height: 550px;
    border-radius: 0;
}

/*** Main-Middle-End ***/

/*** Main-Truck ***/

img.truck-body {
    height: auto !important;
    object-fit: contain;
    width: auto !important;
}

.truck-right {
    position: relative;
    padding-top: 75px;
}

.truck-image {
    position: absolute;
    left: 0;
    height: 390px;
    width: 1450px;
    transition: 6000ms;
}

.main-truck-area {
    height: 700px;
    padding-top: 0;
}

.truck-left {
    padding-left: 65px;
    padding-top: 75px;
    position: relative;
}

.truck-left:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 85px;
    border-radius: 0;
    border-top: 1px solid var(--primary-light);
    border-left: 1px solid var(--primary-light);
}

.truck-left .subtitle {
    font-size: 30px;
    line-height: 42px;
    color: var(--secondary);
}

.truck-left .title {
    font-size: 90px;
    font-weight: 900;
    line-height: 126px;
    margin-bottom: 50px;
    display: block;
}

.truck-left .title,
.truck-left .subtitle,
.truck-left:after {
    transform: translate(0, 0);
    display: block;
    transition: 5000ms;
}

body.truck-active .truck-left .subtitle,
body.truck-active .truck-left .title,
body.truck-active .truck-left:after {
    transform: translate(0, -200px);
    opacity: 0;
    pointer-events: none;
    transition: 5000ms;
}

.truck-left .truck-button-on {
    transform: translate(0, 00px);
    opacity: 1;
    pointer-events: all;
    transition: 5000ms;
}

body.truck-active .truck-left .truck-button-on {
    transform: translate(0, 200px);
    opacity: 0;
    pointer-events: none;
    transition: 5000ms;
}

body.truck-active .truck-image {
    transform: translate(-2750px, 0);
    pointer-events: none;
    transition: 6000ms;
}

.truck-image image#image {
    width: 88px !important;
    height: 88px !important;
    transition: 6000ms !important;
    transform-origin: 44px 44px !important;
    object-fit: contain !important;
}

body.truck-active .truck-image image#image {
    rotate: -500deg !important;
    transition: 6000ms !important;
    transform-origin: 44px 44px !important;
}

/* #teker {
    transform: translate(1026px, 2192px);
}

#teker-2 {
    transform: translate(1354px, 2192px);
}

#teker-3 {
    transform: translate(1877px, 2192px);
}

#teker-4 {
    transform: translate(1964px, 2192px);
}

#teker-5 {
    transform: translate(2054px, 2192px);
}



body.truck-active #teker {
    transform: rotate(660deg) translate(1026px, 2192px);
}

body.truck-active #teker-2 {
    transform: rotate(660deg) translate(1354px, 2192px);
}

body.truck-active #teker-3 {
    transform: rotate(660deg) translate(1877px, 2192px);
}

body.truck-active #teker-4 {
    transform: rotate(660deg) translate(1964px, 2192px);
}

body.truck-active #teker-5 {
    transform: rotate(660deg) translate(2054px, 2192px);
} */



/*** Main-Truck-End ***/


/*** Main-Counter ***/

.container.inside-container {
    margin-left: 0 !important;
}

.main-counter-area {
    position: absolute;
    top: 80px;
    width: 100%;
    height: 100%;
}

.middle-top {
    position: relative;
}

.page-counters-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-counters-bottom {
    transition: 6000ms !important;
    transform: translate(0px, 200px);
    opacity: 0;
    pointer-events: none;
}

body.truck-active .page-counters-bottom {
    transition: 6000ms !important;
    transform: translate(0px, 0px);
    opacity: 1;
    pointer-events: all;
}

.main-counter-area .page-counter-top {
    transition: 6000ms;
    transform: translate(0px, -200px);
    opacity: 0;
    pointer-events: none;
}

body.truck-active .main-counter-area .page-counter-top {
    transition: 6000ms;
    transform: translate(0px, 0px);
    opacity: 1;
    pointer-events: all;
}

.main-counter-area div#counter {
    transition: 6000ms;
    transform: translate(2250px, 0px);
}

body.truck-active .main-counter-area div#counter {
    transition: 6000ms;
    transform: translate(0px, 0px);
}

.main-counter-area {
    opacity: 0;
    transition: 4000ms;
    pointer-events: none;
}

body.truck-active .main-counter-area {
    opacity: 1;
    transition: 4000ms;
    pointer-events: all;
}

/*** Main-Counter-End ***/

/*** Main-Products ***/

.main-products-area {
    padding-bottom: 100px;
}

.main-products-left {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-left: 65px;
    padding-right: 150px;
}

.main-products-left .subtitle {
    font-size: 16px;
    line-height: 42px;
    margin-bottom: 10px;
}

.main-products-left .title {
    font-size: 32px;
    font-weight: 900;
    line-height: 45px;
    margin-bottom: 60px;
}

.main-products-slider {
    position: relative;
}

.slider-control {
    position: absolute;
    z-index: 9;
    padding: 25px;
    display: flex;
}

.slider-control div {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    margin-right: 5px;
    cursor: pointer;
    transition: 400ms;
}

.slider-control div:last-child:hover,
.slider-control div:first-child {
    border-radius: 0;

}

.slider-control div:first-child:hover,
.slider-control div:last-child {
    border-radius: 0;
}

.slider-control div:hover {
    background: var(--primary-light);
}

/*** Main-Products-End ***/

/*** Main-Attached ***/

.main-attached-area {
    margin-bottom: 125px;
}

.attached-area-content {
    background: url(images/main-attached.jpg);
    height: 590px;
    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0;
    padding: 50px 90px 60px 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.attached-area-title {
    display: flex;
    flex-direction: column;
    z-index: 9;
}

.attached-area-title .subtitle {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 15px;
    color: #fff;
}

.attached-area-title .title {
    font-size: 40px;
    line-height: 58px;
    font-weight: 800;
    color: #fff;
}

/* .attached-area-content:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 200px;
    width: 35%;
    background: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
} */

.main-attached-area a {
    border-color: #fff;
}

.main-attached-area a:hover {
    background-color: #fff;
    border-color: #fff;
}

.main-attached-area a span {
    color: #fff;
}

.main-attached-area a:hover span {
    color: var(--primary);
}

.main-attached-area a:hover img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(59%) saturate(3902%) hue-rotate(194deg) brightness(96%) contrast(97%);
}

.main-attached-area a img {
    filter: unset;
}

/*** Main-Attached-End ***/

/*** Main-About ***/

.main-about-area {
    margin-top: 100px;
    margin-bottom: 150px;
}

.main-about-left .about-image img {
    width: 100%;
    height: 470px !important;
    object-fit: cover;
    border-radius: 0;
}

.about-image:before {
    content: "";
    display: block;
    position: absolute;
    right: 0px;
    height: 90px;
    top: 103px;
    width: 70px;
    border-left: 1px solid var(--primary-light);
    border-top: 1px solid var(--primary-light);
    border-radius: 0;
}

.about-image {
    position: relative;
}

.about-image-title {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    width: 97px;
    height: 96px;
    display: flex;
}

.about-image-title span {
    color: #fff;
    transform: rotate(-90deg) translate(-115px, 15px);
    transform-origin: bottom right;
}

.main-about-left .left-icons {
    display: flex;
    height: 125px;
    align-items: center;
    justify-content: flex-start;
    padding-left: 45px;
}

.main-about-left .left-icons img {
    margin-right: 55px;
}

.main-about-right .subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #CEE5FE;
    line-height: 22px;
}

.main-about-right .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    margin-top: 5px;
    display: block;
    color: var(--secondary);
}

.main-about-right {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 25px;
}

.main-about-description {
    padding: 50px 60px 40px 0px;
    border: 1px solid var(--primary-light);
    border-left: 0;
    border-radius: 0;
    margin-top: 35px;
    position: relative;
}

.main-about-description p {
    font-size: 14px;
    line-height: 30px;
}

.main-about-description .theme-button {
    margin-top: 65px;
    display: inline-block;
}

.main-about-description:after {
    height: calc(100% + 4px);
    width: 180px;
    top: -2px;
    left: -170px;
    border: 1px solid var(--primary-light);
    position: absolute;
    content: "";
    z-index: -9;
    border-radius: 0;
    border-right: 0;
    position: absolute;
    content: "";
    z-index: -9;
    border-radius: 0;
}

/*** Main-About-End ***/


/*** Main-Slider ***/


.main-slider {
    position: relative;
    height: 625px;
    margin-bottom: 0;
}

.main-slider .item {
    height: 625px;
    background-size: cover;
    background-position: center;
}

.slider-socials {
    position: absolute;
    top: 0;
    z-index: 9;
    right: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: all !important;
}

.main-slider-contents {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    pointer-events: none;
}

.main-slider-contents .container {
    width: 100%;
    position: relative;
    z-index: 9;
    height: 100%;
}

.slider-socials a {
    font-size: 19px;
    margin: 8px 0;
    color: #fff !important;
}


form.search-form {
    height: 115px;
    /* max-width: 1100px; */
    width: 100%;
    /* background: #E5F2FF; */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
}
/*
.slider-search-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: calc((-115px / 2) - 90px);
    left: 0;
    width: 100%;
}

.slider-search-area-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    pointer-events: all !important;
    flex-direction: column;
    background: #E5F2FF;
    max-width: 1100px;
    width: 100%;
    border-radius: 0;
}

*/
.slider-search-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	margin-bottom:100px;
}


.slider-search-area-content {
    padding: 0 15px;
    pointer-events: all !important;
    flex-direction: column;
background: none;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    border: 1px solid var(--secondary);
	margin-top:15px;
}

button.icon-button {
    background: none !important;
    border: none !important;
    outline: none !important;
}

input#q {
    border: none !important;
    background: none !important;
    outline: none !important;
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    margin: 0 30px;
    width: calc(100% - 235px);
}

input#q::placeholder {
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
}

button.search-button {
    background: #CEE6FF00;
    border: 1px solid var(--secondary) !important;
    outline: none !important;
    width: 140px;
    height: 40px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
    transition: 400ms;
}

button.icon-button img {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

button.search-button:hover {
    border-radius: 0;
    background: #a8cbef;
}


.slider-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 535px;
    width: 100%;
}

.main-slider .item .container {
    height: 100%;
}

.slider-box {
    width: 100%;
    height: 300px;
    background: #044f8f8c;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.slider-box h4 {
    font-size: 60px;
    font-weight: 600;
    line-height: 84px;
    /* padding-top: 55px; */
}

span.slider-slogan {
    width: 100px;
    color: #fff;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
    font-size: 9px;
    letter-spacing: 5px;
    padding-bottom: 0;
    height: 100%;
    position: relative;
}

.slider-button-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
}

a.theme-button.transparent-btn img {
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
}

a.theme-button.transparent-btn {
    display: flex;
    background: none;
    padding-right: 15px;
    width: 220px;
    position: relative;
    justify-content: flex-end;
    border: none;
    margin-top: 25px;
}

/* a.theme-button.transparent-btn::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    border: 1px solid #ffffff;
    height: 110px;
    border-radius: 0;
    border-right: 0 !important;
    border-top: 0 !important;
} */

a.theme-button.transparent-btn span {
    margin-right: 25px;
    color: #fff
}

a.theme-button.transparent-btn img {
    filter: none;
}

.slider-counter span {
    font-size: 24px;
    color: #fff;
    font-weight: 100;
}

.slider-counter {
    position: relative;
    padding: 10px 15px;
}

.slider-counter:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: -1px;
    width: 80%;
    border: 1px solid #ffffff;
    height: 100%;
    border-radius: 0;
    border-left: 0 !important;
}

/*** Main-Slider-End ***/

/*** Product-Filter ***/

.product-list-search {
    padding: 15px;
    background: var(--primary-light);
    margin-top: 15px;
    border-radius: 0;
}

.filter-select {
    width: 90%;
    height: 45px;
    background: none;
    border: none;
    outline: none;
    color: var(--primary);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

option {
    background: var(--primary-light);
    border-radius: 0;
    font-size: 14px;
}


.product-list-search {
    padding: 15px 45px;
    background: var(--primary-light);
    margin-top: 15px;
    border-radius: 0;
    width: 100%;
}

/*** Product-Filter-End ***/


.main-about-area .theme-button,
.main-brands .theme-button,
button.theme-button.truck-button.truck-button-on {
    border-color: var(--secondary);
}

.slider-search-area .product-list-search {
    background: none;
}
.slider-search-area .filter-select {
    width: 100%;
    height: 40px;
}

.slider-search-area .product-list-search form {
    width: 100%;
}
.slider-search-area .product-list-search {
    background: none;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}
footer  {
    background: var(--secondary) !important;
}
footer * {
    color: #fff !important;
}

.copyright .post img {
    filter: grayscale(1) brightness(0.5) invert(1);
}

.product-list-row.grid-list .product-list-search {
       margin-bottom: 15px;
    padding: 15px;
    background: none;
    border: 1px solid var(--secondary);
}

.categories-items{
	margin-top:15px;}