@font-face {
    font-family: 'Paralucent';
    src: url("../fonts/Paralucent-Medium.woff2") format("woff2"), url("../fonts/Paralucent-Medium.woff") format("woff"), url("../fonts/Paralucent-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: block;
    font-style: normal;
}
:root {
    --color1: #e31d20;
    --color2: #0971b8;
    --color3: #f9f9f9;
    --font1: 'Paralucent';
    --width: 100%;
    --space: 50px;
}

.index {
  text-align: center;
}
.index img {
  width: 50%;
  margin-top: 100px;
	
}
.container {
    max-width: var(--width);
    padding: 0 calc(var(--space) * 2);
}
.contentarea .slg {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 25px;
}
.contentarea img {
    max-width: 100%;
}
.contentarea h1 {
    font-size: 43px;
    margin-bottom: 15px;
}
.contentarea h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.contentarea h3 {
    font-size: 37px;
    margin-bottom: 15px;
}
.contentarea h4 {
    font-size: 34px;
    margin-bottom: 15px;
}
.contentarea h5 {
    font-size: 31px;
    margin-bottom: 15px;
}
.contentarea h6 {
    font-size: 25px;
    margin-bottom: 15px;
}
.contentarea p:last-of-type {
    margin-bottom: 0;
}
.sticky {
    position: sticky;
    top: 100px;
}
.page {
    margin-top: 200px;
}
.page-title {
    font-size: 60px;
    line-height: 80px;
}
.bread ul {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: row;
}
.bread ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}
.bread ul li a {
    color: inherit;
    transition: 0.2s;
    opacity: 0.3;
    text-decoration: none;
}
.bread ul li a:hover {
    opacity: 1;
}
.bread ul li:after {
    content: "/";
    opacity: 0.3;
}
.bread ul li:last-child:after {
    display: none;
}
.sidebar {
    background-color: #f9f9f9;
    padding: 30px;
}
.sidebar .top {
    margin-bottom: 30px;
}
.sidebar .top:after {
    content: "";
    margin: 0 -30px;
    width: calc(100% + 60px);
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../images/hr.png");
    display: block;
    margin-top: 30px;
}
.sidebar .top .page-title {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 5px;
}
.sidebar .top .bread ul li {
    font-size: 10px;
}
.sidebar ol {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
}
.sidebar ol li {
    position: relative;
}
.sidebar ol li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    text-decoration: none;
    gap: 10px;
}
.sidebar ol li a:after {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-image: url("../images/right-icon-red.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
    opacity: 0.5;
    filter: grayscale(100%);
}
.sidebar ol li:before {
    content: "";
    top: 0;
    bottom: 0;
    position: absolute;
    left: -30px;
    background-color: var(--color1);
    width: 2px;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
}
.sidebar ol li.active a:after,
.sidebar ol li:hover a:after {
    transform: rotate(45deg);
    filter: grayscale(0%);
    opacity: 1;
}
.sidebar ol li.active:before,
.sidebar ol li:hover:before {
    opacity: 1;
}
.sidebar ol:hover li.active a:after {
    transform: rotate(0deg);
    opacity: 0.5;
    filter: grayscale(100%);
}
.sidebar ol:hover li.active:hover a:after {
    transform: rotate(45deg);
    filter: grayscale(0%);
    opacity: 1;
}
.p-btn a {
    padding: 20px;
    display: inline-flex;
    gap: 10px;
    background-color: var(--color1);
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    transition: 0.2s;
    user-select: none;
    align-items: center;
}
.p-btn a i {
    width: 26px;
    height: 26px;
    background-image: url("../images/angle-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    transition: 0.2s;
}
.p-btn a:hover {
    background-color: var(--color2);
}
.p-btn.about a i {
    background-image: url("../images/about-icon.svg");
}
.p-btn.w a {
    background-color: #fff;
    color: #000;
}
.p-btn.w a i {
    filter: none;
}
.p-btn.w a:hover {
    background-color: var(--color2);
    color: #fff;
}
.p-btn.w a:hover i {
    filter: brightness(0) invert(1);
}
.p-btn.sm a {
    padding: 10px 20px;
}
.p-link a,
.p-link button {
    white-space: nowrap;
    outline: none;
    display: inline-block;
    border-radius: 10px;
    text-decoration: none;
    padding: 12px 30px;
    padding-bottom: 10px;
    border-radius: 36px;
    font-size: 12px;
    border: 2px solid #ef373e;
    color: #ef373e;
    text-transform: uppercase;
    flex: auto;
    transition: 0.2s;
    overflow: hidden;
    position: relative;
}
.p-link a:after,
.p-link button:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/slider-arrow-red.svg");
    margin-left: 15px;
    z-index: 1;
    transition: 0.2s;
}
.p-link a:before,
.p-link button:before {
    content: "";
    border-radius: 500px;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ef373e;
    transition: 0.5s;
}
.p-link a span,
.p-link button span {
    position: relative;
    z-index: 1;
}
.p-link a:hover,
.p-link button:hover {
    color: #fff;
}
.p-link a:hover:after,
.p-link button:hover:after {
    filter: brightness(0) invert(1);
}
.p-link a:hover:before,
.p-link button:hover:before {
    width: 900px;
    height: 900px;
}
.p-link.r a:after,
.p-link.r button:after {
    background-image: url("../images/slider-arrow-red.svg");
}
.p-link.w a,
.p-link.w button {
    background-color: #fff;
    color: #000;
    border: 0px;
}
.p-link.w a:after,
.p-link.w button:after {
    filter: none;
}
.p-link.w a:hover,
.p-link.w button:hover {
    color: #fff;
}
.p-link.w a:hover:after,
.p-link.w button:hover:after {
    filter: brightness(0) invert(1);
}
body {
    font-family: var(--font1);
    font-size: 16px;
	background: #071837;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    transition: 0.5s;
}
.header .container .logo img {
    width: 125px;
    max-width: 100%;
    transition: 0.2s;
}
.header .container .menu-btn {
    width: 25px;
    height: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
}
.header .container .menu-btn i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color2);
    transition: 0.2s;
}
.header .container .right {
    display: flex;
    gap: 40px;
    align-items: center;
}
.header .container .right .lang-area {
    position: relative;
}
.header .container .right .lang-area img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.header .container .right .lang-area span {
    border: 1px solid #e5e7eb;
    background-color: #fff;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    gap: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}
.header .container .right .lang-area span:after {
    content: "";
    background-image: url("../images/angle-bottom.svg");
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header .container .right .lang-area ul {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 6px;
    background-color: #fff;
    z-index: 2;
    list-style: none;
    margin: 0;
    border: 1px solid #e5e7eb;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateY(5px);
    transition: 0.2s;
}
.header .container .right .lang-area ul:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    height: 5px;
    background-color: transparent;
}
.header .container .right .lang-area ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    justify-content: center;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: 0.2s;
    text-transform: uppercase;
}
.header .container .right .lang-area ul li a:hover {
    background-color: #f3f4f6;
}
.header .container .right .lang-area ul li:last-of-type a {
    border-bottom: 0px;
}
.header .container .right .lang-area:hover span {
    background-color: #f3f4f6;
}
.header .container .right .lang-area:hover ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.header .container .right .menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 15px;
}
.header .container .right .menu ul li a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}
.header .container .right .menu ul li a img {
    width: 25px;
    height: 25px;
}
.header .container .right .menu ul li a:hover {
    opacity: 0.7;
}
.header .container .right .big-menu-btn {
    background-color: var(--color1);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 55px;
    border-radius: 5px;
    padding: 0 15px;
    user-select: none;
    transition: 0.2s;
    width: 140px;
    justify-content: center;
    max-width: 100%;
    cursor: pointer;
}
.header .container .right .big-menu-btn i {
    width: 26px;
    height: 26px;
    background-image: url("../images/all-product-icon.svg");
    transition: 0.2s;
    background-position: center;
    background-repeat: no-repeat;
}
.header .container .right .big-menu-btn .c {
    display: none;
}
.header .container .right .big-menu-btn.active i {
    background-image: url("../images/close.svg");
}
.header .container .right .big-menu-btn.active .a {
    display: none;
}
.header .container .right .big-menu-btn.active .c {
    display: block;
}
.header .container .right .big-menu-btn:hover {
    background-color: var(--color2);
}
.header.home .container .logo img {
    filter: brightness(0) invert(1);
}
.header.home .container .menu-btn i {
    background-color: #fff;
}
.header.home .container .right .menu ul li a {
    color: #fff;
}
.header.scroll {
	-webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.7);
}
.header.scroll .container {
    height: 80px;
}
.header.scroll .container .logo img {
    filter: none;
}
.header.scroll .container .menu-btn i {
    background-color: var(--color2);
}
.header.scroll .container .right .menu ul li a {
    color: #000;
}
.header.scroll .container .right .lang-area span {
    padding: 4px 20px;
}
.header.scroll .container .right .big-menu-btn {
    height: 35px;
}
.header.scroll .big-products-menu {
    bottom: 0;
}
.p-big-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.p-big-menu.active {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}
.p-big-menu .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px calc(var(--space) * 2);
    height: 60px;
    background-color: var(--color3);
}
.p-big-menu .top .logo img {
    width: 80px;
}
.p-big-menu .top .clss {
    position: relative;
    font-size: 25px;
    cursor: pointer;
    width: 25px;
    height: 25px;
}
.p-big-menu .top .clss:after,
.p-big-menu .top .clss:before {
    width: 100%;
    height: 2px;
    background-color: var(--color2);
    transform-origin: center;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.p-big-menu .top .clss:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.p-big-menu .m {
    color: #000;
    background-color: #fff;
    position: relative;
    height: 100%;
}
.p-big-menu .m ul,
.p-big-menu .m ol {
    list-style: none;
    padding: 20px calc(var(--space) * 2);
    margin: 0;
}
.p-big-menu .m ul li,
.p-big-menu .m ol li {
    display: block;
    margin-bottom: 15px;
}
.p-big-menu .m ul li.bck,
.p-big-menu .m ol li.bck {
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    gap: 8px;
    align-items: center;
}
.p-big-menu .m ul li.bck i,
.p-big-menu .m ol li.bck i {
    width: 15px;
    height: 15px;
    background-image: url("../images/arrow-right-b.svg");
    transform: rotate(180deg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.p-big-menu .m ul li a,
.p-big-menu .m ol li a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-size: 20px;
}
.p-big-menu .m ul li ul,
.p-big-menu .m ol li ul,
.p-big-menu .m ul li ol,
.p-big-menu .m ol li ol {
    position: absolute;
    top: 0;
    transform: translateX(100%);
    transition: 0.4s;
    background-color: #fff;
    height: 100%;
    width: 100%;
}
.p-big-menu .m ul li ul li.open ol,
.p-big-menu .m ol li ul li.open ol,
.p-big-menu .m ul li ol li.open ol,
.p-big-menu .m ol li ol li.open ol {
    transform: translateX(0%);
    left: 0;
}
.p-big-menu .m ul li.open ul,
.p-big-menu .m ol li.open ul {
    transform: translateX(0%);
    left: 0;
}
.p-big-menu .bottom {
    padding: 15px 40px;
    background-color: var(--color2);
    color: #fff;
}
.p-big-menu .bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-big-menu .bottom ul li {
    margin-right: 15px;
    opacity: 0.3;
    font-size: 20px;
    display: inline-block;
}
.p-big-menu .bottom ul li a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.p-big-menu .bottom ul li:last-child {
    margin-right: 0;
}
.p-big-menu .bottom ul li.active {
    opacity: 1;
}
.product-box {
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 25px;
    padding: 40px;
    height: calc(100% - 25px);
    height: 500px;
    transition: 0.5s;
}
.product-box img {
    max-width: calc(100% - (60px) * 2);
    max-height: 100%;
    position: absolute;
    bottom: 0;
    right: 60px;
    transform-origin: bottom center;
    transition: 0.5s;
    transition-delay: 0.2s;
    user-select: none;
    pointer-events: none;
}
.product-box .t {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 40px;
}
.product-box .d {
    width: 300px;
    max-width: 100%;
}
.product-box .l {
    margin-top: 30px;
}
.product-box .l a {
    transition: 0.2s;
    text-decoration: none;
    color: var(--color1);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}
.product-box .l i {
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/angle-right-red.svg");
}
.product-box.full img {
    right: 0;
    left: 0;
    max-width: 100%;
}
.product-box.bottom-margin img {
    padding: 0 35px;
    padding-bottom: 35px;
    max-width: 100%;
    left: 0;
    right: 0;
}
.product-box:hover {
    border-color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.product-box:hover img {
    transform: scale(1.02);
}
.product-box:hover .l a {
    opacity: 0.7;
}
.big-products-menu {
    position: absolute;
    bottom: 30px;
    transition: 0.5s;
    transform: translateY(100%);
    left: calc(var(--space) * 2);
    right: calc(var(--space) * 2);
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    max-height: calc(100vh - 150px);
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.big-products-menu .box {
    position: relative;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    transition: 0.5s;
    height: 100%;
}
.big-products-menu .box a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px 40px;
    padding-bottom: 0;
}
.big-products-menu .box img {
    display: block;
    max-width: 100%;
    max-height: 290px;
    margin: 0 auto;
    margin-top: 20px;
    transform-origin: bottom center;
    transition: 0.5s;
    transition-delay: 0.2s;
    user-select: none;
    object-fit: contain;
    object-position: bottom center;
    pointer-events: none;
}
.big-products-menu .box .t {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 35px;
}
.big-products-menu .box .l {
    transition: 0.2s;
    text-decoration: none;
    color: var(--color1);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
}
.big-products-menu .box .l i {
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/angle-right-red.svg");
}
.big-products-menu .box.full img {
    margin: 0 -40px;
    margin-top: 20px;
    max-width: calc(100% + 80px);
}
.big-products-menu .box.bottom-margin img {
    padding-bottom: 25px;
}
.big-products-menu .box:hover img {
    transform: scale(1.02);
}
.big-products-menu .box:hover .l a {
    opacity: 0.7;
}
.big-products-menu .box-text {
    height: 100%;
    padding: 40px;
    padding-top: 20px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.big-products-menu .box-text .t {
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 35px;
}
.big-products-menu .box-text .t a {
    color: inherit;
    text-decoration: none;
}
.big-products-menu .box-text ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 15px;
}
.big-products-menu .box-text ul li {
    display: flex;
    gap: 10px;
    transition: 0.2s;
    align-items: center;
}
.big-products-menu .box-text ul li a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}
.big-products-menu .box-text ul li:before {
    content: "";
    width: 15px;
    height: 10px;
    background-image: url("../images/angle-right.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.big-products-menu .box-text ul li:hover {
    gap: 15px;
}
.big-products-menu .box-text ul li:hover a {
    opacity: 0.7;
}
.big-products-menu .box-axs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fcf4f6;
    padding: 25px 75px;
    margin: 40px;
    gap: 25px;
    height: calc(100% - 80px);
}
.big-products-menu .box-axs .t {
    font-size: 35px;
    line-height: 50px;
}
.big-products-menu .row .col-lg-3:nth-last-of-type(3) .box {
    border-right: 0px;
}
.big-products-menu.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.address {
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
}
.address p {
    opacity: 0.5;
    transition: 0.2s;
    margin-bottom: 20px;
}
.address p:hover {
    opacity: 0.8;
}
.address p:last-of-type {
    margin-bottom: 0;
}
.address b,
.address strong {
    margin-bottom: 5px;
    display: block;
    font-weight: normal;
}
.address a {
    text-decoration: none;
    color: inherit;
}
.footer {
    margin-top: calc(var(--space) * 3);
}
.footer .top {
    background-color: #f6f6f6;
    margin: var(--space);
    padding: calc(var(--space) * 2) calc(var(--space) * 3);
}
.footer .top .catalog {
    display: inline-flex;
    margin-top: 40px;
    border-top: 1px solid #dfdfdf;
    padding-top: 35px;
}
.footer .top .catalog a {
    gap: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
}
.footer .top .catalog span {
    font-size: 22px;
}
.footer .top .logo img {
    width: 110px;
    max-width: 100%;
}
.footer .top .social {
    margin: 20px 0;
}
.footer .top .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.footer .top .social ul a {
    display: block;
    background-color: #e5e5e5;
    padding: 10px;
    transition: 0.2s;
}
.footer .top .social ul a i {
    transition: 0.2s;
    opacity: 0.5;
}
.footer .top .social ul a:hover {
    background-color: var(--color1);
}
.footer .top .social ul a:hover i {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.footer .top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer .top ul.p li a {
    opacity: 0.6;
}
.footer .top ul.p li:first-child a {
    opacity: 1;
}
.footer .top ul li a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}
.footer .top ul li a:hover {
    opacity: 0.7;
}
.footer .bottom {
    padding-top: 25px;
    padding-bottom: var(--space);
    border-top: 1px solid #e1e1e1;
    margin: 0 var(--space);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .bottom ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
}
.footer .bottom ul li {
    opacity: 0.5;
    transition: 0.2s;
}
.footer .bottom ul li a {
    display: block;
    color: inherit;
}
.footer .bottom ul li:hover {
    opacity: 0.8;
}
.page-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.page-title-area .title {
    font-size: 40px;
    line-height: 54px;
}
.page-head {
    margin-bottom: calc(var(--space) * 2);
}
.news-box {
    padding-right: 90px;
}
.news-box a {
    display: flex;
    text-decoration: none;
    color: inherit;
    gap: 30px;
}
.news-box a .l {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    background-color: #fafafa;
    display: flex;
    align-items: flex-end;
    padding: 20px 25px;
    font-size: 20px;
    user-select: none;
    line-height: 27px;
}
.news-box a .t {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-box a .t span {
    font-size: 22px;
    line-height: 32px;
}
.news-box a .t u {
    font-size: 18px;
    line-height: 25px;
}
.news-box-2 {
    height: calc(100% - var(--space));
    margin-bottom: var(--space);
}
.news-box-2 .img {
    overflow: hidden;
    position: relative;
}
.news-box-2 .img img {
    transition: 0.2s;
    width: 100%;
    object-fit: cover;
}
.news-box-2 .dt {
    opacity: 0.5;
    margin-top: 10px;
}
.news-box-2 .t {
    font-size: 20px;
    margin: 5px 0;
}
.news-box-2 a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.news-box-2:hover .img img {
    transform: scale(1.02);
}
.project-box a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.project-box .img {
    overflow: hidden;
    position: relative;
}
.project-box .img img {
    transition: 0.5s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.project-box .texts {
    background-color: #fff;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 290px;
    justify-content: center;
}
.project-box .texts .t {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.project-box .texts .d {
    margin-bottom: 30px;
}
.project-box .texts .d p:last-of-type {
    margin-bottom: 0;
}
.project-box .texts .l {
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color1);
}
.project-box .texts .l i {
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/angle-right-red.svg");
}
.project-box.grey .texts {
    background-color: #f6f6f6;
}
.project-box:hover .img img {
    transform: scale(1.02);
}
.be-our-dealer {
    background-color: var(--color1);
    margin: var(--space);
    display: flex;
    align-items: flex-end;
}
.be-our-dealer .left {
    width: 60%;
    padding: calc(var(--space) * 3) 0;
    padding-left: calc(var(--space) * 3);
}
.be-our-dealer .left h1,
.be-our-dealer .left h2,
.be-our-dealer .left h3,
.be-our-dealer .left h4,
.be-our-dealer .left h5,
.be-our-dealer .left h6 {
    font-size: 60px;
    font-weight: bold;
    line-height: 81px;
    margin-bottom: 30px;
    color: #fff;
}
.be-our-dealer .left p {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
}
.be-our-dealer .left p:last-of-type {
    margin-bottom: 60px;
}
.be-our-dealer .right {
    width: 40%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    padding-right: calc(var(--space) * 2);
    padding-top: var(--space);
}
.be-our-dealer .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.video-box {
    margin: calc(var(--space) * 3) 0;
    padding: 0 calc(var(--space) * 6);
}
.video-box a {
    display: block;
}
.video-box a .img {
    overflow: hidden;
    position: relative;
}
.video-box a .img img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.video-box a .img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
}
.video-box a .img:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-image: url("../images/play.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
}
.video-box a .img:hover img {
    transform: scale(1.02);
}
.brand-box {
    background: #f2f8ff;
    height: calc(100% - 25px);
    border: 1px solid #e1e1e1;
    margin-bottom: 25px;
    padding: 40px;
    transition: 0.5s;
}
.brand-box img {
    height: 40px;
    object-fit: contain;
    object-position: left;
    max-width: 100%;
    width: auto !important;
    display: inline-block !important;
}
.brand-box .d {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 120px;
}
.brand-box .d p:last-of-type {
    margin-bottom: 0;
}
.brand-box .t {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
    margin-top: 40px;
    height: 75px;
}
.brand-box .p-btn {
    margin-top: 40px;
}
.brand-box .p-btn a {
    background-color: #fcf4f6;
    transition: 0.5s;
}
.brand-box .p-btn a i {
    transition: 0.5s;
}
.brand-box:hover {
    border-color: #000;
}
.brand-box:hover .p-btn a {
    background-color: var(--color1);
    color: #fff;
}
.brand-box:hover .p-btn a:hover {
    background-color: var(--color2);
}
.brand-box:hover .p-btn a i {
    filter: brightness(0) invert(1);
}
.gallery {
    margin: var(--space) 0;
    margin-bottom: calc(var(--space) - 25px);
}
.gallery a {
    display: block;
    margin-bottom: 25px;
}
.gallery a .img {
    overflow: hidden;
    position: relative;
}
.gallery a .img img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.gallery a .img:hover img {
    transform: scale(1.02);
}
.form .t {
    font-size: 16px;
    opacity: 0.3;
    margin-bottom: 15px;
}
.form .form-group {
    margin-bottom: 20px;
}
.form .check-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.form .check-group input {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    cursor: pointer;
    outline: none;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    margin: 0;
}
.form .check-group input:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--color1);
    z-index: 2;
    opacity: 0;
    transform: 0.2s;
    pointer-events: none;
}
.form .check-group input:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid var(--color1);
    z-index: 1;
    pointer-events: none;
}
.form .check-group input:checked:after {
    opacity: 1;
}
.form .check-group label {
    opacity: 0.3;
    font-size: 13px;
}
.form .check-group label a {
    color: inherit;
}
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.form select {
    border: 1px solid #e5e5e5;
    height: 60px;
    width: 100%;
    display: block;
    padding: 15px 20px;
    transition: 0.2s;
    outline: none;
    border-radius: 0px;
}
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus,
.form select:focus {
    border-color: var(--color1);
}
.form button {
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 0px;
    background-color: var(--color1);
    color: #fff;
    padding: 20px 0;
    border-radius: 10px;
}
.form textarea {
    height: 90px;
    resize: none;
    border-radius: 0px;
}
.social i {
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.social i.facebook {
    background-image: url("../images/facebook.svg");
}
.social i.instagram {
    background-image: url("../images/instagram.svg");
}
.social i.twitter {
    background-image: url("../images/twitter.svg");
}
.social i.linkedin {
    background-image: url("../images/linkedin.svg");
}
.social i.youtube {
    background-image: url("../images/youtube.svg");
}
.social i.pinterest {
    background-image: url("../images/pinterest.svg");
}
#page-products .boxes {
    margin-top: var(--space);
}
#page-products .boxes .box a {
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}
#page-products .boxes .box .img {
    position: relative;
    overflow: hidden;
}
#page-products .boxes .box .img img {
    transition: 0.5s;
    width: 100%;
    object-fit: cover;
}
#page-products .boxes .box .t {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 10px;
    display: inline-flex;
    background-color: var(--color1);
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    transition: 0.2s;
    user-select: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    gap: 10px;
}
#page-products .boxes .box .t:after {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-image: url(../images/right-icon-red.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
    filter: brightness(0) invert(1);
    transition: 0.2s;
}
#page-products .boxes .box:hover .t {
    background-color: var(--color2);
    gap: 20px;
}
#page-products .boxes .box:hover .t:after {
    opacity: 0.5;
}
#page-products .boxes .box:hover .img {
    /*.t{
                    border-color: var(--color1);
                    letter-spacing: 1.1px;
                    &:after{
                        width: 100%;
                    }
                }*/
}
#page-products .boxes .box:hover .img img {
    transform: scale(1.02);
}
#page-contact .container.p {
    padding: 0 calc(var(--space) * 4);
}
@media (max-width: 1400px) {
    #page-contact .container.p {
        padding: 0 calc(var(--space) * 2);
    }
}
#page-contact .form {
    width: 555px;
    max-width: 100%;
    background-color: #fff;
    padding: var(--space);
    border: 1px solid #e1e1e1;
    max-width: 100%;
    box-shadow: 222px 236px 194px rgba(0, 0, 0, 0.01), 99px 105px 144px rgba(0, 0, 0, 0.01), 25px 26px 79px rgba(0, 0, 0, 0.02), 0px 0px 0px rgba(0, 0, 0, 0.02);
}
#page-contact .maps {
    position: relative;
    padding: 0 var(--space);
    margin-top: calc(var(--space) * 2);
}
#page-contact .maps iframe {
    border: 0px;
    outline: none;
    width: 100% !important;
    height: 630px !important;
}
#page-contact .maps .area {
    position: absolute;
    top: calc(var(--space) * 2);
    left: calc(var(--space) * 2);
    right: calc(var(--space) * 2);
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 1000px) {
    #page-contact .row .col {
        flex: 1 0 100%;
    }
    #page-contact .form {
        margin-top: 30px;
    }
}
#page-brands .brands-area {
    margin-top: calc(var(--space) * 2);
    padding: 0 calc(var(--space) * 2);
    position: relative;
}
#page-about .right-img {
    position: relative;
    height: 100%;
}
#page-about .right-img img {
    padding-left: var(--space);
    width: 100%;
    position: absolute;
    height: calc(100% + var(--space) * 6);
    object-fit: cover;
}
#page-about .right-img.notext img {
    height: calc(100% + calc(var(--space) * 2) + 100px);
}
#page-about .pro {
    margin: calc(var(--space) * 2) 0;
}
#page-about .redline-area {
    margin: calc(var(--space) * 2) 0;
    background-color: var(--color1);
    color: #fff;
    padding: calc(var(--space) * 2);
}
#page-about .redline-area .counters {
    margin-top: var(--space);
    display: flex;
    justify-content: space-between;
}
#page-about .redline-area .counters .count {
    user-select: none;
}
#page-about .redline-area .counters .count .t {
    font-size: 60px;
}
#page-about .redline-area .counters .count .t u {
    text-decoration: none;
}
#page-about .redline-area .counters .count span {
    font-size: 20px;
}
#page-about .slogan {
    font-size: 80px;
    line-height: 90px;
    margin: calc(var(--space) * 3) 0;
}
#page-about .brands-list {
    padding: 0 calc(var(--space) * 2);
    overflow: hidden;
}
#page-about .brands-list .owl-carousel {
    position: relative;
}
#page-about .brands-list .owl-carousel .owl-stage-outer {
    overflow: initial !important;
}
#page-about .brands-list .owl-carousel .owl-item {
    opacity: 0.5;
    transition: 0.2s;
}
#page-about .brands-list .owl-carousel .owl-item.active {
    opacity: 1;
}
#page-about .brands-list .owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: calc(var(--space) * 2);
}
#page-about .brands-list .owl-carousel .owl-dots button {
    width: 50px;
    height: 2px;
    opacity: 0.3;
    transition: 0.2s;
    background-color: #000;
}
#page-about .brands-list .owl-carousel .owl-dots button.active {
    opacity: 1;
}
#page-refs .ref {
    border: 1px solid #ccc;
    padding: 30px;
    height: calc(200px - 25px);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    transition: 0.2s;
    justify-content: center;
}
#page-refs .ref img {
    max-width: 200px;
    max-height: 100px;
}
#page-refs .ref:hover {
    border-color: #000;
}
#page-dealer .right-img img {
    height: 500px;
    width: 100%;
    object-fit: contain;
    background-position: center;
}
#page-dealer .text-area {
    margin-top: calc(var(--space) * 3);
}
#page-dealer .text-area h2 {
    font-size: 80px;
    line-height: 90px;
}
#page-dealer .red-area {
    display: flex;
    align-items: center;
    background-color: var(--color1);
    padding: calc(var(--space) * 2);
}
#page-dealer .red-area .l {
    width: 60%;
    font-size: 50px;
    line-height: 68px;
    color: #fff;
    padding-right: calc(var(--space) * 2);
}
#page-dealer .red-area .r {
    width: 40%;
}
#page-dealer .red-area .r .form {
    padding: var(--space);
    background-color: #fff;
}
#page-dealer .boxes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: calc(var(--space) * 2);
}
#page-dealer .boxes .box {
    flex: 1;
    border: 1px solid #e1e1e1;
    padding: 40px;
    gap: 40px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}
