:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient( 180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) );
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #ffffff;
    /* --bs-body-bg: #141415; */
    --bs-body-bg: #0c0c0c;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

@media only screen and (max-width: 768px) {
    html,
    body {
        overflow-y: auto !important;
    }
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

mark {
    padding: 0.1875em;
    background-color: var(--bs-highlight-bg);
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

    a:hover {
        color: var(--bs-link-hover-color);
    }

    a:not([href]):not([class]),
    a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none;
    }

pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal;
    }

code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
    }

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

    button:focus:not(:focus-visible) {
        outline: 0;
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

    select:disabled {
        opacity: 1;
    }

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not( [type="week"] ):not([type="time"])::-webkit-calendar-picker-indicator {
    display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

    button:not(:disabled),
    [type="button"]:not(:disabled),
    [type="reset"]:not(:disabled),
    [type="submit"]:not(:disabled) {
        cursor: pointer;
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend + * {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

@font-face {
    font-family: "BebasNeue";
    font-size: normal;
    font-weight: 700;
    src: url("../fonts/BebasNeue.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/eot/IRANSansWeb_Black.eot");
    src: url("../fonts/eot/IRANSansWeb_Black.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb_Black.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb_Black.woff") format("woff"), url("../fonts/ttf/IRANSansWeb_Black.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/eot/IRANSansWeb_Bold.eot");
    src: url("../fonts/eot/IRANSansWeb_Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb_Bold.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb_Bold.woff") format("woff"), url("../fonts/ttf/IRANSansWeb_Bold.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/eot/IRANSansWeb_Medium.eot");
    src: url("../fonts/eot/IRANSansWeb_Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb_Medium.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb_Medium.woff") format("woff"), url("../fonts/ttf/IRANSansWeb_Medium.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/eot/IRANSansWeb_Light.eot");
    src: url("../fonts/eot/IRANSansWeb_Light.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb_Light.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb_Light.woff") format("woff"), url("../fonts/ttf/IRANSansWeb_Light.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/eot/IRANSansWeb_UltraLight.eot");
    src: url("../fonts/eot/IRANSansWeb_UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb_UltraLight.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb_UltraLight.woff") format("woff"), url("../fonts/ttf/IRANSansWeb_UltraLight.ttf") format("truetype");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/eot/IRANSansWeb.eot");
    src: url("../fonts/eot/IRANSansWeb.eot?#iefix") format("embedded-opentype"), url("../fonts/woff2/IRANSansWeb.woff2") format("woff2"), url("../fonts/woff/IRANSansWeb.woff") format("woff"), url("../fonts/ttf/IRANSansWeb.ttf") format("truetype");
}
/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

    .c-scrollbar:hover {
        transform: scaleX(1.45);
    }

    .c-scrollbar:hover,
    .has-scroll-scrolling .c-scrollbar,
    .has-scroll-dragging .c-scrollbar {
        opacity: 1;
    }

[data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1);
}

    [data-scroll-direction="horizontal"] .c-scrollbar:hover {
        transform: scaleY(1.3);
    }

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: black;
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0;
}

/* FONT_END */
:root {
    --swiper-theme-color: #007aff;
    /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.sliderMe .swiper,
swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
    display: block;
}

.sliderMe .swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.sliderMe .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var( --swiper-wrapper-transition-timing-function, initial );
    box-sizing: content-box;
}

.sliderMe .swiper-android .swiper-slide,
.sliderMe .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.sliderMe .swiper-horizontal {
    touch-action: pan-y;
}

.sliderMe .swiper-vertical {
    touch-action: pan-x;
}

.sliderMe .swiper-slide,
swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.sliderMe .swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.sliderMe .swiper-autoheight,
.sliderMe .swiper-autoheight .swiper-slide {
    height: auto;
}

    .sliderMe .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform, height;
    }

.sliderMe .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 3D Effects */
.sliderMe .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.sliderMe .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.sliderMe .swiper-3d {
    perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient( to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient( to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient( to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
}

/* CSS Mode */
.sliderMe .swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

    .sliderMe .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none;
    }

    .sliderMe .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start;
    }

.sliderMe .swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.sliderMe .swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.sliderMe .swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size: 44px;
    /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.sliderMe .swiper-button-prev,
.sliderMe .swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

    .sliderMe .swiper-button-prev.swiper-button-disabled,
    .sliderMe .swiper-button-next.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none;
    }

    .sliderMe .swiper-button-prev.swiper-button-hidden,
    .sliderMe .swiper-button-next.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none;
    }

.sliderMe .swiper-navigation-disabled .swiper-button-prev,
.sliderMe .swiper-navigation-disabled .swiper-button-next {
    display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.sliderMe .swiper-button-prev:after,
.sliderMe .swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.sliderMe .swiper-button-next,
.sliderMe .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

    .sliderMe .swiper-button-next:after,
    .sliderMe .swiper-rtl .swiper-button-prev:after {
        content: "next";
    }

.swiper-button-lock {
    display: none;
}

.sliderMe .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

    .sliderMe .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }

    .sliderMe .swiper-pagination-disabled > .swiper-pagination,
    .sliderMe .swiper-pagination.swiper-pagination-disabled {
        display: none !important;
    }

/* Common Styles */
.sliderMe .swiper-pagination-fraction,
.sliderMe .swiper-pagination-custom,
.sliderMe .swiper-horizontal > .swiper-pagination-bullets,
.sliderMe .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

/* Bullets */
.sliderMe .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

    .sliderMe .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(0.33);
        position: relative;
    }

    .sliderMe .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        transform: scale(1);
    }

    .sliderMe
    .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet-active-main {
        transform: scale(1);
    }

    .sliderMe
    .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet-active-prev {
        transform: scale(0.66);
    }

    .sliderMe
    .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet-active-prev-prev {
        transform: scale(0.33);
    }

    .sliderMe
    .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet-active-next {
        transform: scale(0.66);
    }

    .sliderMe
    .swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet-active-next-next {
        transform: scale(0.33);
    }

.sliderMe .swiper-pagination-bullet {
    width: var( --swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px) );
    height: var( --swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px) );
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.sliderMe button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.sliderMe .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.sliderMe .swiper-pagination-bullet:only-child {
    display: none !important;
}

.sliderMe .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.sliderMe .swiper-vertical > .swiper-pagination-bullets,
.sliderMe .swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets
.swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

    .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet,
    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
        display: inline-block;
        transition: 200ms transform, 200ms top;
    }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
.swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
    .swiper-pagination-bullet {
        transition: 200ms transform, 200ms left;
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl)
.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
    background: var( --swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25) );
    position: absolute;
    /*ADD_HOST*/
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color, var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top;
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}

    .swiper-vertical > .swiper-pagination-progressbar,
    .swiper-pagination-progressbar.swiper-pagination-vertical,
    .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
    .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
        width: var(--swiper-pagination-progressbar-size, 4px);
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    -ms-touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

    .swiper-scrollbar-disabled > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important;
    }

    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: var(--swiper-scrollbar-sides-offset, 1%);
        bottom: var(--swiper-scrollbar-bottom, 4px);
        top: var(--swiper-scrollbar-top, auto);
        z-index: 50;
        height: var(--swiper-scrollbar-size, 4px);
        width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
    }

    .swiper-vertical > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-vertical {
        position: absolute;
        left: var(--swiper-scrollbar-left, auto);
        right: var(--swiper-scrollbar-right, 4px);
        top: var(--swiper-scrollbar-sides-offset, 1%);
        z-index: 50;
        width: var(--swiper-scrollbar-size, 4px);
        height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .swiper-zoom-container > img,
    .swiper-zoom-container > svg,
    .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-cube {
    overflow: visible;
}

    .swiper-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

        .swiper-cube .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-cube.swiper-rtl .swiper-slide {
        transform-origin: 100% 0;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-cube .swiper-slide-active,
    .swiper-cube .swiper-slide-next,
    .swiper-cube .swiper-slide-prev,
    .swiper-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-cube .swiper-slide-shadow-top,
    .swiper-cube .swiper-slide-shadow-bottom,
    .swiper-cube .swiper-slide-shadow-left,
    .swiper-cube .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .swiper-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        z-index: 0;
    }

        .swiper-cube .swiper-cube-shadow:before {
            content: "";
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            filter: blur(50px);
        }

.swiper-flip {
    overflow: visible;
}

    .swiper-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
    }

        .swiper-flip .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-flip .swiper-slide-active,
    .swiper-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-flip .swiper-slide-shadow-top,
    .swiper-flip .swiper-slide-shadow-bottom,
    .swiper-flip .swiper-slide-shadow-left,
    .swiper-flip .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}

.swiper-cards {
    overflow: visible;
}

    .swiper-cards .swiper-slide {
        transform-origin: center bottom;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden;
    }

.container {
    padding-right: 80px;
    padding-left: 80px;
}

@media screen and (max-width: 1200px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.container-fluid {
    padding-right: 40px;
    padding-left: 40px;
}

@media screen and (max-width: 1200px) {
    .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.sliderMe .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

    .sliderMe .row > * {
        padding-right: 15px;
        padding-left: 15px;
    }

body {
    direction: rtl;
    text-align: right;
    font-family: "IRANSans";
    background-color: #0c0c0c;
    color: #ffffff;
    overflow: overlay;
}

    body::-webkit-scrollbar {
        width: 7px;
        background-color: rgba(0, 0, 0, 0);
    }

    body::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0);
    }

    body::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0.5;
        width: 7px;
        border-radius: 10px;
    }

a,
button,
input,
select,
textarea {
    text-decoration: unset;
    box-shadow: unset;
    outline: unset;
}

    a:hover,
    a:focus,
    a:active,
    a:focus:active,
    a:active:focus,
    button:hover,
    button:focus,
    button:active,
    button:focus:active,
    button:active:focus,
    input:hover,
    input:focus,
    input:active,
    input:focus:active,
    input:active:focus,
    select:hover,
    select:focus,
    select:active,
    select:focus:active,
    select:active:focus,
    textarea:hover,
    textarea:focus,
    textarea:active,
    textarea:focus:active,
    textarea:active:focus {
        text-decoration: unset;
        box-shadow: unset;
        outline: unset;
    }

.mouseCircle {
    width: 64px;
    height: 64px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-32px, -96px);
    display: none;
    z-index: 5;
    user-select: none;
    pointer-events: none;
}

    .mouseCircle.active {
        display: block;
    }

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    z-index: 10;
}

    header .mainHeader {
        padding-top: 15px;
        padding-bottom: 15px;
        transition: all 600ms;
    }

        header .mainHeader .row {
            align-items: center;
            justify-content: space-between;
        }

        header .mainHeader .col-menu nav .menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 25px;
        }

@media screen and (max-width: 900px) {
    header .mainHeader .col-menu nav .menu {
        gap: 15px;
    }
}

header .mainHeader .col-menu nav .menu li .openMenu {
    display: block;
    background-color: transparent;
    border: unset;
    padding: 0;
    width: 26px;
    height: 9px;
    position: relative;
}

    header .mainHeader .col-menu nav .menu li .openMenu::before,
    header .mainHeader .col-menu nav .menu li .openMenu::after {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background-color: #000;
        position: absolute;
        right: 0;
        transition: all 600ms;
    }

    header .mainHeader .col-menu nav .menu li .openMenu::before {
        top: 0;
    }

    header .mainHeader .col-menu nav .menu li .openMenu::after {
        bottom: 0;
    }

header .mainHeader .col-menu nav .menu li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    transition: all 600ms;
}

@media screen and (max-width: 820px) {
    header .mainHeader .col-menu nav .menu li {
        display: none;
    }

        header .mainHeader .col-menu nav .menu li:nth-child(1) {
            display: block;
        }
}

header .mainHeader .col-menu nav .menu li.hover a {
    opacity: 0.4;
}

header .mainHeader .col-logo .logo {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
}

    header .mainHeader .col-logo .logo img {
        transition: opacity 600ms;
    }

@media screen and (max-width: 576px) {
    header .mainHeader .col-logo .logo img {
        height: 45px;
    }
}

header .mainHeader .col-logo .logo img.light {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header .mainMenu {
    position: fixed;
    top: -100vh;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

    header .mainMenu .bgs {
        display: flex;
    }

        header .mainMenu .bgs > div {
            flex: 0 0 20vw;
            max-width: 20vw;
            background-color: #000;
            height: 100vh;
            transform: translateY(100%);
            transition-property: all;
            transition-duration: 1000ms;
        }

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div {
        flex: 0 0 25vw;
        max-width: 25vw;
    }
}

@media screen and (max-width: 576px) {
    header .mainMenu .bgs > div {
        flex: 0 0 100vw;
        max-width: 100vw;
        display: none;
    }
}

header .mainMenu .bgs > div:nth-child(5) {
    transition-delay: 200ms;
}

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div:nth-child(5) {
        display: none;
    }
}

header .mainMenu .bgs > div:nth-child(4) {
    transition-delay: 400ms;
}

header .mainMenu .bgs > div:nth-child(3) {
    transition-delay: 600ms;
    position: relative;
    z-index: 1;
}

header .mainMenu .bgs > div:nth-child(2) {
    transition-delay: 800ms;
}

header .mainMenu .bgs > div:nth-child(1) {
    transition-delay: 1000ms;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    header .mainMenu .bgs > div:nth-child(1) {
        display: block;
        z-index: 0;
        transition-delay: 200ms;
    }
}

header .mainMenu .bgs > div:nth-child(1),
header .mainMenu .bgs > div:nth-child(2),
header .mainMenu .bgs > div:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

header .mainMenu .bgs > div:nth-child(3) {
    border-left: 1px solid #ffffff62;
}

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div:nth-child(3) {
        border-left-color: rgba(255, 255, 255, 0.25);
    }
}

header .mainMenu .closeMenu {
    display: block;
    background-color: transparent;
    border: unset;
    padding: 0;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 57px;
    height: 57px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    transition: all 700ms;
}

@media screen and (max-width: 576px) {
    header .mainMenu .closeMenu {
        top: 20px;
        right: 20px;
    }
}

header .mainMenu .closeMenu::before,
header .mainMenu .closeMenu::after {
    content: "";
    display: block;
    width: 21px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

header .mainMenu .closeMenu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

header .mainMenu .closeMenu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

header .mainMenu .logo {
    position: absolute;
    left: 40px;
    top: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all 700ms;
}

header .mainMenu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    right: calc(20vw + 25px);
    top: 50%;
    transform: translateY(-50%) translateX(20vw);
    visibility: hidden;
    opacity: 0;
    transition: all 1000ms;
}

@media screen and (max-width: 820px) {
    header .mainMenu .menu {
        right: calc(25vw + 25px);
    }
}

header .mainMenu .menu li {
    margin-bottom: 48px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .menu li {
        margin-bottom: 30px;
    }
}

header .mainMenu .menu li:last-child {
    margin-bottom: 0;
}

