:root {
    --main-color: #000000;
    --main-color-dark: #000000;
    --background-color: #d2212b;
    --border-color: #d1d1d1;
    --pale-blue-color: #424e5e;
}

/* Global */
* {
    font-weight: 500;
    padding: 0;
    margin: 0;
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dubai Font */
@font-face {
    font-family: "Arabic Dubai";
    src: url("../fonts/dubai_fonts/DubaiW23-Regular.eot") format("eot");
    src: url("../fonts/dubai_fonts/DubaiW23-Regular.ttf") format("ttf");
    src: url("../fonts/dubai_fonts/DubaiW23-Regular.woff") format("woff");
    src: url("../fonts/dubai_fonts/DubaiW23-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Arabic Dubai";
    src: url("../fonts/dubai_fonts/DubaiW23-Medium.eot") format("eot");
    src: url("../fonts/dubai_fonts/DubaiW23-Medium.ttf") format("ttf");
    src: url("../fonts/dubai_fonts/DubaiW23-Medium.woff") format("woff");
    src: url("../fonts/dubai_fonts/DubaiW23-Medium.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Arabic Dubai";
    src: url("../fonts/dubai_fonts/DubaiW23-Bold.eot") format("eot");
    src: url("../fonts/dubai_fonts/DubaiW23-Bold.ttf") format("ttf");
    src: url("../fonts/dubai_fonts/DubaiW23-Bold.woff") format("woff");
    src: url("../fonts/dubai_fonts/DubaiW23-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Arabic Dubai";
    src: url("../fonts/dubai_fonts/DubaiW23-Light.eot") format("eot");
    src: url("../fonts/dubai_fonts/DubaiW23-Light.ttf") format("ttf");
    src: url("../fonts/dubai_fonts/DubaiW23-Light.woff") format("woff");
    src: url("../fonts/dubai_fonts/DubaiW23-Light.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
}

body {
    font-family: "Arabic Dubai" !important;
    background: #fff;
}

/* Structure */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper-container {
    flex: 1;
    width: 100%;
}

/* Structure */

.fas,
.fal,
.far,
.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

input,
button {
    outline: none !important;
    border: none;
    background: none;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lines-1 {
    -webkit-line-clamp: 1;
}

.lines-2 {
    -webkit-line-clamp: 2;
}

.lines-3 {
    -webkit-line-clamp: 3;
}

.lines-4 {
    -webkit-line-clamp: 4;
}

.lines-5 {
    -webkit-line-clamp: 5;
}

.lines-6 {
    -webkit-line-clamp: 6;
}

.lines-7 {
    -webkit-line-clamp: 7;
}

.max-1-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    cursor: pointer;
}

.flex-center-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center {
    display: flex;
    align-items: center;
}

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

a,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    cursor: pointer;
    color: #000;
}

ul {
    margin-bottom: 0;
}

.btn,
nav,
.button-default,
.swiper-pagination-bullet,
.ps-view-img,
.nlb-item-child .icon,
.btn-normal .icon,
.plc-img,
.category-card,
.icon-arrow-rotate,
.nav-dropdown-list {
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.gradient-easing {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.00709) 10.47%,
        rgba(0, 0, 0, 0.02755) 19.56%,
        rgba(0, 0, 0, 0.06016) 27.58%,
        rgba(0, 0, 0, 0.1037) 34.81%,
        rgba(0, 0, 0, 0.15697) 41.57%,
        rgba(0, 0, 0, 0.21875) 48.13%,
        rgba(0, 0, 0, 0.28782) 54.79%,
        rgba(0, 0, 0, 0.36296) 61.85%,
        rgba(0, 0, 0, 0.44297) 69.61%,
        rgba(0, 0, 0, 0.52662) 78.36%,
        rgba(0, 0, 0, 0.6127) 88.39%,
        rgba(0, 0, 0, 0.7)
    );
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.width-fluid {
    width: 100%;
}

.height-fluid {
    height: 100%;
}

.white-color {
    color: #ffffff !important;
}

.black-color {
    color: #000000 !important;
}

.main-color {
    color: var(--main-color) !important; /* #ffe03d */
}

.main-color-dark {
    color: var(--main-color-dark) !important; /* #ffe03d */
}

.gray-color {
    color: #898989;
}

.form-group {
    border: 1px solid #898989;
    display: flex;
}

.form-control::placeholder {
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    overflow: visible;
}

.form-control {
    display: block;
    color: #000;
    font-size: 18px;
    background: none;
    font-weight: 400;
    padding: 10px 18px;
    height: auto;
    border-radius: 0;
    border: none;
    width: 100%;
    resize: none;
}

textarea.form-control {
    min-height: 100px;
}

select.form-control {
    width: auto !important;
}

.select-group-div {
    border-right: 1px solid #898989 !important;
    padding-right: 10px;
    padding-left: 10px;
}

.form-control:hover {
    outline: none;
}

.form-control:active {
    outline: none;
}

.form-control:focus {
    outline: none;
    background: none;
    border: none;
    box-shadow: none;
}

input[type="file"] {
    position: absolute;
    opacity: 0;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.form-col-checkbox {
    display: flex;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
}

.fcc-title {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    display: inline-block;
    margin: 0 10px;
}

.form-col-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #000;
}

.circle {
    border-radius: 100% !important;
}

.opacity-hover:hover {
    opacity: 0.7;
}

.opacity-hover:active {
    opacity: 0.4;
}

.title {
    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    line-height: 1;
}

.bg-title {
    color: var(--main-color);
    font-weight: bold;
    line-height: 1;
    font-size: 50px;
}

.sm-title {
    color: var(--main-color);
    font-weight: 600;
    line-height: 1;
    font-size: 19px;
}

.text {
    color: #555;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
}

.logo-text {
    font-weight: 900;
    font-size: 31px;
    font-family: "Poppins", sans-serif;
}

.overlay {
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
}

small {
    color: #333;
    font-weight: 600;
}

.flex-center-vh {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-v {
    display: flex;
    align-items: center;
}

.flex-center-h {
    display: flex;
    justify-content: center;
}

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

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

select {
    border: none !important;
    background: none;
    width: 100% !important;
}

.rating-container {
    display: flex;
    align-items: center;
}

.rating-container .icon {
    font-size: 20px;
    color: #e6e6e6;
}

.rating-container .icon.gold {
    color: var(--main-color);
}

.rating-container .rating-count {
    line-height: 1;
    margin-left: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.icon-like {
    display: none;
    color: var(--main-color);
}

.ns-like.active .icon-like {
    display: block !important;
}

.ns-like.active .icon-unlike {
    display: none !important;
}

.slider-arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 3px solid #333;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
}

.slider-arrow-circle:hover {
    opacity: 0.7;
}

.slider-arrow-circle:active {
    opacity: 0.5;
}

.slider-arrows-wrapper {
    position: absolute;
    width: calc(100% + 140px);
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
}

.slider-arrow-circle.swiper-button-disabled {
    border: 3px solid #eaeaea;
    color: #eaeaea;
    cursor: not-allowed;
}

.btn-arrow-sm {
    color: var(--main-color);
    display: flex;
    font-size: 13px;
    margin-left: 8px;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border: 1px solid;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-arrow-sm:not(.swiper-button-disabled):hover {
    color: var(--main-color-dark);
}

.btn-arrow-sm:not(.swiper-button-disabled):active {
    color: var(--main-color-dark);
    transform: scale(0.9);
}

.btn-arrow-sm.swiper-button-disabled {
    color: #dbdbdb;
    cursor: not-allowed;
}

.btn-arrow-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent linear-gradient(180deg, #ffffff 0%, #dedede 100%) 0% 0% no-repeat padding-box;
    border-radius: 50%;
    color: var(--main-color);
}

.btn-arrow-large:not(.swiper-button-disabled):hover {
    background: var(--main-color-dark);
    color: #fff;
}

.btn-arrow-large:not(.swiper-button-disabled):active {
    opacity: 0.7;
}

.btn-arrow-large.swiper-button-disabled {
    color: #dbdbdb;
    cursor: not-allowed;
}

.swiper-arrows-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 10;
}

a[title="View this pdf file"] {
    display: none !important;
}

/* Tabs */
.tt-btn {
    color: #33333350;
    font-weight: 600;
    font-size: 16px;
    margin-right: 25px;
    position: relative;
}

.tt-btn.active {
    color: #000;
}

.tt-btn.active:after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 50px;
}

.sub-tabs-wrapper {
    padding: 25px 0;
}

.stc-btn {
    background: #eaeaea;
    padding: 6px 16px;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
}

.stc-btn:hover,
.stc-btn.active {
    background: #333333;
    color: #fff;
}

.sub-tab-container {
    display: none;
}

.sub-tab-container.active {
    display: block !important;
}

.tabs-titles {
    margin-top: 15px;
}

/* Tabs */

/* Breadcrumb */
.breadcrumb-container {
    padding-block: 12px;
}

.breadcrumb-item-row {
    display: flex;
    align-items: center;
    color: #000;
    white-space: nowrap;
}

.breadcrumb-item-row .bir-text {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.breadcrumb-item-row .icon {
    font-size: 12px;
    margin-inline: 5px;
    display: flex;
    align-items: center;
}

.bir-text-active {
    color: #666 !important;
}

/* Breadcrumb */

/* Form */
.fgr-label {
    display: block;
    line-height: 1;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 9px;
}

.fgr-label .optional {
    color: #a1a1a1;
    font-weight: 600;
}

.fgr-input {
    border: 2px solid #e6e6e6;
    border-radius: 7px;
    display: block;
    width: 100%;
    padding: 10px 21px;
    font-size: 15px;
    color: #000;
}

.fgr-input::placeholder {
    font-size: 14px;
}

.iti__flag {
    background-image: url("../img/flags.png");
}

.iti.iti--allow-dropdown {
    width: 100%;
}

/*.iti__flag {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
}*/
.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: none;
}

.iti__selected-dial-code {
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
}

.iti__country-list {
    border: 2px solid #e6e6e6;
    top: 48px;
    z-index: 20;
    margin: 0 0 0 -2px;
}

/* Form */

/* Checkbox */
.fake-checkbox {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.input-checkbox {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 13;
    cursor: pointer;
}

.input-checkbox:checked + .fake-cb-child > span {
    opacity: 1;
}

.fake-cb-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 3px;
    border: 1px solid #333;
}

.fake-cb-child > span {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
}

.checkbox-text {
    margin: 0 9px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    width: calc(100% - 40px);
}

.checkbox-toggle-btn > div {
    font-size: 16px;
    font-weight: 600;
    color: #626262;
}

.checkbox-toggle-btn .icon {
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

/* Checkbox */

/* Checkbox Circle */
.checkbox-circle .fake-cb-child {
    border-radius: 50%;
    border: 2px solid #333;
}

.checkbox-circle .fake-cb-child > span {
    border-radius: 100% !important;
}

/* Checkbox Circle */

/* Scroller Bar */
.ss-list::-webkit-scrollbar,
.scroller::-webkit-scrollbar,
#tabViewText::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.ss-list::-webkit-scrollbar-track,
.scroller::-webkit-scrollbar-track,
#tabViewText::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.ss-list::-webkit-scrollbar-thumb,
.scroller::-webkit-scrollbar-thumb,
#tabViewText::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 50px;
}

/* Handle on hover */
.ss-list::-webkit-scrollbar-thumb:hover,
.scroller::-webkit-scrollbar-thumb:hover,
#tabViewText::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Scroller Bar */

/* Search */
.search-backdrop {
    background: rgba(30, 34, 40, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.search-backdrop.active {
    display: block !important;
}

.search-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.search-container {
    background: #fff;
    padding-block: 33px;
}

.search-group {
    width: 100%;
}

.search-input {
    width: 100%;
    font-weight: 600;
}

.search-icon {
    display: flex;
    align-items: center;
}

.search-icon .icon {
    font-size: 22px;
    margin-inline-end: 18px;
}

.close-search-btn {
    background: rgba(0, 0, 0, .08);
    font-size: 12px;
    width: 36px;
    height: 36px;
    line-height: 1.8rem;
    border-radius: 100% !important;
    margin: 0;
    padding: 0;
    box-shadow: none;
    transition: background .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline-start: 18px;
}

.close-search-btn .icon {
    font-size: 15px;
    font-weight: bold;
}

.main-search-dropdown {
    position: absolute;
    top: 204%;
    background: #fff;
    width: 100%;
    left: 0;
    border-radius: 7px;
    padding-block: 6px;
    display: none;
}

.main-search-dropdown.active {
    display: block !important;
}

.search-item-url {
    display: block;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 17px;
    line-height: 1;
}

.search-item-url:hover {
    background: #eee;
}

.search-dropdown-loading {
    display: none;
}

.search-dropdown-loading.active {
    display: block !important;
}

/* Search */


/* Pagination */
.page-link {
    background: none;
    margin: 0 7px;
    width: 40px;
    height: 40px;
    border: none;
    color: #6e6e6e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100% !important;
}

.page-link:hover,
.page-link.active,
.page-link:hover .icon {
    color: #fff;
    background: #333;
}

.page-item.disabled .page-link {
    background: none;
    margin: 0 7px;
}

.page-link .icon {
    font-size: 25px;
    color: #000;
}

.page-link {
    font-size: 18px;
}

/* Pagination */

/* Breadcrumb */
.breadcrumb {
    padding: 0;
    background: none;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

/* Breadcrumb */

/** Buttons **/
.btn {
    border-radius: 4px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.btn:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.button-default {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 28px;
    padding: 9px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color) !important;
    background: #fff !important;
}

.button-default .icon {
    font-weight: 100;
    margin-left: 9px;
    font-style: inherit;
    font-size: 23px;
    line-height: 1;
}

.button-default:hover {
    color: #01301c !important;
}

.button-default:active {
    opacity: 0.5;
}

.btn-normal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color) !important;
    background: transparent;
    font-weight: 600;
}

.btn-normal .icon {
    font-weight: 400;
    margin: 0 7px;
}

.btn-normal:hover {
    color: var(--main-color-dark) !important;
}

.btn-normal:hover .icon {
    transform: translateX(15px);
}

.btn-normal:active {
    color: var(--main-color-dark) !important;
    opacity: 0.4;
}

.btn-normal-white {
    color: #fff !important;
}

.btn-normal-white:hover {
    color: #ddd !important;
}

.btn-bg,
.btn-secondary {
    background: var(--main-color);
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 55px;
    font-size: 20px;
    border-radius: 0;
    font-weight: 500;
}

.btn-secondary {
    background: #6c757d;
    border: none !important;
}

.btn-bg .icon {
    font-size: 14px;
}

.btn-bg:hover {
    background: #014527;
    color: #fff !important;
}

.btn-bg:active {
    opacity: 0.5;
    background: #014527;
    color: #fff !important;
}

/* .btn-bg:focus {
  background: #fff;
  color: var(--main-color) !important;
} */
.btn-pry {
    background: #fff;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 47px;
    font-size: 18px;
    border-radius: 0;
    font-weight: 500;
}

.btn-pry .icon {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
}

.btn-pry:hover {
    color: #fff;
    background: var(--main-color);
}

.btn-pry:active {
    color: #fff;
    background: var(--main-color);
    opacity: 0.5;
}

.btn-simple {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.btn-simple:hover {
    opacity: 0.7;
}

.btn-simple:active {
    opacity: 0.5;
}

.read-more-btn {
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-danger {
    border: 1px solid var(--main-color);
    color: var(--main-color) !important;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    padding: 10px 23px;
}

.btn-outline-danger .icon {
    padding-left: 10px;
}

.btn-outline-danger:hover {
    color: #fff !important;
    background: var(--main-color) !important;
}

.btn-outline-danger:active {
    color: #fff !important;
    background: var(--main-color-dark) !important;
    opacity: 0.6;
}

.btn-light {
    border-radius: 6px !important;
    padding: 10px 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color) !important;
}

.btn-light .icon {
    font-size: 17px;
    padding-left: 10px;
}

.btn-light:active {
    opacity: 0.7;
}

.btn-primary,
.btn-primary-outline,
.btn-danger-outline {
    background: none !important;
    color: #000 !important;
    border: 1px solid var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 8px 23px;
    border-radius: 6px;
}

.btn-primary-outline {
    border: 1px solid var(--main-color) !important;
    background: none !important;
    color: var(--main-color) !important;
}

.bg-white {
    background: #fff !important;
    border-color: #fff !important;
}

.bg-white:hover,
.bg-white:active {
    border-color: var(--main-color);
!important;
}

.btn-primary:hover {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
}

.btn-primary-outline:hover {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
}

.btn-primary:active,
.btn-primary-outline:active {
    opacity: 0.7;
    background: var(--main-color-dark) !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid var(--main-color) !important;
}

.btn-primary-outline .icon,
.btn-danger-outline .icon{
    margin-inline-start: 7px;
}
div .btn-danger-outline:hover {
    border-color: #CF0000 !important;
    background: #CF0000 !important;
    color: #fff !important;
    outline: none !important;
}
div.slider-card-heading  .btn-danger-outline:hover {
    border-color: #CF0000 !important;
}

.btn-gradient-white {
    border: 1px solid var(--border-color);
    background: transparent linear-gradient(180deg, #fefefe 0%, #e8ebee 100%) 0% 0% no-repeat padding-box;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #000 !important;
}

.btn-gradient-white .icon {
    font-size: 25px;
    padding-right: 7px;
}

.btn-gradient-white:hover {
    /*background: transparent linear-gradient(180deg, #fffafa 0%, #c9cccf 100%) 0%
      0% no-repeat padding-box;*/
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
}

.btn-gradient-white:active {
    opacity: 0.6;
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
}

/** Buttons **/

/* Checkbox */
.fake-checkbox {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.input-checkbox {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 13;
    cursor: pointer;
}

.input-checkbox:checked + .fake-cb-child > span {
    opacity: 1;
    border-radius: 2px;
}

.fake-cb-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 2.5px;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
}

.fake-cb-child > span {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
}

.checkbox-text {
    margin: 0 9px;
    font-size: 15px;
    font-weight: 500;
    color: #6e6e6e;
    line-height: 1;
    cursor: pointer;
    width: calc(100% - 40px);
}

.checkbox-toggle-btn > div {
    font-size: 16px;
    font-weight: 600;
    color: #626262;
}

.checkbox-toggle-btn .icon {
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.keeped-forgot {
    line-height: 1;
}

.keeped-forgot .checkAll {
    width: 210px;
}

/* Checkbox */

/* Contact */
.selectbox-tel-keys .placeholder {
    font-size: 16px;
}

.selectbox-tel-keys .ss-main .ss-single-selected .ss-arrow span {
    border-width: 0 2px 2px 0;
    padding: 3px;
}

.selectbox-tel-keys .ss-content {
    width: 70px;
    left: -8px;
    top: calc(100% + 17px);
}

.selectbox-tel-keys .ss-option {
    padding: 8px 12px !important;
    text-align: center !important;
    font-size: 15px;
}

/* Contact */

/* Modal */
.modal {
    z-index: 105000;
}

.modal.fade .modal-dialog {
    max-width: 530px;
}

/* Modal */

.wrapper-container {
    padding-top: 50px;
    /*padding-bottom: 250px;*/
    padding-bottom: 110px;
}

.swiper-pagination {
    width: auto !important;
    top: 50% !important;
    right: 70px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Global */

/* Slider */
.related-products-container {
    padding-top: 25px;
}

.swiper-slide img {
    cursor: pointer;
}

.rpc-card {
    display: block;
}

.rpcc-img {
    /* border: 2px solid #e3e3e3; */
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover !important;
    object-position: center;
    height: 183px;

    /* background: #f2f2f2; */
}

.rpcc-title {
    color: #333;
    font-size: 19px;
    font-weight: 500;
}

.related-products-container {
    padding-top: 25px;
}

/* Slider */

/* Youtube Button */
.ytp-large-play-button {
    position: absolute !important;
    left: 0 !important;
}

.ytp-large-play-button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #080;
}

/* Youtube Button */

/* Download File Widget */
.download-file {
    /* background: #f8f8f8; */
    padding-block: 15px;
}

.download-file .title {
    font-size: 18px;
    color: var(--main-color);
}

.download-file-flexable .btn-danger {
    padding: 16px 30px;
    font-size: 16px;
}

/* Download File Widget */

/* Tabs */
.tab-view-block {
    display: none;
}

.tab-view-block.active {
    display: block !important;
}

/* Tabs */

/* Whatsapp  */
.whatsapp-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #080;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    background-color: #25d366;
    border-radius: 7px 0 0 7px;
}

.whatsapp-btn-link {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn img {
    width: 37px;
    height: 37px;
}

/* Whatsapp  */

/* Navbar */
.navabr-container {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    /* box-shadow: 0px 0px 40px #5c5c5c1a; */
    border-bottom: 1px solid #eee;
}

.nlb-item {
    position: relative;
}

.nlb-item:after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 26px;
    background: transparent;
    z-index: 10;
    cursor: pointer;
    display: none;
}

.nlb-item:hover:after {
    display: block;
}

.navbar-links-box .nlb-item,
.nlb-item-child {
    font-size: 20px;
    color: var(--main-color);
    font-weight: 500;
    margin: 0 15px 0;
    display: inline-block;
    position: relative;
}
.navbar-links-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nlb-item-child {
    margin: 0;
}

.nlb-item-child .icon {
    font-size: 15px;
    display: inline-block;
    position: relative;
    top: 1px;
    margin-left: 3px;
}

.nlb-item-child:hover {
    color: #422a6e !important;
}
.navbar-logo-nlb-item {
    margin-inline: auto !important;
}
.nav-dropdown-list {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    /*  width: 100%;*/
    background: #fff;
    padding: 0 0 0;
    min-width: 150px;
    max-width: 180px;
    box-shadow: rgb(0 0 0 / 0%) 0 1px 0px, rgb(0 0 0 / 11%) 0px 1px 2px;
    /*  max-height: max-content;*/
    border-top: 3px solid var(--main-color);
    display: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.nav-dd-btn {
    display: block;
    white-space: nowrap;
    font-size: 15px;
    padding: 10px 13px;
    line-height: 1;
    font-weight: 600;
    color: #333 !important;
}

.nav-dd-btn:hover {
    background: var(--main-color) !important;
    color: #fff !important;
}

.nav-dd-btn:active {
    opacity: 0.7;
}

.hidden-large {
    display: none;
}

.ndb-column:not(:last-of-type) {
    border-right: 1px solid #e2dfdf;
}

.category-row {
    padding: 16px 23px;
}

.category-row-border {
    border-top: 1px solid #e2dfdf;
    border-bottom: 1px solid #e2dfdf;
}

.large-category-row {
    padding: 20px 22px;
    background: #f7f7f7;
    cursor: pointer;
    position: relative;
    margin-bottom: 5px;
}

.large-category-row:hover .icon-arrow-rotate {
    transform: rotate(180deg);
}

.large-category-row:hover .large-category-list {
    display: block !important;
}

.large-category-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 20px 22px;
    background: #fdfdfd;
    display: none;
}

.icon-arrow-rotate,
.icon-arrow-link {
    color: var(--main-color);
    margin-left: auto;
}

.category-list {
    padding-top: 13px;
}

.category-row-title {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    color: #333;
}

.category-row-title .icon {
    font-size: 26px;
    margin-right: 10px;
    color: var(--main-color);
}

.nlb-item:hover .nlb-item,
.nlb-item:hover .nlb-item-child,
.nlb-item-child.active {
    color: var(--main-color-dark);
}

.nlb-item:hover .nav-dropdown-list {
    display: block !important;
}

.nlb-item:hover .nlb-item-child .icon {
    transform: rotateZ(180deg);
}

.navbar-toggle-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: none;
    display: none;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.ndb-link {
    line-height: 1;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    position: relative;
    padding-left: 13px;
    width: 100%;
}

.ndb-link:after {
    content: "";
    position: absolute;
    left: 0;
    top: 4.5px;
    background: #dddddd;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
}

.navbar-toggle-btn:hover {
    filter: grayscale(50%);
}

.navbar-toggle-btn .icon {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: var(--main-color) !important;
}

/* .navbar-call-btn {
  margin: 0 10px;
  display: none;
} */
.nav-arrow-icon {
    /*  filter: grayscale(100%);*/
    height: 17px;
}

.nf-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 9px;
}

.nf-subscribe {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--main-color);
    margin-bottom: 3px;
    overflow: hidden;
}

.foot-btn-subscribe {
    padding: 5px 15px;
    font-size: 15px;
    border-inline-start: 1px solid var(--main-color) !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-btn-subscribe .icon {
    color: var(--main-color);
}

.nf-subscribe input {
    font-size: 11px;
    padding: 9px 11px !important;
    outline: none;
    color: #777;
}

.nf-subscribe input::placeholder {
    color: #777;
    font-size: 14px;
}

.foot-btn-subscribe span {
    font-size: 13px;
    font-weight: 700;
    color: var(--main-color);
}

.foot-btn-subscribe .icon {
    height: 0.8em;
    color: var(--main-color);
}

.foot-btn-subscribe:hover {
    background-color: var(--main-color) !important;
}

.foot-btn-subscribe:hover span,
.foot-btn-subscribe:hover .icon {
    color: #fff;
}

.foot-btn-subscribe:focus,
.foot-btn-subscribe:active {
    outline: none;
    box-shadow: none;
}

.foot-btn-subscribe:active {
    opacity: 0.7;
}

.nf-text {
    margin-top: 8px;
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.nf-socialmedida {
    border-top: 1px solid #52525250;
    border-bottom: 1px solid #52525250;
    padding: 10px 0;
}

.foot-social-newsletter-column {
    display: flex;
    flex-direction: column;
}

.nfs-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
}

.nfs-social i {
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    margin-left: 18px;
}

.nfs-social a:hover i {
    color: #000 !important;
}

.nf-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nf-copyright .foot-des-link {
    color: var(--main-color);
    font-weight: 700;
    font-size: 12px;
}

.nf-copyright div {
    padding: 8px 0;
    padding: 8px 0;
    font-weight: 600;
    color: #777;
    font-size: 11px;
    color: var(--main-color);
    font-weight: 700;
    font-size: 13px;
}

.nf-copyright div a {
    color: #777;
}

.navbar-logo a {
    display: flex
}
.main-navbar-logo {
    display: none;
}
.navbar-logo img {
    width: 130px;
    /*height: 40px !important;*/
    /* transform: scale(1.1); */
}

.nf-bottom {
    width: 100%;
    text-align: center;
    border-top: 1px solid #52525250;
}

.nav-arrow-icon {
    display: none;
}

.navbar-footer {
    display: none;
}

/* Navbar Lang */
.navbar-actions {
    display: inline-flex;
    align-items: center;
    order: 2;
}

.nav-lang-img,
.dm-lang-img {
    height: 14px;
    object-fit: cover;
    display: inline-block;
}

.dm-lang-img {
    height: 12px;
}

.navbar-actions .btn {
    padding: 3px 0;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--main-color) !important;
}

.btn-search-action {
    width: 32px;
    height: 32px;
    /*background: var(--main-color);*/
    color: #000 !important;
}

.btn-search-action .icon {
    color: #000 !important;
    font-size: 25px;
}

.navbar-actions .dropdown-toggle::after {
    border-top: 0.25em solid;
    border-right: 0.25em solid transparent;
    border-left: 0.25em solid transparent;
    content: none;
}

.navbar-actions .btn .icon {
    font-size: 21px;
}

.navbar-actions .dropdown-item {
    padding: 5px 7px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}

.navbar-actions .dropdown-item:active {
    /*background: #006621;*/
    background: #a1a1a1;
}

.navbar-actions .dropdown-item:active span {
    color: #fff;
}

.navbar-actions .btn,
.navbar-actions .btn:focus,
.navbar-actions .btn:hover,
.navbar-actions .btn:active {
    border: none !important;
    outline: none !important;
}

.navbar-actions .dropdown-menu {
    min-width: 100%;
    padding: 3px 0;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    border: none;
    border-radius: 4px;
    max-width: 100%;
    margin-top: 6px;
}

.lang-text {
    font-size: 15px;
    padding: 0px 5px 0 4px;
    display: block;
    font-weight: 600;
    line-height: 0.8;
    color: #000 !important;
}

.navbar-actions .dropdown-menu a {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-actions .dropdown-menu a img {
    margin-right: 7px;
}

.navbar-actions .dropdown-menu a span {
    font-weight: 700;
    font-size: 12px;
}

.navbar-links-group {
    position: relative;
}

/*.search-container {*/
/*  position: absolute;*/
/*  height: 39px;*/
/*  width: 100%;*/
/*  left: 0;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  display: flex;*/
/*  border: 1px solid var(--border-color);*/
/*  background: #fcfcfc;*/
/*  border-radius: 50px;*/
/*  z-index: 20;*/
/*  visibility: hidden;*/
/*  opacity: 0;*/
/*  transition: visibility 0s linear 300ms, opacity 300ms;*/
/*}*/
/*.search-container.active {*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*  transition: visibility 0s linear 0s, opacity 300ms;*/
/*}*/
/*.search-input {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  padding: 9px 15px;*/
/*  color: #000;*/
/*  font-size: 16px;*/
/*}*/
/*.btn-search-action {*/
/*  !* height: 32.4px;*/
/*  width: 32.4px; *!*/
/*  padding: 0;*/
/*  color: var(--main-color);*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 19px;*/
/*}*/
/*.btn-search-action .icon-close {*/
/*  display: none;*/
/*  font-size: 11px;*/
/*  font-weight: bold;*/
/*}*/
/*.btn-search-action.btn .icon-search {*/
/*  font-size: 25px;*/
/*}*/
/*.btn-search-action.active .icon-close {*/
/*  display: block;*/
/*}*/
/*.btn-search-action.active .icon-search {*/
/*  display: none;*/
/*}*/
/*.btn-search-action:hover {*/
/*  background: var(--main-color-dark);*/
/*}*/
/*.btn-search-action:hover .icon {*/
/*    color: #fff !important;*/
/*}*/
/*.btn-search-action:active {*/
/*  opacity: 0.6;*/
/*}*/
.nav-action-btn {
    margin-inline-start: 15px;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    padding-block: 0 !important;
}

.nav-action-btn .icon {
    margin-inline-end: 5px;
    color: var(--main-color);
}

.btn-call {
    font-weight: 600;
    font-size: 21px;
    color: var(--main-color) !important;
}

.btn-call .icon {
    font-size: 15px !important;
    margin-inline: 0;

    color: var(--main-color) !important;
    transform: rotateZ(37deg) translateY(-0.4px);
    margin-inline-end: -2px;
}

.btn-call-text {
    font-weight: 800;
    color: var(--main-color) !important;
    font-size: 25px;
}

.btn-toggle-lang {
    font-size: 20px;
}

.hidden-sm {
    display: none;
}

.hidden-dt {
    display: inline-flex;
}

/* Navbar */

/* Home */
.shb-slide-widget {
    position: relative;
}

.shb-slide-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: auto !important;
    /*min-height: 600px;*/
    /*height: calc(100vh - 66.2px);*/
    height: calc(100vh - 50px) !important;
}

.shb-details-card {
    position: absolute;
    bottom: 120px;
    display: inline-block;
    padding: 24px 45px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    width: 550px;
    max-width: 100%;
}

.shb-details-card > div {
    word-break: break-all;
}

.shb-sub-title {
    font-weight: 500;
    color: #626262;
    font-size: 19px;
    line-height: 1;
}

.shb-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.2;
    margin: 4px 0 10px;
}

.shb-description {
    color: #626262;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 17px;
}

.shb-action .btn {
    line-height: 1;
    padding: 0;
}

.swiper-pagination .swiper-pagination {
    width: auto !important;
    top: 50% !important;
    right: 50px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin-bottom: 6px !important;
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.swiper-pagination .swiper-pagination-bullet-active {
    height: 40px;
    border-radius: 40px;
}

.hsd-container {
    padding: 50px 0 60px;
}

.hsd-container .title {
    font-size: 26px;
    margin-bottom: 27px;
    color: var(--main-color);
    font-weight: 600;
    line-height: 1.3;
}

.hsd-container .text {
    font-size: 20px;
}

.services-banner-view {
    border-radius: 28px;
    overflow: hidden;
    display: none;
    position: relative;
}

.services-banner-view-large {
    display: block;
}

.services-widget-block {
    background: var(--background-color);
    border-radius: 28px;
    padding: 25px 45px 35px;
}

.swb-sub-title {
    font-size: 22px;
}

.swb-bg-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
}

.swb-text {
    font-size: 29px;
    line-height: 1;
    font-weight: 600;
}

.header-slider-title {
    font-weight: 700;
    font-size: 37px;
    line-height: 1;
    padding-block: 50px 17px;
}

.slider-card-heading {
    padding-block: 20px 20px;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.slider-card-heading .title {
    font-weight: 600;
    font-size: 23px;
    color: #fff;
}

.slider-card-heading .text {
    font-weight: 800;
    font-size: 35px;
    color: #fff;
    line-height: 1;
}
.slider-card-heading .btn-danger-outline {
    border: 0.7px solid #fff !important;
    border-radius: 33px !important;
    font-size: 17px !important;
    padding: 14px 30px !important;
}
.slider-card-heading .btn {
    border-color: #fff !important;
    color: #fff !important;
}

.slider-card-heading .btn:hover {
    border-color: var(--main-color) !important;
}

/* Home */

/* Collection */
.categories-container {
    padding-block: 90px 50px;
}
.collection-container {
    padding-block: 50px;
}

.collection-header {
    padding-bottom: 30px;
}

.collection-title {
    font-size: 22px;
    font-weight: bold;
}

.collection-text {
    font-weight: 500;
    font-size: 18px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.collection-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.collection-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.collection-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}
.products-slider {
    overflow-x: hidden;
}

.cv-img {
    width: 100%;
    aspect-ratio: 1.7;
    object-fit: cover;
}

.collection-card-title {
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;
}

.collection-slide {
    position: relative;
}

.collection-pagination {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.collection-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d8d6d670 !important;
    opacity: 1;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12) !important;
}

.collection-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
}
.category-marquee-row {
    width: 50vw;
}
.product-marquee-slide {
    width: 25vw;
}
.category-img-view {
    aspect-ratio: 1.7;
}
/* Collection */

/* Home Products Slider */
.sp-slide {
    position: relative;
}

.sp-slide img {
    aspect-ratio: 2.5;
    object-fit: cover;
    border-radius: 0;
    width: 100%;
}

.sp-slider-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    padding: 35px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 33px;
    text-transform: uppercase;
    line-height: 1;
    color: #000;
}

/* Projects Slider */
.project-title {
    font-weight: 600;
    font-size: 22px;
    padding-top: 10px;
    text-align: start;
}
/* Projects Slider */

/* Home Products Slider */

/* Banner */
.our-projects-banner {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.opb-view {
    height: 410px;
    min-height: 410px;
    width: 100%;
    object-fit: cover;
}

.opb-details-container,
.events-container {
    text-align: start;
}

.opb-details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 45px;
    display: inline-flex;
    align-items: end;
    /*  background: url("../img/home/overlay.png");*/
    background-size: cover;
}

.opb-details > div {
    width: 30%;
}

.opb-details .title {
    padding-bottom: 70px;
    line-height: 1.1;
    color: #fff;
}
.slider-products-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 7px;
    text-align: center;
}
/* Banner */

/* Customers */
.customers {
    padding-top: 80px;
}

.customers .title {
    color: var(--main-color);
    font-size: 30px;
}

.customers-container .text {
    color: #000;
    font-size: 22px;
    text-align: center !important;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-gap: 12.52rem;
    gap: 10px;
}

.customer-card {
    padding: 10px;
    /*border: 2px solid #ebebeb;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.customer-card img {
    height: 120px;
    object-fit: contain;
}

.tab-view-block {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.tab-view-img {
    width: 250px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
}

.tab-view-img img {
    width: auto;
    height: 178px !important;
    margin: auto;
    object-fit: contain;
}

.tab-view-details {
    width: calc(100% - 250px);
    background: #f7f7f7;
    padding: 30px;
}

.tab-view-details .text {
    text-align: left;
    color: #696969;
    font-size: 17px;
    line-height: 1.5;
    word-break: break-all;
}

.close-tab-view-btn {
    position: absolute;
    top: 4px;
    right: 15px;
    color: #999;
    font-size: 22px;
    z-index: 20;
}

.close-tab-view-btn:hover {
    color: #000;
}

.close-tab-view-btn:active {
    opacity: 0.5;
}

.customers-view {
    margin-top: 40px;
    position: relative;
    /*visibility: hidden;*/
    /*opacity: 0;*/
    /*transition: visibility 0s linear 300ms, opacity 300ms;*/
    display: none;
}

.customers-view.active {
    /*visibility: visible;*/
    /*opacity: 1;*/
    /*transition: visibility 0s linear 0s, opacity 300ms;*/
    display: block !important;
}

.customer-card-btn.active {
    opacity: 0.45;
}

#tabViewText {
    height: 158px;
    overflow-y: auto;
}