#page-dealer .boxes .box img {
    object-fit: contain;
    object-position: left;
    height: 50px;
    max-width: 100%;
    user-select: none;
}
#page-dealer .boxes .box .t {
    font-size: 25px;
}
#page-dealer .boxes .box:hover {
    border-color: #000;
}
#page-404 .area {
    display: flex;
    gap: var(--space);
    align-items: center;
    justify-content: center;
}
#page-404 .area .texts {
    text-align: right;
}
#page-404 .area .texts .t {
    font-size: 80px;
}
#page-404 .area .texts p:first-of-type {
    font-size: 30px;
}
#page-404 .area .texts p:last-of-type {
    margin-bottom: var(--space);
}
#page-404 .area .img {
    pointer-events: none;
    user-select: none;
}
#page-404 .area .img img {
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
    display: block;
}
#page-press .features {
    margin-bottom: 70px;
}
#page-press .features .item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
#page-press .features .item .img {
    overflow: hidden;
    position: relative;
}
#page-press .features .item .img img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
#page-press .features .item .texts {
    position: absolute;
    width: 400px;
    max-width: 100%;
    bottom: 30px;
    left: 30px;
    background-color: #fff;
    padding: 30px;
}
#page-press .features .item .texts .t {
    font-size: 20px;
}
#page-press .features .item:hover .img img {
    transform: scale(1.02);
}
#page-press .news-area {
    width: 845px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: var(--space);
}
#page-press .news-area .social {
    display: inline-block;
    padding: 15px;
    background-color: #e5e6e9;
}
#page-press .news-area .social span {
    opacity: 0.43;
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}
#page-press .news-area .social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
#page-press .top-bar {
    margin-bottom: 30px;
}
#page-press .top-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}
#page-press .top-bar ul li a {
    text-decoration: none;
    color: inherit;
    font-size: 22px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: 0.2s;
    opacity: 0.3;
}
#page-press .top-bar ul li a:after {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
    transform: rotate(45deg);
    filter: grayscale(100%);
    background-image: url("../images/right-icon-red.svg");
}
#page-press .top-bar ul li.active a,
#page-press .top-bar ul li:hover a {
    opacity: 1;
}
#page-press .top-bar ul li.active a:after,
#page-press .top-bar ul li:hover a:after {
    filter: grayscale(0%);
}
#page-press .box {
    height: calc(100% - var(--space));
    margin-bottom: var(--space);
}
#page-press .box .img {
    overflow: hidden;
    position: relative;
}
#page-press .box .img img {
    transition: 0.2s;
    width: 100%;
    object-fit: cover;
}
#page-press .box .t {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 5px;
}
#page-press .box a {
    text-decoration: none;
    color: inherit;
    display: block;
}
#page-press .box:hover .img img {
    transform: scale(1.02);
}
#page-press .head-img {
    margin-bottom: var(--space);
}
#page-press .head-img img {
    width: 100%;
    object-fit: cover;
}
#page-projects .p-navbar {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#page-projects .p-navbar div {
    display: flex;
    gap: 20px;
}
#page-projects .p-navbar select {
    height: 56px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 0 20px;
    padding-right: 50px;
    outline: none;
    background-image: url("../images/angle-bottom.svg");
    background-size: 13px;
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: 0.2s;
}
#page-projects .p-navbar select:focus {
    border-color: #000;
}
#page-projects .p-navbar .b {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    transition: 0.2s;
    cursor: pointer;
}
#page-projects .p-navbar .b i {
    transition: 0.2s;
    background-image: url("../images/maps.svg");
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    height: 18px;
    background-size: contain;
}
#page-projects .p-navbar .b:hover {
    background-color: var(--color1);
    color: #fff;
    border-color: var(--color1);
}
#page-projects .p-navbar .b:hover i {
    filter: brightness(0) invert(1);
}
#page-projects #map {
    width: 100%;
    height: 500px;
    display: none;
}
#page-projects #map.active {
    display: block;
}
#page-projects .boxes {
    margin: 20px 0;
}
#page-projects .boxes .box {
    padding: var(--space);
    background-color: #f6f6f6;
    display: flex;
    margin-bottom: 20px;
}
#page-projects .boxes .box .left {
    width: 50%;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#page-projects .boxes .box .left .t {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