header .mainMenu .menu li a {
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

header .mainMenu .menu li:hover a {
    color: #ecc739;
    transition: all 500s;
}

header .mainMenu .info {
    position: absolute;
    right: calc(60vw + 25px);
    top: 50%;
    transform: translateY(-50%) translateX(20vw);
    visibility: hidden;
    opacity: 0;
    transition: all 700ms;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info {
        right: calc(75vw + 25px);
    }
}

@media screen and (max-width: 576px) {
    header .mainMenu .info {
        display: none;
    }
}

header .mainMenu .info h4 {
    width: 106px;
    font-size: 24px;
    line-height: 37px;
    color: #fff;
    margin-bottom: 25px;
}

    header .mainMenu .info h4 span {
        font-weight: 200;
    }

header .mainMenu .info .address {
    display: flex;
    width: calc(20vw - 20px);
    gap: 12px;
    margin-bottom: 25px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info .address {
        width: calc(25vw - 20px);
    }
}

header .mainMenu .info .address i {
    width: 24px;
    height: 24px;
    background-image: url("../img/icon-map.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

header .mainMenu .info .address span {
    font-size: 12px;
    font-weight: 200;
    line-height: 32px;
    color: #fff;
}

header .mainMenu .info .tel {
    display: flex;
    width: calc(20vw - 20px);
    gap: 12px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info .tel {
        width: calc(25vw - 20px);
    }
}

header .mainMenu .info .tel i {
    width: 24px;
    height: 24px;
    background-image: url("../img/icon-tel.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

header .mainMenu .info .tel a {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}

    header .mainMenu .info .tel a:hover {
        text-decoration: underline;
    }

header .mainMenu.opened {
    top: 0;
}

header .mainMenu.animated .closeMenu,
header .mainMenu.animated .logo,
header .mainMenu.animated .menu,
header .mainMenu.animated .info {
    visibility: visible;
    opacity: 1;
}

header .mainMenu.animated .menu,
header .mainMenu.animated .info {
    transform: translateY(-50%) translateX(0);
}

header .mainMenu.bgAnimated .bgs > div {
    transform: translateY(0);
}

    header .mainMenu.bgAnimated .bgs > div:nth-child(1) {
        transition-delay: 200ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(2) {
        transition-delay: 400ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(3) {
        transition-delay: 600ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(4) {
        transition-delay: 800ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(5) {
        transition-delay: 1000ms;
    }

header.light .mainHeader .col-menu nav .menu li .openMenu::before,
header.light .mainHeader .col-menu nav .menu li .openMenu::after {
    background-color: #fff;
}

header.light .mainHeader .col-menu nav .menu li a {
    color: #fff;
}

header.light .mainHeader .col-logo .logo img.light {
    opacity: 1;
}

header.light .mainHeader .col-logo .logo img.dark {
    opacity: 0;
}

header.fixed .mainHeader {
    backdrop-filter: blur(5px);
    background-color: rgba(51, 51, 51, 0.65);
    height: 74px;
    width: 100%;
}

    header.fixed .mainHeader .col-menu nav .menu li .openMenu::before,
    header.fixed .mainHeader .col-menu nav .menu li .openMenu::after {
        background-color: #000;
    }

    header.fixed .mainHeader .col-menu nav .menu li a {
        color: #000;
    }

    header.fixed .mainHeader .col-logo .logo img.light {
        opacity: 0;
    }

    header.fixed .mainHeader .col-logo .logo img.dark {
        opacity: 1;
    }

@media screen and (max-width: 576px) {
    footer.footer1 {
        padding-bottom: 40px;
    }
}

footer.footer1 .top {
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .top {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 576px) {
    footer.footer1 .top {
        padding-right: 20px;
        padding-left: 20px;
    }
}

footer.footer1 .top h4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 20px;
    opacity: 0.6;
}

footer.footer1 .top h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 40px;
}

    footer.footer1 .top h3 span {
        font-weight: 400;
        line-height: 37px;
    }

footer.footer1 .top p {
    width: 1070px;
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0.8;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .top p {
        width: 880px;
    }
}

@media screen and (max-width: 920px) {
    footer.footer1 .top p {
        width: 100%;
    }
}

footer.footer1 .top .more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    transition: all 600ms;
}

    footer.footer1 .top .more:hover {
        background-color: transparent;
        color: #fff;
    }

footer.footer1 .info {
    width: 1070px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .info {
        width: 920px;
    }
}

@media screen and (max-width: 920px) {
    footer.footer1 .info {
        width: auto;
        margin-right: 40px;
        margin-left: 40px;
    }
}

@media screen and (max-width: 576px) {
    footer.footer1 .info {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 300px) {
    footer.footer1 .info {
        flex-wrap: wrap-reverse;
        justify-content: center;
        gap: 40px;
    }
}

footer.footer1 .info .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

@media screen and (max-width: 576px) {
    footer.footer1 .info .social {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 10px;
        justify-content: center;
    }
}

footer.footer1 .info .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: border-color 600ms;
}

    footer.footer1 .info .social li a i {
        display: block;
        width: 12px;
        height: 12px;
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: center;
    }

        footer.footer1 .info .social li a i.telegram {
            background-image: url("../img/icon-telegram.png");
        }

        footer.footer1 .info .social li a i.instagram {
            background-image: url("../img/icon-instagram.png");
        }

        footer.footer1 .info .social li a i.whatsapp {
            background-image: url("../img/icon-whatsapp.png");
        }

        footer.footer1 .info .social li a i.linkedin {
            background-image: url("../img/icon-linkedin.png");
        }

        footer.footer1 .info .social li a i.mobile {
            background-image: url("../img/icon-tel.png");
        }

    footer.footer1 .info .social li a:hover {
        border-color: #fff;
    }

footer.footer1 .info .logo {
    height: 60px;
}

@media screen and (max-width: 768px) {
    footer.footer1 .info .logo {
        display: none;
    }
}

footer.footer2 {
    background-color: #1f1f1f;
    padding-top: 75px;
    padding-bottom: 15px;
    padding-right: 80px;
    padding-left: 80px;
}

@media screen and (max-width: 920px) {
    footer.footer2 {
        padding-top: 50px;
        padding-right: 40px;
        padding-left: 40px;
    }
}

footer.footer2 .top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .top {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

footer.footer2 .top img {
    height: 40px;
    opacity: 0.6;
}

    footer.footer2 .top img:nth-child(1) {
        opacity: 1;
    }

@media screen and (max-width: 920px) {
    footer.footer2 .top img:nth-child(1) {
        height: 60px;
    }
}

footer.footer2 .top .line {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 920px) {
    footer.footer2 .top .line {
        flex: 0 0 100%;
        max-width: 100%;
        opacity: 0;
        height: 0;
    }
}

footer.footer2 .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

footer.footer2 .info .links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info .links {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }
}

footer.footer2 .info .links li a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
    opacity: 0.5;
    transition: all 600ms;
}

footer.footer2 .info .links li.active a,
footer.footer2 .info .links li:hover a {
    opacity: 1;
}

footer.footer2 .info .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info .social {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }
}

footer.footer2 .info .social li a {
    display: inline-block;
}

    footer.footer2 .info .social li a i {
        display: block;
        width: 24px;
        height: 24px;
        background-color: #fff;
        border-radius: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 10px;
    }

        footer.footer2 .info .social li a i.telegram {
            background-image: url("../img/icon-telegram-black.png");
        }

        footer.footer2 .info .social li a i.instagram {
            background-image: url("../img/icon-instagram-black.png");
        }

        footer.footer2 .info .social li a i.whatsapp {
            background-image: url("../img/icon-whatsapp-black.png");
        }

        footer.footer2 .info .social li a i.linkedin {
            background-image: url("../img/icon-linkedin-black.png");
        }

footer .namasite {
    text-align: center;
}

    footer .namasite a {
        display: inline-block;
        font-size: 10px;
        font-weight: 400;
        color: #fff;
    }

        footer .namasite a img {
            margin-right: 10px;
        }

main.home {
    position: relative;
    z-index: 2;
}

    main.home .hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

.hero::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: #0a0a0abd;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width: 576px) {
    main.home .hero {
        height: 550px;
    }
}

main.home .hero .bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 576px) {
    main.home .hero .bg {
        height: 550px;
    }
}

main.home .hero .text {
    position: absolute;
    bottom: 2em;
    left: 46vw;
    /* right: 0; */
    text-align: center;
    margin: 0 auto;
    z-index: 88;
}

@media screen and (max-width: 576px) {
    main.home .hero .text {
        left: 15vw;
    }
}

main.home .hero .text h2 {
    width: 106px;
    text-align: left;
    font-family: "BebasNeue";
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    margin-bottom: 15px;
}

.divHero {
    position: absolute;
    top: 25vh;
    right: 0;
    z-index: 8;
    width: 100%;
    left: 0;
    text-align: center;
}

.titleHero {
    font-size: 9vw;
    color: #faffda;
    text-transform: uppercase;
    line-height: 165px;
    font-family: "BebasNeue";
    letter-spacing: 6px;
}

.textHero {
    color: #e3e3e3;
    font-size: 1rem;
    line-height: 26px;
    text-align: justify;
}

main.home .hero .text .line {
    display: block;
    width: 1px;
    height: 56px;
    overflow: hidden;
    /* margin-right: auto;
  left: 0;
  right: 0;
  position: relative; */
    margin: 0 auto;
}

    main.home .hero .text .line::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        animation: lineMove 3s ease-in-out 1s forwards infinite;
    }

@keyframes lineMove {
    0% {
        margin-top: -100px;
    }

    80% {
        margin-top: 0;
    }

    100% {
        margin-top: 100px;
    }
}

main.home .intro {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
    main.home .intro {
        padding-top: 40px;
    }
}

main.home .intro .row {
    margin-right: -20px;
    margin-left: -20px;
}

@media screen and (max-width: 1100px) {
    main.home .intro .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

main.home .intro .right,
main.home .intro .left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
}

@media screen and (max-width: 1100px) {
    main.home .intro .right,
    main.home .intro .left {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .right,
    main.home .intro .left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.home .intro .text h3 {
    width: 107px;
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    margin-bottom: 40px;
}

    main.home .intro .text h3 span {
        font-weight: 400;
    }

main.home .intro .text p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
    margin-bottom: 20px;
    width: 442px;
}

    main.home .intro .text p + p {
        margin-bottom: 40px;
    }

@media screen and (max-width: 820px) {
    main.home .intro .text p {
        width: auto;
    }
}

main.home .intro .text .links {
    display: flex;
    gap: 40px;
    width: 440px;
}

@media screen and (max-width: 820px) {
    main.home .intro .text .links {
        width: auto;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

main.home .intro .text .links a {
    display: flex;
    width: 201px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    transition: all 600ms;
}

    main.home .intro .text .links a:hover {
        background-color: #000;
        color: #fff;
    }

    main.home .intro .text .links a:first-child {
        background-color: #000;
        color: #fff;
    }

        main.home .intro .text .links a:first-child:hover {
            background-color: #fff;
            color: #000;
        }

main.home .intro .category {
    display: block;
    position: relative;
    margin-top: 160px;
    overflow: hidden;
}

@media screen and (max-width: 820px) {
    main.home .intro .category {
        margin-top: 60px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .category {
        margin-top: 40px;
    }
}

main.home .intro .category h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    main.home .intro .category h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 280px) {
    main.home .intro .category h3 {
        font-size: 14px;
    }
}

main.home .intro .category h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-top: 10px;
}

main.home .intro .category .brand {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    height: 65px;
}

main.home .intro .category .image {
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    transition: width 1000ms ease-in-out;
}

@media screen and (max-width: 820px) {
    main.home .intro .category .image {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .category .image {
        height: 400px;
    }
}

main.home .intro .category .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.home .intro .category:hover .image {
    width: 95%;
}

    main.home .intro .category:hover .image img {
        transform: scale(1.1);
    }

main.home .intro .info {
    margin-bottom: 0;
    height: 680px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 820px) {
    main.home .intro .info {
        height: 500px;
        margin-top: 80px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info {
        height: 400px;
        margin-top: 40px;
    }
}

main.home .intro .info .logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

main.home .intro .info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 50px;
    right: 0;
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

@media screen and (max-width: 820px) {
    main.home .intro .info ul {
        padding-right: 10px;
        padding-left: 10px;
        flex-wrap: wrap;
        bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info ul {
        bottom: 10px;
    }
}

main.home .intro .info ul li {
    text-align: center;
    opacity: 0.5;
    transition: all 600ms;
}

@media screen and (max-width: 820px) {
    main.home .intro .info ul li {
        flex: 0 0 50%;
        max-width: 50%;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info ul li {
        opacity: 1;
    }
}

main.home .intro .info ul li span {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 300;
}

main.home .intro .info ul li:hover {
    opacity: 1;
}

main.home .intro .info .image {
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    transition: width 1000ms ease-in-out;
}

    main.home .intro .info .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 1000ms ease-in-out;
    }

main.home .intro .info:hover .image {
    width: 95%;
}

    main.home .intro .info:hover .image img {
        transform: scale(1.1);
    }

main.home .intro .info + .category {
    margin-top: 0;
}

@media screen and (max-width: 820px) {
    main.home .intro .info + .category {
        margin-top: 40px;
    }
}

main.home .parket {
    /* height: 1200px; */
    margin-top: 9em;
    position: relative;
    padding-bottom: 1em;
}

    main.home .parket .bg {
        width: 100%;
        height: 800px;
        object-fit: cover;
    }

    main.home .parket > .box {
        position: absolute;
        left: 160px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 430px;
        padding: 48px;
        background-color: #1f1f1f;
        color: #fff;
    }

@media screen and (max-width: 820px) {
    main.home .parket > .box {
        width: auto;
        left: 10vw;
    }
}

@media screen and (max-width: 576px) {
    main.home .parket > .box {
        width: 100%;
        left: 0;
        top: unset;
        transform: unset;
        bottom: 0;
        padding: 20px;
    }
}

main.home .parket > .box h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

main.home .parket > .box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    width: 100%;
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    main.home .parket > .box p {
        width: 100%;
        margin-bottom: 20px;
    }
}

main.home .parket > .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 214px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.home .parket > .box a:hover {
        background-color: #fff;
        color: #000;
    }

main.home .parket .info {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 5;
}

    main.home .parket .info .cnt {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        main.home .parket .info .cnt .dot {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            cursor: pointer;
        }

            main.home .parket .info .cnt .dot span {
                display: block;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: rgba(255, 255, 255, 0.9);
                transition: all 500ms;
            }

@keyframes dotAnime {
    from {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

main.home .parket .info .cnt .dot::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main.home .parket .info .cnt .dot::before {
    animation: dotAnime 1500ms infinite;
}

main.home .parket .info .cnt .dot.active span {
    background-color: #fff;
}

main.home .parket .info .cnt .dot.active::before {
    animation: unset;
}

main.home .parket .info .cnt .box {
    position: absolute;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    transition: transform 1s, opacity 1s;
    z-index: 11;
}

@media screen and (max-width: 576px) {
    main.home .parket .info .cnt .box {
        width: 200px;
    }
}

main.home .parket .info .cnt .box .bdy {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    background-color: #fff;
}

@media screen and (max-width: 576px) {
    main.home .parket .info .cnt .box .bdy {
        padding: 15px;
    }
}

main.home .parket .info .cnt .box .bdy .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

    main.home .parket .info .cnt .box .bdy .close i {
        display: block;
        width: 5px;
        height: 5px;
        background-image: url("../img/close-icon.png");
        background-size: 5px;
        background-repeat: no-repeat;
        background-position: center;
    }

main.home .parket .info .cnt .box .bdy img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
}

main.home .parket .info .cnt .box .bdy h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

main.home .parket .info .cnt .box .bdy p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

main.home .parket .info .cnt .box .bdy a {
    font-size: 10px;
    font-weight: 400;
    color: #000;
}

    main.home .parket .info .cnt .box .bdy a:hover {
        color: #272727;
    }

main.home .parket .info .cnt .box .bdy .close,
main.home .parket .info .cnt .box .bdy img,
main.home .parket .info .cnt .box .bdy h5,
main.home .parket .info .cnt .box .bdy p,
main.home .parket .info .cnt .box .bdy a {
    opacity: 0;
    transition: opacity 1s 700ms;
}

main.home .parket .info .cnt .box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

    main.home .parket .info .cnt .box.active .close,
    main.home .parket .info .cnt .box.active img,
    main.home .parket .info .cnt .box.active h5,
    main.home .parket .info .cnt .box.active p,
    main.home .parket .info .cnt .box.active a {
        opacity: 1;
    }

main.home .parket .info.btm .cnt .box {
    top: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    transform-origin: center top;
}

main.home .parket .info.top .cnt .box {
    top: auto;
    left: auto;
    right: auto;
    bottom: 100%;
    transform-origin: center bottom;
}

main.home .products {
    display: flex;
}

.products .sliderMe {
    margin: 8em auto;
    margin-top: 2em;
}

@media screen and (max-width: 576px) {
    main.home .products {
        flex-wrap: wrap;
    }
}

main.home .products .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .products .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.home .products .col:last-child .single {
    border-left: unset;
}

@media screen and (max-width: 576px) {
    main.home .products .col:last-child .single {
        border-bottom: unset;
    }
}

main.home .products .single {
    display: block;
    padding: 80px;
    color: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    transition: all 800ms;
}

@media screen and (max-width: 1100px) {
    main.home .products .single {
        padding: 40px;
    }
}

@media screen and (max-width: 820px) {
    main.home .products .single {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .products .single {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .products .single {
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    }
}

main.home .products .single h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

main.home .products .single p {
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 90px;
}

@media screen and (max-width: 576px) {
    main.home .products .single p {
        margin-bottom: 40px;
    }
}

main.home .products .single span {
    display: inline-block;
    font-size: 10px;
    font-weight: 300;
    padding-bottom: 6px;
    border-bottom: 1px solid #000;
    transition: border-color 800ms;
}

main.home .products .single:hover {
    background-color: #000;
    color: #fff;
}

    main.home .products .single:hover span {
        border-bottom-color: #fff;
    }

main.home .shop {
    height: 600px;
    position: relative;
}

    main.home .shop .bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    main.home .shop .box {
        position: absolute;
        right: 160px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 430px;
        padding: 48px;
        background-color: #1f1f1f;
        color: #fff;
    }

@media screen and (max-width: 820px) {
    main.home .shop .box {
        width: auto;
        right: 10vw;
    }
}

@media screen and (max-width: 576px) {
    main.home .shop .box {
        width: 100%;
        right: 0;
        top: unset;
        transform: unset;
        bottom: 0;
        padding: 20px;
    }
}

main.home .shop .box h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

main.home .shop .box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    width: 201px;
    margin-bottom: 50px;
}

@media screen and (max-width: 576px) {
    main.home .shop .box p {
        width: 100%;
        margin-bottom: 20px;
    }
}

main.home .shop .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 201px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.home .shop .box a:hover {
        background-color: #fff;
        color: #000;
    }

main.home .news {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media screen and (max-width: 576px) {
    main.home .news {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

main.home .news .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

    main.home .news .title h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin: 0;
    }

    main.home .news .title a {
        font-size: 12px;
        font-weight: 300;
        color: #000;
        border-bottom: 1px solid #000;
    }

main.home .news .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .news .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.home .news .single {
    display: block;
    color: #000;
}

    main.home .news .single .image {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
        overflow: hidden;
    }

@media screen and (max-width: 576px) {
    main.home .news .single .image {
        height: 200px;
    }
}

main.home .news .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.home .news .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    height: 64px;
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    main.home .news .single h3 {
        height: 78px;
    }
}

@media screen and (max-width: 576px) {
    main.home .news .single h3 {
        height: 64px;
        margin-bottom: 10px;
    }
}

main.home .news .single p {
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 25px;
}

main.home .news .single .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    main.home .news .single .info span {
        font-size: 12px;
        font-weight: 300;
        line-height: 18px;
    }

        main.home .news .single .info span:first-child {
            padding-bottom: 3px;
            border-bottom: 1px solid #000;
        }

main.home .news .single:hover .image img {
    transform: scale(1.1);
}

main.home .projects {
    padding-bottom: 120px;
}

@media screen and (max-width: 576px) {
    main.home .projects {
        padding-bottom: 0px;
    }
}

main.home .projects .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

    main.home .projects .title h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin: 0;
    }

    main.home .projects .title a {
        font-size: 12px;
        font-weight: 300;
        color: #000;
        border-bottom: 1px solid #000;
    }

main.home .projects .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .projects .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.home .projects .col a {
    display: block;
}

    main.home .projects .col a .image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 1000ms ease-in-out;
    }

    main.home .projects .col a img {
        width: 100%;
        object-fit: cover;
        transition: all 1000ms ease-in-out;
    }

    main.home .projects .col a:nth-child(1) {
        margin-bottom: 40px;
    }

    main.home .projects .col a:hover .image {
        width: 95%;
    }

    main.home .projects .col a:hover img {
        transform: scale(1.1);
    }

main.home .projects .col:nth-child(1) a:nth-child(1),
main.home .projects .col:nth-child(3) a:nth-child(1) {
    height: 350px;
}

    main.home .projects .col:nth-child(1) a:nth-child(1) img,
    main.home .projects .col:nth-child(3) a:nth-child(1) img {
        height: 350px;
    }

main.home .projects .col:nth-child(1) a:nth-child(2),
main.home .projects .col:nth-child(3) a:nth-child(2) {
    height: 145px;
}

    main.home .projects .col:nth-child(1) a:nth-child(2) img,
    main.home .projects .col:nth-child(3) a:nth-child(2) img {
        height: 145px;
    }

main.home .projects .col:nth-child(2) a:nth-child(1) {
    height: 145px;
}

    main.home .projects .col:nth-child(2) a:nth-child(1) img {
        height: 145px;
    }

main.home .projects .col:nth-child(2) a:nth-child(2) {
    height: 350px;
}

    main.home .projects .col:nth-child(2) a:nth-child(2) img {
        height: 350px;
    }

main.productCat .title {
    padding-top: 145px;
    margin-bottom: 44px;
}

    main.productCat .title h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin: 0;
    }

main.productCat .category {
    padding-bottom: 120px;
}

@media screen and (max-width: 920px) {
    main.productCat .category:nth-child(2) .row {
        flex-wrap: wrap-reverse;
    }
}

main.productCat .category .row {
    align-items: center;
    justify-content: space-between;
}

main.productCat .category .text {
    padding-left: 80px;
}

@media screen and (max-width: 920px) {
    main.productCat .category .text {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 15px;
    }
}

@media screen and (max-width: 767px) {
    main.productCat .category .text {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productCat .category .text h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 32px;
}

main.productCat .category .text p {
    width: 401px;
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 56px;
}

@media screen and (max-width: 920px) {
    main.productCat .category .text p {
        width: 100%;
    }
}

main.productCat .category .text p strong {
    font-weight: 500;
}

main.productCat .category .text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-right: 22px;
    padding-left: 22px;
    height: 48px;
    border: 1px solid #000;
    color: #000;
    background-color: transparent;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.productCat .category .text a:hover {
        background-color: #000;
        color: #fff;
    }

main.productCat .category .image {
    flex: 0 0 50%;
    max-width: 50%;
    display: block;
    position: relative;
}

@media screen and (max-width: 920px) {
    main.productCat .category .image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.productCat .category .image h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    main.productCat .category .image h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 280px) {
    main.productCat .category .image h3 {
        font-size: 14px;
    }
}

main.productCat .category .image h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-top: 10px;
}

main.productCat .category .image .brand {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    height: 65px;
}

main.productCat .category .image .wrap {
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    transition: width 1000ms ease-in-out;
}

@media screen and (max-width: 820px) {
    main.productCat .category .image .wrap {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    main.productCat .category .image .wrap {
        height: 400px;
    }
}

main.productCat .category .image .wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.productCat .category .image:hover .wrap {
    width: 95%;
}

    main.productCat .category .image:hover .wrap img {
        transform: scale(1.1);
    }

main.productListParket {
    padding-top: 145px;
}

    main.productListParket .intro .container {
        padding-right: 20%;
    }

@media screen and (max-width: 820px) {
    main.productListParket .intro .container {
        padding-right: 15px;
    }
}

main.productListParket .intro h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    main.productListParket .intro h1 {
        font-size: 20px;
    }
}

main.productListParket .intro p {
    font-size: 13px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    main.productListParket .intro p {
        text-align: justify;
    }
}

main.productListParket .products {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 120px;
}

    main.productListParket .products .right {
        flex: 0 0 20%;
        max-width: 20%;
        position: sticky;
        top: 100px;
        padding-top: 40px;
    }

@media screen and (max-width: 820px) {
    main.productListParket .products .right {
        flex: 0 0 100%;
        max-width: 100%;
        z-index: 2;
        top: 75px;
        padding-top: 0;
    }
}

main.productListParket .products .right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 820px) {
    main.productListParket .products .right ul {
        background-color: #fff;
        display: flex;
        justify-content: center;
        gap: 50px;
    }
}

main.productListParket .products .right ul li {
    display: block;
    margin-bottom: 24px;
    opacity: 0.5;
    transition: opacity 400ms;
}

    main.productListParket .products .right ul li::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 60px;
        height: 1px;
        background-color: #000;
        margin-left: 15px;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 400ms;
    }

@media screen and (max-width: 820px) {
    main.productListParket .products .right ul li::before {
        display: none;
    }
}

main.productListParket .products .right ul li h2 {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
    margin: 0;
    transition: font-weight 400ms;
}

main.productListParket .products .right ul li:last-child {
    margin-bottom: 0;
}

main.productListParket .products .right ul li.active {
    opacity: 1;
}

    main.productListParket .products .right ul li.active::before {
        transform: scaleX(1);
    }

    main.productListParket .products .right ul li.active h2 {
        font-weight: 500;
    }

main.productListParket .products .left {
    flex: 0 0 80%;
    max-width: 80%;
}

@media screen and (max-width: 820px) {
    main.productListParket .products .left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productListParket .products .left .gallery {
    margin-bottom: 40px;
    padding-top: 40px;
}

@media screen and (max-width: 820px) {
    main.productListParket .products .left .gallery {
        padding-right: 30px;
    }
}

main.productListParket .products .left .gallery:first-child {
    padding-top: 0;
}

main.productListParket .products .left .gallery:last-child {
    margin-bottom: 0;
}

main.productListParket .products .left .gallery .swiper-slide {
    width: 300px;
}

@media screen and (max-width: 820px) {
    main.productListParket .products .left .gallery .swiper-slide {
        width: 250px;
    }
}

main.productListParket .products .left .gallery .swiper-slide:last-child {
    margin-left: 50px;
}

@media screen and (max-width: 820px) {
    main.productListParket .products .left .gallery .swiper-slide:last-child {
        margin-left: 30px;
    }
}

main.productListParket .products .left .gallery .swiper-scrollbar {
    background-color: rgba(0, 0, 0, 0.15);
}

    main.productListParket
    .products
    .left
    .gallery
    .swiper-scrollbar
    .swiper-scrollbar-drag {
        background-color: #000;
    }

main.productListParket .products .left .gallery .single {
    display: block;
    margin-bottom: 40px;
}

    main.productListParket .products .left .gallery .single .image {
        display: block;
        width: 300px;
        height: 400px;
        overflow: hidden;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 15px;
        transition: width 1000ms;
    }

@media screen and (max-width: 820px) {
    main.productListParket .products .left .gallery .single .image {
        width: 100%;
        height: 300px;
    }
}

main.productListParket .products .left .gallery .single .image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    transition: all 1000ms;
}

main.productListParket .products .left .gallery .single .text {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    main.productListParket .products .left .gallery .single .text h3 {
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
        margin: 0;
    }

    main.productListParket .products .left .gallery .single .text span {
        font-size: 14px;
        font-weight: 300;
    }

main.productListParket .products .left .gallery .single:hover .image {
    width: 280px;
}

    main.productListParket .products .left .gallery .single:hover .image img {
        transform: scale(1.1);
    }

main.productListParket .shop {
    height: 600px;
    position: relative;
}

    main.productListParket .shop .bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    main.productListParket .shop .box {
        position: absolute;
        right: 160px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 430px;
        padding: 48px;
        background-color: #1f1f1f;
        color: #fff;
    }

@media screen and (max-width: 820px) {
    main.productListParket .shop .box {
        width: auto;
        right: 10vw;
    }
}

@media screen and (max-width: 576px) {
    main.productListParket .shop .box {
        width: 100%;
        right: 0;
        top: unset;
        transform: unset;
        bottom: 0;
        padding: 20px;
    }
}

main.productListParket .shop .box h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

main.productListParket .shop .box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    width: 201px;
    margin-bottom: 50px;
}

@media screen and (max-width: 576px) {
    main.productListParket .shop .box p {
        width: 100%;
        margin-bottom: 20px;
    }
}

main.productListParket .shop .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 201px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.productListParket .shop .box a:hover {
        background-color: #fff;
        color: #000;
    }

main.productListParket .features {
    margin-top: 120px;
}

    main.productListParket .features h3 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 40px;
        text-align: center;
    }

    main.productListParket .features .slider .swiper-wrapper {
        padding-top: 40px;
        padding-bottom: 120px;
        align-items: center;
        min-height: 440px;
    }

    main.productListParket .features .slider .btns {
        position: absolute;
        bottom: 54px;
        right: 0;
        left: 0;
        text-align: center;
        z-index: 1;
    }

        main.productListParket .features .slider .btns .btn-right,
        main.productListParket .features .slider .btns .btn-left {
            display: inline-block;
            width: 32px;
            height: 32px;
            cursor: pointer;
            background-position: center;
            background-size: 30px;
            background-repeat: no-repeat;
        }

        main.productListParket .features .slider .btns .btn-right {
            background-image: url("../img/icon-right.png");
            margin-left: 30px;
        }

        main.productListParket .features .slider .btns .btn-left {
            background-image: url("../img/icon-left.png");
            margin-right: 30px;
        }

@media screen and (max-width: 820px) {
    main.productListParket .features .swiper-slide {
        padding-right: 20px;
        padding-left: 20px;
    }
}

main.productListParket .features .swiper-slide .single {
    position: relative;
    background-color: #fff;
    padding: 20px 40px;
    padding-bottom: 80px;
    box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.0646635), 0px 5.84887px 25.0666px rgba(0, 0, 0, 0.0928953), 0px 3.12708px 13.4018px rgba(0, 0, 0, 0.115), 0px 1.75302px 7.51293px rgba(0, 0, 0, 0.137105), 0px 0.931014px 3.99006px rgba(0, 0, 0, 0.165337), 0px 0.387416px 1.66035px rgba(0, 0, 0, 0.23);
    text-align: center;
    transition: all 700ms;
}

    main.productListParket .features .swiper-slide .single img {
        display: block;
        margin-right: auto;
        margin-left: auto;
        width: 80px;
        margin-bottom: 60px;
        transition: all 700ms;
    }

    main.productListParket .features .swiper-slide .single h4 {
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        margin-bottom: 10px;
    }

    main.productListParket .features .swiper-slide .single .text {
        text-align: left;
        height: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: all 600ms;
    }

        main.productListParket .features .swiper-slide .single .text p {
            text-align: right;
            font-size: 10px;
            font-weight: 300;
            line-height: 32px;
            color: #fff;
        }

        main.productListParket .features .swiper-slide .single .text a {
            display: inline-block;
            font-size: 10px;
            font-weight: 300;
            line-height: 32px;
            border-bottom: 1px solid #fff;
            color: #fff;
        }

    main.productListParket .features .swiper-slide .single .num {
        position: absolute;
        right: 0;
        left: 0;
    }

        main.productListParket .features .swiper-slide .single .num::before {
            content: "";
            display: block;
            width: 1px;
            height: 24px;
            background: #000;
            opacity: 0.5;
            margin-bottom: 8px;
            margin-right: auto;
            margin-left: auto;
        }

        main.productListParket .features .swiper-slide .single .num span {
            font-size: 14px;
            font-weight: 700;
            opacity: 0.5;
        }

main.productListParket .features .swiper-slide.swiper-slide-active .single {
    background-color: #1f1f1f;
    color: #fff;
    padding-bottom: 20px;
}

    main.productListParket .features .swiper-slide.swiper-slide-active .single img {
        width: 160px;
    }

    main.productListParket
    .features
    .swiper-slide.swiper-slide-active
    .single
    .text {
        height: auto;
        visibility: visible;
        transform: scaleY(1);
    }

    main.productListParket
    .features
    .swiper-slide.swiper-slide-active
    .single
    .num {
        transform: translateY(-4px);
    }

        main.productListParket
        .features
        .swiper-slide.swiper-slide-active
        .single
        .num::before {
            height: 48px;
            background: linear-gradient(#fff 50%, #000 50%);
        }

        main.productListParket
        .features
        .swiper-slide.swiper-slide-active
        .single
        .num
        span {
            color: #000;
        }

main.productListWallpaper .hero {
    position: relative;
    height: 800px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.productListWallpaper .hero {
        height: 600px;
    }
}

@media screen and (max-width: 768px) {
    main.productListWallpaper .hero {
        height: 500px;
    }
}

main.productListWallpaper .hero img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

@media screen and (max-width: 1100px) {
    main.productListWallpaper .hero img {
        height: 600px;
    }
}

@media screen and (max-width: 768px) {
    main.productListWallpaper .hero img {
        height: 500px;
    }
}

main.productListWallpaper .hero h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

main.productListWallpaper .list {
    margin-bottom: 120px;
}

    main.productListWallpaper .list .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    main.productListWallpaper .list .col {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 10px;
        padding-left: 10px;
    }

@media screen and (max-width: 767px) {
    main.productListWallpaper .list .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productListWallpaper .list .single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
}

    main.productListWallpaper .list .single .image {
        width: 100%;
        height: 620px;
        margin-bottom: 10px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 700ms;
    }

@media screen and (max-width: 920px) {
    main.productListWallpaper .list .single .image {
        height: 400px;
    }
}

main.productListWallpaper .list .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms;
}

main.productListWallpaper .list .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.productListWallpaper .list .single:hover .image {
    width: 90%;
}

    main.productListWallpaper .list .single:hover .image img {
        transform: scale(1.2);
    }

main.productShowWallpaper .hero {
    position: relative;
    height: 100vh;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .hero {
        height: 400px;
    }
}

main.productShowWallpaper .hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .hero img {
        height: 400px;
    }
}

main.productShowWallpaper .hero h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

main.productShowWallpaper .hero .mouse {
    position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 25px;
    margin-right: auto;
    margin-left: auto;
}

@keyframes moveIcon {
    0% {
        top: 5px;
    }

    50% {
        top: 20px;
    }

    100% {
        top: 5px;
    }
}

main.productShowWallpaper .hero .mouse i {
    display: block;
    width: 9px;
    height: 14px;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    background-image: url("../img/icon-down.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    animation: moveIcon 1500ms infinite;
}

main.productShowWallpaper .info {
    margin-bottom: 120px;
}

    main.productShowWallpaper .info h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 80px;
    }

        main.productShowWallpaper .info h2 span {
            font-size: 16px;
            font-weight: 300;
            line-height: 25px;
        }

    main.productShowWallpaper .info .row {
        justify-content: space-between;
    }

    main.productShowWallpaper .info .col {
        flex: 0 0 570px;
        max-width: 570px;
    }

@media screen and (max-width: 1200px) {
    main.productShowWallpaper .info .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .info .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowWallpaper .info .col:nth-child(1) {
    margin-bottom: 120px;
}

@media screen and (max-width: 1200px) {
    main.productShowWallpaper .info .col:nth-child(1) {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .info .col:nth-child(1) {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .info .col:nth-child(2) {
        margin-bottom: 30px;
    }
}

main.productShowWallpaper .info .col:nth-child(2) .more {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .info .col:nth-child(2) .more {
        margin-bottom: 30px;
    }
}

main.productShowWallpaper .info .col:nth-child(3) {
    align-self: center;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .info .col:nth-child(3) {
        margin-bottom: 30px;
    }
}

main.productShowWallpaper .info .more {
    display: block;
    position: relative;
}

@media screen and (max-width: 1200px) {
    main.productShowWallpaper .info .more img {
        width: 100%;
    }
}

main.productShowWallpaper .info .more span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    opacity: 0;
    transition: all 700ms;
}

    main.productShowWallpaper .info .more span::before {
        content: "";
        position: absolute;
        right: -40px;
        width: 60px;
        height: 2px;
        background-color: #000;
    }

main.productShowWallpaper .info .more:hover span {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

main.productShowWallpaper .info h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

main.productShowWallpaper .info p {
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.productShowWallpaper .specs {
    position: relative;
    height: 600px;
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .specs {
        height: 500px;
        margin-bottom: 60px;
    }
}

main.productShowWallpaper .specs img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .specs img {
        height: 500px;
    }
}

main.productShowWallpaper .specs .box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    padding: 48px;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .specs .box {
        width: 100%;
        padding: 20px;
    }
}

main.productShowWallpaper .specs .box h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 24px;
    border-bottom: 2px solid #fff;
}

    main.productShowWallpaper .specs .box h3 span {
        font-size: 14px;
        font-weight: 300;
    }

main.productShowWallpaper .specs .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    main.productShowWallpaper .specs .box ul li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        gap: 25px;
    }

        main.productShowWallpaper .specs .box ul li:last-child {
            margin-bottom: 0;
        }

        main.productShowWallpaper .specs .box ul li strong {
            flex: 0 0 60px;
            max-width: 60px;
            font-size: 14px;
            font-weight: 500;
            line-height: 32px;
        }

        main.productShowWallpaper .specs .box ul li span {
            font-size: 12px;
            font-weight: 300;
            line-height: 32px;
        }

main.productShowWallpaper .album {
    margin-bottom: 120px;
}

    main.productShowWallpaper .album .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        main.productShowWallpaper .album .title h4 {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin: 0;
        }

        main.productShowWallpaper .album .title .btns {
            display: flex;
            gap: 10px;
        }

            main.productShowWallpaper .album .title .btns .btn-right,
            main.productShowWallpaper .album .title .btns .btn-left {
                cursor: pointer;
                width: 32px;
                height: 32px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30px;
            }

            main.productShowWallpaper .album .title .btns .btn-right {
                background-image: url("../img/icon-right.png");
            }

            main.productShowWallpaper .album .title .btns .btn-left {
                background-image: url("../img/icon-left.png");
            }

    main.productShowWallpaper .album .slider {
        margin-bottom: 40px;
    }

        main.productShowWallpaper .album .slider:last-child {
            margin-bottom: 0;
        }

        main.productShowWallpaper .album .slider .swiper-slide {
            width: 256px !important;
        }

            main.productShowWallpaper .album .slider .swiper-slide img {
                width: 256px;
                height: 256px;
                object-fit: cover;
            }

main.productShowWallpaper .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    background-color: #1f1f1f;
    padding-right: 120px;
    padding-left: 120px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.productShowWallpaper .links {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .links {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
    }
}

main.productShowWallpaper .links a {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .links a {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 320px) {
    main.productShowWallpaper .links a {
        font-size: 14px;
    }
}

main.productShowWallpaper .links a::before,
main.productShowWallpaper .links a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background-color: #fff;
    transition: all 600ms;
}

main.productShowWallpaper .links a::before {
    width: 80px;
    margin-left: 10px;
}

@media screen and (max-width: 1100px) {
    main.productShowWallpaper .links a::before {
        width: 40px;
    }
}

@media screen and (max-width: 320px) {
    main.productShowWallpaper .links a::before {
        width: 20px;
        margin-left: 5px;
    }
}

main.productShowWallpaper .links a::after {
    width: 0;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .links a::after {
        width: 40px;
    }
}

@media screen and (max-width: 320px) {
    main.productShowWallpaper .links a::after {
        width: 20px;
        margin-right: 5px;
    }
}

main.productShowWallpaper .links a:hover::before {
    width: 0;
}

main.productShowWallpaper .links a:hover::after {
    width: 80px;
}

main.productShowWallpaper .related {
    margin-bottom: 80px;
}

    main.productShowWallpaper .related .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

        main.productShowWallpaper .related .title h4 {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin: 0;
        }

        main.productShowWallpaper .related .title a {
            display: inline-block;
            font-size: 12px;
            font-weight: 300;
            line-height: 18px;
            border-bottom: 1px solid #000;
            color: #000;
        }

    main.productShowWallpaper .related .col {
        flex: 0 0 50%;
        max-width: 50%;
    }

@media screen and (max-width: 767px) {
    main.productShowWallpaper .related .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowWallpaper .related .single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
}

    main.productShowWallpaper .related .single .image {
        width: 100%;
        height: 620px;
        margin-bottom: 10px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 700ms;
    }

@media screen and (max-width: 1100px) {
    main.productShowWallpaper .related .single .image {
        height: 450px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowWallpaper .related .single .image {
        height: 400px;
    }
}

main.productShowWallpaper .related .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms;
}

main.productShowWallpaper .related .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.productShowWallpaper .related .single:hover .image {
    width: 90%;
}

    main.productShowWallpaper .related .single:hover .image img {
        transform: scale(1.2);
    }

main.productShowWallpaper .projects {
    margin-bottom: 160px;
}

    main.productShowWallpaper .projects h4 {
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 40px;
    }

    main.productShowWallpaper .projects .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

@media screen and (max-width: 768px) {
    main.productShowWallpaper .projects .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowWallpaper .projects .col a {
    display: block;
    margin-bottom: 30px;
}

    main.productShowWallpaper .projects .col a .image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 800ms;
    }

    main.productShowWallpaper .projects .col a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 800ms;
    }

    main.productShowWallpaper .projects .col a:hover .image {
        width: 95%;
    }

    main.productShowWallpaper .projects .col a:hover img {
        transform: scale(1.2);
    }

main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(1) {
    height: 300px;
}

    main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(1) .image {
        height: 300px;
    }

main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(2) {
    height: 500px;
}

    main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(2) .image {
        height: 500px;
    }

main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(3) {
    height: 200px;
}

    main.productShowWallpaper .projects .col:nth-child(1) a:nth-child(3) .image {
        height: 200px;
    }

main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(1) {
    height: 500px;
}

    main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(1) .image {
        height: 500px;
    }

main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(2) {
    height: 200px;
}

    main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(2) .image {
        height: 200px;
    }

main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(3) {
    height: 300px;
}

    main.productShowWallpaper .projects .col:nth-child(2) a:nth-child(3) .image {
        height: 300px;
    }

main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(1) {
    height: 200px;
}

    main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(1) .image {
        height: 200px;
    }

main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(2) {
    height: 300px;
}

    main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(2) .image {
        height: 300px;
    }

main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(3) {
    height: 500px;
}

    main.productShowWallpaper .projects .col:nth-child(3) a:nth-child(3) .image {
        height: 500px;
    }

main.productShowWallpaper .projects .more {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.productShowWallpaper .projects .more:hover {
        background-color: #000;
        color: #fff;
    }

main.productShowParket .hero {
    position: relative;
    height: 100vh;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.productShowParket .hero {
        height: 400px;
    }
}

main.productShowParket .hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.productShowParket .hero img {
        height: 400px;
    }
}

main.productShowParket .hero h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

main.productShowParket .hero .mouse {
    position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 25px;
    margin-right: auto;
    margin-left: auto;
}

@keyframes moveIcon {
    0% {
        top: 5px;
    }

    50% {
        top: 20px;
    }

    100% {
        top: 5px;
    }
}

main.productShowParket .hero .mouse i {
    display: block;
    width: 9px;
    height: 14px;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    background-image: url("../img/icon-down.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    animation: moveIcon 1500ms infinite;
}

main.productShowParket .info {
    margin-bottom: 120px;
}

    main.productShowParket .info h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 80px;
    }

        main.productShowParket .info h2 span {
            font-size: 16px;
            font-weight: 300;
            line-height: 25px;
        }

    main.productShowParket .info .row {
        justify-content: space-between;
    }

    main.productShowParket .info .col {
        flex: 0 0 570px;
        max-width: 570px;
    }

@media screen and (max-width: 1200px) {
    main.productShowParket .info .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .info .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowParket .info .col:nth-child(1) {
    margin-bottom: 120px;
}

@media screen and (max-width: 1200px) {
    main.productShowParket .info .col:nth-child(1) {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .info .col:nth-child(1) {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .info .col:nth-child(2) {
        margin-bottom: 30px;
    }
}

main.productShowParket .info .col:nth-child(2) .more {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.productShowParket .info .col:nth-child(2) .more {
        margin-bottom: 30px;
    }
}

main.productShowParket .info .col:nth-child(3) {
    align-self: center;
}

@media screen and (max-width: 767px) {
    main.productShowParket .info .col:nth-child(3) {
        margin-bottom: 30px;
    }
}

main.productShowParket .info .more {
    display: block;
    position: relative;
}

@media screen and (max-width: 1200px) {
    main.productShowParket .info .more img {
        width: 100%;
    }
}

main.productShowParket .info .more span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    opacity: 0;
    transition: all 700ms;
}

    main.productShowParket .info .more span::before {
        content: "";
        position: absolute;
        right: -40px;
        width: 60px;
        height: 2px;
        background-color: #000;
    }

main.productShowParket .info .more:hover span {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

main.productShowParket .info h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

main.productShowParket .info p {
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.productShowParket .specs {
    position: relative;
    height: 600px;
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    main.productShowParket .specs {
        height: 500px;
        margin-bottom: 60px;
    }
}

main.productShowParket .specs img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.productShowParket .specs img {
        height: 500px;
    }
}

main.productShowParket .specs .box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    padding: 48px;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.productShowParket .specs .box {
        width: 100%;
        padding: 20px;
    }
}

main.productShowParket .specs .box h3 {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 24px;
    border-bottom: 2px solid #fff;
}

    main.productShowParket .specs .box h3 span {
        font-size: 14px;
        font-weight: 300;
    }

main.productShowParket .specs .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    main.productShowParket .specs .box ul li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        gap: 25px;
    }

        main.productShowParket .specs .box ul li:last-child {
            margin-bottom: 0;
        }

        main.productShowParket .specs .box ul li strong {
            flex: 0 0 60px;
            max-width: 60px;
            font-size: 14px;
            font-weight: 500;
            line-height: 32px;
        }

        main.productShowParket .specs .box ul li span {
            font-size: 12px;
            font-weight: 300;
            line-height: 32px;
        }

main.productShowParket .pictures {
    margin-bottom: 120px;
}

    main.productShowParket .pictures h4 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 40px;
    }

    main.productShowParket .pictures .swiper-slide img {
        width: 100%;
        height: 800px;
        object-fit: cover;
    }

@media screen and (max-width: 1200px) {
    main.productShowParket .pictures .swiper-slide img {
        height: 600px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .pictures .swiper-slide img {
        height: 450px;
    }
}

main.productShowParket .pictures .nums {
    margin-top: 20px;
    direction: ltr;
    font-size: 14px;
    font-weight: 200;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    main.productShowParket .pictures .nums span {
        opacity: 0.6;
    }

        main.productShowParket .pictures .nums span:nth-child(2) {
            width: 80px;
            height: 1px;
            background-color: #000;
            opacity: 1;
        }

main.productShowParket .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    background-color: #1f1f1f;
    padding-right: 120px;
    padding-left: 120px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.productShowParket .links {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .links {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
    }
}

main.productShowParket .links a {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.productShowParket .links a {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

main.productShowParket .links a::before,
main.productShowParket .links a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background-color: #fff;
    transition: all 600ms;
}

main.productShowParket .links a::before {
    width: 80px;
    margin-left: 10px;
}

@media screen and (max-width: 1100px) {
    main.productShowParket .links a::before {
        width: 40px;
    }
}

main.productShowParket .links a::after {
    width: 0;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    main.productShowParket .links a::after {
        width: 40px;
    }
}

main.productShowParket .links a:hover::before {
    width: 0;
}

main.productShowParket .links a:hover::after {
    width: 80px;
}

main.productShowParket .related {
    margin-bottom: 80px;
}

    main.productShowParket .related .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

        main.productShowParket .related .title h4 {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin: 0;
        }

        main.productShowParket .related .title a {
            display: inline-block;
            font-size: 12px;
            font-weight: 300;
            line-height: 18px;
            border-bottom: 1px solid #000;
            color: #000;
        }

    main.productShowParket .related .col {
        flex: 0 0 25%;
        max-width: 25%;
    }

@media screen and (max-width: 1100px) {
    main.productShowParket .related .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .related .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowParket .related .single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
}

    main.productShowParket .related .single .image {
        width: 100%;
        height: 400px;
        margin-bottom: 10px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 700ms;
    }

@media screen and (max-width: 1100px) {
    main.productShowParket .related .single .image {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    main.productShowParket .related .single .image {
        height: 300px;
    }
}

main.productShowParket .related .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms;
}

main.productShowParket .related .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.productShowParket .related .single:hover .image {
    width: 90%;
}

    main.productShowParket .related .single:hover .image img {
        transform: scale(1.2);
    }

main.productShowParket .projects {
    margin-bottom: 160px;
}

    main.productShowParket .projects h4 {
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 40px;
    }

    main.productShowParket .projects .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

@media screen and (max-width: 768px) {
    main.productShowParket .projects .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.productShowParket .projects .col a {
    display: block;
    margin-bottom: 30px;
}

    main.productShowParket .projects .col a .image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 800ms;
    }

    main.productShowParket .projects .col a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 800ms;
    }

    main.productShowParket .projects .col a:hover .image {
        width: 95%;
    }

    main.productShowParket .projects .col a:hover img {
        transform: scale(1.2);
    }

main.productShowParket .projects .col:nth-child(1) a:nth-child(1) {
    height: 300px;
}

    main.productShowParket .projects .col:nth-child(1) a:nth-child(1) .image {
        height: 300px;
    }

main.productShowParket .projects .col:nth-child(1) a:nth-child(2) {
    height: 500px;
}

    main.productShowParket .projects .col:nth-child(1) a:nth-child(2) .image {
        height: 500px;
    }

main.productShowParket .projects .col:nth-child(1) a:nth-child(3) {
    height: 200px;
}

    main.productShowParket .projects .col:nth-child(1) a:nth-child(3) .image {
        height: 200px;
    }

main.productShowParket .projects .col:nth-child(2) a:nth-child(1) {
    height: 500px;
}

    main.productShowParket .projects .col:nth-child(2) a:nth-child(1) .image {
        height: 500px;
    }

main.productShowParket .projects .col:nth-child(2) a:nth-child(2) {
    height: 200px;
}

    main.productShowParket .projects .col:nth-child(2) a:nth-child(2) .image {
        height: 200px;
    }

main.productShowParket .projects .col:nth-child(2) a:nth-child(3) {
    height: 300px;
}

    main.productShowParket .projects .col:nth-child(2) a:nth-child(3) .image {
        height: 300px;
    }

main.productShowParket .projects .col:nth-child(3) a:nth-child(1) {
    height: 200px;
}

    main.productShowParket .projects .col:nth-child(3) a:nth-child(1) .image {
        height: 200px;
    }

main.productShowParket .projects .col:nth-child(3) a:nth-child(2) {
    height: 300px;
}

    main.productShowParket .projects .col:nth-child(3) a:nth-child(2) .image {
        height: 300px;
    }

main.productShowParket .projects .col:nth-child(3) a:nth-child(3) {
    height: 500px;
}

    main.productShowParket .projects .col:nth-child(3) a:nth-child(3) .image {
        height: 500px;
    }

main.productShowParket .projects .more {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.productShowParket .projects .more:hover {
        background-color: #000;
        color: #fff;
    }

main.featuresShow .first {
    padding-top: 280px;
    position: relative;
}

    main.featuresShow .first .container-fluid {
        padding-right: 40px;
    }

@media screen and (max-width: 576px) {
    main.featuresShow .first .container-fluid {
        padding-right: 15px;
    }
}

main.featuresShow .first::before {
    content: "";
    display: block;
    width: 100%;
    height: 850px;
    background-color: #3b3b3b;
    background-image: url("../img/features-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    main.featuresShow .first::before {
        height: 750px;
    }
}

@media screen and (max-width: 920px) {
    main.featuresShow .first::before {
        height: 700px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .first::before {
        height: 90%;
    }
}

main.featuresShow .first .flex {
    display: flex;
}

@media screen and (max-width: 820px) {
    main.featuresShow .first .flex {
        flex-wrap: wrap-reverse;
    }
}

main.featuresShow .first .flex .image {
    flex: 0 0 55%;
    max-width: 55%;
}

@media screen and (max-width: 820px) {
    main.featuresShow .first .flex .image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.featuresShow .first .flex .image img {
    width: 100%;
    height: 724px;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    main.featuresShow .first .flex .image img {
        height: 624px;
    }
}

@media screen and (max-width: 920px) {
    main.featuresShow .first .flex .image img {
        height: 550px;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .first .flex .image img {
        width: 70%;
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .first .flex .image img {
        width: 100%;
    }
}

main.featuresShow .first .flex .text {
    flex: 0 0 45%;
    max-width: 45%;
    padding-right: 80px;
    color: #fff;
}

@media screen and (max-width: 820px) {
    main.featuresShow .first .flex .text {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
}

main.featuresShow .first .flex .text h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 75px;
    position: relative;
    padding-top: 10px;
}

@media screen and (max-width: 920px) {
    main.featuresShow .first .flex .text h1 {
        padding-right: 200px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .first .flex .text h1 {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 30px;
    }
}

main.featuresShow .first .flex .text p {
    width: 239px;
    font-size: 13px;
    font-weight: 200;
    line-height: 32px;
    margin-bottom: 120px;
}

@media screen and (max-width: 920px) {
    main.featuresShow .first .flex .text p {
        width: 80%;
        margin-right: 40px;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .first .flex .text p {
        width: 70%;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .first .flex .text p {
        width: 100%;
        margin-right: 0;
    }
}

main.featuresShow .first .flex .text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 209px;
    height: 40px;
    background-color: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid #fff;
    transition: all 600ms;
}

    main.featuresShow .first .flex .text a:hover {
        background-color: #000;
        color: #fff;
    }

main.featuresShow .second {
    position: relative;
    padding-right: 155px;
    margin-bottom: 120px;
}

@media screen and (max-width: 1280px) {
    main.featuresShow .second {
        padding-right: 80px;
    }
}

@media screen and (max-width: 1024px) {
    main.featuresShow .second {
        padding-right: 100px;
    }
}

@media screen and (max-width: 920px) {
    main.featuresShow .second {
        padding-right: 80px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .second {
        padding-right: 0;
    }
}

main.featuresShow .second::before {
    content: "";
    display: block;
    width: calc(100% - 135px);
    height: 520px;
    position: absolute;
    top: -160px;
    left: 0;
    background-color: #1f1f1f;
    z-index: -1;
}

@media screen and (max-width: 1280px) {
    main.featuresShow .second::before {
        width: calc(100% - 95px);
    }
}

@media screen and (max-width: 1024px) {
    main.featuresShow .second::before {
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .second::before {
        width: 100%;
        height: 100%;
    }
}

main.featuresShow .second .container-fluid {
    padding-left: 0;
}

@media screen and (max-width: 576px) {
    main.featuresShow .second .container-fluid {
        padding-left: 15px;
    }
}

main.featuresShow .second .flex {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 820px) {
    main.featuresShow .second .flex {
        flex-wrap: wrap;
    }
}

main.featuresShow .second .flex .text {
    padding-top: 110px;
    color: #fff;
}

@media screen and (max-width: 820px) {
    main.featuresShow .second .flex .text {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.featuresShow .second .flex .text h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    main.featuresShow .second .flex .text h2 {
        margin-bottom: 30px;
    }
}

main.featuresShow .second .flex .text p {
    width: 590px;
    font-size: 13px;
    font-weight: 200;
    line-height: 32px;
}

@media screen and (max-width: 1024px) {
    main.featuresShow .second .flex .text p {
        width: 500px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .second .flex .text p {
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .second .flex .image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.featuresShow .second .flex .image img {
    width: 555px;
    height: 555px;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    main.featuresShow .second .flex .image img {
        width: 400px;
    }
}

@media screen and (max-width: 1100px) {
    main.featuresShow .second .flex .image img {
        width: 350px;
    }
}

@media screen and (max-width: 1024px) {
    main.featuresShow .second .flex .image img {
        width: 370px;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .second .flex .image img {
        height: 400px;
        width: 70%;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .second .flex .image img {
        width: 100%;
    }
}

main.featuresShow .slides {
    margin-bottom: 150px;
    position: relative;
}

    main.featuresShow .slides h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 40px;
    }

        main.featuresShow .slides h2 + p {
            font-size: 12px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 60px;
        }

    main.featuresShow .slides .slider {
        height: 530px;
        position: relative;
    }

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider {
        height: 700px;
    }
}

main.featuresShow .slides .slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 530px;
    gap: 30px;
    opacity: 0;
    z-index: -1;
    transition: all 1000ms;
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider .slide {
        flex-wrap: wrap;
        height: 700px;
    }
}

main.featuresShow .slides .slider .slide.active {
    opacity: 1;
    z-index: 1;
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider .slide .text {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.featuresShow .slides .slider .slide .text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
}

main.featuresShow .slides .slider .slide .text p {
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 150px;
    width: 416px;
}

@media screen and (max-width: 920px) {
    main.featuresShow .slides .slider .slide .text p {
        width: 320px;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider .slide .text p {
        width: 100%;
        margin-bottom: 0;
    }
}

main.featuresShow .slides .slider .slide .image {
    flex-grow: 1;
    position: relative;
    padding-bottom: 80px;
}

    main.featuresShow .slides .slider .slide .image .img1 {
        width: 570px;
        height: 450px;
        background-image: url("../img/award-bg.png");
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@media screen and (max-width: 1280px) {
    main.featuresShow .slides .slider .slide .image .img1 {
        width: 470px;
    }
}

@media screen and (max-width: 1200px) {
    main.featuresShow .slides .slider .slide .image .img1 {
        width: 450px;
    }
}

@media screen and (max-width: 920px) {
    main.featuresShow .slides .slider .slide .image .img1 {
        width: 400px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .slider .slide .image .img1 {
        width: 100%;
        height: 400px;
    }
}

main.featuresShow .slides .slider .slide .image .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .slider .slide .image .img1 img {
        height: 400px;
    }
}

main.featuresShow .slides .slider .slide .image .img2 {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 450px;
    height: 320px;
}

@media screen and (max-width: 1280px) {
    main.featuresShow .slides .slider .slide .image .img2 {
        left: 0;
        text-align: left;
    }
}

@media screen and (max-width: 1200px) {
    main.featuresShow .slides .slider .slide .image .img2 {
        height: 260px;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider .slide .image .img2 {
        height: 240px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .slider .slide .image .img2 {
        display: none;
    }
}

main.featuresShow .slides .slider .slide .image .img2 img {
    height: 320px;
}

@media screen and (max-width: 1200px) {
    main.featuresShow .slides .slider .slide .image .img2 img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .slider .slide .image .img2 img {
        height: 240px;
    }
}

main.featuresShow .slides .slider .slide .image .num {
    position: absolute;
    left: 165px;
    top: 30px;
    font-size: 120px;
    font-weight: 300;
    opacity: 0.1;
}

@media screen and (max-width: 1280px) {
    main.featuresShow .slides .slider .slide .image .num {
        left: 0;
    }
}

@media screen and (max-width: 1200px) {
    main.featuresShow .slides .slider .slide .image .num {
        left: 0;
    }
}

@media screen and (max-width: 920px) {
    main.featuresShow .slides .slider .slide .image .num {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .slider .slide .image .num {
        display: none;
    }
}

main.featuresShow .slides .btns {
    position: absolute;
    bottom: 0;
    right: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 2;
}

@media screen and (max-width: 820px) {
    main.featuresShow .slides .btns {
        bottom: -50px;
        right: 0;
    }
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .btns {
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}

main.featuresShow .slides .btns li {
    display: block;
    margin-bottom: 25px;
}

    main.featuresShow .slides .btns li button {
        display: inline-block;
        background-color: transparent;
        border: unset;
        padding: 0;
    }

    main.featuresShow .slides .btns li:nth-child(1) button::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 60px;
    }

@media screen and (max-width: 576px) {
    main.featuresShow .slides .btns li:nth-child(1) button::before {
        width: 40px;
    }
}

main.featuresShow .slides .btns li:nth-child(1) button::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 79px;
    height: 1px;
    background-color: #000;
    margin-right: 10px;
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .btns li:nth-child(1) button::after {
        width: 50px;
    }
}

main.featuresShow .slides .btns li:nth-child(2) button::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 79px;
    height: 1px;
    background-color: #000;
    margin-left: 10px;
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .btns li:nth-child(2) button::before {
        width: 50px;
    }
}

main.featuresShow .slides .btns li:nth-child(2) button::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 60px;
}

@media screen and (max-width: 576px) {
    main.featuresShow .slides .btns li:nth-child(2) button::after {
        width: 40px;
    }
}

main.featuresShow .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    background-color: #1f1f1f;
    padding-right: 120px;
    padding-left: 120px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.featuresShow .links {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    main.featuresShow .links {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
        height: auto;
    }
}

main.featuresShow .links a {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.featuresShow .links a {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 320px) {
    main.featuresShow .links a {
        font-size: 14px;
    }
}

main.featuresShow .links a::before,
main.featuresShow .links a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 1px;
    background-color: #fff;
    transition: all 600ms;
}

main.featuresShow .links a::before {
    width: 80px;
    margin-left: 10px;
}

@media screen and (max-width: 1100px) {
    main.featuresShow .links a::before {
        width: 40px;
    }
}

@media screen and (max-width: 320px) {
    main.featuresShow .links a::before {
        width: 20px;
        margin-left: 5px;
    }
}

main.featuresShow .links a::after {
    width: 0;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    main.featuresShow .links a::after {
        width: 40px;
    }
}

@media screen and (max-width: 320px) {
    main.featuresShow .links a::after {
        width: 20px;
        margin-right: 5px;
    }
}

main.featuresShow .links a:hover::before {
    width: 0;
}

main.featuresShow .links a:hover::after {
    width: 80px;
}

main.projectCat {
    padding-top: 145px;
}

    main.projectCat h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 40px;
    }

    main.projectCat p {
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 40px;
    }

@media screen and (max-width: 576px) {
    main.projectCat p {
        text-align: justify;
    }
}

main.projectCat .selects {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    main.projectCat .selects {
        flex-wrap: wrap;
    }
}

main.projectCat .selects select {
    flex: 0 0 260px;
    border: unset;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 200;
    line-height: 32px;
}

@media screen and (max-width: 1100px) {
    main.projectCat .selects select {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media screen and (max-width: 767px) {
    main.projectCat .selects select {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.projectCat .row {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 180px;
}

@media screen and (max-width: 767px) {
    main.projectCat .row {
        margin-bottom: 60px;
    }
}

main.projectCat .row .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding-right: 10px;
    padding-left: 10px;
}

@media screen and (max-width: 767px) {
    main.projectCat .row .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.projectCat .row .col:nth-child(1),
main.projectCat .row .col:nth-child(3) {
    padding-top: 200px;
}

@media screen and (max-width: 1100px) {
    main.projectCat .row .col:nth-child(1),
    main.projectCat .row .col:nth-child(3) {
        padding-top: 100px;
    }
}

@media screen and (max-width: 767px) {
    main.projectCat .row .col:nth-child(1),
    main.projectCat .row .col:nth-child(3) {
        padding-top: 0;
    }
}

main.projectCat .singleProject {
    display: block;
    width: 100%;
    padding: 14px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #2c2724;
}

    main.projectCat .singleProject .text {
        position: absolute;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        font-size: 16px;
        font-weight: 700;
        line-height: 32px;
        text-align: center;
        color: #fff;
        z-index: 1;
        display: none;
        align-items: center;
        justify-content: center;
        background-color: rgba(151, 135, 117, 0.6);
    }

@media screen and (max-width: 576px) {
    main.projectCat .singleProject .text {
        display: flex;
        bottom: 20px;
        right: 20px;
    }
}

main.projectCat .singleProject img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

main.projectShow .hero {
    position: relative;
    height: 100vh;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.projectShow .hero {
        height: 400px;
    }
}

main.projectShow .hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.projectShow .hero img {
        height: 400px;
    }
}

main.projectShow .hero h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

main.projectShow .hero .mouse {
    position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 25px;
    margin-right: auto;
    margin-left: auto;
}

@keyframes moveIcon {
    0% {
        top: 5px;
    }

    50% {
        top: 20px;
    }

    100% {
        top: 5px;
    }
}

main.projectShow .hero .mouse i {
    display: block;
    width: 9px;
    height: 14px;
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    background-image: url("../img/icon-down.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    animation: moveIcon 1500ms infinite;
}

main.projectShow .info {
    margin-bottom: 80px;
}

    main.projectShow .info .row {
        justify-content: space-between;
    }

    main.projectShow .info .col-text {
        flex: 0 0 70%;
        max-width: 70%;
    }

@media screen and (max-width: 1100px) {
    main.projectShow .info .col-text {
        flex: 0 0 60%;
        max-width: 60%;
    }
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-text {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.projectShow .info .col-text h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 50px;
}

main.projectShow .info .col-text p {
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-box {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.projectShow .info .col-box .box {
    width: 280px;
    padding: 24px;
    border: 2px solid #000;
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-box .box {
        width: 100%;
    }
}

main.projectShow .info .col-box .box h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 100px;
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-box .box h3 {
        margin-bottom: 30px;
    }
}

main.projectShow .info .col-box .box h3::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 70px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.25);
    margin-left: 10px;
}

main.projectShow .info .col-box .box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-box .box ul {
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    main.projectShow .info .col-box .box ul {
        gap: 20px;
    }
}

main.projectShow .info .col-box .box ul li {
    display: block;
}

@media screen and (max-width: 820px) {
    main.projectShow .info .col-box .box ul li {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media screen and (max-width: 767px) {
    main.projectShow .info .col-box .box ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.projectShow .info .col-box .box ul li span,
main.projectShow .info .col-box .box ul li strong {
    display: block;
}

main.projectShow .info .col-box .box ul li span {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: #7c766f;
}

main.projectShow .info .col-box .box ul li strong {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

main.projectShow .gallery {
    position: relative;
    margin-bottom: 80px;
}

    main.projectShow .gallery::before {
        content: "";
        display: block;
        width: 100%;
        height: 0.5px;
        background-color: #000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    main.projectShow .gallery .swiper-slide {
        width: 700px !important;
    }

@media screen and (max-width: 820px) {
    main.projectShow .gallery .swiper-slide {
        width: 550px !important;
    }
}

@media screen and (max-width: 767px) {
    main.projectShow .gallery .swiper-slide {
        width: 290px !important;
    }
}

@media screen and (max-width: 820px) {
    main.projectShow .gallery .swiper-slide img {
        width: 100%;
    }
}

main.projectShow .related {
    margin-bottom: 80px;
}

    main.projectShow .related .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

        main.projectShow .related .title h4 {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin: 0;
        }

        main.projectShow .related .title a {
            display: inline-block;
            font-size: 12px;
            font-weight: 300;
            line-height: 18px;
            border-bottom: 1px solid #000;
            color: #000;
        }

    main.projectShow .related .col {
        flex: 0 0 50%;
        max-width: 50%;
    }

@media screen and (max-width: 767px) {
    main.projectShow .related .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.projectShow .related .single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
}

    main.projectShow .related .single .image {
        width: 100%;
        height: 620px;
        margin-bottom: 10px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 700ms;
    }

@media screen and (max-width: 820px) {
    main.projectShow .related .single .image {
        height: 450px;
    }
}

@media screen and (max-width: 767px) {
    main.projectShow .related .single .image {
        height: 400px;
    }
}

main.projectShow .related .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms;
}

main.projectShow .related .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.projectShow .related .single:hover .image {
    width: 90%;
}

    main.projectShow .related .single:hover .image img {
        transform: scale(1.2);
    }

main.blogList .hero {
    position: relative;
    height: 700px;
    margin-bottom: 120px;
}

@media screen and (max-width: 1100px) {
    main.blogList .hero {
        height: 500px;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    main.blogList .hero {
        height: 300px;
    }
}

main.blogList .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main.blogList .hero h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    text-align: center;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

main.blogList .list {
    margin-bottom: 80px;
}

    main.blogList .list .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

@media screen and (max-width: 576px) {
    main.blogList .list .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogList .list .single {
    display: block;
    color: #000;
    margin-bottom: 40px;
}

    main.blogList .list .single .image {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
        overflow: hidden;
    }

@media screen and (max-width: 576px) {
    main.blogList .list .single .image {
        height: 200px;
    }
}

main.blogList .list .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.blogList .list .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    height: 64px;
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    main.blogList .list .single h3 {
        height: 78px;
    }
}

@media screen and (max-width: 576px) {
    main.blogList .list .single h3 {
        height: 64px;
        margin-bottom: 10px;
    }
}

main.blogList .list .single p {
    font-size: 12px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 25px;
}

main.blogList .list .single .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    main.blogList .list .single .info span {
        font-size: 12px;
        font-weight: 300;
        line-height: 18px;
    }

        main.blogList .list .single .info span:first-child {
            padding-bottom: 3px;
            border-bottom: 1px solid #000;
        }

main.blogList .list .single:hover .image img {
    transform: scale(1.1);
}

main.blogShow .hero {
    height: 600px;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    main.blogShow .hero {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    main.blogShow .hero {
        height: 400px;
    }
}

main.blogShow .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main.blogShow .info {
    margin-bottom: 20px;
}

    main.blogShow .info .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

@media screen and (max-width: 767px) {
    main.blogShow .info .title {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }
}

main.blogShow .info .title h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin: 0;
}

@media screen and (max-width: 767px) {
    main.blogShow .info .title h1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogShow .info .title .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    main.blogShow .info .title .social {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }
}

main.blogShow .info .title .social li a {
    display: block;
}

    main.blogShow .info .title .social li a i {
        display: block;
        width: 28px;
        height: 28px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 26px;
    }

        main.blogShow .info .title .social li a i.twitter {
            background-image: url("../img/icon-twitter-dark.png");
        }

        main.blogShow .info .title .social li a i.pinterest {
            background-image: url("../img/icon-pinterest-dark.png");
        }

        main.blogShow .info .title .social li a i.linkedin {
            background-image: url("../img/icon-linkedin-dark.png");
        }

        main.blogShow .info .title .social li a i.instagram {
            background-image: url("../img/icon-instagram-dark.png");
        }

main.blogShow .info .date {
    font-size: 16px;
    font-weight: 100;
    line-height: 27px;
    text-align: left;
    direction: ltr;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    main.blogShow .info .date {
        text-align: center;
    }
}

main.blogShow .info p {
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 40px;
    text-align: justify;
}

@media screen and (max-width: 1100px) {
    main.blogShow .info p {
        margin-bottom: 20px;
    }
}

main.blogShow .info .row {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    main.blogShow .info .row {
        gap: 20px;
        margin-bottom: 20px;
    }
}

main.blogShow .info .col-img {
    flex: 0 0 30%;
    max-width: 30%;
}

@media screen and (max-width: 1100px) {
    main.blogShow .info .col-img {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogShow .info .col-img img {
    width: 100%;
}

main.blogShow .info .col-text {
    flex: 0 0 65%;
    max-width: 65%;
}

@media screen and (max-width: 1100px) {
    main.blogShow .info .col-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogShow .info .col-text p {
    margin-bottom: 0;
}

main.blogShow .pictures {
    margin-bottom: 120px;
}

@media screen and (max-width: 1100px) {
    main.blogShow .pictures {
        margin-bottom: 60px;
    }
}

main.blogShow .pictures h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 40px;
}

main.blogShow .pictures .swiper-slide img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

@media screen and (max-width: 1100px) {
    main.blogShow .pictures .swiper-slide img {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    main.blogShow .pictures .swiper-slide img {
        height: 300px;
    }
}

main.blogShow .pictures .nums {
    margin-top: 20px;
    direction: ltr;
    font-size: 14px;
    font-weight: 200;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    main.blogShow .pictures .nums span {
        opacity: 0.6;
    }

        main.blogShow .pictures .nums span:nth-child(2) {
            width: 80px;
            height: 1px;
            background-color: #000;
            opacity: 1;
        }

main.blogShow .related {
    margin-bottom: 80px;
}

    main.blogShow .related .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

        main.blogShow .related .title h4 {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin: 0;
        }

        main.blogShow .related .title a {
            display: inline-block;
            font-size: 12px;
            font-weight: 300;
            line-height: 18px;
            border-bottom: 1px solid #000;
            color: #000;
        }

    main.blogShow .related .col {
        flex: 0 0 25%;
        max-width: 25%;
    }

@media screen and (max-width: 1100px) {
    main.blogShow .related .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.blogShow .related .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogShow .related .single {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #000;
}

    main.blogShow .related .single .image {
        width: 100%;
        height: 400px;
        margin-bottom: 10px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 700ms;
    }

@media screen and (max-width: 1100px) {
    main.blogShow .related .single .image {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    main.blogShow .related .single .image {
        height: 300px;
    }
}

main.blogShow .related .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 700ms;
}

main.blogShow .related .single h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 0;
}

main.blogShow .related .single:hover .image {
    width: 90%;
}

    main.blogShow .related .single:hover .image img {
        transform: scale(1.2);
    }

main.blogShow .projects {
    margin-bottom: 160px;
}

    main.blogShow .projects h4 {
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 40px;
    }

    main.blogShow .projects .col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

@media screen and (max-width: 768px) {
    main.blogShow .projects .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.blogShow .projects .col a {
    display: block;
    margin-bottom: 30px;
}

    main.blogShow .projects .col a .image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 800ms;
    }

    main.blogShow .projects .col a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 800ms;
    }

    main.blogShow .projects .col a:hover .image {
        width: 95%;
    }

    main.blogShow .projects .col a:hover img {
        transform: scale(1.2);
    }

main.blogShow .projects .col:nth-child(1) a:nth-child(1) {
    height: 300px;
}

    main.blogShow .projects .col:nth-child(1) a:nth-child(1) .image {
        height: 300px;
    }

main.blogShow .projects .col:nth-child(1) a:nth-child(2) {
    height: 500px;
}

    main.blogShow .projects .col:nth-child(1) a:nth-child(2) .image {
        height: 500px;
    }

main.blogShow .projects .col:nth-child(1) a:nth-child(3) {
    height: 200px;
}

    main.blogShow .projects .col:nth-child(1) a:nth-child(3) .image {
        height: 200px;
    }

main.blogShow .projects .col:nth-child(2) a:nth-child(1) {
    height: 500px;
}

    main.blogShow .projects .col:nth-child(2) a:nth-child(1) .image {
        height: 500px;
    }

main.blogShow .projects .col:nth-child(2) a:nth-child(2) {
    height: 200px;
}

    main.blogShow .projects .col:nth-child(2) a:nth-child(2) .image {
        height: 200px;
    }

main.blogShow .projects .col:nth-child(2) a:nth-child(3) {
    height: 300px;
}

    main.blogShow .projects .col:nth-child(2) a:nth-child(3) .image {
        height: 300px;
    }

main.blogShow .projects .col:nth-child(3) a:nth-child(1) {
    height: 200px;
}

    main.blogShow .projects .col:nth-child(3) a:nth-child(1) .image {
        height: 200px;
    }

main.blogShow .projects .col:nth-child(3) a:nth-child(2) {
    height: 300px;
}

    main.blogShow .projects .col:nth-child(3) a:nth-child(2) .image {
        height: 300px;
    }

main.blogShow .projects .col:nth-child(3) a:nth-child(3) {
    height: 500px;
}

    main.blogShow .projects .col:nth-child(3) a:nth-child(3) .image {
        height: 500px;
    }

main.blogShow .projects .more {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 222px;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.blogShow .projects .more:hover {
        background-color: #000;
        color: #fff;
    }

main.servicesList .hero {
    position: relative;
    height: 700px;
    margin-bottom: 120px;
}

@media screen and (max-width: 1100px) {
    main.servicesList .hero {
        height: 600px;
    }
}

@media screen and (max-width: 767px) {
    main.servicesList .hero {
        height: 400px;
        margin-bottom: 60px;
    }
}

main.servicesList .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main.servicesList .hero h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

main.servicesList .single {
    position: relative;
    height: 360px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.servicesList .single {
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    main.servicesList .single {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
}

main.servicesList .single img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: all 700ms;
}

@media screen and (max-width: 1100px) {
    main.servicesList .single img {
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    main.servicesList .single img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

main.servicesList .single .text {
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 40px;
}

@media screen and (min-width: 2000px) {
    main.servicesList .single .text {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    main.servicesList .single .text {
        position: relative;
        top: 0;
    }
}

main.servicesList .single .text h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 65px;
}

main.servicesList .single .text p {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
    margin-bottom: 65px;
}

@media screen and (max-width: 1100px) {
    main.servicesList .single .text p {
        width: 90%;
    }
}

main.servicesList .single .text .more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 48px;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.servicesList .single .text .more:hover {
        background-color: #fff;
        color: #000;
    }

main.servicesList .single:hover img {
    transform: scale(1.1);
}

main.servicesShow .hero {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.servicesShow .hero {
        margin-bottom: 40px;
    }
}

main.servicesShow .hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main.servicesShow .hero img {
        height: 400px;
    }
}

main.servicesShow .info {
    margin-bottom: 120px;
}

    main.servicesShow .info h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin-bottom: 80px;
    }

        main.servicesShow .info h2 span {
            font-size: 16px;
            font-weight: 300;
            line-height: 25px;
        }

    main.servicesShow .info .row {
        justify-content: space-between;
    }

    main.servicesShow .info .col {
        flex: 0 0 570px;
        max-width: 570px;
    }

@media screen and (max-width: 1200px) {
    main.servicesShow .info .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.servicesShow .info .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.servicesShow .info .col:nth-child(1) {
    margin-bottom: 120px;
}

@media screen and (max-width: 1200px) {
    main.servicesShow .info .col:nth-child(1) {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    main.servicesShow .info .col:nth-child(1) {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    main.servicesShow .info .col:nth-child(2) {
        margin-bottom: 30px;
    }
}

main.servicesShow .info .col:nth-child(2) .more {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    main.servicesShow .info .col:nth-child(2) .more {
        margin-bottom: 30px;
    }
}

main.servicesShow .info .col:nth-child(3) {
    align-self: center;
}

@media screen and (max-width: 767px) {
    main.servicesShow .info .col:nth-child(3) {
        margin-bottom: 30px;
    }
}

main.servicesShow .info .more {
    display: block;
    position: relative;
}

@media screen and (max-width: 1200px) {
    main.servicesShow .info .more img {
        width: 100%;
    }
}

main.servicesShow .info .more span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    opacity: 0;
    transition: all 700ms;
}

    main.servicesShow .info .more span::before {
        content: "";
        position: absolute;
        right: -40px;
        width: 60px;
        height: 2px;
        background-color: #000;
    }

main.servicesShow .info .more:hover span {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

main.servicesShow .info h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

main.servicesShow .info p {
    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}

main.contact {
    position: relative;
    padding-top: 125px;
}

    main.contact::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    main.contact .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    main.contact h1 {
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 40px;
        color: #fff;
    }

@media screen and (max-width: 767px) {
    main.contact .row {
        flex-wrap: wrap-reverse;
    }
}

main.contact .col-branches {
    flex: 0 0 65%;
    max-width: 65%;
}

@media screen and (max-width: 1100px) {
    main.contact .col-branches {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.contact .col-branches .single {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    main.contact .col-branches .single {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    main.contact .col-branches .single img {
        width: 100%;
    }
}

main.contact .col-branches .single .text {
    display: flex;
    gap: 12px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    main.contact .col-branches .single .text {
        flex-wrap: wrap;
    }
}

main.contact .col-branches .single .text strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

@media screen and (max-width: 767px) {
    main.contact .col-branches .single .text strong {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 5px;
    }
}

main.contact .col-branches .single .text .info {
    width: 275px;
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
}

@media screen and (max-width: 1100px) {
    main.contact .col-branches .single .text .info {
        width: auto;
        max-width: 300px;
    }
}

@media screen and (max-width: 767px) {
    main.contact .col-branches .single .text .info {
        max-width: 100%;
    }
}

main.contact .col-branches .single .text .info p {
    margin-bottom: 15px;
}

main.contact .col-branches .single .text .info a {
    color: #fff;
}

main.contact .col-form {
    flex: 0 0 35%;
    max-width: 35%;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    main.contact .col-form {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

main.contact .col-form form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

@media screen and (max-width: 1100px) {
    main.contact .col-form form {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.contact .col-form form .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

main.contact .col-form form .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    main.contact .col-form form .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.contact .col-form form .col-6:nth-child(2) {
    padding-left: 20px;
}

@media screen and (max-width: 767px) {
    main.contact .col-form form .col-6:nth-child(2) {
        padding-left: 0;
    }
}

main.contact .col-form form .col-6:nth-child(3) {
    padding-right: 20px;
}

@media screen and (max-width: 767px) {
    main.contact .col-form form .col-6:nth-child(3) {
        padding-right: 0;
    }
}

main.contact .col-form form input,
main.contact .col-form form textarea {
    display: block;
    width: 100%;
    border: unset;
    background-color: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 32px;
    padding-right: 10px;
    padding-bottom: 4px;
    height: 38px;
    overflow: hidden;
    transition: all 600ms;
}

    main.contact .col-form form input:focus,
    main.contact .col-form form textarea:focus {
        border-bottom-color: #9a9a9a;
    }

    main.contact .col-form form input::-webkit-resizer,
    main.contact .col-form form textarea::-webkit-resizer {
        display: none;
        appearance: none;
    }

main.contact .col-form form button {
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    background-color: transparent;
    color: #fff;
    border: unset;
}

main.contact .col-form .hour {
    display: flex;
    gap: 30px;
    color: #fff;
    margin-bottom: 50px;
}

    main.contact .col-form .hour strong {
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
    }

    main.contact .col-form .hour p {
        font-size: 14px;
        font-weight: 200;
        line-height: 32px;
        margin-bottom: 0;
    }

main.contact .col-form .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    main.contact .col-form .social {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.contact .col-form .social {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.contact .col-form .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 94px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 600ms;
}

@media screen and (max-width: 1200px) {
    main.contact .col-form .social li a {
        width: 80px;
        height: 84px;
    }
}

@media screen and (max-width: 1100px) {
    main.contact .col-form .social li a {
        width: 70px;
        height: 74px;
    }
}

@media screen and (max-width: 576px) {
    main.contact .col-form .social li a {
        width: 60px;
        height: 64px;
    }
}

main.contact .col-form .social li a i {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px;
}

    main.contact .col-form .social li a i.telegram {
        background-image: url("../img/icon-telegram-big.png");
    }

    main.contact .col-form .social li a i.whatsapp {
        background-image: url("../img/icon-whatsapp-big.png");
    }

    main.contact .col-form .social li a i.linkedin {
        background-image: url("../img/icon-linkedin-big.png");
    }

    main.contact .col-form .social li a i.instagram {
        background-image: url("../img/icon-instagram-big.png");
    }

main.contact .col-form .social li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
}

main.contact .map {
    text-align: center;
    padding-bottom: 80px;
}

    main.contact .map a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 144px;
        height: 40px;
        border: 1px solid #fff;
        color: #fff;
        background-color: transparent;
        transition: all 600ms;
        margin-bottom: 40px;
    }

        main.contact .map a:hover {
            background-color: #fff;
            color: #000;
        }

    main.contact .map img {
        display: block;
        width: 100%;
        height: 245px;
        object-fit: cover;
    }

main.about .hero {
    position: relative;
    height: 700px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    main.about .hero {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    main.about .hero {
        height: 300px;
    }
}

main.about .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main.about .hero a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(360deg);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    opacity: 0;
    transition: all 700ms;
}

    main.about .hero a::before {
        content: "";
        position: absolute;
        right: -40px;
        width: 60px;
        height: 2px;
        background-color: #000;
    }

main.about .hero:hover a {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
}

main.about .info {
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    main.about .info {
        margin-bottom: 60px;
    }
}

main.about .info h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 40px;
}

main.about .info .slides {
    display: flex;
}

@media screen and (max-width: 767px) {
    main.about .info .slides {
        flex-wrap: wrap;
    }
}

main.about .info .slides ul {
    flex: 0 0 20%;
    max-width: 20%;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    main.about .info .slides ul {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
        height: 100px;
    }
}

main.about .info .slides ul li {
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    main.about .info .slides ul li {
        margin-bottom: 0;
    }
}

main.about .info .slides ul li:last-child {
    margin-bottom: 0;
}

main.about .info .slides ul li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 1px;
    background-color: #000;
    opacity: 0.4;
    margin-left: 10px;
    transition: all 700ms;
}

@media screen and (max-width: 767px) {
    main.about .info .slides ul li::before {
        display: block;
        width: 1px;
        height: 40px;
        margin-right: auto;
        margin-left: auto;
        transition: height 700ms;
    }
}

main.about .info .slides ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 200;
    line-height: 32px;
    opacity: 0;
    transition: opacity 700ms;
}

main.about .info .slides ul li.active::before {
    width: 80px;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    main.about .info .slides ul li.active::before {
        width: 1px;
        height: 80px;
    }
}

main.about .info .slides ul li.active span {
    opacity: 1;
}

main.about .info .slides .wrapper {
    flex: 0 0 80%;
    max-width: 80%;
    position: relative;
    height: 385px;
}

@media screen and (max-width: 767px) {
    main.about .info .slides .wrapper {
        flex: 0 0 100%;
        max-width: 100%;
        height: 460px;
    }
}

main.about .info .slides .wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 700ms;
}

    main.about .info .slides .wrapper .slide.active {
        opacity: 1;
    }

    main.about .info .slides .wrapper .slide img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

@media screen and (max-width: 767px) {
    main.about .info .slides .wrapper .slide img {
        height: 200px;
    }
}

main.about .info .slides .wrapper .slide .box {
    margin-right: 40px;
    margin-left: 120px;
    padding: 40px;
    transform: translateY(-50%);
    background-color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0px 27px 80px rgba(0, 0, 0, 0.0196802), 0px 11.28px 33.4221px rgba(0, 0, 0, 0.0282725), 0px 6.0308px 17.869px rgba(0, 0, 0, 0.035), 0px 3.38082px 10.0172px rgba(0, 0, 0, 0.0417275), 0px 1.79553px 5.32008px rgba(0, 0, 0, 0.0503198), 0px 0.747159px 2.21381px rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 1100px) {
    main.about .info .slides .wrapper .slide .box {
        margin-left: 40px;
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    main.about .info .slides .wrapper .slide .box {
        transform: translateY(-20%);
        margin-right: 15px;
        margin-left: 15px;
        padding: 20px;
    }
}

main.about .info .slides .wrapper .slide .box p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
    margin: 0;
}

main.about .team {
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    main.about .team {
        margin-bottom: 60px;
    }
}

main.about .team .row {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    main.about .team .row {
        margin-bottom: 30px;
    }
}

main.about .team .col-desc {
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 17.5%;
}

@media screen and (max-width: 1100px) {
    main.about .team .col-desc {
        padding-right: 15px;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .col-desc {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.about .team .col-desc h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    margin-bottom: 20px;
}

main.about .team .col-desc p {
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    main.about .team .col-desc p {
        margin-bottom: 30px;
    }
}

main.about .team .col-btns {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
    main.about .team .col-btns {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }
}

main.about .team .col-btns .btn-right,
main.about .team .col-btns .btn-left {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #000;
}

    main.about .team .col-btns .btn-right i,
    main.about .team .col-btns .btn-left i {
        display: block;
        width: 32px;
        height: 32px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
    }

    main.about .team .col-btns .btn-right i {
        background-image: url("../img/icon-right-white.png");
    }

    main.about .team .col-btns .btn-left i {
        background-image: url("../img/icon-left-white.png");
    }

main.about .team .swiper-slide {
    width: 300px !important;
    transition: width 1000ms;
}

    main.about .team .swiper-slide::before {
        content: "";
        display: block;
        width: calc(100% + 20px);
        height: 1px;
        background-color: #000;
        position: absolute;
        bottom: 30%;
        left: 0;
    }

@media screen and (max-width: 1100px) {
    main.about .team .swiper-slide {
        width: 50% !important;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .swiper-slide {
        width: 100% !important;
    }
}

main.about .team .swiper-slide:hover {
    width: 772px !important;
}

@media screen and (max-width: 1100px) {
    main.about .team .swiper-slide:hover {
        width: 50% !important;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .swiper-slide:hover {
        width: 100% !important;
    }
}

main.about .team .swiper-slide:hover .single {
    width: 772px;
}

@media screen and (max-width: 1100px) {
    main.about .team .swiper-slide:hover .single {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .swiper-slide:hover .single {
        width: 100%;
    }
}

main.about .team .swiper-slide:hover .single .image {
    width: 500px;
}

@media screen and (max-width: 1100px) {
    main.about .team .swiper-slide:hover .single .image {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .swiper-slide:hover .single .image {
        width: 50%;
    }
}

main.about .team .single {
    width: 300px;
    height: 560px;
    position: relative;
    transition: width 1000ms;
}

@media screen and (max-width: 1100px) {
    main.about .team .single {
        width: 100%;
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .single {
        width: 100%;
        height: 300px;
    }
}

main.about .team .single .image {
    width: 300px;
    height: 560px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: width 1000ms;
}

@media screen and (max-width: 1100px) {
    main.about .team .single .image {
        width: 50%;
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .single .image {
        width: 50%;
        height: 300px;
    }
}

main.about .team .single .image img {
    width: 500px;
    height: 560px;
    object-fit: cover;
}

@media screen and (max-width: 1100px) {
    main.about .team .single .image img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .single .image img {
        width: 100%;
        height: 100%;
    }
}

main.about .team .single .title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 272px;
    z-index: -1;
    padding-right: 20px;
}

@media screen and (max-width: 1100px) {
    main.about .team .single .title {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    main.about .team .single .title {
        width: 50%;
    }
}

main.about .team .single .title h5 {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 10px;
}

main.about .team .single .title h4 {
    font-family: "Rokh";
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

main.about .customer img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width: 1100px) {
    main.about .customer img {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    main.about .customer img {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    main.about .customer img {
        height: auto;
    }
}

main.about .customer .box {
    background-color: #000;
    color: #fff;
    padding: 40px;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    main.about .customer .box {
        transform: translateY(-20%);
        padding: 25px;
    }
}

@media screen and (max-width: 576px) {
    main.about .customer .box {
        transform: translateY(0);
        padding: 10px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

main.about .customer .box h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

main.about .customer .box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 32px;
}

/*# sourceMappingURL=app.css.map */

/* index */
main.home {
    position: relative;
    z-index: 2;
}

    main.home .hero {
        position: relative;
        height: 100vh;
    }

@media screen and (max-width: 576px) {
    main.home .hero {
        height: 550px;
    }
}

main.home .hero .bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 576px) {
    main.home .hero .bg {
        height: 550px;
    }
}

main.home .hero .text {
    /* position: absolute;
      bottom: 0;
      left: 25vw; */
}

@media screen and (max-width: 576px) {
    main.home .hero .text {
        left: 15vw;
    }
}

main.home .hero .text h2 {
    width: 106px;
    text-align: left;
    font-family: "BebasNeue";
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
    margin-bottom: 15px;
}

main.home .hero .text .line {
    display: block;
    width: 1px;
    height: 56px;
    margin-right: auto;
    overflow: hidden;
}

    main.home .hero .text .line::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: #fff;
        animation: lineMove 3s ease-in-out 1s forwards infinite;
    }

@keyframes lineMove {
    0% {
        margin-top: -100px;
    }

    80% {
        margin-top: 0;
    }

    100% {
        margin-top: 100px;
    }
}

main.home .intro {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width: 576px) {
    main.home .intro {
        padding-top: 40px;
    }
}

main.home .intro .row {
    margin-right: -20px;
    margin-left: -20px;
}

@media screen and (max-width: 1100px) {
    main.home .intro .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

main.home .intro .right,
main.home .intro .left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
}

@media screen and (max-width: 1100px) {
    main.home .intro .right,
    main.home .intro .left {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .right,
    main.home .intro .left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.home .intro .text h3 {
    width: 107px;
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    margin-bottom: 40px;
}

    main.home .intro .text h3 span {
        font-weight: 400;
    }

main.home .intro .text p {
    font-size: 14px;
    font-weight: 200;
    line-height: 28px;
    margin-bottom: 20px;
    width: 442px;
}

    main.home .intro .text p + p {
        margin-bottom: 40px;
    }

@media screen and (max-width: 820px) {
    main.home .intro .text p {
        width: auto;
    }
}

main.home .intro .text .links {
    display: flex;
    gap: 40px;
    width: 440px;
}

@media screen and (max-width: 820px) {
    main.home .intro .text .links {
        width: auto;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

main.home .intro .text .links a {
    display: flex;
    width: 201px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    transition: all 600ms;
}

    main.home .intro .text .links a:hover {
        background-color: #000;
        color: #fff;
    }

    main.home .intro .text .links a:first-child {
        background-color: #000;
        color: #fff;
    }

        main.home .intro .text .links a:first-child:hover {
            background-color: #fff;
            color: #000;
        }

main.home .intro .category {
    display: block;
    position: relative;
    margin-top: 160px;
    overflow: hidden;
}

@media screen and (max-width: 820px) {
    main.home .intro .category {
        margin-top: 60px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .category {
        margin-top: 40px;
    }
}

main.home .intro .category h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    main.home .intro .category h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 280px) {
    main.home .intro .category h3 {
        font-size: 14px;
    }
}

main.home .intro .category h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-top: 10px;
}

main.home .intro .category .brand {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
    height: 65px;
}

main.home .intro .category .image {
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    transition: width 1000ms ease-in-out;
}

@media screen and (max-width: 820px) {
    main.home .intro .category .image {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .category .image {
        height: 400px;
    }
}

main.home .intro .category .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.home .intro .category:hover .image {
    width: 95%;
}

    main.home .intro .category:hover .image img {
        transform: scale(1.1);
    }

main.home .intro .info {
    margin-top: 0;
    margin-bottom: 0;
    height: 680px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 820px) {
    main.home .intro .info {
        height: 500px;
        margin-top: 80px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info {
        height: 400px;
        margin-top: 40px;
    }
}

main.home .intro .info .logo {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

main.home .intro .info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 50px;
    right: 0;
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

@media screen and (max-width: 820px) {
    main.home .intro .info ul {
        padding-right: 10px;
        padding-left: 10px;
        flex-wrap: wrap;
        bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info ul {
        bottom: 10px;
    }
}

main.home .intro .info ul li {
    text-align: center;
    opacity: 0.5;
    transition: all 600ms;
}

@media screen and (max-width: 820px) {
    main.home .intro .info ul li {
        flex: 0 0 50%;
        max-width: 50%;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
    main.home .intro .info ul li {
        opacity: 1;
    }
}

main.home .intro .info ul li span {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 300;
}

main.home .intro .info ul li:hover {
    opacity: 1;
}

main.home .intro .info .image {
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    transition: width 1000ms ease-in-out;
}

    main.home .intro .info .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 1000ms ease-in-out;
    }

main.home .intro .info:hover .image {
    width: 95%;
}

    main.home .intro .info:hover .image img {
        transform: scale(1.1);
    }

main.home .intro .info + .category {
    margin-top: 0;
}

@media screen and (max-width: 820px) {
    main.home .intro .info + .category {
        margin-top: 40px;
    }
}

main.home .parket {
    position: relative;
}

    main.home .parket .bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    main.home .parket > .box {
        position: absolute;
        left: 160px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 430px;
        padding: 48px;
        background-color: #1f1f1f;
        color: #fff;
    }

@media screen and (max-width: 820px) {
    main.home .parket > .box {
        width: auto;
        left: 10vw;
    }
}

@media screen and (max-width: 576px) {
    main.home .parket > .box {
        width: 100%;
        left: 0;
        top: unset;
        transform: unset;
        bottom: 0;
        padding: 20px;
    }
}

main.home .parket > .box h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

main.home .parket > .box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    width: 100٪;
    margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
    main.home .parket > .box p {
        width: 100%;
        margin-bottom: 20px;
    }
}

main.home .parket > .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 214px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.home .parket > .box a:hover {
        background-color: #fff;
        color: #000;
    }

main.home .parket .info {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 5;
}

    main.home .parket .info .cnt {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        main.home .parket .info .cnt .dot {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            cursor: pointer;
        }

            main.home .parket .info .cnt .dot span {
                display: block;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: rgba(255, 255, 255, 0.9);
                transition: all 500ms;
            }

@keyframes dotAnime {
    from {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

main.home .parket .info .cnt .dot::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main.home .parket .info .cnt .dot::before {
    animation: dotAnime 1500ms infinite;
}

main.home .parket .info .cnt .dot.active span {
    background-color: #fff;
}

main.home .parket .info .cnt .dot.active::before {
    animation: unset;
}

main.home .parket .info .cnt .box {
    position: absolute;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    transition: transform 1s, opacity 1s;
    z-index: 11;
}

@media screen and (max-width: 576px) {
    main.home .parket .info .cnt .box {
        width: 200px;
    }
}

main.home .parket .info .cnt .box .bdy {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: relative;
    padding: 20px;
    background-color: #fff;
}

@media screen and (max-width: 576px) {
    main.home .parket .info .cnt .box .bdy {
        padding: 15px;
    }
}

main.home .parket .info .cnt .box .bdy .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

    main.home .parket .info .cnt .box .bdy .close i {
        display: block;
        width: 5px;
        height: 5px;
        background-image: url("../img/close-icon.png");
        background-size: 5px;
        background-repeat: no-repeat;
        background-position: center;
    }

main.home .parket .info .cnt .box .bdy img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
}

main.home .parket .info .cnt .box .bdy h5 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}

main.home .parket .info .cnt .box .bdy p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

main.home .parket .info .cnt .box .bdy a {
    font-size: 10px;
    font-weight: 400;
    color: #000;
}

    main.home .parket .info .cnt .box .bdy a:hover {
        color: #272727;
    }

main.home .parket .info .cnt .box .bdy .close,
main.home .parket .info .cnt .box .bdy img,
main.home .parket .info .cnt .box .bdy h5,
main.home .parket .info .cnt .box .bdy p,
main.home .parket .info .cnt .box .bdy a {
    opacity: 0;
    transition: opacity 1s 700ms;
}

main.home .parket .info .cnt .box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

    main.home .parket .info .cnt .box.active .close,
    main.home .parket .info .cnt .box.active img,
    main.home .parket .info .cnt .box.active h5,
    main.home .parket .info .cnt .box.active p,
    main.home .parket .info .cnt .box.active a {
        opacity: 1;
    }

main.home .parket .info.btm .cnt .box {
    top: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    transform-origin: center top;
}

main.home .parket .info.top .cnt .box {
    top: auto;
    left: auto;
    right: auto;
    bottom: 100%;
    transform-origin: center bottom;
}

main.home .products {
    display: flex;
}

@media screen and (max-width: 576px) {
    main.home .products {
        flex-wrap: wrap;
    }
}

main.home .products .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .products .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

main.home .products .col:last-child .single {
    border-left: unset;
}

@media screen and (max-width: 576px) {
    main.home .products .col:last-child .single {
        border-bottom: unset;
    }
}

main.home .products .single {
    display: block;
    padding: 80px;
    color: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    transition: all 800ms;
}

@media screen and (max-width: 1100px) {
    main.home .products .single {
        padding: 40px;
    }
}

@media screen and (max-width: 820px) {
    main.home .products .single {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .products .single {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    main.home .products .single {
        border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    }
}

main.home .products .single h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

main.home .products .single p {
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 90px;
}

@media screen and (max-width: 576px) {
    main.home .products .single p {
        margin-bottom: 40px;
    }
}

main.home .products .single span {
    display: inline-block;
    font-size: 10px;
    font-weight: 300;
    padding-bottom: 6px;
    border-bottom: 1px solid #000;
    transition: border-color 800ms;
}

main.home .products .single:hover {
    background-color: #000;
    color: #fff;
}

    main.home .products .single:hover span {
        border-bottom-color: #fff;
    }

main.home .shop {
    height: 600px;
    position: relative;
}

    main.home .shop .bg {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    main.home .shop .box {
        position: absolute;
        right: 160px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 430px;
        padding: 48px;
        background-color: #1f1f1f;
        color: #fff;
    }

@media screen and (max-width: 820px) {
    main.home .shop .box {
        width: auto;
        right: 10vw;
    }
}

@media screen and (max-width: 576px) {
    main.home .shop .box {
        width: 100%;
        right: 0;
        top: unset;
        transform: unset;
        bottom: 0;
        padding: 20px;
    }
}

main.home .shop .box h4 {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
}

main.home .shop .box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
    width: 201px;
    margin-bottom: 50px;
}

@media screen and (max-width: 576px) {
    main.home .shop .box p {
        width: 100%;
        margin-bottom: 20px;
    }
}

main.home .shop .box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 201px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 32px;
    transition: all 600ms;
}

    main.home .shop .box a:hover {
        background-color: #fff;
        color: #000;
    }

main.home .news {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media screen and (max-width: 576px) {
    main.home .news {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

main.home .news .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

    main.home .news .title h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin: 0;
    }

    main.home .news .title a {
        font-size: 12px;
        font-weight: 300;
        color: #000;
        border-bottom: 1px solid #000;
    }

main.home .news .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .news .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.home .news .single {
    display: block;
    color: #000;
}

    main.home .news .single .image {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
        overflow: hidden;
    }

@media screen and (max-width: 576px) {
    main.home .news .single .image {
        height: 200px;
    }
}

main.home .news .single .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1000ms ease-in-out;
}

main.home .news .single h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    height: 64px;
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    main.home .news .single h3 {
        height: 78px;
    }
}

@media screen and (max-width: 576px) {
    main.home .news .single h3 {
        height: 64px;
        margin-bottom: 10px;
    }
}

main.home .news .single p {
    font-size: 12px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 25px;
}

main.home .news .single .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    main.home .news .single .info span {
        font-size: 12px;
        font-weight: 300;
        line-height: 18px;
    }

        main.home .news .single .info span:first-child {
            padding-bottom: 3px;
            border-bottom: 1px solid #000;
        }

main.home .news .single:hover .image img {
    transform: scale(1.1);
}

main.home .projects {
    padding-bottom: 120px;
}

@media screen and (max-width: 576px) {
    main.home .projects {
        padding-bottom: 0px;
    }
}

main.home .projects .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

    main.home .projects .title h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: 37px;
        margin: 0;
    }

    main.home .projects .title a {
        font-size: 12px;
        font-weight: 300;
        color: #000;
        border-bottom: 1px solid #000;
    }

main.home .projects .col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media screen and (max-width: 576px) {
    main.home .projects .col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

main.home .projects .col a {
    display: block;
}

    main.home .projects .col a .image {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
        transition: width 1000ms ease-in-out;
    }

    main.home .projects .col a img {
        width: 100%;
        object-fit: cover;
        transition: all 1000ms ease-in-out;
    }

    main.home .projects .col a:nth-child(1) {
        margin-bottom: 40px;
    }

    main.home .projects .col a:hover .image {
        width: 95%;
    }

    main.home .projects .col a:hover img {
        transform: scale(1.1);
    }

main.home .projects .col:nth-child(1) a:nth-child(1),
main.home .projects .col:nth-child(3) a:nth-child(1) {
    height: 350px;
}

    main.home .projects .col:nth-child(1) a:nth-child(1) img,
    main.home .projects .col:nth-child(3) a:nth-child(1) img {
        height: 350px;
    }

main.home .projects .col:nth-child(1) a:nth-child(2),
main.home .projects .col:nth-child(3) a:nth-child(2) {
    height: 145px;
}

    main.home .projects .col:nth-child(1) a:nth-child(2) img,
    main.home .projects .col:nth-child(3) a:nth-child(2) img {
        height: 145px;
    }

main.home .projects .col:nth-child(2) a:nth-child(1) {
    height: 145px;
}

    main.home .projects .col:nth-child(2) a:nth-child(1) img {
        height: 145px;
    }

main.home .projects .col:nth-child(2) a:nth-child(2) {
    height: 350px;
}

    main.home .projects .col:nth-child(2) a:nth-child(2) img {
        height: 350px;
    }

.container:where(.astro-G26LNY4H) {
    position: relative;
    overflow: hidden;
    width: 1418px;
    height: 600px;
    margin-top: 75px;
}

[fade-in].fade-in-appear {
    visibility: visible;
    --fade-in-time: 0.5s;
    --fade-in-delay: 0s;
    animation: fadein var(--fade-in-time) ease var(--fade-in-delay) forwards;
}

[fade-in] {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
}

.container:where(.astro-G26LNY4H) > div:where(.astro-G26LNY4H) > div:where(.astro-G26LNY4H) {
    position: absolute;
    border: solid 3px #6b6b6b;
    box-sizing: border-box;
    height: 80px;
    transform-origin: 0px 0px !important;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 34px;
    font-weight: 200;
    color: #6b6b6b;
    user-select: none;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
    cursor: pointer;
    --angle: 0deg;
    transform: rotate(var(--angle));
    --delay: 0s;
    animation: floating 4s ease-in-out var(--delay) infinite;
}

h5 {
    font-size: 1.25rem;
    line-height: 36px;
    font-size: 1.1em;
}

.titrSec {
    font-size: 4vw;
    color: #faffda;
    text-transform: uppercase;
    line-height: normal;
    font-family: "BebasNeue";
    letter-spacing: 6px;
    text-align: center;
    margin: 0 auto;
    margin-top: 2em;
}

/* footer */
footer.footer1 {
    /*   background-image:url('../img/back.webp');
background-color: #1f1f1f; */
    color: #fff;
    padding-top: 80px;
    padding-bottom: 50px;
    min-height: 580px;
    position: relative;
}

@media screen and (max-width: 576px) {
    footer.footer1 {
        padding-bottom: 40px;
    }
}

footer.footer1 .top {
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .top {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 576px) {
    footer.footer1 .top {
        padding-right: 20px;
        padding-left: 20px;
    }
}

footer.footer1 .top h4 {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 20px;
    opacity: 0.6;
}

footer.footer1 .top h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 40px;
}

    footer.footer1 .top h3 span {
        font-weight: 400;
        line-height: 37px;
    }

footer.footer1 .top p {
    width: 1070px;
    font-size: 14px;
    font-weight: 200;
    line-height: 32px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0.8;
    margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .top p {
        width: 880px;
    }
}

@media screen and (max-width: 920px) {
    footer.footer1 .top p {
        width: 100%;
    }
}

footer.footer1 .top .more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #fff;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    transition: all 600ms;
}

    footer.footer1 .top .more:hover {
        background-color: transparent;
        color: #fff;
    }

footer.footer1 .info {
    width: 1070px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    footer.footer1 .info {
        width: 920px;
    }
}

@media screen and (max-width: 920px) {
    footer.footer1 .info {
        width: auto;
        margin-right: 40px;
        margin-left: 40px;
    }
}

@media screen and (max-width: 576px) {
    footer.footer1 .info {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 300px) {
    footer.footer1 .info {
        flex-wrap: wrap-reverse;
        justify-content: center;
        gap: 40px;
    }
}

footer.footer1 .info .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

@media screen and (max-width: 576px) {
    footer.footer1 .info .social {
        flex: 0 0 100%;
        max-width: 100%;
        gap: 10px;
        justify-content: center;
    }
}

footer.footer1 .info .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: border-color 600ms;
}

    footer.footer1 .info .social li a i {
        display: block;
        width: 12px;
        height: 12px;
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: center;
    }

        footer.footer1 .info .social li a i.telegram {
            background-image: url("../img/icon-telegram.png");
        }

        footer.footer1 .info .social li a i.instagram {
            width: 20px;
            height: 20px;
            background-image: url("../img/icon-instagram.png");
        }

        footer.footer1 .info .social li a i.whatsapp {
            background-image: url("../img/icon-whatsapp.png");
        }

        footer.footer1 .info .social li a i.linkedin {
            background-image: url("../img/icon-linkedin.png");
        }

    footer.footer1 .info .social li a:hover {
        border-color: #fff;
    }

footer.footer1 .info .logo {
    height: 45px;
}

@media screen and (max-width: 768px) {
    footer.footer1 .info .logo {
        display: none;
    }
}

footer.footer2 {
    background-color: #1f1f1f;
    padding-top: 75px;
    padding-bottom: 15px;
    padding-right: 80px;
    padding-left: 80px;
}

@media screen and (max-width: 920px) {
    footer.footer2 {
        padding-top: 50px;
        padding-right: 40px;
        padding-left: 40px;
    }
}

footer.footer2 .top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .top {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

footer.footer2 .top img {
    height: 40px;
    opacity: 0.6;
}

    footer.footer2 .top img:nth-child(1) {
        opacity: 1;
    }

@media screen and (max-width: 920px) {
    footer.footer2 .top img:nth-child(1) {
        height: 60px;
    }
}

footer.footer2 .top .line {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 920px) {
    footer.footer2 .top .line {
        flex: 0 0 100%;
        max-width: 100%;
        opacity: 0;
        height: 0;
    }
}

footer.footer2 .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

footer.footer2 .info .links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info .links {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }
}

footer.footer2 .info .links li a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
    opacity: 0.5;
    transition: all 600ms;
}

footer.footer2 .info .links li.active a,
footer.footer2 .info .links li:hover a {
    opacity: 1;
}

footer.footer2 .info .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media screen and (max-width: 920px) {
    footer.footer2 .info .social {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }
}

footer.footer2 .info .social li a {
    display: inline-block;
}

    footer.footer2 .info .social li a i {
        display: block;
        width: 24px;
        height: 24px;
        background-color: #fff;
        border-radius: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 10px;
    }

        footer.footer2 .info .social li a i.telegram {
            background-image: url("../img/icon-telegram-black.png");
        }

        footer.footer2 .info .social li a i.instagram {
            background-image: url("../img/icon-instagram-black.png");
        }

        footer.footer2 .info .social li a i.whatsapp {
            background-image: url("../img/icon-whatsapp-black.png");
        }

        footer.footer2 .info .social li a i.linkedin {
            background-image: url("../img/icon-linkedin-black.png");
        }

footer .namasite {
    text-align: center;
}

    footer .namasite a {
        display: inline-block;
        font-size: 10px;
        font-weight: 400;
        color: #fff;
    }

        footer .namasite a img {
            margin-right: 10px;
        }

/* header */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    z-index: 10;
}

    header .mainHeader {
        padding-top: 2em;
        padding-bottom: 15px;
        transition: all 600ms;
    }

        header .mainHeader .row {
            align-items: center;
            justify-content: space-between;
        }

        header .mainHeader .col-menu nav .menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 25px;
        }

@media screen and (max-width: 900px) {
    header .mainHeader .col-menu nav .menu {
        gap: 15px;
    }
}

header .mainHeader .col-menu nav .menu li .openMenu {
    display: block;
    background-color: transparent;
    border: unset;
    padding: 0;
    width: 26px;
    height: 9px;
    position: relative;
}

    header .mainHeader .col-menu nav .menu li .openMenu::before,
    header .mainHeader .col-menu nav .menu li .openMenu::after {
        content: "";
        display: block;
        width: 35px;
        height: 1px;
        background-color: #000;
        position: absolute;
        right: 0;
        transition: all 600ms;
    }

    header .mainHeader .col-menu nav .menu li .openMenu::before {
        top: 0;
    }

    header .mainHeader .col-menu nav .menu li .openMenu::after {
        bottom: 0;
    }

header .mainHeader .col-menu nav .menu li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #000;
    transition: all 600ms;
}

@media screen and (max-width: 820px) {
    header .mainHeader .col-menu nav .menu li {
        display: none;
    }

        header .mainHeader .col-menu nav .menu li:nth-child(1) {
            display: block;
        }
}

header .mainHeader .col-menu nav .menu li.hover a {
    opacity: 0.4;
}

header .mainHeader .col-logo .logo {
    display: block;
    position: relative;
}

    header .mainHeader .col-logo .logo img {
        transition: opacity 600ms;
    }

@media screen and (max-width: 576px) {
    header .mainHeader .col-logo .logo img {
        height: 45px;
    }
}

header .mainHeader .col-logo .logo img.light {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header .mainMenu {
    position: fixed;
    top: -100vh;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

    header .mainMenu .bgs {
        display: flex;
    }

        header .mainMenu .bgs > div {
            flex: 0 0 20vw;
            max-width: 20vw;
            background-color: #000;
            height: 100vh;
            transform: translateY(100%);
            transition-property: all;
            transition-duration: 1000ms;
        }

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div {
        flex: 0 0 25vw;
        max-width: 25vw;
    }
}

@media screen and (max-width: 576px) {
    header .mainMenu .bgs > div {
        flex: 0 0 100vw;
        max-width: 100vw;
        display: none;
    }
}

header .mainMenu .bgs > div:nth-child(5) {
    transition-delay: 200ms;
}

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div:nth-child(5) {
        display: none;
    }
}

header .mainMenu .bgs > div:nth-child(4) {
    transition-delay: 400ms;
}

header .mainMenu .bgs > div:nth-child(3) {
    transition-delay: 600ms;
    position: relative;
    z-index: 1;
}

header .mainMenu .bgs > div:nth-child(2) {
    transition-delay: 800ms;
}

header .mainMenu .bgs > div:nth-child(1) {
    transition-delay: 1000ms;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 576px) {
    header .mainMenu .bgs > div:nth-child(1) {
        display: block;
        z-index: 0;
        transition-delay: 200ms;
    }
}

header .mainMenu .bgs > div:nth-child(1),
header .mainMenu .bgs > div:nth-child(2),
header .mainMenu .bgs > div:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

header .mainMenu .bgs > div:nth-child(3) {
    border-left: 1px solid #ffffff62;
}

@media screen and (max-width: 820px) {
    header .mainMenu .bgs > div:nth-child(3) {
        border-left-color: rgba(255, 255, 255, 0.25);
    }
}

header .mainMenu .closeMenu {
    display: block;
    background-color: transparent;
    border: unset;
    padding: 0;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 57px;
    height: 57px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    visibility: hidden;
    z-index: 2;
    opacity: 0;
    transition: all 700ms;
}

@media screen and (max-width: 576px) {
    header .mainMenu .closeMenu {
        top: 20px;
        right: 20px;
    }
}

header .mainMenu .closeMenu::before,
header .mainMenu .closeMenu::after {
    content: "";
    display: block;
    width: 21px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

header .mainMenu .closeMenu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

header .mainMenu .closeMenu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

header .mainMenu .logo {
    position: absolute;
    left: 40px;
    top: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all 700ms;
}

header .mainMenu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    right: calc(20vw + 25px);
    top: 50%;
    transform: translateY(-50%) translateX(20vw);
    visibility: hidden;
    opacity: 0;
    transition: all 1000ms;
}

.textMain {
    width: 50%;
    margin: 15vh auto;
    margin-bottom: 5vh;
    text-align: right !important;
    direction: rtl !important;
}

.TeamSecT {
    display: flex;
    gap: 0 3em;
    padding: 6em 12em;
}

header .mainMenu .menu li {
    margin-bottom: 48px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .menu li {
        margin-bottom: 30px;
    }
}

header .mainMenu .menu li:last-child {
    margin-bottom: 0;
}

header .mainMenu .menu li a {
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

header .mainMenu .info {
    position: absolute;
    right: calc(60vw + 25px);
    top: 50%;
    transform: translateY(-50%) translateX(20vw);
    visibility: hidden;
    opacity: 0;
    transition: all 700ms;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info {
        right: calc(75vw + 25px);
    }
}

@media screen and (max-width: 576px) {
    header .mainMenu .info {
        display: none;
    }
}

header .mainMenu .info h4 {
    width: 106px;
    font-size: 24px;
    line-height: 37px;
    color: #fff;
    margin-bottom: 25px;
}

    header .mainMenu .info h4 span {
        font-weight: 200;
    }

header .mainMenu .info .address {
    display: flex;
    width: calc(20vw - 20px);
    gap: 12px;
    margin-bottom: 25px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info .address {
        width: calc(25vw - 20px);
    }
}

header .mainMenu .info .address i {
    width: 24px;
    height: 24px;
    background-image: url("../img/icon-map.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

header .mainMenu .info .address span {
    font-size: 12px;
    font-weight: 200;
    line-height: 32px;
    color: #fff;
}

header .mainMenu .info .tel {
    display: flex;
    width: calc(20vw - 20px);
    gap: 12px;
}

@media screen and (max-width: 820px) {
    header .mainMenu .info .tel {
        width: calc(25vw - 20px);
    }
}

header .mainMenu .info .tel i {
    width: 24px;
    height: 24px;
    background-image: url("../img/icon-tel.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

header .mainMenu .info .tel a {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
}

    header .mainMenu .info .tel a:hover {
        text-decoration: underline;
    }

header .mainMenu.opened {
    top: 0;
}

header .mainMenu.animated .closeMenu,
header .mainMenu.animated .logo,
header .mainMenu.animated .menu,
header .mainMenu.animated .info {
    visibility: visible;
    opacity: 1;
}

header .mainMenu.animated .menu,
header .mainMenu.animated .info {
    transform: translateY(-50%) translateX(0);
}

header .mainMenu.bgAnimated .bgs > div {
    transform: translateY(0);
}

    header .mainMenu.bgAnimated .bgs > div:nth-child(1) {
        transition-delay: 200ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(2) {
        transition-delay: 400ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(3) {
        transition-delay: 600ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(4) {
        transition-delay: 800ms;
    }

    header .mainMenu.bgAnimated .bgs > div:nth-child(5) {
        transition-delay: 1000ms;
    }

header.light .mainHeader .col-menu nav .menu li .openMenu::before,
header.light .mainHeader .col-menu nav .menu li .openMenu::after {
    background-color: #fff;
}

header.light .mainHeader .col-menu nav .menu li a {
    color: #fff;
}

header.light .mainHeader .col-logo .logo img.light {
    opacity: 1;
}

header.light .mainHeader .col-logo .logo img.dark {
    opacity: 0;
}
/* header.fixed .mainHeader {
    background-color: #fff; 
  } */
/* header.fixed .mainHeader .col-menu nav .menu li .openMenu::before, header.fixed .mainHeader .col-menu nav .menu li .openMenu::after {
      background-color: #000; }
    header.fixed .mainHeader .col-menu nav .menu li a {
      color: #000; } */
header.fixed .mainHeader .col-logo .logo img.light {
    opacity: 0;
}

header.fixed .mainHeader .col-logo .logo img.dark {
    opacity: 1;
}

.imgCenter {
    text-align: center;
}

.imgOverlay {
    width: 100%;
    height: 106px;
    z-index: 9;
    position: absolute;
    top: -5em;
    background-color: #000;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.14) 0%, rgb(12 12 12) 50%, rgb(12 12 12) 100% );
}

.titleDiv {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.secDiv {
    color: #e4e4e4;
    font-size: 0.9rem;
    margin-bottom: 2em;
    text-align: justify;
    line-height: 25px;
}

.sectionCol {
    padding: 0 4em;
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.sec1 {
    border: 1px solid #ffffff16;
    border-radius: 10px;
    padding: 25px 40px;
    transition: 0.5s;
}

    .sec1 img {
        width: 100%;
        height: 35vh;
    }

.arrow {
    display: flex;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
    position: relative;
    overflow: hidden;
    margin-top: 2em;
}

    .arrow span {
        position: relative;
        z-index: 9;
        background-color: #141415;
        padding-left: 20px;
        white-space: nowrap;
    }

    .arrow svg {
        transition: 0.5s;
        transform: rotate(180deg) translateX(-80%);
    }

.sec1:hover .arrow svg {
    transform: translateX(-10%);
    transform: rotate(180deg);
}

.sec1:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.sectionCol {
    height: 40vh;
}

/* secIntro */
.why-us-cards {
    width: 100%;
}

    .why-us-cards video {
        vertical-align: baseline;
        display: inline-block;
    }

    .why-us-cards img {
        border: 0;
    }

* {
    box-sizing: border-box;
}

.why-us-cards img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-embed:after {
    clear: both;
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
}

    .w-background-video > video {
        object-fit: cover;
        z-index: -100;
        background-position: 50%;
        background-size: cover;
        width: 100%;
        height: 100%;
        margin: auto;
        position: absolute;
        inset: -100%;
    }

.image-cover {
    pointer-events: none;
    object-fit: cover;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

.why-us-card {
    aspect-ratio: 1;
    border-radius: var(--_sizes---corner-radius--m);
    width: 100%;
}

    .why-us-card.s1 {
        justify-content: center;
        align-items: center;
        display: flex;
        position: relative;
        overflow: hidden;
        gap: 0 4em;
    }

    .why-us-card.s2 {
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        justify-content: center;
        align-items: center;
        display: flex;
        position: relative;
        overflow: hidden;
    }

.why-us-trail {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
    flex-flow: column;
    flex: none;
    width: 100%;
    display: flex;
}

.why-us-taril-cards {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
    flex-flow: column;
    flex: none;
    display: flex;
}

.why-us-taril-card {
    aspect-ratio: 12/20;
    border-radius: 1rem;
    flex: none;
    overflow: hidden;
}

.why-us-trail-area {
    grid-column-gap: 0.6rem;
    grid-row-gap: 0.6rem;
    justify-content: center;
    align-items: center;
    width: 110%;
    height: 110%;
    display: flex;
    position: absolute;
}

.why-us-move-css {
    display: none;
}

.why-us-inner-shadow {
    z-index: 1000;
    border-radius: var(--_sizes---corner-radius--m);
    pointer-events: none;
    position: absolute;
    inset: 0%;
    box-shadow: inset 0 0 2rem #ffffff6b;
}

.why-us-trail-flex {
    width: 33.33%;
    height: 100%;
}

    .why-us-trail-flex.down {
        justify-content: center;
        align-items: flex-end;
        display: flex;
    }

.why-us-avatar-position {
    aspect-ratio: 1;
    width: 5rem;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s;
    position: absolute;
}

    .why-us-avatar-position.s1 {
        width: 2.4rem;
        inset: 11% auto auto 15%;
        transform: rotate(-30deg);
    }

    .why-us-avatar-position.s2 {
        width: 2.4rem;
        inset: 27% auto auto 6%;
    }

    .why-us-avatar-position.s3 {
        width: 3.8rem;
        inset: 46% auto auto 6%;
        transform: rotate(-5deg);
    }

    .why-us-avatar-position.s4 {
        width: 2.4rem;
        inset: 60% auto auto 21%;
    }

    .why-us-avatar-position.s5 {
        width: 3rem;
        inset: 73% auto auto 7%;
        transform: rotate(10deg);
    }

    .why-us-avatar-position.s6 {
        width: 4rem;
        inset: 74% auto auto 30%;
        transform: rotate(-15deg);
    }

    .why-us-avatar-position.s7 {
        width: 2.4rem;
        inset: auto 42% 5% auto;
    }

    .why-us-avatar-position.s8 {
        width: 3.8rem;
        inset: auto 27% 20% auto;
        transform: rotate(-30deg);
    }

    .why-us-avatar-position.s9 {
        width: 2.4rem;
        inset: auto 10% 8% auto;
    }

    .why-us-avatar-position.s10 {
        width: 2.4rem;
        inset: auto 5% 29% auto;
        transform: rotate(-10deg);
    }

    .why-us-avatar-position.s11 {
        width: 3rem;
        inset: auto 17% 39% auto;
        transform: rotate(10deg);
    }

    .why-us-avatar-position.s12 {
        width: 3.8rem;
        inset: auto 25% 56% auto;
        transform: rotate(15deg);
    }

    .why-us-avatar-position.s13 {
        width: 2.8rem;
        inset: auto 7% 58% auto;
        transform: rotate(25deg);
    }

    .why-us-avatar-position.s14 {
        width: 2.4rem;
        inset: auto 12% 80% auto;
        transform: rotate(-6deg);
    }

    .why-us-avatar-position.s15 {
        width: 2.8rem;
        inset: auto 28% 77% auto;
        transform: rotate(-15deg);
    }

    .why-us-avatar-position.s16 {
        width: 2.4rem;
        inset: 25% 44% auto auto;
    }

    .why-us-avatar-position.s17 {
        width: 3.8rem;
        inset: 10% 56% auto auto;
        transform: rotate(14deg);
    }

    .why-us-avatar-position.s18 {
        width: 3.8rem;
        inset: 28% 65% auto auto;
        transform: rotate(4deg);
    }

    .why-us-avatar-position.s19 {
        width: 2.4rem;
        inset: 6% 41% auto auto;
        transform: rotate(-6deg);
    }

.avarars-js {
    display: none;
}

.pair-card-view {
    width: 50%;
    border-radius: 25px;
    overflow: hidden;
    inset: 0%;
    box-shadow: inset 0 0 2rem #ffffff6b;
    background-color: #0b0c0f;
}

.pair-cards {
    display: flex;
    gap: 3em;
}

.why-us-video-embed {
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
}

.why-us-avatar {
    aspect-ratio: 1;
    border-radius: 0.84rem;
    width: 100%;
    height: 100%;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s;
    position: absolute;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem #0003;
}

.why-us-avatars {
    position: absolute;
    inset: 0%;
}

@media screen and (max-width: 479px) {
    .why-us-trail.move-down {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
    }

    .why-us-taril-card {
        border-radius: 2.2rem;
    }

    .why-us-trail-area {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
    }

    .why-us-inner-shadow {
        box-shadow: inset 0 0 6rem #ffffff6b;
    }

    .why-us-avatar-position {
        border-radius: 2rem;
    }

        .why-us-avatar-position.s1,
        .why-us-avatar-position.s2 {
            width: 7.5rem;
        }

        .why-us-avatar-position.s3 {
            width: 9.8rem;
        }

        .why-us-avatar-position.s4 {
            width: 7.5rem;
        }

        .why-us-avatar-position.s5 {
            width: 6rem;
        }

        .why-us-avatar-position.s6 {
            width: 10rem;
        }

        .why-us-avatar-position.s7 {
            width: 7.5rem;
        }

        .why-us-avatar-position.s8 {
            width: 9.8rem;
        }

        .why-us-avatar-position.s9,
        .why-us-avatar-position.s10 {
            width: 7.5rem;
        }

        .why-us-avatar-position.s11 {
            width: 6rem;
        }

        .why-us-avatar-position.s12 {
            width: 9.8rem;
        }

        .why-us-avatar-position.s13,
        .why-us-avatar-position.s14,
        .why-us-avatar-position.s15,
        .why-us-avatar-position.s16 {
            width: 7.5rem;
        }

        .why-us-avatar-position.s17,
        .why-us-avatar-position.s18 {
            width: 9.8rem;
        }

        .why-us-avatar-position.s19 {
            width: 7.5rem;
        }

    .pair-card-view {
        width: 100%;
    }

    .pair-cards.why-us-s {
        flex-flow: column;
    }

    .why-us-avatar {
        border-radius: 2rem;
    }
}
/*! CSS Used from: Embedded */
::selection {
    background-color: var(--jam--orange);
    color: white;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0c0b0c;
    border-radius: 10rem;
}

::-webkit-scrollbar-thumb {
    background: var(--jam--orange);
    border-radius: 10rem;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--jam--orange);
    }
/*! CSS Used from: Embedded */
[data-rotate="1"] {
    animation: rotateAvatarFirst 6s ease-in-out infinite;
}

[data-rotate="2"] {
    animation: rotateAvatarSecond 5s ease-in-out infinite;
}
/*! CSS Used from: Embedded */
.why-us-trail.move-up {
    animation: moveUp 40s linear infinite;
}

.why-us-trail.move-down {
    animation: moveDown 40s linear infinite;
}
/*! CSS Used from: Embedded */
.why-us-avatar-position {
    opacity: 0;
    transform: scale(0.5);
}

    .why-us-avatar-position.visible {
        opacity: 1;
    }
/*! CSS Used keyframes */
@keyframes rotateAvatarFirst {
    0% {
        transform: rotateZ(0);
    }

    50% {
        transform: rotateZ(-5deg);
    }

    100% {
        transform: rotateZ(0);
    }
}

@keyframes rotateAvatarSecond {
    0% {
        transform: rotateZ(0);
    }

    50% {
        transform: rotateZ(4deg);
    }

    100% {
        transform: rotateZ(0);
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-68%);
    }
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(68%);
    }
}

/* ... */

/* sliderNot */
.sliderNot .swiper {
    width: 100%;
    height: 100%;
}

.sliderNot .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sliderNot .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 300 / 205;
        border-radius: 10px;
        overflow: hidden;
        -webkit-backdrop-filter: blur(50px);
        backdrop-filter: blur(50px);
    }

.sliderNot .swiper-wrapper {
    transition-timing-function: linear !important;
}

.base-template__wrapper {
    max-width: 100dvw;
    padding-bottom: 50px;
}

/**
 * Slider Instance
 */

.sliderNot .swiper {
    width: 100%;
}

.sliderNot .swiper-wrapper {
    transition-timing-function: linear !important;
}

.sliderNot .swiper-slide {
    height: auto !important;
}

.sliderNot .horizontal-ticker {
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
    row-gap: 2.85vw;
}

@media screen and (max-width: 767.9px) {
    .sliderNot .horizontal-ticker {
        row-gap: 15px;
    }
}

/**
 * Slider Slides
 */
.shape-2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 48vw;
    height: auto;
}

.shape-1 {
    position: fixed;
    top: 0;
    right: 0;
    width: 48vw;
    height: auto;
}

.sliderNot .horizontal-ticker__slide {
    position: relative;
    width: 12vw;
    aspect-ratio: 450 / 200;
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(50px);
    background-color: rgba(51, 51, 51, 0.06);
}

@media screen and (max-width: 767.9px) {
    .sliderNot .horizontal-ticker__slide {
        width: 150px;
    }
}

.sliderNot .horizontal-ticker__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-out;
}

    .sliderNot .horizontal-ticker__slide img:last-child {
        position: absolute;
        inset: 0;
        opacity: 0;
    }

@media (hover: hover) and (pointer: fine) {
    .sliderNot .horizontal-ticker__slide:hover img:last-child {
        opacity: 1;
    }
}

/* sliderNot */

.base-template__text {
    margin: 0 auto;
    margin-top: 1em;
    width: 60%;
    text-align: center;
}

.TeamSec {
    padding: 6em 12em;
    padding-top: 0;
    text-align: center;
}

/* sliderMe */
.amozeshga {
    position: absolute;
    top: 2em;
    right: 1em;
}

    .amozeshga ul {
        list-style-type: none;
        font-size: 1rem;
        line-height: 2rem;
    }

        .amozeshga ul img {
            width: 90px;
            margin-bottom: 1em;
        }

.sliderMe .swiper {
    width: 700px;
    height: 400px;
}

.sliderMe .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    color: #fff;
    border-radius: 14px;
    inset: 0%;
    box-shadow: inset 0 0 2rem #ffffff6b;
    background-color: #0b0c0f;
    background-image: url("../img/backBody.avif");
}

.titleAmozeshga {
    font-size: 1.5rem;
    margin: 1em 0;
    color: #ecc739;
    font-weight: bold;
}

.TitleInner {
    font-size: 0.95rem;
}

.DescInner {
    color: #a6a6a6;
}

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

/* .sliderParket. */

.my-carousel {
    position: relative;
}

.my-carousel__swiper {
    padding-bottom: 200px;
}

.my-carousel__actions {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 10px;
    /* height: 200px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.my-carousel__control {
    display: inline-flex;
    border-radius: 5em;
    font-size: 1rem;
    font-weight: 500;
    padding: 1em 2em;
    background-color: transparent;
    color: #fff;
    font-family: "IRANSans";
}

    .my-carousel__control:hover {
        cursor: pointer;
    }

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

    .swiper-card > div {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        font-size: 22px;
        font-weight: bold;
        aspect-ratio: 0.6666666667;
        width: 300px;
        color: #fff;
        border-radius: 50em;
        overflow: visible;
        flex-direction: column;
    }

    .swiper-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 1em;
        display: block;
    }

@media (max-width: 768px) {
    .swiper-card img {
        height: 180px;
    }
}


.parket .swiper {
    overflow: visible;
}

/* listPage */

.list .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.list .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 10vh auto;
}

    .list .swiper .swiper-slide {
        position: relative;
        width: 300px;
        height: 495px;
        filter: grayscale(80%);
        transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
        border-radius: 15px;
        /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to right, #c31432, #240b36); 
  overflow: hidden;*/
    }

        .list .swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 750ms ease;
        }

        .list .swiper .swiper-slide .info {
            width: 100%;
            position: absolute;
            bottom: 0;
            z-index: 10;
            padding: 15px;
            text-align: center;
            /* box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -120px black; */
        }

            .list .swiper .swiper-slide .info .type,
            .list .swiper .swiper-slide .info .type a {
                color: #ecc739 !important;
                cursor: pointer;
            }

            .list .swiper .swiper-slide .info h4 {
                margin: 0;
                padding-bottom: 10px;
            }

    .list .swiper .swiper-slide-active {
        filter: none;
    }

    .list .swiper .swiper-pagination-bullet-active {
        background-color: #ecc739 !important;
    }

    .list .swiper .swiper-pagination-bullet {
        background-color: grey;
    }

    .list .swiper .swiper-button-prev,
    .list .swiper .swiper-button-next {
        top: 50%;
        width: 40px;
        height: 40px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        color: #ffffff;
        font-weight: 700;
        outline: 0;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        .list .swiper .swiper-button-prev::after,
        .list .swiper .swiper-button-next::after {
            font-size: 18px;
        }

        .list .swiper .swiper-button-prev:after {
            position: relative;
            left: -1px;
        }

        .list .swiper .swiper-button-next:after {
            position: relative;
            left: 1px;
        }

    .list .swiper .swiper-button-prev,
    .list .swiper .swiper-container-rtl .swiper-button-next {
        right: 0;
        left: auto;
    }

    .list .swiper .swiper-button-next,
    .list .swiper .swiper-container-rtl .swiper-button-prev {
        left: 0;
        right: auto;
    }

        .list .swiper .swiper-button-prev.swiper-button-disabled,
        .list .swiper .swiper-button-next.swiper-button-disabled {
            opacity: 0;
            cursor: auto;
            pointer-events: none;
        }

.imgMain {
    position: relative;
    z-index: 8;
}

.swiper .showActive {
    position: absolute;
    z-index: 999;
    top: 38%;
    left: 15%;
    transform: translateX(34%) rotate(-180deg);
    width: 140px !important;
    height: 140px !important;
}

.swiper .swiper-slide-active .showActive {
    transform: translateX(97%) rotate(0deg) !important;
}

@media screen and (max-width: 820px) {
    .divHero {
        top: 16vh;
        line-height: 25px;
    }

    main.home .hero .text h2 {
        text-align: center;
        margin: 14px auto;
    }

    .textMain {
        margin: 0 auto;
    }

    .titleHero {
        line-height: 3rem;
    }

    header .mainMenu .menu {
        right: calc(25vw + 25px);
    }

    main.home .hero .text {
        left: 0;
        right: 0;
        display: none;
    }

    .textMain {
        width: 90%;
    }

        .textMain h5 {
            line-height: 29px;
            font-size: 0.95em;
            text-align: start !important;
        }

    .TeamSec {
        padding: 0px 0em 2em !important;
    }

    .base-template__text {
        margin: 0 auto;
        margin-top: 1em;
        width: 90% !important;
        text-align: end;
        font-size: 0.9rem !important;
        line-height: 28px !important;
        direction: rtl;
    }

    main.home .intro {
        padding-top: 80px;
        padding-bottom: 1rem;
    }

    .pair-card-view.s2 {
        display: none;
    }

    .TeamSecT {
        padding: 2em 2em;
    }

    .sliderMe .swiper {
        width: 85vw;
        height: 30rem;
    }

    .amozeshga ul {
        padding: 0 1em;
    }

    main.home .hero {
        height: auto;
        padding-bottom: 3em;
    }

    main.home .parket {
        margin-top: 0;
    }

    .hero {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

        .hero video {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

    .swiper-button-prev,
    .swiper-button-next {
        position: absolute;
        bottom: 10px; /* فاصله از پایین */
        top: auto; /* غیرفعال کردن موقعیت بالا */
        transform: none; /* حذف انتقال عمودی */
        z-index: 10;
    }

    .swiper-button-prev {
        left: 20px; /* فاصله از چپ */
    }

    .swiper-button-next {
        right: 20px; /* فاصله از راست */
    }


    .list-images__heading {
        margin: 0;
        max-width: 22rem;
        font-family: "Oswald", sans-serif;
        font-size: 5rem;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        color: #aaa;
        text-align: left;
    }

        .list-images__heading span {
            color: white;
        }

    .listDnl.wrapper {
        margin: auto;
    }

    .listDnl .tab-wrapper {
        text-align: center;
        display: flex;
        margin: 0 auto;
        width: 100%;
    }

    .listDnl .tabs {
        padding: 0;
        display: flex;
        justify-content: start;
        align-items: flex-end;
        margin: 0 auto;
    }

    .listDnl .tab-link {
        margin: 0;
        list-style: none;
        color: #aaa;
        cursor: pointer;
        font-weight: 700;
        transition: all ease 0.5s;
        border: solid 1px rgba(255, 255, 255, 0);
        width: auto;
        display: inline-flex;
        border-radius: 5em !important;
        font-size: 1rem;
        font-weight: 500;
        padding: 1em 2em;
        background-color: transparent;
        color: #fff;
        font-family: "IRANSans";
    }

        .listDnl .tab-link:hover {
            color: #999;
            border-color: #999;
        }

        .listDnl .tab-link.active {
            color: #333;
            border-color: #333;
        }

        .listDnl .tab-link.active {
            color: #ecc739;
            border-color: transparent;
            border-radius: 25px;
            overflow: hidden;
            inset: 0%;
            border: 3px solid #000;
            border-radius: 35px;
            box-shadow: inset 0 1px 2px 0 #585858, inset 0 1px 1px 0 #4E4F53;
        }


    .listDnl .content-wrapper {
        padding: 1rem 0;
    }

    .listDnl .tab-content {
        display: none;
        text-align: center;
        color: #888;
        font-weight: 300;
        font-size: 15px;
        opacity: 0;
        transform: translateY(15px);
        animation: fadeIn 0.8s ease 1 forwards;
    }

        .listDnl .tab-content.active {
            display: block;
        }

    @keyframes fadeIn {
        100% {
            opacity: 1;
            transform: none;
        }
    }

   /* .listDnl ul {
        width: 80%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5em;
        margin: 0 auto;
        margin-top: 1em;
        position: relative;
    }*/

    .listDnl li {
        list-style-type: none;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 5em;
    }

        .listDnl li img {
            width: 100%;
            height: auto;
        }

    /* ... */

    .productList .product-swiper .swiper-slide img,
    .productList .thumbnail-item img {
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }

    .product-item-p3 {
        -webkit-user-select: none;
        user-select: none;
    }



    .productList {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        width: 87.5%;
        margin: 80px auto;
        display: grid;
    }

    .product-item {
        cursor: pointer;
        /* background: #232323; */
        border-radius: 16px;
        padding: 24px;
        transition: all .3s;
        position: relative;
        border-radius: 25px;
        overflow: hidden;
        inset: 0%;
        box-shadow: inset 0 0 1rem #ffffff3a;
        /* background-color: #0b0c0f; */
    }

        .product-item:hover {
            /* transform: translateY(-8px);
        box-shadow: 0 12px 89px #e8a11257; */
            transform: translateY(-8px);
            box-shadow: 0 6px 30px #e8a11229;
        }

        .product-item img {
            /*object-fit: cover;*/
            border-radius: 12px;
            /*width: 60%;*/
            height: auto;
            margin-bottom: 16px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

    .productList .product-swiper .swiper-slide img {
        object-fit: contain;
        border-radius: 12px;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100%;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    .product-item a {
        color: #fff;
        text-transform: uppercase;
        margin: 0 0 8px;
        font-family: Barracuda;
        font-size: 40px;
        font-weight: 400;
        line-height: 20px;
        text-decoration: none;
        transition: all .3s;
        position: relative;
    }

        .product-item a:after {
            content: "";
            background-color: #e9a215;
            width: 0;
            height: 2px;
            transition: width .3s;
            position: absolute;
            bottom: -4px;
            left: 0;
        }

    .product-item:hover a {
        color: #e9a215;
    }

        .product-item:hover a:after {
            width: 100%;
        }

    .product-item-p1 {
        color: #cfcfcf;
        letter-spacing: 0;
        text-align: left;
        text-transform: uppercase;
        font-family: Poppins;
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
    }

    .product-item-p2 {
        color: #fff;
        font-family: Poppins;
        font-size: 16px;
        font-weight: undefined;
        letter-spacing: 0;
        text-align: right;
        text-transform: uppercase;
        line-height: 16px;
    }

    .product-item-p3 {
        color: #cfcfcf;
        text-transform: uppercase;
        margin: 0;
        font-size: 20px;
        font-weight: 500;
    }

    .productList .product-swiper {
        border-radius: 12px;
        width: 100%;
        height: auto;
        min-height: 200px;
        margin: 10% 0 5%;
        position: relative;
        overflow: hidden;
    }

    .productList .product-thumbnails {
        margin-bottom: 5%;
    }

    .product-swiper-1 img {
        -webkit-user-select: none;
        user-select: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
        pointer-events: none;
    }

    .productList .product-item:before {
        content: "";
        z-index: 1;
        opacity: .24;
        pointer-events: none;
        background-image: url("img/hoverBack.png");
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 254.5px;
        width: 90%;
        height: 90%;
        transition: all .3s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product-item:hover:before {
        opacity: .8;
        background-image: url("img/hoverBack.png");
    }

    .productList .swiper-slide {
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        transition: opacity .3s;
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
    }

        .productList .swiper-slide.active {
            opacity: 1;
            visibility: visible;
            height: auto;
            position: relative;
        }

        .productList .swiper-slide img {
            object-fit: contain;
            border-radius: 12px;
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: 100%;
        }

    .productList .swiper-button-prev,
    .productList .swiper-button-next {
        color: #fff;
        cursor: pointer;
        z-index: 10;
        background: #000;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        transition: all .3s;
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .productList .swiper-button-prev {
        left: 10px;
    }

    .productList .swiper-button-next {
        right: 10px;
    }

        .productList .swiper-button-prev:hover,
        .productList .swiper-button-next:hover {
            color: #fff;
            background: #e9a215;
            transform: translateY(-50%)scale(1.05);
        }

        .productList .swiper-button-prev:active,
        .productList .swiper-button-next:active {
            transform: translateY(-50%)scale(.95);
        }

        .productList .swiper-button-prev:after,
        .productList .swiper-button-next:after {
            content: none;
        }

    .productList .product-thumbnails {
        z-index: 20;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        display: flex;
        position: relative;
    }

    .productList .thumbnail-item {
        opacity: .7;
        cursor: pointer;
        background-color: #ffffff1a;
        border: 2px solid #0000;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        transition: all .3s;
        overflow: hidden;
    }

        .productList .thumbnail-item:hover {
            border-color: #e9a215;
            transform: scale(1.05);
        }

        .productList .thumbnail-item.active {
            opacity: 1;
            border-color: #e9a215;
            box-shadow: 0 0 10px #e9a2154d;
        }

        .productList .thumbnail-item img {
            object-fit: contain;
            border-radius: 6px;
            width: 100%;
            height: 100%;
        }

    @media (max-width:1400px) {
        .productList {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:992px) {
        .productList {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    @media (max-width:576px) {
        .productList {
            margin-bottom: 40px;
        }

        .product-item a {
            font-size: 32px;
        }

        .product-item-p3 {
            font-size: 18px;
        }
    }

    @media (max-width:450px) {
        .productList .product-swiper .swiper-slide img {
            max-width: 50%;
        }

        .productList .thumbnail-item {
            width: 35px;
            height: 35px;
        }
    }

    #pagination {
        margin: 0;
        padding: 0;
        text-align: center;
        margin-bottom: 5em;
    }

        #pagination li {
            display: inline
        }

            #pagination li a {
                display: inline-block;
                text-decoration: none;
                padding: 5px 1rem;
                color: #fff;
            }

            #pagination li a {
                border-radius: 25px;
                border: 3px solid transparent;
                border-radius: 35px;
                -webkit-transition: background-color 0.3s;
                transition: background-color 0.3s
            }

                #pagination li a.active {
                    color: #ecc739
                }

                #pagination li a:hover:not(.active) {
                    border: 3px solid #000;
                    border-radius: 35px;
                    box-shadow: inset 0 1px 2px 0 #585858, inset 0 1px 1px 0 #4E4F53;
                    text-shadow: 0 1px 3px #86C4F9;
                }

    .b-pagination-outer {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        overflow: hidden;
        display: flex
    }

    #border-pagination {
        margin: 0 auto;
        padding: 0;
        text-align: center
    }

        #border-pagination li {
            display: inline;
        }

            #border-pagination li a {
                display: block;
                text-decoration: none;
                color: #000;
                padding: 5px 10px;
                border: 1px solid #ddd;
                float: left;
            }

            #border-pagination li a {
                -webkit-transition: background-color 0.4s;
                transition: background-color 0.4s
            }

                #border-pagination li a.active {
                    color: #ecc739;
                    text-shadow: 0 1px 3px #ecc739;
                }

                #border-pagination li a:hover:not(.active) {
                    border: 3px solid #000;
                    border-radius: 35px;
                    box-shadow: inset 0 1px 2px 0 #585858, inset 0 1px 1px 0 #4E4F53;
                    text-shadow: 0 1px 3px #86C4F9;
                }

    .mrgTop {
        margin-top: 8em;
    }

    .product-item-p2 img {
        width: 100%;
        height: auto;
    }

        .product-item-p2 img:hover {
            color: #fff;
        }

    .maxWidth {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        padding: 0 6rem;
    }

    @media (max-width:980px) {
        .listDnl .tab-wrapper {
            display: block;
        }

        .maxWidth {
            display: block;
            padding: 0 1rem;
        }

        .listDnl .tab-link {
            padding: 1em 1em;
            margin: 0 auto;
        }

        .listDnl ul {
            width: 100%;
        }

        .list-images__heading {
            margin: 1em auto;
            font-size: 3rem;
            text-align: center;
        }

        .productList {
            margin: 1em auto;
        }
    }
}