/* Customers */

/* Footer */
footer {
    background: #505050;
}

.footer-content {
    padding-top: 35px;
    padding-bottom: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1.2fr;
    grid-gap: 12.52rem;
    gap: 30px;
}

.footer-logo img {
    width: 140px !important;
    margin-bottom: 15px;
}

.footer-logo .text {
    color: #bcbcbc;
    font-weight: 400;
    font-size: 18px;
    margin-top: 0 !important;
}

.footer-links {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-gap: 12.52rem;
    gap: 10px;
}

.foot-link {
    font-size: 16px;
    color: #696969;
    font-weight: 500;
    margin-bottom: 4px;
    display: inline-block;
}

.foot-link:hover {
    color: #000000;
}

.foot-link:active {
    color: #fff;
    opacity: 0.7;
}

.foot-link:focus {
    color: #fff;
}

.social-text {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.social-link {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    margin-left: 14px;
    line-height: 1;
}

.social-link:hover {
    color: #fff;
}

.social-link:active {
    opacity: 0.7;
}

.social-link:focus {
    color: #fff;
}

.foot-form-text .title {
    font-size: 17px;
    font-weight: 600;
    margin-right: 16px;
    margin-bottom: 7px;
    color: #fff;
}

.foot-form-text .text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.input-newsletter {
    display: flex;
    justify-content: space-between;
    border: 1px solid #fff;
    border-radius: 12px;
    overflow: hidden;
    min-width: 350px;
}

.input-newsletter input {
    padding: 9px 18px;
    color: #fff;
    width: 100%;
    font-size: 13px;
}

.input-newsletter input::placeholder {
    color: #fff;
}

.input-newsletter .btn {
    color: #fff;
    border-inline-start: 1px solid #fff;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
}

.input-newsletter .btn:hover,
.input-newsletter .btn.active {
    background: #fff;
    color: #000;
}

.input-newsletter .btn:active {
    opacity: 0.7;
}

.footer-bottom {
    flex-wrap: wrap;
    border-top: 1px solid #999;
}

.fb-text {
    padding: 15px 0;
}

.fb-text a:hover {
    color: #343434;
}

.fb-text-copyrights,
.nf-left {
    display: flex;
    direction: ltr;
    flex-wrap: wrap;
}

.fb-text *,
.fb-text {
    font-weight: 600;
    font-size: 15px;
    color: #999;
}

.full_year {
    margin: 0 3px;
    /*  color: var(--main-color);*/
    font-weight: 700;
    font-size: 13px;
}

.footer-links-title {
    color: #999;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links > div {
    display: inline-block;
}

.footer-link-item {
    color: #fff !important;
    font-size: 19px;
    margin-inline-end: 9px;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-link-item:hover {
    color: #999 !important;
}

.footer-link-item:active {
    color: #999 !important;
    opacity: 0.7;
}

/* Footer */

/***** Common  *****/
.page-header {
    position: relative;
    /*height: 80vh;*/
    /*min-height: 550px;*/
    height: 72vh;
    min-height: 500px;
}

.ph-view {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    position: absolute;
    bottom: 130px;
    z-index: 20;
}

.page-title .sub-title {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
}

.page-title .title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
}

/***** Common  *****/

/* Back Button */
.back-action .btn {
    overflow: visible;
    line-height: 1.4em;
}

.back-action .btn .icon {
    margin-left: 0;
}

/* Back Button */

/* Editor */
.ttcgc-text * {
    white-space: pre-wrap;
    word-break: break-word;
    /*line-height: 1.9;*/
}

/* Editor */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Common */
    .page-header {
        height: 44vh;
        min-height: 250px;
    }

    /* Common */
    /* Home */
    .shb-slide-bg {
        min-height: 360px;
        height: calc(100vh - 161px) !important;
        /*height: 69vh;*/
    }

    .shb-details-card {
        padding: 20px 20px;
        position: static;
        bottom: auto;
        width: calc(100% + 30px) !important;
        margin-left: -15px;
        max-width: calc(100% + 30px);
        background: #f8f8f8;
    }

    /* Home */
}