#page-projects .boxes .box .left .d {
    font-size: 16px;
    line-height: 22px;
}
#page-projects .boxes .box .left .l {
    margin-top: 15px;
}
#page-projects .boxes .box .left .l a {
    color: var(--color1);
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color1);
}
#page-projects .boxes .box .left .l i {
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/angle-right-red.svg");
}
#page-projects .boxes .box .right {
    width: 50%;
    display: flex;
    gap: 20px;
}
#page-projects .boxes .box .right img {
    width: 100%;
}
#page-projects .boxes .box .right a {
    flex: 1;
}
.al-colur-section {
    background-color: #e5e6e9;
    margin: var(--space);
    padding: var(--space);
    display: flex;
    gap: 50px;
    align-items: center;
}
.al-colur-section img {
    max-width: 50vw;
    width: 100%;
}
.al-colur-section .t h1,
.al-colur-section .t h2,
.al-colur-section .t h3,
.al-colur-section .t h4 {
    margin-bottom: 32px;
    font-size: 40px;
}
.al-colur-section .t p:last-of-type {
    margin-bottom: 0;
}
.pr-box {
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 40px;
    transition: 0.5s;
    padding-bottom: 0;
    min-height: 535px;
    flex-direction: column;
    justify-content: space-between;
}
.pr-box a {
    color: inherit;
    display: block;
    text-decoration: none;
}
.pr-box img {
    max-width: 100%;
    transition: 0.2s;
    width: auto !important;
    margin: 0 auto;
    display: block;
    margin-top: 40px;
}
.pr-box .t {
    font-size: 23px;
    line-height: normal;
    margin-bottom: 10px;
}
.pr-box .d {
    width: 300px;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.pr-box .l {
    margin-top: 10px;
    transition: 0.2s;
    height: 33px;
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    gap: 10px;
    color: #ef373e;
    align-items: center;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}
.pr-box .l:after {
    position: absolute;
    content: "";
    width: 0%;
    transition: 1s;
    bottom: 0;
    left: 0;
    height: 1px;
    pointer-events: none;
    background-color: var(--color1);
}
.pr-box .l i {
    width: 8px;
    height: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../images/angle-right-red.svg");
}
.pr-box .l.active {
    border-radius: 36px;
    padding: 5px 25px;
    background-color: #ef373e;
    font-size: 14px;
    color: #fff;
}
.pr-box .l.active:after {
    display: none;
}
.pr-box .l.active i {
    filter: brightness(0) invert(1);
}
.pr-box.mb-4 {
    height: calc(100% - 1.5rem);
}
.pr-box:hover {
    border-color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.pr-box:hover .l:after {
    width: 100%;
}
.products-slide {
    padding: 0 calc(var(--space) * 2);
    overflow: hidden;
}
.products-slide .owl-carousel {
    position: relative;
}
.products-slide .owl-carousel .owl-stage-outer {
    overflow: initial !important;
}
.products-slide .owl-carousel .owl-nav {
    position: absolute;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    right: -70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.products-slide .owl-carousel .owl-nav button {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    color: #ef373e;
    border: 1px solid #c7c7c7;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 500px;
    pointer-events: auto;
    font-size: 24px;
    transition: 0.2s;
    outline: none;
}
.products-slide .owl-carousel .owl-nav button:hover {
    opacity: 0.8;
}
.products-slide .owl-carousel .owl-nav button span {
    position: relative;
    top: -3px;
}
.series-texts {
    text-align: center;
    margin-top: calc(
        var(--space) * 2
    ); /*.general-features{
    margin-top: calc(var(--space) * 2);
    .area{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        .t{
            margin-bottom: 30px;
            font-size: 30px;
        }
        .table{
            table{
                tr{
                    border-color: #F2F2F2;
                    td{
                        padding: 10px 0;
                        &:first-of-type{
                            opacity: 0.7;
                            padding-right: 35px;
                        }
                    }
                }
            }
        }
        .p-btn{
            margin-top: 40px;
            display: inline-flex;
            gap: 20px;
            align-items: center;
        }
    }
    .img{
        position: sticky;
        top: 90px;
        img,video{
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: 540px;
            object-fit: contain;
            object-position: center;
        }
    }
}*/
}
.series-texts h1,
.series-texts h2,
.series-texts h3,
.series-texts h4,
.series-texts h5 {
    margin-bottom: 20px;
    font-size: 35px;
}
.series-texts p {
    width: 900px;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0.8;
}
.series-texts p:last-of-type {
    margin-bottom: 0;
}
.general-features {
    margin: calc(var(--space) * 1) 0;
    padding: 0 calc(var(--space) * 4);
    padding-bottom: 0;
}
.general-features .area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.general-features .area .t {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 30px;
    line-height: 66px;
}
.general-features .area .table table {
    min-width: 550px;
}
.general-features .area .table table tr {
    border-color: #f2f2f2;
}
.general-features .area .table table tr td {
    padding: 10px 0;
}
.general-features .area .table table tr td:first-of-type {
    opacity: 0.7;
    padding-right: 35px;
}
.general-features .area .p-link {
    margin-top: 40px;
    display: inline-flex;
    gap: 20px;
    align-items: center;
}
.general-features .img {
    position: sticky;
    top: 90px;
}
.general-features .img img,
.general-features .img video {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 540px;
    object-fit: contain;
    object-position: center;
}
.colour-bar {
    height: 170px;
    display: none;
    position: relative;
}
.colour-bar .t {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    left: 0;
    right: 0;
    color: #fff;
    flex-direction: column;
    text-shadow: 1px 1px 2px #333;
}
.colour-bar .t span {
    font-size: 25px;
}
.colour-bar img {
    width: 100%;
    height: 100%;
}
.colour-bar .img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: repeat;
}
.colour-bar.active {
    display: block;
}
.series-boxes {
    margin: var(--space) 0;
}
.series-boxes h2 {
    font-size: 30px;
    margin-bottom: 25px;
}
.comparearea {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 10;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
}
.comparearea .container {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.comparearea .boxes {
    display: flex;
    gap: 25px;
    align-items: center;
}
.comparearea .boxes .box {
    position: relative;
}
.comparearea .boxes .box .clss {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color1);
    color: #fff;
    border-radius: 500px;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    line-height: 20px;
    z-index: 1;
    transition: 0.2s;
}
.comparearea .boxes .box .clss:hover {
    background-color: var(--color2);
}
.comparearea .boxes .box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: var(--color3);
}
.comparearea .boxes .box .t {
    margin-top: 5px;
    font-size: 13px;
}
.comparearea.active {
    opacity: 1 !important;
    visibility: visible;
    transform: translateY(0%);
    pointer-events: auto;
}
.compare-box {
    position: relative;
    border: 1px solid #ccc;
    padding: 25px;
    transition: 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.compare-box.mb-4 {
    height: calc(100% - 1.5rem);
}
.compare-box .bb {
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.compare-box .cmp {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: #727272;
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.compare-box .cmp label {
    cursor: pointer;
}
.compare-box .cmp input[type="checkbox"] {
    position: relative;
    width: 15px;
    cursor: pointer;
    height: 15px;
    outline: none;
}
.compare-box .cmp input[type="checkbox"]:after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #727272;
    pointer-events: none;
}
.compare-box .cmp input[type="checkbox"]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/checked.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px 7px;
    opacity: 0;
    z-index: 1;
    transition: 0.2s;
    pointer-events: none;
}
.compare-box .cmp input[type="checkbox"]:checked:before {
    opacity: 1;
}
.compare-box .img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.compare-box .t {
    font-weight: bold;
    font-size: 20px;
    margin: 15px 0;
    margin-bottom: 5px;
}
.compare-box table {
    width: calc(100% + 10px);
    border-spacing: 5px;
    border-collapse: initial;
    margin: 0 -5px;
}
.compare-box table tr {
    display: none;
}
.compare-box table tr td {
    background-color: #e9e9e9;
    font-size: 12px;
    padding: 7px 15px;
    border-radius: 5px;
}
.compare-box table tr td:last-of-type {
    font-weight: bold;
}
.compare-box table tr td[colspan] {
    padding: 10px 15px;
    font-weight: normal !important;
}
.compare-box table tr:nth-child(1),
.compare-box table tr:nth-child(2),
.compare-box table tr:nth-child(3),
.compare-box table tr:nth-child(4),
.compare-box table tr:nth-child(5),
.compare-box table tr:nth-child(6) {
    display: table-row;
}
.compare-box .l {
    text-align: center;
    margin-top: 15px;
}
.compare-box .l a {
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-flex;
    color: inherit;
    font-size: 15px;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: 0.2s;
}
.compare-box .l a:after {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-image: url(../images/right-icon-red.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
}
.compare-box .l a:hover {
    background-color: var(--color1);
    color: #fff;
    border-color: var(--color1);
}
.compare-box .l a:hover:after {
    filter: brightness(0) invert(1);
}
.compare-box:hover {
    border-color: #000;
}
.props-box {
    margin: var(--space) calc(var(--space) * 1);
}
.props-box .area {
    background-color: var(--color3);
    display: flex;
    align-items: center;
}
.props-box .area .left {
    width: 50%;
    padding-top: 100px;
}
.props-box .area .left img {
    width: 100%;
    height: calc(100vh - 180px);
    object-fit: contain;
    object-position: bottom center;
}
.props-box .area .right {
    width: 50%;
    gap: 70px;
    display: flex;
    flex-direction: column;
}
.props-box .area .right .t {
    width: 500px;
    max-width: 100%;
    display: none;
}
.props-box .area .right .t.active {
    display: block;
}
.props-box .area .right .t h1,
.props-box .area .right .t h2,
.props-box .area .right .t h3,
.props-box .area .right .t h4,
.props-box .area .right .t h5 {
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 40px;
}
.props-box .area .right .t p {
    opacity: 0.5;
}
.props-box .area .right .t p:last-of-type {
    margin-bottom: 0;
}
.props-box .area .right .p ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 50px;
    transition: 0.2s;
}
.props-box .area .right .p ul li {
    cursor: pointer;
    user-select: none;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    line-height: 27px;
}
.props-box .area .right .p ul li .img {
    display: block;
    width: 100px;
    height: 100px;
    padding: 30px;
    background-color: transparent;
    border-radius: 500px;
}
.props-box .area .right .p ul li .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.2s;
}
.props-box .area .right .p ul li.active .img img {
    filter: brightness(0) invert(1);
}
.props-box .area .right .p ul li.p1 .img {
    background-color: transparent;
    border: 1px solid #e67e22;
}
.props-box .area .right .p ul li.p1.active .img {
    background-color: #e67e22;
}
.props-box .area .right .p ul li.p2 .img {
    background-color: transparent;
    border: 1px solid #3498db;
}
.props-box .area .right .p ul li.p2.active .img {
    background-color: #3498db;
}
.props-box .area .right .p ul li.p3 .img {
    background-color: transparent;
    border: 1px solid #826ae0;
}
.props-box .area .right .p ul li.p3.active .img {
    background-color: #826ae0;
}
.props-box .area .right .p ul li.p4 .img {
    background-color: transparent;
    border: 1px solid #27ae60;
}
.props-box .area .right .p ul li.p4.active .img {
    background-color: #27ae60;
}
.props-box.category .area .left {
    padding-top: 0;
}
.props-box.category .area .left img {
    height: 40vw;
    padding-left: calc(var(--space) * 2);
    object-position: bottom;
}
.props-box.category .area .right {
    gap: 25px;
    flex-direction: column-reverse;
}
.props-box.category .area .right .t h1,
.props-box.category .area .right .t h2,
.props-box.category .area .right .t h3,
.props-box.category .area .right .t h4,
.props-box.category .area .right .t h5 {
    font-size: 33px;
    line-height: 50px;
}
.props-box.category .area .right .p ul {
    gap: 35px;
}
.props-box.category .area .right .p ul li {
    font-size: 12px;
    line-height: initial;
    gap: 15px;
}
.props-box.category .area .right .p ul li .img {
    width: 70px;
    height: 70px;
    padding: 20px;
    background-color: #eaedf3;
}
.props-box.category .area .right .p ul li .img img {
    filter: brightness(0%);
    opacity: 0.3;
}
.props-box.category .area .right .p ul li.active .img {
    background-color: #ef373e;
}
.props-box.category .area .right .p ul li.active .img img {
    opacity: 1;
    filter: brightness(0) invert(1);
}
.props-box.other .area .right {
    flex-direction: column-reverse;
}
.props-box.other .area .right .p ul {
    gap: 25px;
    flex-direction: column;
    align-items: flex-start;
}
.props-box.other .area .right .p ul li {
    flex-direction: row;
}
.props-box.other .area .right .p ul li .img {
    width: 80px;
    height: 80px;
    padding: 25px;
}
.left-right-box {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}
.left-right-box .right {
    width: 50%;
}
.left-right-box .right img {
    width: 100%;
}
.left-right-box .left {
    width: 50%;
    padding-left: calc(var(--space) * 3);
}
.left-right-box .left .s {
    color: #d0d2dc;
    font-size: 27px;
    line-height: 41px;
    margin-bottom: 15px;
}
.left-right-box .left .t {
    font-weight: 500;
    font-size: 6vw;
    line-height: 7vw;
}
.left-right-box .left .b {
    font-size: 19px;
    line-height: 29px;
}
.left-right-box .left .slg {
    margin-top: 50px;
    font-size: 1.2vw;
    line-height: 2vw;
    width: 430px;
    max-width: 100%;
}
.effect-pvc {
    position: relative;
    height: calc(100vh - 180px);
}
.effect-pvc .f {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    object-fit: contain;
    object-position: right;
}
.effect-pvc .f.current {
    opacity: 1;
    pointer-events: auto;
}
#page-series .numerical-data {
    margin: calc(var(--space) * 0) 0;
    padding: 85px calc(var(--space) * 2);
    background: #f8f8fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#page-series .numerical-data .box {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #d0d2dc;
    transition: 0.2s;
    user-select: none;
}
#page-series .numerical-data .box b {
    font-size: 112px;
}
#page-series .numerical-data .box span {
    display: block;
    font-size: 19px;
}
#page-series .numerical-data .box:hover {
    color: #ef373e;
}
#page-series .colour-select {
    padding: calc(var(--space) * 2);
}
#page-series .colour-select .img {
    position: sticky;
    top: 120px;
    height: 50vh;
}
#page-series .colour-select .img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}
#page-series .colour-select .f {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
#page-series .colour-select .t {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 30px;
}
#page-series .colour-select .c {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#page-series .colour-select .c .cc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: 0.2s;
    cursor: pointer;
}
#page-series .colour-select .c .cc:hover {
    opacity: 0.85;
}
#page-series .colour-select .c .cc span {
    font-size: 12px;
}
#page-series .colour-select .c .cc img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}
#page-series .info-boxes {
    margin: 70px 0;
    padding: 0 calc(var(--space) * 3);
    display: flex;
    gap: 20px;
    flex-direction: column;
}
#page-series .info-boxes .box {
    padding: 25px 40px;
    border: 1px solid #e1e1e1;
    display: flex;
    gap: 70px;
    align-items: center;
}
#page-series .info-boxes .box .i img {
    width: 80px;
}
#page-series .info-boxes .box .t b {
    display: block;
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 20px;
}
#page-series .info-boxes .box .t p {
    font-size: 16px;
    line-height: 22px;
}
#page-series .info-boxes .box .t p:last-of-type {
    margin-bottom: 0;
}
#page-series .gallery-tabs {
    margin: calc(var(--space) * 2) 0;
    padding: 0 calc(var(--space) * 3);
}
#page-series .gallery-tabs .tb {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    margin-bottom: 60px;
}
#page-series .gallery-tabs .tb li a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 500px;
    border: 1px solid #99e0ef;
    transition: 0.2s;
    background-color: #e7f6f9;
    padding: 10px 25px;
}
#page-series .gallery-tabs .tb li a:hover {
    background-color: #99e0ef;
}
#page-series .gallery-tabs .tb li.active a {
    background-color: #99e0ef;
}
#page-series .gallery-tabs .tabs-datas .tab {
    display: none;
}
#page-series .gallery-tabs .tabs-datas .tab.active {
    display: block;
}
#page-series .gallery-tabs .box {
    background-color: #f5f7f8;
    padding: 10px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}
#page-series .gallery-tabs .box a {
    display: block;
    text-decoration: none;
}
#page-series .gallery-tabs .box img {
    width: 100%;
}
.contact-form {
    padding: calc(var(--space) * 1);
}
.contact-form .area {
    background-color: #e7f6f9;
    padding: calc(var(--space) * 2);
    display: flex;
    align-items: center;
}
.contact-form .area .left {
    width: 60%;
    padding-right: calc(var(--space) * 4);
}
.contact-form .area .left h1,
.contact-form .area .left h2,
.contact-form .area .left h3,
.contact-form .area .left h4,
.contact-form .area .left h5 {
    font-weight: bold;
    font-size: 3vw;
    line-height: 3.4vw;
    margin-bottom: 30px;
}
.contact-form .area .left p {
    font-weight: 500;
    font-size: 1.5vw;
    line-height: 2vw;
    color: #616161;
}
.contact-form .area .left p:last-of-type {
    margin-bottom: 0;
}
.contact-form .area .right {
    width: 40%;
}
.contact-form .area .right .form {
    background-color: #fff;
    padding: 50px;
    border: 1px solid #e1e1e1;
    box-shadow: 222px 236px 194px rgba(0, 0, 0, 0.01), 99px 105px 144px rgba(0, 0, 0, 0.01), 25px 26px 79px rgba(0, 0, 0, 0.02), 0px 0px 0px rgba(0, 0, 0, 0.02);
}
.pvc-prop-area {
    background-color: #f8f8fb;
    position: relative;
    margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.pvc-prop-area .left {
    width: 650px;
}
.pvc-prop-area .left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: rotateY(180deg);
}
.pvc-prop-area .right {
    min-width: 600px;
    padding: 60px 0;
}
.pvc-prop-area .right .t {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 62px;
}
.pvc-prop-area .right .d {
    margin-bottom: 36px;
    font-size: 16px;
    width: 500px;
    max-width: 100%;
}
.pvc-prop-area .right .area {
    margin-top: 64px;
}
.pvc-prop-area .right .area .tt {
    font-size: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.pvc-prop-area .right .area .prop-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.pvc-prop-area .right .area .prop-group .prop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.pvc-prop-area .right .area .prop-group .prop .i {
    border-radius: 500px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaedf3;
    transition: 0.2s;
    box-shadow: none;
}
.pvc-prop-area .right .area .prop-group .prop span {
    text-align: center;
    font-size: 12px;
}
.pvc-prop-area .right .area .prop-group .prop:hover {
    opacity: 0.8;
}
.pvc-prop-area .right .area .prop-group .prop.active .i {
    background-color: #ef373e;
}
.pvc-prop-area .right .area .prop-group.prop-color .prop {
    display: none;
}
.pvc-prop-area .right .area .prop-group.prop-color .prop.active .i {
    box-shadow: 0 0 0 5px #e7e7e7;
}
.pvc-prop-area .right .area .prop-group.prop-color .prop.visible {
    display: flex;
}
.big-image-area {
    position: relative;
}
.big-image-area img {
    width: 100%;
    height: auto;
}
.big-image-area .texts {
    position: absolute;
    top: 15vw;
    left: 48vw;
    width: 40vw;
}
html[lang="fr"] .header .container .right,
html[lang="de"] .header .container .right {
    gap: 20px;
}
html[lang="fr"] .header .container .right .big-menu-btn,
html[lang="de"] .header .container .right .big-menu-btn {
    font-size: 12px;
}
@media (max-width: 1500px) {
    html[lang="fr"] .header .container .right .menu ul li a,
    html[lang="de"] .header .container .right .menu ul li a {
        font-size: 12px;
    }
}