@media (max-width: 767.98px) {
    .hidden-sm {
        display: flex;
    }

    .hidden-dt {
        display: none;
    }

    .btn-primary,
    .btn-primary-outline {
        font-size: 13px;
        padding: 7px 16px;
    }

    .form-control {
        color: #000;
        font-weight: 600;
    }

    .form-control::placeholder,
    .form-control {
        font-size: 15px;
    }

    .navbar-links-box .nlb-item:hover,
    .nlb-item-child:hover {
        color: #ddd;
    }

    .page-title {
        bottom: 30px;
    }

    .page-title .title {
        color: #fff;
        font-size: 30px;
    }

    .page-title .sub-title {
        font-size: 18px;
    }

    .wrapper-container {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .button-default {
        font-size: 17px;
    }

    .button-default .icon {
        font-size: 19px;
    }
    .collection-container {
        padding-block: 25px 50px;
    }
    .collection-header {
        padding-bottom: 20px;
    }
    .product-marquee-slide {
        width: 40vw;
    }

    .swiper-pagination .swiper-pagination {
        width: 100% !important;
        height: auto;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: 0 !important;
        transform: translateY(-50%) !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .swiper-pagination .swiper-pagination-bullet {
        display: inline-block;
        margin-bottom: 6px !important;
        width: 12px;
        height: 12px;
        background-color: #ffffff70;
        opacity: 1;
        box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px,
        rgb(0 0 0 / 30%) 0px 8px 16px -8px;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff !important;
    }

    .btn-bg {
        padding: 10px 32px;
        font-size: 17px;
    }

    .btn-normal {
        font-size: 14px;
    }

    .btn-outline-danger {
        font-size: 14px;
        padding: 9px 18px;
    }

    .slider-header-sm {
        padding: 14px 0 10px !important;
    }

    .slider-header-sm-title {
        font-size: 19px;
    }

    .btn-arrow-sm {
        font-size: 13px;
        width: 30px;
        height: 30px;
    }

    .btn-light {
        padding: 9px 19px;
        font-size: 15px;
    }

    .btn-light .icon {
        font-size: 14px;
    }

    .swiper-arrows-container {
        padding: 0 10px;
    }

    .btn-arrow-large {
        width: 40px;
        height: 40px;
    }

    .btn-gradient-white {
        padding: 10px 14px;
        font-size: 14px;
    }

    .btn-gradient-white .icon {
        font-size: 18px;
    }

    .breadcrumb-item-row .bir-text {
        font-size: 14px;
    }

    .breadcrumb-item-row .icon {
        font-size: 10px;
        margin-inline: 4px;
    }

    .header-slider-title {
        font-size: 18px;
        padding-block: 12px 10px;
    }

    .sp-slide img {
        aspect-ratio: 1.5;
        border-radius: 7px;
    }

    .sp-slider-title {
        padding: 15px;
        font-size: 19px;
    }

    /* Marquee */
    .marquee-slider-slide img {
        width: 105px;
    }
    .cv-img {
        aspect-ratio: 1.356;
    }

    /* Marquee */
    /* Clients */
    .customers {
        padding-top: 40px;
    }

    .customers .title {
        font-size: 20px;
        margin-bottom: 1rem !important;
    }

    .customers .text {
        font-size: 14px;
        margin-bottom: 2rem !important;
    }

    .customers .text br {
        content: "";
    }

    .customers-view {
        display: none;
        visibility: unset !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .customers-view.active {
        display: block;
        visibility: unset !important;
        opacity: 1 !important;
        transition: none !important;
    }

    #tabViewText {
        margin-bottom: 0 !important;
    }

    .customers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .customer-card img {
        height: 85px;
    }

    .tab-view-block {
        display: block !important;
    }

    .tab-view-img {
        width: 100%;
    }

    .tab-view-details {
        width: 100%;
    }

    .tab-view-img img {
        height: 150px !important;
        margin: auto;
    }

    .close-tab-view-btn {
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #333 !important;
        color: #fff !important;
        font-weight: 100;
        width: 32px;
        height: 32px;
        font-size: 18px;
        border-radius: 50%;
        top: 12px;
        right: 12px;
    }

    .close-tab-view-btn:hover {
        background: #000 !important;
        color: #fff !important;
    }

    .close-tab-view-btn:active {
        background: #000 !important;
        color: #fff !important;
        opacity: 0.5;
    }

    /* Clients */
    /* Download File Widget */
    .download-file-flexable {
        display: block !important;
    }

    .download-file {
        text-align: unset;
        padding: 25px 0;
    }

    .download-file .title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .download-file-flexable .btn-danger {
        width: auto !important;
        display: inline-block;
        padding: 11px 17px;
        font-size: 14px;
    }

    /* Download File Widget */
    /* Whatsapp */
    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-btn img {
        width: 34px;
        height: 34px;
    }

    /* Whatsapp */
    /* Navbar */
    .navbar-logo img {
        width: 100px;
        transform: none;
        margin-left: 0;
    }

    .navbar-links-content {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        min-height: calc(100% - 50px);
        padding: 0 20px;
        z-index: 96034;
        overflow-y: auto;
        flex: 1;
        flex-direction: column;
        overflow-y: auto;
        background-color: #f7f7f7;
        border-top: 1px solid #c1c1c1;
    }

    .navabr-container {
        height: 50px;
    }

    .navbar-links-content.active {
        display: flex;
    }

    .navbar-toggle-btn.active {
        display: inline-flex !important;
    }

    .navbar-links-box .nlb-item {
        position: relative;
        margin: 0;
        display: block;
        border-bottom: 1px solid #c1c1c1;
        padding: 13px 0;
        line-height: 1;
        font-size: 27px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #777;
    }

    .nlb-item-child {
        position: relative;
        margin: 0 !important;
        display: block;
        line-height: 1;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--main-color);
        width: 100%;
    }

    .nlb-item-child .icon {
        display: none;
    }

    .navbar-links-box .nlb-item:last-of-type,
    .nlb-item-child {
        margin-bottom: 20px;
    }

    .nf-title {
        line-height: 1;
    }

    .foot-social-link {
        font-size: 19px;
        color: #fff;
        margin-left: 10px;
    }

    .foot-social-link .icon {
        color: var(--main-color);
    }

    .foot-social-link:hover .icon {
        color: var(--main-color);
    }

    .nfs-title {
        font-size: 13px;
        font-weight: 700;
    }

    .nfs-social {
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .navbar-links-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        align-items: unset;
        /*max-height: calc(100vh - 294.13px);*/
    }

    .navbar-footer {
        flex: 0;
        display: block;
        padding-top: 10px;
    }

    .nav-arrow-icon {
        height: 28px;
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 21px;
        color: var(--main-color) !important;
    }

    .navbar-call-btn {
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
    }

    .navbar-actions {
        order: unset;
        margin-right: 0;
        margin-left: 0;
        margin-inline-start: auto;
    }

    .btn-search-action {
        background: none;
        color: var(--main-color);
    }

    .btn-search-action:hover {
        background: none;
        color: var(--main-color-dark);
    }

    .btn-search-action .icon-close {
        font-size: 16px;
    }

    .navbar-links-group {
        all: unset !important;
    }
    .navbar-logo-nlb-item {
        display: none !important
    }
    .main-navbar-logo {
        display: block !important;
    }

    /*.search-container {*/
    /*  position: fixed;*/
    /*  top: 0;*/
    /*  height: 74px;*/
    /*  width: 100%;*/
    /*  left: 0;*/
    /*  background: #efefef;*/
    /*  z-index: 40;*/
    /*  padding: 7px 15px;*/
    /*  border-radius: 0;*/
    /*  border: none;*/
    /*  transform: none;*/
    /*  text-align: center;*/
    /*  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);*/
    /*}*/
    /*.search-backdrop {*/
    /*  position: fixed;*/
    /*  top: 0;*/
    /*  left: 0;*/
    /*  width: 100%;*/
    /*  height: 100%;*/
    /*  background: rgba(0, 0, 0, 0.7);*/
    /*  !*z-index: 20;*!*/
    /*  display: block !important;*/
    /*  visibility: hidden;*/
    /*  opacity: 0;*/
    /*  transition: visibility 0s linear 300ms, opacity 300ms;*/
    /*}*/
    /*.search-backdrop.active {*/
    /*  visibility: visible;*/
    /*  opacity: 1;*/
    /*  transition: visibility 0s linear 0s, opacity 300ms;*/
    /*}*/
    /*.search-input {*/
    /*  width: 100%;*/
    /*  max-width: 510px;*/
    /*  margin: auto;*/
    /*  background: none;*/
    /*  padding: 0;*/
    /*  font-size: 17px;*/
    /*  border-radius: 0;*/
    /*  border: none;*/
    /*  padding: 0;*/
    /*}*/
    /*.btn-close-search-res {*/
    /*  color: var(--main-color);*/
    /*}*/
    /*.btn-close-search-res:hover {*/
    /*  color: var(--main-color-dark) !important;*/
    /*}*/
    /*.search-res-action-btn {*/
    /*  display: flex !important;*/
    /*  align-items: center;*/
    /*  justify-content: center;*/
    /*  margin-left: 5px;*/
    /*  margin-right: 5px;*/
    /*  padding: 10px 5px;*/
    /*}*/
    /*.search-res-action-btn .icon-search {*/
    /*  font-size: 21px;*/
    /*}*/
    /*.btn-close-search-res:hover {*/
    /*  color: #888;*/
    /*}*/
    .nav-dropdown-list {
        display: none !important;
        width: 100%;
        /*    height: calc(100vh - 56.4px);*/
        z-index: 500;
        top: 56.4px;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .nlb-item.active .nav-dropdown-list {
        transform: translate(0, 0);
        top: 56.4px;
        left: 0;
    }

    .ndb-column {
        border: none !important;
    }

    .nav-dropdown-block {
        display: block;
    }

    .hidden-large {
        display: block;
    }

    .category-list {
        /* visibility: hidden; */
        /* opacity: 0; */
        /* transition: visibility 0s ease-in-out 300ms, opacity 300ms; */
        display: none;
        padding: 8px 26px 0;
    }

    .category-row-title.active + .category-list {
        /* visibility: visible; */
        /* opacity: 1; */
        /* transition: visibility 0s ease-in-out 0s, opacity 300ms; */
        display: block;
    }

    .category-row-title {
        padding: 17px 18px;
        border-bottom: 1px solid #efefef;
    }

    .ndb-link {
        display: inline-flex;
        width: auto;
        margin-bottom: 7px;
    }

    .category-row {
        padding: 0;
        background: #fbfbfb;
    }

    .category-row-border {
        border: none;
    }

    .category-row-title .icon {
        font-size: 23px;
        width: 35px;
        text-align: center;
    }

    .large-category-row:hover .icon-arrow-rotate {
        transform: none;
    }

    .category-row-title.active .icon-arrow-rotate {
        transform: rotateZ(180deg);
    }

    .large-category-row {
        padding: 0;
    }

    .large-category-list {
        position: unset;
    }

    .btn-dropdown-back {
        display: flex;
        align-items: center;
    }

    .btn-dropdown-back .bdb-text {
        font-size: 17px;
        font-weight: 600;
        margin: 0 5px;
    }

    .btn-dropdown-back .icon {
        font-size: 14px;
        font-weight: 500;
    }

    .large-category-row:hover .large-category-list {
        pointer-events: none;
        display: none !important;
    }

    .category-row-title.active + .large-category-list {
        display: block !important;
    }

    .nav-action-btn {
        margin-inline-start: 7px;
    }

    .btn-toggle-lang {
        font-size: 18px;
    }

    .btn-call .icon {
        font-size: 14px !important;
    }

    .btn-call-text {
        font-size: 22px;
    }

    .btn-toggle-lang .icon {
        display: none !important;
    }

    .nav-action-btn .icon {
        color: var(--main-color) !important;
        font-size: 24px !important;
    }

    .main-search-dropdown {
        width: calc(100vw - 30px);
    }

    .search-item-url {
        padding: 11px 15px;
        font-size: 16px;
    }

    .search-dropdown-content {
        max-height: 329.2px;
    }

    /* Navbar */
    /* Home */
    .shb-details-card {
        bottom: 60px;
        width: 400px;
        padding: 24px 24px;
    }

    .shb-action .btn {
        font-size: 15px;
    }

    .shb-action .btn .icon {
        font-size: 14px;
    }

    .shb-sub-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .shb-title {
        font-size: 25px;
        line-height: 1;
        margin-bottom: 7px;
    }

    .shb-action {
        line-height: 1;
    }

    .swiper-pagination {
        display: none;
    }

    .shb-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hsd-container {
        padding: 30px 0 45px;
    }

    .hsd-container .title {
        font-size: 19px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hsd-container .title br {
        content: "";
    }

    .hsd-container .text {
        font-size: 14px;
    }

    .hsd-container .text br {
        content: "";
    }

    .hsd-action {
        margin-top: 20px !important;
    }

    .services-widget-block {
        border-radius: 18px;
        padding: 14px 20px 20px 20px;
    }

    .services-banner-view {
        display: none;
    }

    .services-banner-view-small {
        display: block;
    }

    .services-banner-action {
        position: absolute;
        left: 27px;
        bottom: 27px;
    }

    .swb-sub-title {
        font-size: 19px;
        line-height: 1;
        margin-bottom: 25px !important;
    }

    .swb-bg-title {
        font-size: 45px;
        line-height: 0.9;
        margin-bottom: 7px !important;
    }

    .swb-text {
        font-size: 18px;
        font-weight: 600;
        width: 88%;
        margin-bottom: 110px !important;
        line-height: 1.1;
    }

    .swb-text br {
        content: "";
    }

    .slider-card-heading {
        padding-block: 20px 20px;
        line-height: 1;
    }

    .slider-card-heading .text {
        font-size: 20px;
        line-height: 1;
    }

    .slider-card-heading .title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .opb-details {
        padding: 25px;
    }

    .opb-details > div {
        width: 100%;
    }

    .opb-details .title {
        padding-bottom: 40px;
        font-size: 28px;
    }

    /* Home */
    /* Footer */
    .footer-content {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .footer-logo img {
        width: 110px !important;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .footer-grid {
        display: block;
    }

    .foot-link {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
        color: #888;
    }

    .footer-links {
        margin-bottom: 25px !important;
        margin-top: 25px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-link-item {
        font-size: 17px;
        margin-inline-end: 16px;
    }

    .foot-form-text {
        margin-bottom: 9px !important;
    }

    .foot-form-text .text {
        font-size: 14px;
    }

    .foot-form-text .title {
        font-size: 16px;
        margin-top: 2px;
        padding-top: 2px;
        margin-inline: 0;
    }

    .form-newsletter {
        margin-block: 15px;
    }

    .fb-text *,
    .fb-text {
        font-weight: 500;
        font-size: 14px !important;
        padding: 8px 0;
        line-height: 1.3;
    }

    .fb-text:nth-of-type(2) {
        order: 3;
        width: 100%;
        text-align: center;
        border-top: 1px solid var(--border-color);
    }

    .fb-text:last-of-type {
        order: 2;
    }

    .foot-socialmedia {
        padding: 9px 0;
        order: 2;
    }

    .input-newsletter input {
        padding: 7px 13px;
    }

    .input-newsletter .btn {
        font-size: 14px;
        padding: 3px 15px;
    }

    .social-icons {
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .social-link {
        font-size: 16px;
        display: flex;
    }

    .social-text {
        font-weight: 600;
        font-size: 14px;
    }

    /* .footer-links .footer-links-title {
      display: none;
    } */
    /* .foot-logo-column {
      width: 120px;
      display: inline-block;
    } */
    .foot-links-column {
        width: 49%;
        display: inline-flex;
    }

    .footer-links-title {
        margin-bottom: 7px;
        line-height: 1;
        font-weight: 600;
    }

    .foot-links-address {
        display: none;
    }

    .foot-form {
        margin-top: 6px !important;
        border-top: 1px solid var(--border-color);
        padding-top: 8px;
    }

    .footer-bottom {
        border-top-width: 1px;
    }

    .footer-logo .text {
        font-size: 16px;
    }

    /* Footer */

    /* Collections */
    .collection-title {
        font-size: 17px;
        margin-bottom: 0 !important;
    }
    .collection-text {
        font-size: 15px;
    }
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .collection-card-title {
        margin-top: 3px;
        font-size: 15px;
    }
    .collection-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
    /* Collections */

    /* Banners */
    .slider-products-title {
        font-size: 19px;
    }
    .project-title {
        font-size: 19px;
        padding-top: 6px;
    }
    /* Banners */

    /* Categories */
    .categories-container {
        padding-block: 50px 30px;
    }
    /* Categories */
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Navbar */
    .navbar-links-content {
        width: 510px;
        left: 50%;
        transform: translateX(-50%);
    }

    /*  .nav-dropdown-list {
        top: 0;
      }*/
    /*  .nlb-item:hover .nav-dropdown-list {
        top: 0;
      }*/
    /* Navbar */
    /* Home */
    .shb-slide-bg {
        min-height: 550px;
        height: calc(100vh - 161px) !important;
    }

    /* Home */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .form-control {
        color: #000;
        font-weight: 600;
    }

    .form-control::placeholder,
    .form-control {
        font-size: 15px;
    }

    .page-title {
        bottom: 100px;
    }

    .page-title .title {
        font-size: 37px;
    }

    .button-default {
        font-size: 19px;
        padding: 5px 0;
    }

    .button-default .icon {
        font-size: 19px;
    }

    .btn-bg {
        padding: 13px 39px;
        font-size: 19px;
    }

    .wrapper-container {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .btn-pry {
        padding: 13px 35px !important;
        font-size: 16px;
    }

    .btn-normal {
        font-size: 15px;
    }

    .btn-gradient-white {
        padding: 13px 14px;
        font-size: 15px;
    }

    .btn-gradient-white .icon {
        font-size: 18px;
    }

    /* Navbar */
    .navabr-container {
        padding: 17px 0;
        height: 60px;
    }

    .navbar-logo img {
        transform: none;
        margin-left: 0;
        width: 80px !important;
    }

    .navbar-links-box .nlb-item,
    .nlb-item-child {
        font-size: 15px;
        font-weight: 600;
    }

    .navbar-links-box .nlb-item {
        margin: 0 5px 0;
    }

    .nlb-item-child .icon {
        font-size: 11px;
        top: 0;
    }

    .navbar-lang {
        margin-left: 10px;
    }

    .nav-lang-img,
    .dm-lang-img {
        height: 10px;
    }

    .lang-text {
        font-size: 13px;
    }

    .navbar-lang .btn .icon {
        font-size: 11px;
    }

    .btn-search-action {
        height: 23px;
        width: 23px;
        font-size: 15px;
        margin-inline-start: 10px;
    }

    .btn-call {
        font-size: 18px;
    }

    .btn-call .icon {
        font-size: 14px !important;
    }

    .navbar-lang .dropdown-item {
        padding: 5px 5px;
    }

    .navbar-lang .dropdown-menu a span {
        font-size: 10px;
    }

    .nav-dropdown-list {
        width: 100%;
        max-width: 100%;
    }

    .nav-dropdown-list {
        top: 40px;
        max-height: calc(100vh - 58.1px);
    }

    .category-row {
        padding: 15px 15px;
    }

    .category-row-title .icon {
        font-size: 18px;
    }

    .category-row-title {
        font-size: 14px;
    }

    .ndb-link {
        font-size: 14px;
        font-weight: 600;
    }

    .large-category-row {
        padding: 15px 15px;
    }

    /* Navbar */
    .header-slider-title {
        font-size: 30px;
        padding-block: 25px 17px;
    }

    .shb-slide-bg {
        min-height: 400px;
        height: calc(100vh - 160px) !important;
    }

    .shb-details-card {
        padding: 24px 30px;
        width: 470px;
        bottom: 60px;
    }

    .shb-sub-title {
        font-size: 15px;
        margin-bottom: 0;
    }

    .shb-title {
        font-size: 30px;
        margin-bottom: 6px;
        line-height: 1;
    }

    .shb-description {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hsd-container {
        padding: 60px 0;
    }

    .hsd-container .title {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .hsd-container .text {
        font-size: 17px;
    }

    .hsd-container .text br {
        content: "";
    }

    .swb-bg-title {
        font-size: 46px;
    }

    .services-widget-block {
        padding-left: 35px;
        padding-right: 35px;
    }

    .swb-text {
        font-size: 24px;
    }

    .opb-details > div {
        width: 60%;
    }

    .opb-details {
        padding: 30px;
    }

    .opb-details .title {
        padding-bottom: 40px;
    }

    .slider-card-heading {
        padding-block: 20px 40px;
    }

    .slider-card-heading .title {
        font-size: 25px;
    }

    .slider-card-heading .text {
        font-size: 27px;
    }

    .sp-slide img {
        aspect-ratio: 2;
    }

    .sp-slider-title {
        padding: 25px 20px;
        font-size: 29px;
    }

    /* Clients */
    .customers {
        padding-top: 60px;
    }

    .customers .title {
        font-size: 33px;
    }

    .customers .text {
        font-size: 17px;
    }

    .customers .text br {
        content: ""
    }

    .customers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 15px;
    }

    .tab-view-img img {
        width: auto;
    }

    .tab-view-img {
        width: 180px;
    }

    .tab-view-details {
        width: calc(100% - 180px);
        padding: 20px;
    }

    .tab-view-details .text {
        font-size: 17px;
    }

    /* Home */
    /* Download File Widget */
    .download-file .title {
        font-size: 22px;
        margin-bottom: 11px;
    }

    /* .download-file {
      padding: 30px 0;
    } */
    .download-file-flexable {
        display: block !important;
    }

    /* Download File Widget */

    /*  Collections */
    .collection-grid-3 {
        gap: 10px;
    }
    .collection-card-title {
        margin-top: 7px;
        font-size: 15px;
    }
    .collection-grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .collection-title {
        font-size: 18px;
    }
    .collection-text {
        font-size: 16px;
    }
    .collection-container {
        padding-block: 30px;
    }
    .collection-header {
        padding-bottom: 10px;
    }
    /*  Collections */
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    /* Footer */
    .footer-grid {
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .foot-links-column:nth-child(1) {
        grid-column: 3/3;
    }

    .foot-links-address {
        grid-column: 1/3;
    }

    .footer-logo img {
        margin-top: 0;
        width: 120px !important;
    }

    .footer-content {
        padding-bottom: 30px;
        padding-top: 25px;
    }

    .foot-left {
        margin-bottom: 20px;
    }

    .footer-links {
        margin-bottom: 20px !important;
    }

    .foot-form-text {
        margin-bottom: 0.5rem !important;
    }

    .foot-right {
        margin-top: 23px;
    }

    .foot-link {
        font-size: 18px;
    }

    .footer-logo .text {
        margin-top: 13px !important;
    }

    .foot-logo-column {
        margin-bottom: 25px;
    }

    .foot-form {
        margin-top: 20px !important;
    }

    /* Footer */
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .page-title {
        bottom: 100px;
    }

    .page-title .title {
        font-size: 47px;
    }

    .button-default {
        font-size: 19px;
    }

    .button-default .icon {
        font-size: 20px;
    }

    .btn-pry {
        padding: 10px 36px;
        font-size: 17px;
        font-weight: 600;
    }

    /* Download File Widget */
    .download-file .title {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .download-file-flexable {
        display: block !important;
    }

    /* Download File Widget */
    /* Navbar */
    .navbar-links-box .nlb-item {
        margin: 0 8px 0;
    }

    .nlb-item-child {
        font-size: 18px;
    }

    .nav-dropdown-list {
        max-width: 100%;
    }

    .category-row {
        padding: 15px 17px;
    }

    .category-row-title .icon {
        font-size: 21px;
    }

    .category-row-title {
        font-size: 15px;
    }

    .ndb-link {
        font-size: 14px;
    }

    .large-category-row {
        padding: 16px 15px;
    }

    /* Navbar */
    /* Home */
    .shb-slide-bg {
        min-height: 540px;
        height: calc(100vh - 66.2px);
    }

    .shb-details-card {
        padding: 24px 27px;
        width: 470px;
        bottom: 60px;
    }

    .shb-sub-title {
        font-size: 15px;
        line-height: 1;
    }

    .shb-title {
        font-size: 33px;
    }

    .shb-description {
        font-size: 15px;
    }

    .hsd-container {
        padding-top: 65px;
    }

    .hsd-container .title {
        font-size: 25px;
    }

    .services-widget-block {
        padding: 25px 35px 35px;
    }

    .swb-bg-title {
        font-size: 50px;
    }

    .swb-text {
        font-size: 25px;
    }

    .opb-details > div {
        width: 50%;
    }

    /* Clients */
    .customers {
        padding-top: 55px;
    }

    .customers-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px
    }

    /* Home */

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Navbar */
    .nav-dropdown-list {
        width: 1140px;
    }

    .category-row {
        padding: 15px 18px;
    }

    .category-row-title .icon {
        font-size: 23px;
    }

    .category-row-title {
        font-size: 15px;
    }

    .ndb-link {
        font-size: 15px;
    }

    /* Navbar */
    /* Footer */
    .social-link {
        font-size: 18px;
        margin-left: 5px;
    }

    .social-text {
        font-size: 15px;
    }

    /* Footer */
}

@media (min-width: 1400px) {
    .container {
        /*max-width: 1250px;*/
        max-width: 100%;
        padding-inline: 20px;
    }
}
