
@charset "UTF-8";

:root {
    --font-family: "Istok Web";
    --font-size: 16px;
    --font-weight: 400;
    --font-style: normal;
    --line-height: 1.6;
    --heading-font-family: "Montserrat";
    --heading-line-height: 1.3;
    --heading-font-weight: 700;
    --primary-color: #FFFFFF;
    --primary-bg-color: #F3F3F3;
    --text-primary: #303036;
    --text-secondary: #63636b;
    --border-color: #D4D4E1;
    --placeholder-color: #6F6F76;
    --error-color: #ff3d0d;
    --alert-primary: #004085;
    --alert-success: #23D36A;
    --alert-danger: #EA2626;
    --alert-danger2: #f05454;
    --alert-danger3: #FE642E;
    --alert-warning: #FFD43D;
    --history: #D1D1D1;
    --el-border-radius: 10px;
    --el-border-radius-min: 6px;
    --el-border-radius-xs: 3px;
    --el-box-shadow: 2px 4px 20px 1px rgba(45, 45, 45, 0.13);
    --header-box-shadow: 0px 0px 14px 0px rgba(77, 82, 94, 0.15);

    --main-color: #e51b1f;
                    --el-gradient1: #d12b2e;
                    --el-gradient2: #eb4a4d;
                    --primary-color2: #FFFFFF;
                       --zeussDOC: #D2A800;
    --zeussSTORAGE: #0DDEDD;
    --zeussINTRA: #FF0000;
    --zeussDISPO: #004085;
    --zeussHR: #FF008F;
    --zeussCONTROL: #FF00FF;
    --zeussMANAGE: #00FF00;
    --zeussPROJECTS: #474747;
    --zeussOPERATOR: #FFD952;
    --zeussANALYTICS: #ffa08d;
    --zeussFINANCE: #389400;

}

@font-face {
    font-family: "Istok Web";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Istok Web"), url("../fonts/istok-web-v15-latin/istok-web-v15-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Istok Web";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Istok Web"), url("../fonts/istok-web-v15-latin/istok-web-v15-latin-700.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Montserrat"), url("../fonts/montserrat-v15-latin/montserrat-v15-latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Montserrat"), url("../fonts/montserrat-v15-latin/montserrat-v15-latin-700.woff2") format("woff2");
}

@font-face {
    font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Material Icons"), url("../fonts/material-icons/material-icons.woff2") format("woff2");
}

@font-face {
    font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Material Icons Outlined"), url("../fonts/material-icons/material-icons-outlined.woff2") format("woff2");
}

/* 1.2 Base */
* {
    box-sizing: border-box;
}

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

html {
    font-size: var(--font-size);
}

html, body {
    height: 100%;
}

body {
    position: relative;
    font-size: 1rem;
    width: 100%;
    min-width: 320px;
    line-height: var(--line-height);
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    overflow-x: hidden;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    opacity: 1;
    background-color: var(--primary-color);
}

body.overflow-hidden {
    overflow: hidden;
}

main {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

main.main-visible {
    opacity: 1;
}

.main-inner {
    flex: 1 0 auto;
    overflow: hidden;
}

.footer {
    flex: 0 0 auto;
}

header ul, header ol, footer ul, footer ol, aside ul, aside ol, nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: var(--main-color);
    text-decoration: underline;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

.gutters-default {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.gutters-default > .col,
  .gutters-default > [class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.gutters-20 {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.gutters-20 > .col,
  .gutters-20 > [class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.gutters-10 {
    margin-right: -0.3125rem;
    margin-left: -0.3125rem;
}

.gutters-10 > .col,
  .gutters-10 > [class*="col-"] {
    padding-right: 0.3125rem;
    padding-left: 0.3125rem;
}

.list-style-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
}

.d-flex-item {
    margin-left: 1rem;
}

/* 1.3 Tables */
table {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

table.table-border {
    border: 1px solid var(--border-color);
}

table.table-border td {
    border-right: 1px solid var(--border-color);
}

table.table-secondary tr:nth-child(even) {
    background-color: transparent;
}

table.table-secondary tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
}

table.table-secondary tbody tr:first-child {
    border-top: 1px solid var(--border-color);
}

table.table-secondary tbody tr:hover {
    background-color: var(--primary-bg-color);
}

table.table-bordered tr:nth-child(even) {
    background-color: transparent;
}

table.table-bordered td {
    border: 1px solid var(--border-color);
}

table.table-bordered thead tr th {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

table td, table th {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

table tr:nth-child(even) {
    background-color: var(--primary-bg-color);
}

table thead tr {
    border-bottom: 1px solid var(--border-color);
}

table thead tr th {
    font-weight: bold;
    font-size: 1rem;
}

table tfoot {
    font-weight: 600;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .table-responsive {
        position: relative;
        width: 100%;
        overflow-y: auto;
    }

    .table-responsive table {
        width: 650px;
    }

    .table-responsive-outer {
        position: relative;
    }

    .table-responsive-outer::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0.625rem;
        height: 100%;
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.3), #fff);
    }

    .table-container::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 0.875rem;
        height: 0.875rem;
    }

    .table-container::-webkit-scrollbar-thumb {
        border-radius: var(--el-border-radius);
        border: 3px solid #fff;
        background-color: rgba(0, 0, 0, 0.3);
    }
}

/* 1.4 Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    padding: 0;
    margin: 0 0 2rem 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
    color: var(--main-color);
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 2rem 0;
}

mark {
    padding: .2em;
    background-color: var(--main-color);
    color: var(--primary-color);
}

small {
    font-size: 0.85rem;
}

blockquote {
    padding: 0 0 0 1.25em;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--main-color);
}

blockquote p {
    margin-bottom: 0 !important;
}

blockquote footer {
    color: var(--main-color);
    font-style: normal;
    padding-top: 0.8em;
}

.content {
    text-align: justify;
}

.content > * {
    margin-bottom: 2rem;
}

.content > *:last-child {
    margin-bottom: 0;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
    margin-top: 2.5rem;
    text-align: left;
}

.content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child {
    margin-top: 0;
}

.content ul, .content ol {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.content ul li, .content ol li {
    position: relative;
    display: flex;
    margin-bottom: 0.625rem;
}

.content ul li::before, .content ol li::before {
    margin-right: 0.5rem;
    display: block;
    min-width: 1rem;
    color: var(--main-color);
}

.content ul li::before {
    content: "\e5ca";
    position: relative;
    top: -0.125rem;
    font-family: 'Material Icons';
    list-style: var(--line-height);
    font-size: 1.125rem;
}

.content ol {
    counter-reset: item;
}

.content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
}

.content img {
    display: block;
    margin-bottom: 2rem;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }
}

/* === 2. Components === */
/* 2.1 Accordion */
.accordion {
    color: var(--text-secondary);
    margin-bottom: -1.25rem;
}

.accordion-col {
    margin-bottom: 1.25rem;
}

.accordion-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-item {
    display: block;
    border-radius: var(--el-border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-item.active .accordion-trigger::before {
    transform: rotate(0);
}

.accordion-trigger {
    position: relative;
    cursor: pointer;
    padding: 1.25rem 3.125rem 1.25rem 1.25rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.accordion-trigger::after, .accordion-trigger::before {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 0.875rem;
    height: 2px;
    background-color: var(--main-color);
    margin-top: -1px;
    transition: all 0.3s;
}

.accordion-trigger::before {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

/* 2.2 Alerts */
.alerts {
    position: fixed;
    right: 4rem;
    bottom: 1rem;
    padding-left: 15px;
    z-index: 300000;
    width: 90%;
}

.alert-ico > i{
  line-height: 1rem !important;
  color: white !important;
}

.alerts.alerts-static {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 0;
}

.alerts.alerts-static .alert {
    margin-left: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: flex-start;
    border-radius: var(--el-border-radius-min);
    color: var(--primary-color);
    font-size: 1rem;
    margin-left: 15px;
    margin-bottom: 0.625rem;
    overflow: hidden;
}

.alert::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--alert-primary);
    opacity: 0.9;
    z-index: -1;
}

.alert a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.alert a a {
    color: var(--text-primary);
}

.alert a:hover {
    text-decoration: underline;
}

.alert .alert-ico {
    color: var(--alert-primary);
}

.alert:last-child {
    margin-bottom: 0;
}

.alert.alert-success::after {
    background-color: var(--alert-success);
}

.alert.alert-success .alert-ico {
    color: var(--alert-success);
}

.alert.alert-danger::after {
    background-color: var(--alert-danger);
}

.alert.alert-danger .alert-ico {
    color: var(--alert-danger);
}

.alert.alert-warning::after {
    background-color: var(--alert-warning);
}

.alert.alert-warning .alert-ico {
    color: var(--alert-warning);
}

.alert-text {
    line-height: 1.375rem;
}

.alert-ico {
    display: flex;
    align-items: center;
    margin-right: 0.625rem;
}

.alert-close {
    position: absolute;
    right: 0.375rem;
    top: 0.375rem;
    padding: 0;
    border: none;
    background-color: transparent;
    line-height: 1;
    cursor: pointer;
    color: var(--text-primary);
    outline: none;
    opacity: 0.6;
    transition: all 0.2s;
}

.alert-close:focus {
    outline: none;
}

.alert-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.alert-title {
    margin-bottom: 0.625rem;
    margin-left: 1rem;
}

/* 2.3 Breadcrumb */
.bread-crumbs {
    position: relative;
    padding: 1.125rem 0;
    background-color: var(--primary-bg-color);
}

.bread-crumbs-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 1rem;
    overflow: hidden;
}

.bread-crumbs-list li {
    position: relative;
    margin-right: 2rem;
    white-space: nowrap;
}

.bread-crumbs-list li:last-child {
    margin-right: 0;
}

.bread-crumbs-list li:last-child a, .bread-crumbs-list li:last-child span {
    pointer-events: none;
    cursor: text;
    color: var(--main-color);
}

.bread-crumbs-list li:last-child a:hover, .bread-crumbs-list li:last-child span:hover {
    text-decoration: none;
}

.bread-crumbs-list li:last-child i {
    display: none;
}

.bread-crumbs-list li a, .bread-crumbs-list li span {
    text-decoration: none;
    color: var(--text-secondary);
}

.bread-crumbs-list li a:hover, .bread-crumbs-list li span:hover {
    text-decoration: underline;
}

.bread-crumbs-list li i {
    position: absolute;
    top: 50%;
    right: -1.5625rem;
    margin-top: -0.5625rem;
    color: var(--main-color);
}

/* 2.4 Buttons */
.wrap-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 -1.25rem -1.25rem;
}

.wrap-btn .btn {
    display: block;
    margin: 0 0 1.25rem 1.25rem;
}

.btn {
    --ripple-width: 100%;
    --ripple-time: 0.4s;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: var(--font-weight);
    font-family: var(--font-family), sans-serif;
    color: var(--primary-color2);
    fill: var(--primary-color2);
    background: var(--el-gradient2);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
    text-decoration: none;
    padding: 0.75em 1.75em;
    border-radius: var(--el-border-radius-min);
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--ripple-time);
}

.btn > i, .btn > span, .btn > svg {
    position: relative;
    z-index: 1;
}

.btn .el-ripple-circle {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--el-gradient1);
    transform: translate(-50%, -50%);
    transition: width var(--ripple-time), padding-top var(--ripple-time);
    z-index: 0;
}

.btn.btn-w240 {
    min-width: 15rem;
}

.btn.btn-wide {
    display: block;
    width: 100%;
}

.btn.btn-min {
    font-size: 0.875rem;
    padding: 0.375em 1em;
}

.btn.btn-min.btn-with-icon > svg {
    width: 0.8125rem;
    height: 0.8125rem;
}

.btn.btn-small {
    font-size: 0.775rem;
}

.btn.btn-small.btn-with-icon > svg {
    width: 0.7125rem;
    height: 0.7125rem;
}

.btn.btn-large {
    font-size: 1.125rem;
}

.btn.btn-large.btn-with-icon > svg {
    width: 1rem;
    height: 1rem;
}

.btn.btn-border {
    background: transparent;
    color: var(--text-primary);
    fill: var(--text-primary);
}

.btn.btn-small-m1 {
    background: transparent;
    color: var(--text-primary);
    fill: #8A2BE2;
}

.btn.btn-small-m2 {
    background: transparent;
    color: var(--text-primary);
    fill: #00CD00;
}

.btn.btn-small-m3 {
    background: transparent;
    color: var(--text-primary);
    fill: #ff6d42;
}

.btn.btn-small-m5 {
    background: transparent;
    color: var(--text-primary);
    fill: #00B67F;
}

.btn.btn-border:hover, .btn.btn-small-m1:hover, .btn.btn-small-m2:hover, .btn.btn-small-m3:hover {
    background: none;
}

.btn.btn-small-m5:hover {
    background: none;
    color: #000;
}

.btn.btn-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-primary);
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-small-m1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #8A2BE2;
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-small-m2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #00CD00;
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-small-m3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ff6d42;
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-small-m5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #00B67F;
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.btn.btn-border .el-ripple-circle {
    background: var(--text-primary);
}

.btn.btn-small-m1 .el-ripple-circle {
    background: #8A2BE2;
}

.btn.btn-small-m2 .el-ripple-circle {
    background: #00CD00;
}

.btn.btn-small-m3 .el-ripple-circle {
    background: #ff6d42;
}

.btn.btn-small-m5 .el-ripple-circle {
    background: #00B67F;
    color: #000;
}

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

.btn.btn-with-icon > svg {
    width: 0.875rem;
    height: 0.875rem;
}

.btn.btn-with-icon .btn-icon-right {
    margin-left: 0.5rem;
}

.btn.btn-with-icon .btn-icon-left {
    margin-right: 0.5rem;
}

.btn:focus {
    outline: none;
}

.btn:hover {
    color: var(--primary-color);
    fill: var(--primary-color);
}

.btn:hover .el-ripple-circle {
    width: calc(var(--ripple-width) * 2.25);
    padding-top: calc(var(--ripple-width) * 2.25);
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ripple 1s ease forwards;
    z-index: 3;
}

@keyframes ripple {
    0% {
        transform: none;
    }

    100% {
        transform: scale(250);
    }
}

.hl-list li.active > .hover-link {
    pointer-events: none;
}

.hl-list li.active > .hover-link > span {
    transform: translateY(100%);
}

.hl-list li.active > .hover-link::after {
    transform: translateY(0);
}

.hl-list li.open > .hover-link > span {
    transform: translateY(100%);
}

.hl-list li.open > .hover-link::after {
    transform: translateY(0);
}

.hover-link {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: var(--text-primary);
}

.hover-link::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.4s;
    color: var(--main-color);
}

.hover-link > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
}

.hover-link:hover > span, .hover-link.active > span {
    transform: translateY(100%);
}

.hover-link:hover::after, .hover-link.active::after {
    transform: translateY(0);
}

.wrapp-btn-circl-arrow {
    display: flex;
    flex-wrap: wrap;
}

.btn-circl-arrow {
    position: relative;
    display: flex;
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
    fill: var(--primary-color);
    background-color: var(--main-color);
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    overflow: hidden;
  /*&:hover {
		width: 170px;
		padding: 0 15px;
		.btn-circl-arrow-text {
			position: relative;
			transform: translateX(0);
		}
	}*/
}

.btn-circl-arrow:hover {
    background-color: var(--primary-bg-color);
}

.btn-circl-arrow > svg {
    margin: auto;
    transition: all 0.2s;
}

.btn-circl-arrow.btn-circl-arrow-white {
    color: var(--main-color);
    fill: var(--main-color);
    background-color: var(--primary-color);
}

.btn-circl-arrow.btn-circl-arrow-white:hover {
    background-color: var(--primary-bg-color);
}

.btn-circl-arrow-text {
    position: absolute;
    transform: translateX(-100%);
    z-index: 1;
    white-space: nowrap;
    margin-right: 0.625rem;
    line-height: 2rem;
    transition: all 0.2s;
}

.wrapp-btn-link {
    display: flex;
}

.btn-link {
    display: flex;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    color: var(--main-color);
    fill: var(--main-color);
}

.btn-link .btn-link-ico {
    margin-top: -0.0625rem;
    transition: all 0.2s;
}

.btn-link .btn-link-ico-right {
    margin-left: 0.375rem;
}

.btn-link .btn-link-ico-left {
    margin-right: 0.625rem;
}

.btn-link:hover .btn-link-ico {
    transform: rotateY(180deg);
}

.btn-top {
    position: fixed;
    right: 15px;
    bottom: -5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background: var(--primary-color);
    z-index: 100;
    fill: var(--main-color);
    transition: all 0.2s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.btn-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
}

.btn-top:hover {
    border-color: var(--main-color);
    fill: var(--main-color);
}

.btn-top > svg {
    width: 0.875rem;
    height: 0.625rem;
    margin: auto;
    transform: rotate(-90deg);
}

/* 2.5 Carusel */
.flickity-page-dots {
    position: relative;
    bottom: inherit;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: -0.625rem;
}

.flickity-page-dots .dot {
    position: relative;
    width: 0.875rem;
    height: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: transparent;
    opacity: 1;
    margin: 0 1.125rem 0.625rem 0;
}

.flickity-page-dots .dot:last-child {
    margin-right: 0;
}

.flickity-page-dots .dot.is-selected::after {
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
}

.flickity-page-dots .dot:hover::after {
    background-color: var(--main-color);
}

.flickity-page-dots .dot::after {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--text-primary);
    margin: 0;
    border-radius: 50%;
    outline: none;
    transition: all 0.2s;
}

.flickity-dots-white .flickity-page-dots .dot::after {
    background-color: var(--primary-color);
}

.flickity-dots-white .flickity-page-dots .dot.is-selected::after {
    background-color: var(--main-color);
}

.flickity-prev-next-button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--el-border-radius);
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    display: flex;
}

.flickity-prev-next-button .flickity-button-icon {
    position: relative;
    left: 0;
    top: 0;
    width: 0.8125rem;
    height: 0.8125rem;
    margin: auto;
    fill: var(--main-color);
}

.ios .flickity-prev-next-button .flickity-button-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.carusel-col {
    padding: 0;
    margin-right: 30px;
}

.carusel-col:last-child {
    margin-right: 0;
}

.flickity-dots-absolute .flickity-page-dots {
    position: absolute;
    bottom: 2rem;
}

.project-carusel {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.project-carusel .flickity-prev-next-button.previous {
    left: -1.25rem;
}

.project-carusel .flickity-prev-next-button.next {
    right: -1.25rem;
}

/* 2.6 Forms */
*::-webkit-input-placeholder,
*::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
textarea,
select {
    display: block;
    font-size: 1rem;
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    width: 100%;
    padding: calc(0.75em - 1px) 1rem;
    margin-bottom: 1rem;
    border-radius: var(--el-border-radius-min);
    border: 1px solid var(--border-color);
    background-color: transparent;
    outline: none;
    color: var(--text-primary);
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.2s;
}

input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="url"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime-local"]:focus,
  textarea:focus,
  select:focus {
    border-color: var(--main-color);
}

textarea {
    height: auto;
    resize: none;
}

.select {
    position: relative;
}

.select select {
    padding-right: 2rem;
}

.select::after {
    content: "";
    position: absolute;
    right: 0.8rem;
    top: 50%;
    margin-top: -0.125rem;
    border: 0.3125rem solid transparent;
    pointer-events: none;
    border-top: 0.375rem solid var(--text-primary);
}

.form-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="password"],
  .form-field input[type="number"],
  .form-field input[type="search"],
  .form-field input[type="url"],
  .form-field input[type="date"],
  .form-field input[type="month"],
  .form-field input[type="week"],
  .form-field input[type="time"],
  .form-field input[type="datetime-local"],
  .form-field textarea,
  .form-field select,
  .form-field .form-field-label {
    margin: 0;
}

.form-field.form-field-m0 {
    margin: 0;
}

.form-field.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.form-field label.error {
    position: absolute;
    right: 0.3125rem;
    top: 0.3125rem;
    color: var(--error-color);
    font-size: 0.75rem;
    line-height: 1;
}

.form-field input.error,
  .form-field textarea.error,
  .form-field select.error {
    border-color: var(--error-color);
}

.form-field.form-field-large input[type="text"],
  .form-field.form-field-large input[type="email"],
  .form-field.form-field-large input[type="tel"],
  .form-field.form-field-large input[type="password"],
  .form-field.form-field-large input[type="number"],
  .form-field.form-field-large input[type="search"],
  .form-field.form-field-large input[type="url"],
  .form-field.form-field-large input[type="date"],
  .form-field.form-field-large input[type="month"],
  .form-field.form-field-large input[type="week"],
  .form-field.form-field-large input[type="time"],
  .form-field.form-field-large input[type="datetime-local"],
  .form-field.form-field-large textarea,
  .form-field.form-field-large select,
  .form-field.form-field-large .form-field-label {
    font-size: 1.125rem;
}

.form-field.form-field-small input[type="text"],
  .form-field.form-field-small input[type="email"],
  .form-field.form-field-small input[type="tel"],
  .form-field.form-field-small input[type="password"],
  .form-field.form-field-small input[type="number"],
  .form-field.form-field-small input[type="search"],
  .form-field.form-field-small input[type="url"],
  .form-field.form-field-small input[type="date"],
  .form-field.form-field-small input[type="month"],
  .form-field.form-field-small input[type="week"],
  .form-field.form-field-small input[type="time"],
  .form-field.form-field-small input[type="datetime-local"],
  .form-field.form-field-small textarea,
  .form-field.form-field-small select,
  .form-field.form-field-small .form-field-label {
    font-size: 0.875rem;
}

.form-field.form-field-small .select::after {
    border-width: 0.25rem;
    border-top-width: 0.3125rem;
    margin-top: -0.125rem;
}

.form-field small {
    color: var(--text-secondary);
}

.input-states-labelled {
    display: block;
    line-height: 1;
}

.form-field-group {
    position: relative;
}

.form-field-group.focus .form-field-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem);
}

.required {
    color: var(--error-color);
}

.form-field-label {
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    color: var(--placeholder-color);
    padding: calc(0.75em - 1px) 1rem;
    transition: all 0.2s;
    border: 1px solid transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.form-btn {
    display: flex;
}

.form-btn.form-btn-wide .btn {
    width: 100%;
}

.form-btn .btn {
    display: block;
}

.custom-controls {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5rem;
    margin-bottom: -1rem;
}

.custom-control {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Begin checkbox */
.checkbox {
    position: relative;
}

.checkbox-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.checkbox-input:hover + .checkbox-label .checkbox-ico {
    border-color: var(--main-color);
}

.checkbox-input:checked + .checkbox-label::after {
    opacity: 1;
}

.checkbox-label {
    position: relative;
    line-height: 1.25rem;
    font-weight: var(--font-weight);
    margin: 0;
    font-size: 1rem;
    cursor: pointer;
    padding-left: 1.875rem;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border: 1px solid var(--border-color);
    fill: var(--main-color);
    color: var(--main-color);
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.checkbox-label::after {
    content: "\e5ca";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Material Icons';
    text-align: center;
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--main-color);
    opacity: 0;
    transition: all 0.2s;
}

/* End checkbox */
/* Begin radio */
.radio {
    position: relative;
}

.radio-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-input:hover + .radio-label::before {
    border-color: var(--main-color);
}

.radio-input:checked + .radio-label::after {
    opacity: 1;
}

.radio-input:checked + .radio-label::before {
    border-color: var(--main-color);
}

.radio-label {
    position: relative;
    line-height: 1.25rem;
    font-weight: var(--font-weight);
    margin: 0;
    font-size: 1rem;
    display: flex;
    padding-left: 1.875rem;
    cursor: pointer;
}

.radio-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    fill: var(--main-color);
    color: var(--main-color);
    transition: all 0.2s;
}

.radio-label::after {
    content: "";
    position: absolute;
    left: 0.3125rem;
    top: 0.3125rem;
    width: 0.625rem;
    height: 0.625rem;
    background-color: var(--main-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s;
}

/* End radio */
.form-center {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
}

.form-or-text {
    text-transform: uppercase;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    color: var(--text-secondary);
}

.form-or-text span {
    position: relative;
    z-index: 1;
    padding: 0 0.625rem;
    background-color: var(--primary-color);
}

.form-or-text span::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    width: 62.5rem;
    height: 1px;
    margin-top: -1px;
    background-color: var(--border-color);
}

.form-or-text span::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 62.5rem;
    height: 1px;
    margin-top: -1px;
    background-color: var(--border-color);
}

.social-login {
    list-style: none;
    margin: 0 0 -1rem -1rem;
    padding: 0;
    display: flex;
    font-size: 1rem;
    width: 100%;
}

.social-login.social-login-wide {
    display: block;
}

.social-login li {
    margin: 0 0 1rem 1rem;
    width: 100%;
    border-radius: var(--el-border-radius-min);
    overflow: hidden;
}

.social-login li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    fill: var(--primary-color);
    font-size: 1rem;
    padding: calc(0.95em - 1px) 1rem;
    text-decoration: none;
}

.social-login li a svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.625rem;
}

.social-login li a.link-google-plus svg {
    width: 1.375rem;
    height: 1.375rem;
}

.link-facebook {
    background-color: #29487d;
}

.link-facebook:hover {
    background-color: rgba(41, 72, 125, 0.8);
}

.link-twitter {
    background-color: #1da1f2;
}

.link-twitter:hover {
    background-color: rgba(29, 161, 242, 0.8);
}

.link-google-plus {
    background-color: #e85858;
}

.link-google-plus:hover {
    background-color: rgba(232, 88, 88, 0.8);
}

.section-subscribe-bg {
    min-height: 21.875rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-subscribe-bg-header {
    text-align: center;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* 2.7 Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    height: 1rem;
    width: 1rem;
}

.material-icons.material-icons-outlined {
    font-family: 'Material Icons Outlined';
}

.material-icons.md-12 {
    font-size: .8rem;
    width: .8rem;
    height: .8rem;
}

.material-icons.md-14Spez {
  font-size: 1rem;
  width: 1rem;
  height: 2rem;
}

.material-icons.md-10 {
    font-size: 0.8rem;
    width: 0.8rem;
    height: 0.8rem;
}

.material-icons.md-12 {
    font-size: 1.0rem;
    width: 1.0rem;
    height: 1.0rem;
}

.material-icons.md-18 {
    font-size: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
}

.material-icons.md-20 {
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.material-icons.md-22 {
    font-size: 1.375rem;
    width: 1.375rem;
    height: 1.375rem;
}

.material-icons.md-24 {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.material-icons.md-26 {
    font-size: 1.625rem;
    width: 1.625rem;
    height: 1.625rem;
}

.material-icons.md-28 {
    font-size: 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
}

.material-icons.md-32 {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
}

.material-icons.md-36 {
    font-size: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
}

.material-icons.md-40 {
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.material-icons.md-48 {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
}

.material-icons.md-60 {
    font-size: 3.75rem;
    width: 3.875rem;
    height: 3.75rem;
}

.material-icons.md-72 {
    font-size: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
}

.material-icons.md-110 {
    font-size: 7rem;
    width: 7rem;
    height: 7rem;
}

.material-icons.md-150 {
    font-size: 9rem;
    width: 9rem;
    height: 9rem;
}

/* 2.8 Pagination */
.pagination {
    display: flex;
    justify-content: center;
    padding-top: 0.625rem;
}

.pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-left: -0.625rem;
}

.pagination-list li {
    margin-left: 0.625rem;
}

.pagination-list li:hover a, .pagination-list li:hover span, .pagination-list li.active a, .pagination-list li.active span {
    color: var(--main-color);
    border-color: var(--main-color);
}

.pagination-list li.active a, .pagination-list li.active span {
    cursor: default;
    pointer-events: none;
}

.pagination-list li.pagination-item-arrow a, .pagination-list li.pagination-item-arrow span {
    color: var(--main-color);
    border-color: transparent;
    width: 1.5rem;
    height: 1.5rem;
}

.pagination-list li.pagination-item-arrow:hover a, .pagination-list li.pagination-item-arrow:hover span {
    color: var(--text-primary);
}

.pagination-list li.pagination-item-disabled a, .pagination-list li.pagination-item-disabled span {
    color: var(--text-secondary);
    pointer-events: none;
}

.pagination-list li.pagination-item-disabled:hover a, .pagination-list li.pagination-item-disabled:hover span {
    color: var(--text-secondary);
}

.pagination-list li a, .pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: var(--el-border-radius-min);
}

.pagination-list li a.dots, .pagination-list li span.dots {
    border-color: transparent;
}

@media only screen and (max-width: 480px) {
    .pagination-full .pagination-list {
        padding-bottom: 2.2rem;
    }

    .pagination-full .pagination-item-arrow {
        position: absolute;
        bottom: 0;
    }

    .pagination-full .pagination-item-arrow-prev {
        right: 50%;
        margin-right: 0.625rem;
    }

    .pagination-full .pagination-item-arrow-first {
        right: 50%;
        margin-right: 2.1rem;
    }

    .pagination-full .pagination-item-arrow-next {
        left: 50%;
    }

    .pagination-full .pagination-item-arrow-last {
        left: 50%;
        margin-left: 2.1rem !important;
    }
}

/* 2.9 Popup */
.popup_style {
    display: none;
    width: 100%;
    max-width: 28.125rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    padding: 0 1rem;
    overflow: hidden;
}

.popup_style.popup_style_wide {
    max-width: 43.75rem;
}

.popup_style.popup_style_wideXL {
    max-width: 80%;
}

.popup_style.popup_style_wideL {
    max-width: 65%;
}

.popup {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 2.5rem 2.85rem;
    margin: 0 auto;
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.open_popup {
    display: block;
}

.popup_close {
    position: absolute;
    right: 0.25rem;
    top: 0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s;
}

.popup_close:hover {
    transform: rotate(90deg);
    color: var(--main-color);
}

.popup_heading {
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.сallback_popup_form .btn {
    width: 100%;
}

.popup_style_sally {
    transform: scale3d(0.5, 0.5, 1);
}

.popup_style_sandra {
    transform: scale3d(1.1, 1.1, 1);
}

.popup_style_slide_right {
    transform: translateX(300px);
}

.popup_style_slide_Left {
    transform: translateX(-300px);
}

.popup_style_slide_top {
    transform: translateY(-200px);
}

.popup_style_slide_bottom {
    transform: translateY(200px);
}

.popup_style_slide_fall {
    transform: translate(30%) translateZ(600px) rotate(10deg);
}

.popup_style_slide_3dflip_horizontal {
    transform: translateZ(-250px) rotateY(89deg);
    opacity: 1;
}

.popup_style_slide_3dflip_vertical {
    transform: translateZ(-250px) rotateX(89deg);
    opacity: 1;
}

.popup_visible .popup_style_sally {
    transform: scale3d(1, 1, 1);
}

.popup_visible .popup_style_sandra {
    transform: scale3d(1, 1, 1);
}

.popup_visible .popup_style_slide_right,
.popup_visible .popup_style_slide_Left {
    transform: translateX(0);
}

.popup_visible .popup_style_slide_top,
.popup_visible .popup_style_slide_bottom {
    transform: translateY(0);
}

.popup_visible .popup_style_slide_fall {
    transform: translate(0) translateZ(0) rotate(0);
}

.popup_visible .popup_style_slide_3dflip_horizontal {
    transform: translateZ(0) rotateY(0deg);
    opacity: 1;
}

.popup_visible .popup_style_slide_3dflip_vertical {
    transform: translateZ(0) rotateX(0deg);
    opacity: 1;
}

/* 2.10 Tabs */
.tabs {
    position: relative;
}

.tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.tabs-nav li {
    padding: 0.625rem 0;
    margin-right: 2.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.tabs-nav li:last-child {
    margin-right: 0;
}

.tabs-nav li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transform: translateX(-50%);
    transition: all 0.2s;
}

.tabs-nav li.active, .tabs-nav li:hover {
    color: var(--main-color);
}

.tabs-nav li.active::after, .tabs-nav li:hover::after {
    width: 100%;
}

.tabs-item {
    display: none;
    padding-top: 2rem;
}

.tabs-item.active {
    display: block;
}

.tabs-vertical {
    display: flex;
    align-items: flex-start;
}

.tabs-vertical .tabs-nav {
    display: block;
    border: none;
    width: 16rem;
    min-width: 16rem;
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.tabs-vertical .tabs-nav li {
    width: 100%;
    margin: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.tabs-vertical .tabs-nav li:last-child {
    border: none;
}

.tabs-vertical .tabs-nav li::after {
    content: none;
}

.tabs-vertical .tabs-nav li:hover {
    color: var(--main-color);
}

.tabs-vertical .tabs-nav li.active {
    background-color: var(--main-color);
    color: var(--primary-color);
}

.tabs-vertical .tabs-item {
    padding-top: 0;
}

.tabs-vertical .tabs-container {
    padding-left: 2rem;
}

.tabs-container {
    width: 100%;
}

@media (max-width: 991.98px) {
    .tabs-vertical .tabs-nav {
        min-width: 225px;
        width: 225px;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .tabs-vertical {
        flex-wrap: wrap;
    }

    .tabs-vertical .tabs-nav {
        width: 100%;
    }

    .tabs-vertical .tabs-nav li {
        padding: 0.625rem 1rem;
    }

    .tabs-vertical .tabs-container {
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .tabs-item {
        padding-top: 0;
    }

    .tabs-container {
        padding-top: 1.5rem;
    }

    .tabs-nav {
        flex-wrap: wrap;
        border: none;
        border-radius: var(--el-border-radius);
        background-color: var(--primary-bg-color);
        overflow: hidden;
    }

    .tabs-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        padding: 0.625rem 1rem;
    }

    .tabs-nav li:last-child {
        border-bottom: none;
    }

    .tabs-nav li::after {
        content: none;
    }

    .tabs-nav li:hover, .tabs-nav li.active {
        background-color: var(--main-color);
        color: var(--primary-color);
    }
}

/* 2.11 Range slider */
.ui-slider-outer {
    position: relative;
    margin-top: 0.75rem;
    height: 0.3125rem;
    margin-bottom: 1.125rem;
    background-color: var(--primary-bg-color);
    border-radius: var(--el-border-radius);
}

.ui-slider-outer.ui-slider-outer-min {
    margin: 0.5rem 0;
}

.ui-slider-outer.ui-slider-outer-min .ui-slider-handle {
    top: -0.375rem;
    margin-left: -0.5rem;
    width: 1rem;
    height: 1rem;
}

.ui-slider-outer.ui-slider-outer-min .ui-slider {
    left: 0.375rem;
    width: calc(100% - 1rem);
}

.ui-slider {
    position: absolute;
    left: 0.75rem;
    height: 100%;
    width: calc(100% - 1.5rem);
    background-color: var(--primary-bg-color);
}

.ui-slider-range {
    position: absolute;
    display: block;
    height: 100%;
    background-color: var(--main-color);
    background: linear-gradient(to right, var(--el-gradient2) 0%, var(--el-gradient1) 100%);
    z-index: 1;
}

.ui-slider-handle {
    position: absolute;
    z-index: 2;
    top: -0.625rem;
    margin-left: -0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--el-gradient2);
    cursor: ew-resize;
    outline: none;
}

.ui-slider-handle:last-child {
    background-color: var(--el-gradient1);
}

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

/* === 3. Bloks === */
/* 3.1 Intro */
.intro {
    position: relative;
    min-height: 31.25rem;
    z-index: 1;
}

.intro-slider,
.intro-item {
    display: block;
    min-height: 40rem;
    overflow: hidden;
}

.intro-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3.5rem 0;
    color: var(--text-primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--primary-color);
    width: 100%;
}

.intro-item .container {
    position: relative;
    z-index: 3;
}

.intro-item::after {
    content: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.intro-item .section-desc {
    max-width: 100%;
}

.intro-item .intro-heading-custom-font {
    --intro-heading-font-size: 2.5rem;
}

.intro-item .intro-heading-custom-font h1, .intro-item .intro-heading-custom-font h2, .intro-item .intro-heading-custom-font h3 {
    font-size: var(--intro-heading-font-size);
}

.intro-item-bgc {
    background-color: var(--primary-bg-color);
}

.intro-content {
    --margin-left: 0;
    --margin-right: 0;
    --max-width: 25rem;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 var(--margin-right) 0 var(--margin-left);
    padding: 0 0 3.75rem 0;
}

.intro-content.intro-content-center {
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.intro-content.intro-content-center .intro-btns {
    justify-content: center;
}

.intro-btns {
    margin-top: 1.625rem;
}

.intro-box {
    --margin-left: 0;
    --margin-right: 0;
    --max-width: 31.25rem;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 var(--margin-right) 0 var(--margin-left);
    padding: 3rem 3rem 3rem 4.375rem;
    background-color: var(--primary-color);
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
}

.intro-item-img-right {
    position: absolute;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.intro-gridScroll{
  max-height: 80vh !important;
  overflow-y: auto !important;;
}

.intro-grid {
    margin-top: 30px;
}

.intro-grid .section-desc {
    max-width: 100%;
}

.intro-grid .section-heading {
    max-width: 420px;
}

.ig-center {
    text-align: center;
}

.ig-center .intro-btns {
    justify-content: center;
}

.ig-center .section-heading {
    margin: 0 auto;
}

.ig-items {
    margin-bottom: -30px;
}

.ig-item {
    position: relative;
    margin-bottom: 30px;
    height: 540px;
    padding: 2.5rem;
}

.ig-item .wrapp-btn-link {
    margin-top: 1rem;
}

.ig-item:hover .ig-item-bg {
    transform: scale(1.05);
}

.ig-item-small {
    display: flex;
    align-items: center;
    height: 255px;
    padding: 2rem;
}

.ig-item-small .ig-item-bg {
    background-position: left center;
}

.ig-item-small .section-heading h1, .ig-item-small .section-heading h2, .ig-item-small .section-heading h3 {
    font-size: 1.5rem;
}

.ig-item-small .section-subheading {
    font-size: 0.875rem;
}

.ig-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 1s;
}

@media (max-width: 1199.98px) {
    .intro-slider,
  .intro-item {
        min-height: 35rem;
    }

    .intro-item {
        min-height: 35rem;
    }

    .intro-item::after {
        content: "";
    }

    .intro-box {
        margin-bottom: 2rem;
    }

    .ig-item {
        height: 450px;
    }

    .ig-item-small {
        height: 210px;
    }
}

@media (max-width: 991.98px) {
    .intro-content,
  .intro-box {
        margin: 0 !important;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    blockquote {
        color: var(--primary-color);
    }

    .intro-content {
        padding-bottom: 0;
    }

    .intro-content .section-desc {
        color: var(--text-primary) !important;
    }

    .intro-item::after {
        background-color: var(--primary-color) !important;
        opacity: 0.8;
    }

    .intro-item .intro-heading-custom-font {
        --intro-heading-font-size: 2.5rem!important;
    }

    .intro-box {
        padding: 0;
        background: transparent;
        box-shadow: none;
        color: var(--primary-color) !important;
    }

    .intro-box .section-desc {
        color: var(--primary-color) !important;
    }

    .intro-box .btn.btn-border {
        color: var(--primary-color) !important;
        fill: var(--primary-color) !important;
    }

    .intro-box .btn.btn-border:hover {
        color: var(--primary-color) !important;
        fill: var(--primary-color) !important;
    }

    .intro-box .btn.btn-border::before {
        border-color: var(--primary-color);
    }

    .intro-box .btn.btn-border::after {
        background: var(--primary-color);
    }

    .intro-item-mob-dark::after {
        background-color: var(--text-primary);
        opacity: 0.8;
    }

    .intro-item-img-right {
        width: 100%;
    }

    .intro-item-img-right::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--text-primary);
        opacity: 0.8;
        z-index: 2;
    }
}

@media only screen and (max-width: 480px) {
    .ig-item-small {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .intro-slider,
  .intro-item {
        height: auto;
        min-height: 25rem;
    }

    .intro-content {
        margin-bottom: 2.5rem;
    }

    .intro {
        min-height: 25rem;
    }
}

/* 3.2 Icon items */
.iitem {
    display: block;
    text-align: center;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.iitem:hover {
    background-color: var(--main-color);
    color: var(--primary-color);
}

.iitem:hover .iitem-icon {
    background: var(--primary-color);
    color: var(--main-color);
    fill: var(--main-color);
}

.iitem:hover .iitem-icon.iii-stroke {
    fill: transparent;
    stroke: var(--main-color);
}

.iitem:hover .iitem-icon.iii-fill-stroke {
    stroke: var(--main-color);
}

.iitem:hover .iitem-icon-bg {
    opacity: 0.14;
}

.iitem:hover .iitem-desc{
    color: var(--primary-color) !important;
}

.iitem:hover .hovercolor{
    color: var(--primary-color) !important;
}

.iitem.iitem-modern {
    padding-top: 6.25rem;
    padding-bottom: 3rem;
}

.iitem.iitem-modern .iitem-icon {
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    padding-top: 1rem;
    padding-left: 1rem;
    margin: 0;
    z-index: 11;
}

.iitem.iitem-modern::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.625rem;
    height: 0.625rem;
    background-color: transparent;
    z-index: 1;
    transition: background-color 0.2s 0.1s;
}

.iitem.iitem-modern:hover::before {
    background-color: var(--primary-color);
}

.iitem.iitem-row {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.iitem.iitem-row .iitem-icon {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
    margin: 0;
    margin-right: 1.25rem;
}

.iitem.iitem-row .iitem-desc {
    font-size: 1rem;
}

.iitem.iitem-row .iitem-heading {
    font-size: 1.375rem;
}

.iitem.iitem-row .iitem-icon-bg {
    top: -3rem;
}

.main-visible .iitem-icon {
    transition: background-color 0.2s, color 0.2s, fill 0.2s;
}

.iitem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--main-color);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
    margin: 0 auto 1.25rem;
    color: var(--primary-color);
    fill: var(--primary-color);
    stroke: transparent;
}

.iitem-icon > svg {
    display: block;
    width: 3rem;
    height: 3rem;
}

.iitem-icon.iii-stroke {
    fill: transparent;
    stroke: var(--primary-color);
}

.iitem-icon.iii-fill-stroke {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.iitem-icon-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2rem;
    z-index: 1;
    opacity: 0;
    color: var(--primary-color);
    fill: var(--primary-color);
    stroke: transparent;
    transition: opacity 0.2s 0.1s;
}

.iitem-icon-bg.iii-stroke {
    fill: transparent;
    stroke: var(--primary-color);
}

.iitem-icon-bg.iii-fill-stroke {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.iitem-icon-bg i {
    font-size: 31.25rem;
}

.iitem-icon-bg i, .iitem-icon-bg svg {
    width: 31.25rem;
    height: 31.25rem;
}

.iitem-heading {
    margin-bottom: 1rem;
    font-weight: bold;
}

.iitem-desc {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.iitem-icon,
.iitem-heading,
.iitem-desc {
    position: relative;
    z-index: 2;
}

@media (max-width: 1199.98px) {
    .iitem {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* 3.3 Image items */
.pitem {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.pitem.pitem-flip .pitem-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pitem.pitem-flip:hover .pitem-card-front {
    transform: rotateY(180deg);
}

.pitem.pitem-flip:hover .pitem-card-back {
    transform: rotateY(0deg);
    z-index: 3;
}

.pitem.pitem-hover:hover .pitem-card-hover {
    opacity: 0.9;
    visibility: visible;
}

.main-visible .pitem.pitem-flip .pitem-card {
    transition: all 0.6s ease-in-out;
}

.main-visible .pitem-card {
    transition: all 0.3s;
}

.pitem-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    background-color: var(--primary-color);
    overflow: hidden;
}

.pitem-card-front {
    z-index: 2;
}

.pitem-card-front img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pitem-card-details {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-align: center;
    padding: 2rem 2.5rem;
}

.pitem-card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.pitem-card-hover {
    opacity: 0;
    visibility: hidden;
    z-index: 3;
}

.pitem-heading {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pitem-heading.pitem-heading-large {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pitem-desc {
    max-width: 22.5rem;
}

.pitem-desc p {
    margin-bottom: 0;
}

.pitem-btns {
    margin-top: 1.5rem;
}

.pitem-col-carusel {
    width: 23%;
    margin-left: 15px;
}

.pitem-col-carusel.pitem-cc-wide {
    width: 100%;
}

.pitem-col-carusel.pitem-cc-2 {
    width: 40%;
}

.pitem-col-carusel.pitem-cc-3 {
    width: 28%;
}

.pitem-author {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.pitem-info {
    position: relative;
    padding-top: 0.625rem;
}

.pitem-info-row {
    display: flex;
    margin-bottom: 1rem;
}

.pitem-info-row:last-child {
    margin-bottom: 0;
}

.pitem-info-label {
    font-weight: bold;
    font-family: var(--heading-font-family), sans-serif;
    margin-right: 1rem;
    min-width: 9.375rem;
}

.pitem-carusel-item {
    height: 31.25rem;
    width: 100%;
    margin-right: 1rem;
}

.pitem-carusel-item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pitem-carusel-thumb-item {
    position: relative;
    width: 13.75rem;
    height: 8.75rem;
    margin-right: 1rem;
}

.pitem-carusel-thumb-item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pitem-carusel-thumb-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 0;
    width: 100%;
    background-color: var(--text-primary);
    opacity: 0.5;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.pitem-carusel-thumb-item.is-nav-selected::after, .pitem-carusel-thumb-item:hover::after {
    height: 100%;
}

.pitem-carusel-thumb {
    margin-top: 1.5rem;
}

.pitem-full .pitem-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.pitem-img {
    position: relative;
}

.pitem-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pitem-info .item-heading,
.pitem-info-wide .item-heading {
    margin-bottom: 0.625rem;
}

.pitem-info {
    padding: 1.25rem;
}

.pitem-info-wide {
    padding-top: 1.25rem;
}

.pitem-btn-link {
    display: flex;
    margin-top: 0.625rem;
}

@media (max-width: 1199.98px) {
    .pitem-card-details {
        padding: 1.5rem;
    }

    .pitem-col-carusel {
        width: 40%;
    }

    .pitem-col-carusel.pitem-cc-3 {
        width: 40%;
    }

    .pitem-heading.pitem-heading-large {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 991.98px) {
    .pitem-card-details {
        padding: 1.5rem 2.5rem;
    }

    .pitem-carusel-item {
        height: 25rem;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .pitem-card-details {
        padding: 1.25rem;
    }

    .pitem-col-carusel {
        width: 50%;
    }

    .pitem-col-carusel.pitem-cc-2, .pitem-col-carusel.pitem-cc-3 {
        width: 50%;
    }

    .pitem-carusel-item {
        height: 18.75rem;
    }

    .pitem-carusel-thumb-item {
        width: 9.375rem;
        height: 6.25rem;
    }
}

@media (max-width: 575.98px) {
    .pitem {
        max-width: 21.875rem;
        margin-left: auto;
        margin-right: auto;
    }

    .pitem-col-carusel {
        width: 100%;
    }

    .pitem-col-carusel.pitem-cc-2, .pitem-col-carusel.pitem-cc-3 {
        width: 100%;
    }
}

@media only screen and (max-width: 370px) {
    .pitem-carusel-item {
        height: 15rem;
    }

    .pitem-carusel-thumb-item {
        width: 7.5rem;
        height: 5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .pitem-col-carusel {
        width: 22%;
    }
}

/* 3.4 Items of numbers */
.ini {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ini.ini-bg {
    max-width: 16.875rem;
    margin-left: auto;
    margin-right: auto;
}

.ini.ini-bg .ini-info {
    padding-left: 0;
}

.ini.ini-min {
    display: block;
    max-width: 16.875rem;
}

.ini.ini-min .ini-info {
    padding-left: 0;
}

.ini.ini-min .ini-heading {
    font-size: 1.375rem;
}

.ini-min-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1.25rem;
}

.ini-min-header .ini-heading {
    margin-bottom: 0;
}

.ini-count-min {
    font-size: 1.375rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    color: var(--main-color);
    margin-right: 0.625rem;
    line-height: 1.2;
}

.ini-count {
    font-size: 1.0625rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    color: var(--main-color);
    margin-top: 0.125rem;
    position: relative;
    z-index: 1;
    padding-right: 0.3125rem;
}

.ini-count::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 3.25rem;
    height: 1px;
    background-color: var(--text-primary);
    margin-top: -1px;
}

.ini-info {
    position: relative;
    z-index: 1;
    padding-left: 3.75rem;
}

.ini-heading {
    font-weight: bold;
    margin-bottom: 1.25rem;
}

.ini-desc {
    color: var(--text-secondary);
}

.ini-desc p {
    margin: 0;
}

.ini-count-large {
    font-size: 9.5rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    color: var(--main-color);
    opacity: 0.14;
    position: absolute;
    left: 0;
    bottom: -1rem;
    line-height: 1;
}

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

.aim-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4.75rem;
    width: 4.75rem;
    height: 4.75rem;
    margin-right: 1.25rem;
    border-radius: 50%;
    color: var(--primary-color);
    background-color: var(--main-color);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
    overflow: hidden;
}

.aim-icon > img {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.aim-heading {
    margin-bottom: 0;
}

.aim-desc {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

.aim-desc p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .ini-info {
        padding-left: 2.5rem;
    }

    .ini-count::after {
        width: 2rem;
    }
}

@media (max-width: 991.98px) {
    .ini-info {
        padding-left: 2.75rem;
    }

    .ini-count::after {
        width: 2.25rem;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .ini-heading {
        min-height: auto;
    }

    .ini-heading br {
        display: none;
    }

    .ini-count {
        margin-top: 0;
    }

    .ini-count-large {
        font-size: 8rem;
        bottom: -0.625rem;
    }
}

@media (max-width: 575.98px) {
    .ini.ini-min {
        max-width: 100%;
    }

    .ini-info {
        padding-left: 3rem;
    }

    .ini-count::after {
        width: 42px;
    }
}

/* 3.5 Numbers */
.main-counter {
    padding-right: 4.375rem;
    padding-left: 4.375rem;
    padding-top: 1.25rem;
}

.main-counter::after, .main-counter::before {
    content: "";
    position: absolute;
    right: 0;
    background-color: var(--main-color);
    border-radius: var(--el-border-radius);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
}

.main-counter::after {
    top: 0;
    width: 3rem;
    height: 3rem;
}

.main-counter::before {
    top: 5.625rem;
    width: 2.25rem;
    height: 2.25rem;
}

.main-counter-item {
    position: relative;
    width: 20rem;
    height: 20rem;
    border-radius: var(--el-border-radius);
    padding-bottom: 0.625rem;
}

.main-counter-item-circ {
    position: absolute;
    left: -4.375rem;
    top: -1.25rem;
    width: 100%;
    height: 100%;
    width: calc(100% - 1.25rem);
    height: calc(100% - 1.25rem);
    background-color: var(--main-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.main-counter-item-circ::after, .main-counter-item-circ::before {
    content: "";
    position: absolute;
    border-radius: var(--el-border-radius);
    background-color: var(--primary-color);
    transition: all 0.2s;
}

.main-counter-item-circ::after {
    left: 2rem;
    bottom: -4rem;
    width: 13.75rem;
    height: 13.75rem;
    opacity: 0.15;
}

.main-counter-item-circ::before {
    left: -1.75rem;
    bottom: -4rem;
    width: 13.75rem;
    height: 13.75rem;
    opacity: 0.1;
}

.main-counter-item-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    box-shadow: var(--el-box-shadow);
    border-radius: var(--el-border-radius);
    z-index: 1;
}

.main-counter-heading {
    font-size: 1.5rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    line-height: 1.2;
    max-width: 14.375rem;
}

.main-counter-numb {
    font-size: 9rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 0;
    line-height: 1;
}

.counter-item-heading {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.counter-item-numb {
    font-size: 2.5rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 0.625rem;
}

.counter-col {
    padding: 0 1.25rem 2rem;
    text-align: center;
}

.counter-col-numb {
    font-size: 2.5rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 0.625rem;
}

.counter-col-heading {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.counter-col-ico {
    width: 5.625rem;
    height: 5.625rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    margin-top: -2.5rem;
    background-color: var(--primary-bg-color);
    color: var(--main-color);
}

.counter-min {
    position: relative;
    height: 6.875rem;
    padding-left: 1.875rem;
}

.counter-min-block {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4.625rem;
    width: 7.5rem;
    border-radius: var(--el-border-radius-min);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: var(--main-color);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
}

.counter-min-ico {
    line-height: 1;
}

.counter-min-info {
    padding-left: 6.625rem;
    height: 100%;
    display: flex;
    border-radius: var(--el-border-radius-min);
    background-color: var(--primary-bg-color);
    align-items: center;
    padding-right: 0.625rem;
}

.counter-min-info2 {
    padding-left: 6.625rem;
    height: 100%;
    align-items: center;
    padding-right: 0.625rem;
}

.counter-min-info .counter-min-heading {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.counter-min-numb {
    font-size: 2.1875rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    margin-left: 0.625rem;
}

.counter-min-numb2 {
    font-size: 1.5875rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    margin-left: 0.625rem;
}

@media (max-width: 991.98px) {
    .main-counter-item {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .counter-items {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .counter-item {
        text-align: center;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .counter-item-numb {
        font-size: 2rem;
    }

    .main-counter-heading {
        font-size: 1.25rem;
        max-width: 12rem;
    }

    .counter-item-heading {
        font-size: 1.25rem;
    }

    .main-counter-numb {
        font-size: 6.25rem;
    }

    .main-counter-item {
        width: 250px;
        height: 250px;
    }

    .main-counter-item-circ {
        left: -50px;
        top: -10px;
    }

    .main-counter {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .main-counter::after, .main-counter::before {
        content: none;
    }
}

@media (max-width: 575.98px) {
    .counter-items {
        display: block;
    }
}

@media only screen and (max-width: 370px) {
    .main-counter-item {
        width: 230px;
        height: 230px;
    }

    .main-counter {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .main-counter-item-circ {
        left: -30px;
        top: -5px;
    }
}

/* 3.6 Team */
.team-item {
    position: relative;
    display: block;
    text-decoration: none;
}

.team-item:hover .team-item-social {
    transform: translate(-50%, -0.875rem);
    opacity: 1;
    visibility: visible;
}

.team-item:hover .team-item-social.team-item-social-relative {
    transform: none;
}

.mobile .team-item-social, .tablet .team-item-social {
    transform: translate(-50%, -0.875rem);
    opacity: 1;
    visibility: visible;
}

.team-item-img {
    position: relative;
    background-color: var(--primary-bg-color);
}

.team-item-img img {
    position: absolute;
    left: 0;
    top: 0;
}

.team-item-heading {
    line-height: 1.4;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.team-item-heading.team-item-heading-large {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.team-item-info {
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem 1rem;
}

.team-item-position {
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1rem;
}

.main-visible .team-item-social {
    transition: all 0.2s;
}

.main-visible .team-item-social li a {
    transition: background-color 0.2s, fill 0.2s;
}

.team-item-social {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -1.75rem);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.team-item-social.team-item-social-relative {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 1rem;
    justify-content: center;
}

.team-item-social li {
    margin-right: 0.375rem;
}

.team-item-social li:last-child {
    margin-right: 0;
}

.team-item-social li a {
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--el-border-radius-min);
    background-color: var(--main-color);
    fill: var(--primary-color);
    border: 1px solid var(--main-color);
    transition: none;
}

.team-item-social li a > svg {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    margin: auto;
}

.team-item-social li a:hover {
    background-color: transparent;
    fill: var(--main-color);
}

.team-item2 .team-item-info {
    padding: 1rem 1rem 0 1rem;
}

@media (max-width: 991.98px) {
    .team-item-heading.team-item-heading-large {
        font-size: 1.125rem;
        margin-bottom: 0.125rem;
    }
}

@media (max-width: 575.98px) {
    .team-item {
        max-width: 16.875rem;
        margin: 0 auto;
    }
}

/* 3.7 Reviews */
.reviews-item {
    position: relative;
    padding: 2rem 1.25rem;
}

.reviews-item-info {
    padding-top: 0.625rem;
}

.reviews-item-text {
    color: var(--text-secondary);
}

.reviews-item-text p {
    margin-bottom: 0;
}

.reviews-item-name {
    margin-bottom: 0.125rem;
    font-size: 1.125rem;
}

.reviews-item-header {
    display: flex;
    margin-bottom: 1.5rem;
}

.reviews-item-vertical {
    text-align: center;
}

.reviews-item-vertical .reviews-item-header {
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-item-vertical .reviews-item-info {
    width: 100%;
    text-align: center;
}

.reviews-item-vertical .reviews-item-img {
    margin-right: 0;
    margin-bottom: 1rem;
}

.reviews-item-vertical .reviews-item-info {
    padding-top: 0;
}

.reviews-item-position {
    color: var(--text-secondary);
    font-size: 1rem;
}

.reviews-item-img {
    width: 4.6875rem;
    height: 4.6875rem;
    min-width: 4.6875rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.25rem;
    background-color: var(--primary-bg-color);
}

.reviews-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews-col {
    width: 28%;
    margin-right: 30px;
}

.reviews-col:last-child {
    margin-right: 0;
}

.reviews-col.reviews-col-wide {
    width: 100%;
}

.reviews-col.reviews-col-2 {
    width: 40%;
}

.reviews-col.reviews-col-4 {
    width: 23%;
}

.reviews-carusel-wide .reviews-col {
    width: 100%;
}

.reviews-carusel-wide .reviews-item-text {
    max-width: 46.875rem;
    margin-left: auto;
    margin-right: auto;
}

.reviews-carusel-wide .flickity-viewport {
    transition: height 0.2s;
}

.reviews-container {
    margin-bottom: 2.5rem;
}

.reviews-thumb {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-right: 1rem;
    margin-top: -2.34375rem;
}

.reviews-thumb:last-child {
    margin-right: 0;
}

.reviews-carusel-th .reviews-item-text {
    margin-bottom: 1.25rem;
}

.reviews-carusel-th .reviews-item-header {
    margin-bottom: 2rem;
}

.reviews-thumb-item {
    cursor: pointer;
}

.reviews-thumb-item:last-child .reviews-item-img {
    margin-right: 0;
}

.reviews-thumb-item img {
    opacity: 0.6;
    transition: all 0.2s;
}

.reviews-thumb-item:hover img {
    opacity: 0.8;
}

.reviews-thumb-item.active img {
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .reviews-col {
        width: 40%;
    }

    .reviews-col.reviews-col-4 {
        width: 40%;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .reviews-col {
        width: 60%;
    }

    .reviews-col.reviews-col-2, .reviews-col.reviews-col-4 {
        width: 85%;
    }
}

@media only screen and (max-width: 600px) {
    .reviews-col {
        width: 100%;
    }

    .reviews-col.reviews-col-2, .reviews-col.reviews-col-4 {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .reviews-thumb-item .reviews-item-img {
        width: 3.5rem;
        height: 3.5rem;
        min-width: 3.5rem;
        margin-right: 1rem;
    }

    .reviews-thumb {
        margin-top: -1.75rem;
    }
}

/* 3.8 News */
.news-item {
    position: relative;
}

.news-item-img {
    position: relative;
    display: block;
    background-color: var(--primary-bg-color);
}

.news-item-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-item-info {
    position: relative;
    padding: 2.1875rem 1.25rem 1.25rem;
}

.news-item-date {
    position: absolute;
    left: 50%;
    top: -1.125rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.625rem;
    background-color: var(--main-color);
    color: var(--primary-color);
    font-size: 0.8125rem;
    border-radius: var(--el-border-radius-min);
    transform: translateX(-50%);
}

.news-item-heading {
    margin-bottom: 0.625rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.125rem;
}

.news-item-heading.news-item-heading-center {
    text-align: center;
}

.news-item-desc {
    color: var(--text-secondary);
}

.news-item-desc p {
    margin-bottom: 0;
}

.news-item-min .news-item-info {
    padding: 1.25rem;
}

.news-item-min .news-item-heading {
    margin-bottom: 0;
}

.news-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.2;
}

.news-item-header.news-item-header-center {
    justify-content: center;
}

.news-item-header.news-item-header-center .news-item-date2 {
    margin: 0;
}

.news-item-auth {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.news-item-auth:hover {
    color: var(--text-primary);
}

.news-item-auth-img {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.625rem;
    background-color: var(--primary-bg-color);
}

.news-item-date2 {
    color: var(--text-secondary);
    margin-left: 1rem;
    white-space: nowrap;
}

/* Begin item wide */
.news-wide-item {
    position: relative;
    display: flex;
}

.news-wide-item-img {
    display: block;
    height: 12.5rem;
    min-width: 15.625rem;
    width: 15.625rem;
}

.news-wide-item-info {
    padding-left: 1.5625rem;
    width: 100%;
}

.news-wide-item-heading {
    margin-bottom: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-wide-item-row {
    display: flex;
    font-size: 1rem;
    color: var(--text-secondary);
}

.news-wide-item-date {
    padding-right: 0.625rem;
}

.news-wide-item-author a {
    text-decoration: none;
}

.news-wide-item-author a:hover {
    text-decoration: underline;
}

.news-wide-item-desc {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.news-wide-item-desc p {
    margin: 0;
}

.news-nav {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0.625rem;
}

/* End item wide */
.news-post-header {
    margin-bottom: 2rem;
}

.news-post-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.news-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: -1rem;
    margin-left: -1.25rem;
}

.news-post-meta-item {
    display: flex;
    align-items: center;
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.news-post-meta-item i {
    margin-right: 0.625rem;
    color: var(--main-color);
}

.news-post-meta-item a {
    text-decoration: none;
}

.news-post-meta-item a:hover {
    text-decoration: underline;
}

.news-post-img {
    margin-top: 1.25rem;
    height: 31.25rem;
}

.news-post-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-post-footer {
    margin-top: 2rem;
    padding-top: 0.625rem;
    border-top: 1px solid var(--border-color);
}

.news-post-cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -0.625rem;
    margin-left: -1rem;
    font-size: 1rem;
}

.news-post-cat li {
    margin-bottom: 0.625rem;
    margin-left: 1rem;
}

.news-post-cat li a {
    display: block;
    text-decoration: none;
}

.news-post-cat li a:hover {
    text-decoration: underline;
}

.news-post-share {
    display: flex;
    align-items: center;
}

.news-post-share-title {
    margin-right: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.page-social-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.2s;
}

.page-social-links li {
    margin-right: 0.625rem;
}

.page-social-links li:last-child {
    margin-right: 0;
}

.page-social-links li a {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--el-border-radius-min);
    fill: var(--text-primary);
    border: 1px solid var(--border-color);
}

.page-social-links li a > svg {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.page-social-links li a:hover {
    border-color: var(--text-secondary);
}

.news-timeline {
    position: relative;
}

.news-timeline::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    margin-left: -1px;
    height: 100%;
    background-color: var(--border-color);
}

.news-timeline-item-left .news-item,
.news-timeline-item-right .news-item {
    height: auto;
}

.news-timeline-item-left:hover::after, .news-timeline-item-left:hover::before,
.news-timeline-item-right:hover::after,
.news-timeline-item-right:hover::before {
    background-color: var(--main-color);
}

.news-timeline-item-right::after {
    content: "";
    position: absolute;
    right: 100%;
    top: 6.25rem;
    width: 6.875rem;
    margin-right: -1rem;
    height: 2px;
    background-color: var(--border-color);
    transition: all 0.2s;
}

.news-timeline-item-right::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 5.875rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--border-color);
    border-radius: 50%;
    margin-right: 5.375rem;
    z-index: 2;
    transition: all 0.2s;
}

.news-timeline-item-right .news-item {
    margin-top: 3.1875rem;
}

.news-timeline-item-left::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 3.1875rem;
    width: 7rem;
    margin-left: -1rem;
    height: 2px;
    background-color: var(--border-color);
    transition: all 0.2s;
}

.news-timeline-item-left::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 2.75rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--border-color);
    border-radius: 50%;
    margin-left: 5.5rem;
    z-index: 2;
    transition: all 0.2s;
}

.news-timeline-title {
    position: relative;
    background-color: var(--primary-color);
    text-align: center;
    z-index: 2;
    padding: 0.625rem 0;
}

.news-timeline-title-mt {
    margin-top: 3.1875rem;
}

.author {
    display: flex;
    align-items: center;
    text-align: left;
}

.author-info .author-name {
    margin-bottom: 0.25rem;
}

.author-info .author-date {
    color: var(--text-secondary);
}

.author-img {
    position: relative;
    width: 4.6875rem;
    height: 4.6875rem;
    margin-right: 1.25rem;
}

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

@media (max-width: 1199.98px) {
    .news-item-info {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .news-timeline-item-left::after,
  .news-timeline-item-right::after {
        width: 6rem;
    }

    .news-timeline-item-left::before {
        margin-left: 4.5rem;
    }

    .news-timeline-item-right::before {
        margin-right: 4.5rem;
    }
}

@media (max-width: 991.98px) {
    .news-timeline {
        max-width: 31.25rem;
        margin-left: auto;
        margin-right: auto;
    }

    .news-timeline::after {
        left: 1rem;
        margin-left: 0;
    }

    .news-timeline-title {
        text-align: left;
    }

    .news-timeline-item-left,
  .news-timeline-item-right {
        margin-top: 0;
    }

    .news-timeline-item-left .news-item,
    .news-timeline-item-right .news-item {
        margin-left: 3rem;
        margin-top: 0;
        margin-bottom: 45px;
    }

    .news-timeline-item-left:last-child .news-item,
    .news-timeline-item-right:last-child .news-item {
        margin-bottom: 0;
    }

    .news-timeline-item-left::after,
    .news-timeline-item-right::after {
        margin-right: -4rem;
        width: 3rem;
        margin-left: inherit;
        left: inherit;
        right: 100%;
    }

    .news-timeline-item-left::before,
    .news-timeline-item-right::before {
        margin-right: -1.5rem;
        margin-left: inherit;
        left: inherit;
        right: 100%;
    }

    .news-timeline-title-mt {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .news-item {
        max-width: 21.875rem;
        margin: 0 auto;
    }

    .news-wide-item {
        flex-wrap: wrap;
        max-width: 20rem;
        margin: 0 auto;
    }

    .news-wide-item-img {
        margin-bottom: 1.25rem;
        width: 100%;
    }

    .news-wide-item-info {
        padding-left: 0;
    }

    .news-wide-item-desc {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .news-nav {
        padding-top: 0;
    }

    .news-wide-item-desc {
        height: auto;
    }

    .news-item-desc {
        height: auto;
    }

    .news-post-title {
        font-size: 1.75rem;
    }

    .news-post-img {
        height: 18.75rem;
    }

    .news-post-footer {
        padding-top: 1.25rem;
    }

    .news-timeline {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .news-timeline {
        margin: 0 auto;
    }
}

/* 3.9 Comments */
.comment-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem 1.25rem;
}

.comment-item:last-child {
    margin-bottom: 0;
}

.comment-item-row:hover .comment-item-reply {
    opacity: 1;
}

.comment-item-header {
    margin-bottom: 1rem;
}

.mobile .comment-item-reply, .tablet .comment-item-reply {
    opacity: 1;
}

.comment-item-reply {
    display: block;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    margin-top: 1rem;
}

.comment-item-reply:hover {
    text-decoration: underline;
}

.comment-item-author {
    display: flex;
    align-items: center;
}

.comment-item-author-img {
    width: 3.75rem;
    height: 3.75rem;
    min-width: 3.75rem;
    margin-right: 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-bg-color);
}

.comment-item-author-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment-item-author-name {
    margin-bottom: 0.25rem;
}

.comment-item-author-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.comment-item-desc {
    color: var(--text-secondary);
    margin: 0;
}

.comment-item-desc p {
    margin: 0;
}

.comment-item-list {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    padding-left: 2.5rem;
}

.comment-item-list > .comment-item-row {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.comment-item-list > .comment-item-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.comment-item-list .comment-item-author-img {
    width: 3.75rem;
    height: 3.75rem;
    min-width: 3.75rem;
}

.comment-item-list .item-heading {
    font-size: 1rem;
}

.comment-item-list .comment-item-reply {
    margin-top: 0.5rem;
}

.comment-item-stars {
    margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
    .comment-item-list {
        padding-left: 0.625rem;
    }

    .comment-item-header .comment-item-stars {
        justify-content: flex-start;
        padding-left: 5.875rem;
        margin: 0;
    }
}

/* 3.10 Pricing */
.pricing-col:nth-child(odd) .pricing-item2 .pricing-item-header > svg {
    fill: var(--primary-bg-color);
}

.pricing-col:nth-child(odd) .pricing-item2 .pricing-item-header::after {
    background-color: var(--primary-bg-color);
}

.pricing-col:nth-child(odd) .pricing-item2 .pricing-item-badge {
    color: var(--main-color);
}

.pricing-col-4 .pricing-item.pricing-item2 .pricing-item-header {
    padding: 3rem 1.5rem 0 2rem;
}

.pricing-col-4 .pricing-item-footer.pif-abs {
    padding: 0 1.5rem;
}

.pricing-col-4 .pricing-item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.pricing-h {
    height: 100%;
    padding-bottom: 1.5rem;
}

.pricing-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.pricing-item.pricing-item-i .pricing-item-header {
    padding-top: 4rem;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-item.pricing-item-i .pricing-item-footer {
    padding: 0 2rem 2rem 2rem;
}

.pricing-item.pricing-item-i .pricing-item-footer .btn {
    border-radius: var(--el-border-radius-min);
}

.pricing-item.pricing-item-i .pricing-item-footer .btn::before {
    border-radius: var(--el-border-radius-min);
}

.pricing-item.pricing-item2 .pricing-item-header {
    padding: 3rem 3rem 0 3rem;
    border-bottom: none;
    margin-bottom: 1rem;
}

.pricing-item.pricing-item2 .pricing-item-header > svg {
    position: absolute;
    left: -5px;
    bottom: 0;
    width: calc(100% + 10px);
    height: auto;
    fill: var(--main-color);
}

.pricing-item.pricing-item2 .pricing-item-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: var(--main-color);
    border-top-left-radius: var(--el-border-radius);
    border-top-right-radius: var(--el-border-radius);
}

.pricing-item.pricing-item2 .pricing-item-heading {
    display: inline-block;
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 0.25rem;
}

.pricing-item.pricing-item2 .pricing-item-badge {
    font-family: var(--heading-font-family), sans-serif;
    top: 0.625rem;
    right: 0;
    transform: none;
    width: 100%;
    background-color: transparent;
    font-weight: bold;
    z-index: 2;
}

.pricing-item.pricing-item2 .pricing-item-content {
    padding-bottom: 2rem;
}

.pricing-item-badge {
    position: absolute;
    top: 2rem;
    right: -3.75rem;
    width: 12.5rem;
    height: 2rem;
    line-height: 2rem;
    background-color: var(--main-color);
    color: var(--primary-color);
    text-align: center;
    font-size: 1rem;
    transform: rotate(45deg);
}

.pricing-item-header {
    position: relative;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
    z-index: 1;
}

.pih-center {
    position: relative;
    padding: 1.5rem 1rem;
    background-color: var(--primary-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
    box-shadow: var(--el-box-shadow);
    z-index: 2;
}

.pricing-item-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--main-color);
    background: linear-gradient(to right, var(--el-gradient1) 0%, var(--el-gradient2) 100%);
    margin: 0 auto -3rem;
    color: var(--primary-color);
    z-index: 2;
}

.pricing-item-price {
    font-size: 2rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    color: var(--main-color);
}

.pricing-item-heading {
    text-transform: uppercase;
}

.pricing-item-h {
    display: flex;
    flex-grow: 10;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-item-content {
    padding: 2rem;
}

.pricing-item-list {
    list-style: none;
    margin: 0;
    padding: 0;
    fill: var(--text-secondary);
    color: var(--text-secondary);
    line-height: 1.5rem;
    font-size: 1rem;
}

.pricing-item-list li {
    display: flex;
    margin-bottom: 0.75rem;
}

.pricing-item-list li:last-child {
    margin-bottom: 0;
}

.pricing-item-list li.active {
    color: var(--text-primary);
}

.pricing-item-list li.active i {
    color: var(--main-color);
    fill: var(--main-color);
}

.pricing-item-list li i {
    margin-right: 0.625rem;
}

.pricing-item-footer {
    position: relative;
    z-index: 2;
}

.pricing-item-footer .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--el-border-radius);
    border-bottom-right-radius: var(--el-border-radius);
}

.pricing-item-footer .btn::before {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--el-border-radius);
    border-bottom-right-radius: var(--el-border-radius);
}

.pricing-item-footer.pif-abs {
    padding: 0 3rem;
    margin-top: -1.5rem;
}

.pricing-item-footer.pif-abs .btn {
    border-radius: var(--el-border-radius-min);
}

.pricing-item-footer.pif-abs .btn::before {
    border-radius: var(--el-border-radius-min);
}

.pricing-item-footer.pif-abs .btn-border {
    background-color: var(--primary-color);
}

/* 3.11 Brands */
.brands-carusel .flickity-slider {
    display: flex;
    align-items: center;
}

.brands-item {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 11.25rem;
}

.brands-item.item-style {
    height: 11.25rem;
}

.brands-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

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

.brands-min img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.brands-col {
    width: 28%;
    margin-right: 30px;
}

.brands-col:last-child {
    margin-right: 0;
}

.brands-col.brands-col-wide {
    width: 100%;
}

.brands-col.brands-col-2 {
    width: 40%;
}

.brands-col.brands-col-min {
    width: 18%;
}

@media (max-width: 1199.98px) {
    .brands-col {
        width: 40%;
    }

    .brands-col.brands-col-min {
        width: 40%;
    }

    .brands-col.brands-col-min {
        width: 25%;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .brands-col {
        width: 48%;
    }

    .brands-col.reviews-col-2, .brands-col.reviews-col-4 {
        width: 48%;
    }

    .brands-col.brands-col-min {
        width: 40%;
    }
}

@media only screen and (max-width: 480px) {
    .brands-item {
        height: 8.75rem;
    }

    .brands-item.item-style {
        height: 8.75rem;
    }
}

/* 3.12 Countdown */
.comming-soon {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.comming-soon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.6;
}

.comming-soon .container {
    position: relative;
    z-index: 2;
}

.countdown {
    display: flex;
    justify-content: space-between;
    max-width: 42.5rem;
    margin-left: auto;
    margin-right: auto;
}

.countdown.hidden {
    display: none;
}

.countdown-number {
    padding: 1.25rem;
    width: 9.375rem;
    height: 9.375rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-number.item-style {
    height: 9.375rem;
    width: 9.375rem;
}

.countdown-time {
    display: flex;
    justify-content: center;
    font-size: 3.75rem;
    font-family: var(--heading-font-family), sans-serif;
    font-weight: bold;
    width: 100%;
    line-height: 1;
}

.countdown-text {
    display: block;
    line-height: 1;
    color: var(--text-secondary);
}

.deadline-message {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: line-through;
    display: none;
}

.deadline-message.visible {
    display: block;
}

.comming-soon-form {
    margin-top: 2.5rem;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .countdown-number {
        width: 6.25rem;
        height: 6.25rem;
    }

    .countdown-number.item-style {
        width: 6.25rem;
        height: 6.25rem;
    }

    .countdown-time {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .countdown-number {
        width: 5rem;
        height: 5rem;
        padding: 0.625rem;
    }

    .countdown-number.item-style {
        width: 5rem;
        height: 5rem;
    }

    .countdown-time {
        font-size: 2rem;
    }

    .countdown-text {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 370px) {
    .countdown-number {
        width: 4rem;
        height: 4rem;
        padding: 0.625rem 0;
    }

    .countdown-number.item-style {
        width: 4rem;
        height: 4rem;
    }

    .countdown-time {
        font-size: 1.375rem;
    }

    .countdown-text {
        font-size: 0.8125rem;
    }
}

/* 3.13 Gallery */
.gallery-item {
    position: relative;
    margin: 0;
    display: block;
    width: 100%;
    height: 240px;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    overflow: hidden;
}

.gallery-item:hover {
    color: var(--primary-color);
}

.gallery-item:hover .gallery-item-caption {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover .gallery-item-caption::after {
    height: 100%;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-item-caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0.625rem 1rem;
    color: var(--primary-color);
    display: flex;
    opacity: 0;
    visibility: hidden;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.gallery-item-caption::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 3.125rem;
    width: 100%;
    background-color: var(--text-primary);
    opacity: 0.8;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.gallery-item-caption span {
    position: relative;
    display: block;
    z-index: 2;
}

.pswp__img {
    -o-object-fit: cover;
    object-fit: cover;
}

.lg-outer .lg-thumb {
    margin: 0 auto -0.625rem;
}

.gallery-grid-item-height2 .gallery-item {
    height: 510px;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .gallery-grid-item-height2 .gallery-item {
        height: 240px;
    }
}

/* 3.14 Contacts */
.contact-info {
    position: relative;
    padding: 2rem 1.25rem;
    background-color: var(--primary-bg-color);
    border-radius: var(--el-border-radius);
    height: 100%;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
}

.contact-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list li i {
    margin-right: 0.625rem;
    color: var(--main-color);
}

.contact-list li a {
    text-decoration: none;
    display: block;
    color: var(--text-secondary);
}

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

.contact-list i.footer-contact-tel {
    font-size: 1.25rem;
}

.contact-list i.footer-contact-email {
    font-size: 1.125rem;
}

.contact-list .footer-contact-info {
    opacity: 1;
}

.contact-form-padding {
    padding-left: 2rem;
}

.map {
    height: 31.25rem;
    background-color: var(--primary-bg-color);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map.map-top {
    width: 100%;
    margin-bottom: 3.25rem;
    padding: 0;
}

.map-auto {
    height: 100%;
}

.contacts-info-item {
    padding: 3rem 1.25rem;
}

.contacts-info-item-ico {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--main-color);
}

.contacts-info-item-content {
    text-align: center;
}

.contacts-info-item-content a {
    text-decoration: none;
    color: var(--text-primary);
}

.contacts-info-item-content a:hover {
    color: var(--main-color);
}

.form-heading-center h2, .form-heading-center h3, .form-heading-center h4, .form-heading-center h5, .form-heading-center h6 {
    text-align: center;
}

@media (max-width: 1199.98px) {
    .contact-form-padding {
        padding-left: 0;
    }
}

@media (max-width: 991.98px) {
    .map-auto {
        height: 25rem;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .map,
  #map_canvas {
        height: 18.75rem;
    }
}

/* 3.15 404 */
.page-404 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-self: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.page-404 > svg {
    width: 100%;
    height: 85%;
}

.page-404 .wrap-btn {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .page-404 > svg {
        height: 100%;
    }
}

@media only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .page-404 > svg {
        height: 78%;
    }
}

/* === 4. Layouts === */
/* 4.1 Header */
.header.header-clear {
    padding: 1rem 0;
}

.header-top {
    position: relative;
    background-color: var(--text-primary);
    color: var(--primary-color);
    padding: 0.625rem 0;
    font-size: 1rem;
    z-index: 1;
}

.header-top i {
    color: var(--primary-color);
}

.header-top a {
    color: var(--primary-color);
    opacity: 0.8;
    text-decoration: none;
}

.header-top a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.header-top-links {
    display: flex;
    align-items: center;
    margin-left: -2rem;
}

.header-top-links > * {
    margin-left: 2rem;
}

.header-top-links .header-call-back-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    opacity: 0.8;
}

.header-top-links .header-call-back-link i {
    margin-right: 5px;
}

.header-top-links .header-call-back-link span {
    border-bottom: 1px dashed var(--primary-color);
    transition: all 0.2s;
    line-height: 1.1;
}

.header-top-links .header-call-back-link:hover {
    opacity: 1;
}

.header-top-links .header-call-back-link:hover span {
    border-bottom-style: solid;
}

.header-top-info {
    display: flex;
    align-items: center;
    margin-left: -1rem;
}

.header-top-info b, .header-top-info strong {
    font-weight: 600;
    color: var(--primary-color);
}

.header-top-info li {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.header-top-info li > a {
    opacity: 1;
    display: flex;
    align-items: center;
}

.header-top-info li > a:hover span {
    opacity: 1;
}

.header-top-info li b, .header-top-info li strong {
    margin-right: 0.375rem;
}

.header-top-info li i {
    margin-right: 0.625rem;
}

.header-top-info li span {
    opacity: 0.8;
    transition: all 0.25s;
}

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

.social-links li {
    margin-right: 0.5rem;
}

.social-links li:last-child {
    margin-right: 0;
}

.social-links li a {
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--primary-color);
    overflow: hidden;
    opacity: 0.8;
}

.social-links li a svg {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.social-links li:hover a {
    opacity: 1;
}

.header-center {
    box-shadow: var(--header-box-shadow);
}

.header-center .header-lang-list {
    right: inherit;
    left: 0;
}

.header-center .header-fixed {
    box-shadow: none;
}

.header-center .header-fixed.fixed {
    box-shadow: var(--header-box-shadow);
}

.header-center .logo img {
    max-height: 6rem;
}

.header-logo-center {
    padding: 1.5rem 0 0.5rem;
}

.header-fixed {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.75rem 0;
    background-color: var(--primary-color);
    font-size: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    z-index: 101;
    box-shadow: var(--header-box-shadow);
}

.header-fixed .col-static {
    position: static;
}

.header-fixed .container {
    position: relative;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
}

.logo svg {
    display: block;
}

body.mob-main-mnu-open {
    overflow: hidden;
}

body.mob-main-mnu-open .header-fixed {
    box-shadow: var(--header-box-shadow);
}

body.mob-main-mnu-open .mob-main-mnu {
    transform: none;
}

.mob-main-mnu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 20rem;
    background-color: var(--primary-color);
    z-index: 100;
    box-shadow: var(--header-box-shadow);
    transform: translateX(-150%);
    overflow: hidden;
    overflow-y: auto;
    transition: transform 0.6s;
}

.mf-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 99;
    opacity: 0;
    cursor: pointer;
    visibility: hidden;
    transition: opacity 0.4s;
}

.mf-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-primary);
    opacity: 0.9;
}

.mf-bg.visible {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.mf-bg.side-visible {
    z-index: 1110;
}

.mob-main-mnu-footer {
    padding: 1.25rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--primary-color);
}

.mob-main-mnu-lang {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    text-transform: capitalize;
}

.mob-main-mnu-lang li {
    margin-right: 1.25rem;
}

.mob-main-mnu-lang li:last-child {
    margin-right: 0;
}

.mob-main-mnu-lang li a {
    color: var(--text-primary);
    text-decoration: none;
}

.mob-main-mnu-lang li.active a {
    color: var(--main-color);
}

.mob-main-mnu-content {
    background-color: var(--primary-bg-color);
}

.mob-main-mnu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--font-size);
}

.mob-main-mnu-list > li {
    position: relative;
    border-bottom: 1px solid var(--primary-color);
}

.mob-main-mnu-list > li > a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    width: 100%;
    padding: 0 3.75rem 0 1.25rem;
    height: 3.125rem;
    line-height: 3.125rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mob-main-mnu-list > li.active > a, .mob-main-mnu-list > li.open > a {
    background-color: var(--main-color);
    color: var(--primary-color);
}

.mob-main-mnu-list > li.active .mmm-btn, .mob-main-mnu-list > li.open .mmm-btn {
    color: var(--primary-color);
}

.mob-main-mnu-list > li.open .mmm-btn {
    transform: rotateX(180deg);
}

.mob-main-mnu-list > li .mmm-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    line-height: 1.5rem;
}

.mmsm {
    display: none;
    background-color: var(--primary-color);
    font-size: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mmsm li {
    border-bottom: 1px solid var(--border-color);
}

.mmsm li:first-child {
    border-top: 1px solid var(--border-color);
}

.mmsm li a {
    display: block;
    padding: 0.625rem 1.25rem 0.625rem 2.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.mmsm-item {
    margin-bottom: 1.25rem;
}

.mmsm-item:first-child .mmsm-item-heading {
    padding-top: 1.25rem;
}

.mmsm-item:last-child {
    margin-bottom: 0;
}

.mmsm-item:last-child ul li:last-child {
    border-bottom: none;
}

.mmsm-item-heading {
    font-size: 0.8125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding: 0 1.25rem;
    text-transform: uppercase;
}

.tablet .main-mnu-list > li.menu-item-has-children > a, .mobile .main-mnu-list > li.menu-item-has-children > a {
    pointer-events: none;
}

.main-mnu-list {
    display: flex;
    margin-left: -1.25rem;
}

.main-mnu-list.main-mnu-list-min > li {
    margin-left: 0.5rem;
}

.main-mnu-list > li {
    position: relative;
    margin-left: 1rem;
    padding: 1rem 0;
}

.main-mnu-list > li > .mnu-label {
    right: initial;
    left: 0.625rem;
    top: 0.125rem;
}

.main-mnu-list > li:hover > a > span, .main-mnu-list > li.active > a > span {
    transform: translateY(100%);
}

.main-mnu-list > li:hover > a::after, .main-mnu-list > li.active > a::after {
    transform: none;
}

.main-mnu-list > li:hover > ul,
    .main-mnu-list > li:hover .main-sub-mnu {
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 11;
}

.main-mnu-list > li:hover > a i {
    transform: rotateX(180deg);
}

.main-mnu-list > li.main-mnu-item-mega-mnu {
    position: static;
}

.main-mnu-list > li:last-child > a {
    padding-right: 10px;
}

.main-mnu-list > li > a {
    font-size: 0.9375rem;
    padding: 0 0.625rem;
    overflow: hidden;
}

.main-mnu-list > li > a::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    padding: 0 0.625rem;
    width: 100%;
    transition: all 0.4s;
    color: var(--main-color);
}

.main-mnu-list > li > a > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
}

.main-mnu-list > li a {
    color: var(--text-primary);
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 1rem;
}

.main-mnu-list > li.menu-item-has-children {
    padding-right: 0;
}

.main-mnu-list > li.menu-item-has-children > a {
    display: flex;
    align-items: center;
}

.main-mnu-list > li.menu-item-has-children > a i {
    margin-left: 0.25rem;
    font-size: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--main-color);
    transition: all 0.4s;
}

.main-mnu-list > li > ul {
    position: absolute;
    top: 100%;
    background-color: var(--primary-color);
    box-shadow: var(--el-box-shadow);
    min-width: 12.5rem;
    z-index: 10;
    transform: translateY(15px);
    border-radius: var(--el-border-radius-min);
    font-weight: normal;
    opacity: 0;
    visibility: hidden;
    padding: 0.75rem 0;
    transition: all 0.2s 0.2s;
    cursor: default;
}

.main-mnu-list > li > ul > li {
    padding: 0.5rem 1.5625rem;
}

.main-mnu-list > li > ul > li > a {
    display: block;
}

.main-mnu-list > li > ul li a {
    transition: all 0.2s 0s;
    overflow: hidden;
}

.main-mnu-list > li > ul li a::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    transition: all 0.4s;
    color: var(--main-color);
}

.main-mnu-list > li > ul li a > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
}

.main-mnu-list > li > ul li a:hover > span {
    transform: translateY(100%);
}

.main-mnu-list > li > ul li a:hover::after {
    transform: translateY(0);
}

.mnu-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 1px 3px 0;
    background-color: var(--error-color);
    position: absolute;
    right: 0;
    top: -6px;
    font-weight: 600;
}

.main-mnu-btn {
    position: relative;
    display: block;
    width: 24px;
    height: 18px;
    overflow: hidden;
}

.main-mnu-btn .bar {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.4s ease-in-out;
}

.main-mnu-btn .bar-1 {
    top: 0;
}

.main-mnu-btn .bar-2,
  .main-mnu-btn .bar-3 {
    top: 8px;
}

.main-mnu-btn .bar-3 {
    right: 0;
}

.main-mnu-btn .bar-4 {
    bottom: 0;
}

.main-mnu-btn.active .bar-1 {
    transform: translateX(40px);
    background-color: transparent;
}

.main-mnu-btn.active .bar-2 {
    transform: rotate(45deg);
}

.main-mnu-btn.active .bar-3 {
    transform: rotate(-45deg);
}

.main-mnu-btn.active .bar-4 {
    transform: translateX(-40px);
    background-color: transparent;
}

.main-sub-mnu {
    position: absolute;
    left: 1rem;
    top: 100%;
    background-color: var(--primary-color);
    box-shadow: var(--el-box-shadow);
    width: 100%;
    width: calc(100% - 2rem);
    z-index: 10;
    transform: translateY(1rem);
    font-weight: normal;
    opacity: 0;
    border-radius: var(--el-border-radius-min);
    visibility: hidden;
    min-height: 18.75rem;
    transition: all 0.2s 0.2s;
    z-index: -1;
    cursor: default;
    overflow: hidden;
}

.main-sub-mnu .mega-mnu-heading {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.main-sub-mnu .container, .main-sub-mnu .row {
    min-height: 18.75rem;
}

.main-sub-mnu-banner {
    padding: 0;
}

.mega-mnu-item {
    padding: 2.5rem 1.25rem 2.5rem 3.125rem;
}

.mega-mnu-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    opacity: 0.5;
}

.mega-mnu-item:last-child::after {
    content: none;
}

.main-sub-mnu-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -1.25rem;
}

.main-sub-mnu-list.main-sub-mnu-listh {
    display: block;
}

.main-sub-mnu-list.main-sub-mnu-listh > li {
    width: 100%;
}

.main-sub-mnu-list > li {
    width: 50%;
    position: relative;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.main-sub-mnu-list > li:hover > a > span {
    transform: translateY(100%);
}

.main-sub-mnu-list > li:hover > a::after {
    transform: translateY(0);
}

.main-sub-mnu-list > li > a {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-sub-mnu-list > li > a::after {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    transition: all 0.4s;
    color: var(--main-color);
    width: 100%;
    padding: 0.125rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-sub-mnu-list > li > a > span {
    display: block;
    transform: translateY(0);
    transition: all 0.4s;
    padding: 0.125rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-sub-mnu-banner {
    position: relative;
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
}

.main-sub-mnu-slider {
    height: 100%;
}

.main-sub-mnu-slider .owl-stage-outer,
  .main-sub-mnu-slider .owl-stage,
  .main-sub-mnu-slider .owl-item {
    height: 100%;
}

.main-mnu-list > li a.mnu-slider-item {
    display: flex;
    color: var(--primary-color);
}

.mnu-slider-item {
    padding: 2.5rem 3.75rem 2.5rem 1.875rem;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    color: var(--primary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mnu-slider-item-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.mnu-slider-item-title {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.main-sub-mnu-slider .flickity-prev-next-button {
    position: absolute;
    padding: 0.3125rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary-color);
    padding: 0;
    border: none;
    line-height: 1;
}

.main-sub-mnu-slider .flickity-button-icon {
    fill: var(--primary-color);
}

.header-search.open .header-search-ico-close {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.header-search.open .header-search-ico-search {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.3);
}

.header-search.open .header-search-form {
    visibility: visible;
    opacity: 1;
}

.header-search-ico {
    cursor: pointer;
    position: relative;
    z-index: 13;
    transition: all 0.2s;
}

.header-search-ico:hover {
    color: var(--main-color);
}

.header-search-ico-search,
.header-search-ico-close {
    position: absolute;
    left: 0.0625rem;
    top: 0.0625rem;
    transition: all 0.2s;
}

.header-search-ico-close {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.3);
}

.header-search-ico-search {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.header-search-form {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding-right: 2rem;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.header-search-form .form-field {
    margin: 0;
}

.header-search-form .form-field .form-field-input {
    padding-right: 2.5rem;
}

.header-search-btn,
.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    color: var(--text-primary);
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.header-search-btn:hover,
  .search-btn:hover {
    color: var(--main-color);
}

.header-search-btn:focus,
  .search-btn:focus {
    outline: none;
}

.header-search-btn:active i,
  .search-btn:active i {
    transform: scale(0.8);
}

.header-search-btn i,
  .search-btn i {
    transition: all 0.2s;
}

.header-lang {
    position: relative;
}

.header-lang.open .header-lang-list {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header-lang.open .header-lang-current {
    color: var(--main-color);
}

.header-lang-current {
    display: flex;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.header-lang-current:hover {
    color: var(--main-color);
}

.header-lang-current .material-icons {
    margin: auto;
}

.header-lang-list {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10;
    background-color: var(--primary-color);
    box-shadow: var(--el-box-shadow);
    padding: 0.75rem 0;
    margin-top: 1rem;
    border-radius: var(--el-border-radius-min);
    transition: all 0.2s;
    transform: translateY(1rem);
    opacity: 0;
    visibility: hidden;
}

.header-lang-list li {
    padding: 0.4rem 1.5625rem;
}

.header-lang-list li a span {
    padding: 0.125rem 0;
}

.header-lang-list li a::after {
    padding: 0.125rem 0;
}

.header-lang-list li.active a {
    pointer-events: none;
    color: var(--main-color);
}

.header-navbar {
    position: relative;
    z-index: 3;
}

.header-navbar.open .header-navbar-content {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header-navbar .social-links li a {
    opacity: 1;
}

.header-navbar-btn {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.header-navbar-btn:hover {
    color: var(--main-color);
}

.header-navbar-btn:active {
    transform: scale(0.8);
}

.header-navbar-content {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1.5rem;
    background-color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    white-space: nowrap;
    z-index: 15;
    box-shadow: var(--el-box-shadow);
}

.header-navbar-content .header-actions {
    padding: 0;
}

.header-navbar-content > li {
    display: flex;
    margin-bottom: 1rem;
}

.header-navbar-content > li:last-child {
    margin-bottom: 0;
}

.header-navbar-content i {
    color: var(--text-primary);
}

.header-navbar-content b {
    margin-right: 0.3125rem;
}

.header-navbar-content a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-navbar-content a:hover {
    color: var(--text-primary);
}

.header-navbar-content a i {
    margin-right: 0.625rem;
}

.header-navbar-content .header-call-back-link span {
    border-bottom: 1px dashed var(--text-primary);
    transition: all 0.2s;
    line-height: 1.3;
}

.header-navbar-content .header-call-back-link:hover span {
    border-bottom-style: solid;
}

.header-navbar-content .social-links {
    margin-top: 0.3125rem;
}

.header-navbar-content .social-links li a {
    fill: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    margin-left: -1.25rem;
    padding: 1rem 0;
}

.header-actions > li {
    margin-left: 1.25rem;
}

.header-action-icon {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s;
}

.header-action-icon:hover {
    color: var(--main-color);
}

.side {
    position: fixed;
    top: 0;
    width: 20rem;
    height: 100%;
    background: var(--primary-color);
    z-index: 1111;
    transition: all 0.4s;
}

.side.side-right {
    right: 0;
    transform: translateX(20rem);
}

.side.open {
    transform: none;
}

.side-scroll {
    padding: 1rem 1.5rem 1.25rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.side-close {
    position: absolute;
    right: 1rem;
    top: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.side-close:hover {
    transform: rotate(90deg);
    color: var(--main-color);
}

.side-login {
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.side-form-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.side-form-nav {
    margin-top: 1.25rem;
    text-align: center;
}

.sfn-row {
    margin-bottom: 1rem;
}

.sfn-row:last-child {
    margin-bottom: 0;
}

@media only screen and (max-height: 750px) {
    .side-form .input-states-labelled {
        display: none;
    }
}

/* 4.2 Sidebar */
.sidebar-item-margin {
    margin-bottom: 2rem;
}

.sidebar-item-margin:last-child {
    margin-bottom: 0;
}

.sidebar-item-style {
    padding: 1.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--el-border-radius);
}

.sidebar-item-row {
    margin-bottom: 1.5rem;
}

.sidebar-item-row:last-child {
    margin-bottom: 0;
}

.sibebar-item-bg {
    position: relative;
    padding: 1.5rem 1rem;
}

.sidebar-item-heading {
    line-height: 1.2;
    font-family: var(--heading-font-family), sans-serif;
    margin-bottom: 1.5rem;
}

.sidebar-item-desc {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -0.625rem;
    margin-left: -1rem;
    font-size: 1rem;
}

.sidebar-tags li {
    margin-bottom: 0.625rem;
    margin-left: 1rem;
}

.sidebar-tags li a {
    text-decoration: none;
}

.sidebar-tags li a:hover {
    text-decoration: underline;
}

.sidebar-recent-posts li {
    margin-bottom: 1.25rem;
}

.sidebar-recent-posts li:last-child {
    margin-bottom: 0;
}

.sidebar-recent-post {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: bold;
}

.sidebar-recent-post:hover {
    color: var(--main-color);
}

.sidebar-recent-post-img {
    height: 4.6875rem;
    min-width: 5.3125rem;
    width: 5.3125rem;
}

.sidebar-recent-post-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sidebar-recent-post-title {
    text-decoration: none;
    padding-left: 0.625rem;
    line-height: var(--line-height);
}

.sidebar-cat-tree .sidebar-cat-item {
    display: block;
}

.sidebar-cat-tree > li.open > a::after {
    color: var(--text-primary);
}

.sidebar-cat-tree > li.open .sidebar-cat-icon {
    transform: translateY(-50%) rotate(90deg);
}

.sidebar-cat-item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    color: var(--text-secondary);
}

.sidebar-cat-item:last-child {
    margin-bottom: 0;
}

.sidebar-cat-item a {
    position: relative;
    color: var(--text-secondary);
    display: block;
    width: 100%;
    text-decoration: none;
}

.sidebar-cat-item a:hover, .sidebar-cat-item a.active {
    color: var(--main-color);
}

.sidebar-cat-item ul {
    padding-left: 0.625rem;
    margin-top: 0.5rem;
}

.sidebar-cat-item ul > li {
    margin-bottom: 0.5rem;
}

.sidebar-cat-item ul > li:last-child {
    margin-bottom: 0;
}

.sidebar-cat-item .sidebar-cat-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    transition: all 0.2s;
}

.sidebar-cat-count {
    margin-left: 0.625rem;
    min-width: 1.125rem;
    text-align: right;
}

/* 4.3 Section */
.section {
    position: relative;
    padding: 4.5rem 0;
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.section.section-without-padding {
    padding: 0;
}

.section.section-without-padding-top {
    padding-top: 0;
}

.section.section-without-padding-bottom {
    padding-bottom: 0;
}

.page-sections {
    padding-top: 3.5rem;
}

.page-sections .section {
    padding: 0;
    margin-bottom: 3.5rem;
}

.page-sections .section:last-child {
    margin-bottom: 0;
}

.section-overflow-hidden {
    overflow: hidden;
}

.section-bg,
.section-background-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-bg,
.section-bgc {
    background-color: var(--primary-bg-color);
}

.section-dark {
    background-color: #000;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-dark a {
    color: #fff;
}

.section-heading {
    margin-bottom: 3.25rem;
}

.section-heading h1, .section-heading h2, .section-heading h3 {
    position: relative;
    font-size: 2.5rem;
    margin: 0;
}

.section-heading.shm-none {
    margin-bottom: 0;
}

.section-heading .wrap-btn {
    margin-top: 2rem;
}

.heading-center {
    text-align: center;
}

.section-subheading {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.section-desc {
    margin: 1.25rem auto 0 auto;
    max-width: 35rem;
    color: var(--text-secondary);
}

.section-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-bottom: -1rem;
    margin-top: 0.3125rem;
}

.section-btns .btn {
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.section-nav {
    position: relative;
    margin-bottom: 2rem;
    margin-top: -0.3125rem;
}

.section-nav-list {
    list-style: none;
    margin: 0;
    padding: 0.3125rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
    width: 100%;
    overflow-x: auto;
}

.section-nav-list li {
    cursor: pointer;
    padding: 0 0.3125rem;
    margin-right: 1.5rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.section-nav-list li:last-child {
    margin-right: 0;
}

.section-nav-list li:hover, .section-nav-list li.active {
    color: var(--main-color);
}

.section-row {
    display: flex;
    flex-wrap: wrap;
}

.section-item {
    width: 50%;
    max-height: 100%;
}

.section-path {
    width: calc(1140px / 2);
    padding: 0 15px;
}

.section-path-left {
    margin-left: auto;
}

.section-path-right {
    margin-right: auto;
}

.section-right-picture {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 2rem;
}

.section-right-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 4.4 Page */
.grid-item p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.625rem;
}

.page-404-title {
    font-size: 5rem;
}

.search-page-container {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.search-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 3.5rem;
    counter-reset: item;
}

.search-page-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.search-page-list li:last-child {
    margin-bottom: 0;
}

.search-page-list li a {
    font-weight: bold;
    font-family: var(--heading-font-family), sans-serif;
    text-decoration: none;
}

.search-page-list li a:hover {
    text-decoration: underline;
}

.search-page-list li::before {
    content: counter(item) ".";
    counter-increment: item;
    display: block;
    min-width: 2rem;
    top: 0;
}

.search-page-list li p {
    margin-top: 0.3125rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.search-page-results-text {
    margin-bottom: 0;
    margin-top: 2rem;
}

.search-page-results-text b, .search-page-results-text strong {
    font-weight: 600;
    font-family: var(--heading-font-family), sans-serif;
}

/* 4.5 Footer */
.footer {
    position: relative;
    background-color: var(--text-primary);
    width: 100%;
    color: var(--primary-color);
    font-size: 1rem;
}

.footer p, .footer i {
    opacity: 0.8;
}

.footer a {
    opacity: 0.8;
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer a::after {
    color: var(--primary-color);
}

.mobile .footer, .tablet .footer {
    z-index: 1 !important;
    position: relative !important;
}

.mobile .main-inner, .tablet .main-inner {
    margin-bottom: 0 !important;
}

.footer-minimal .footer-main {
    padding: 2.5rem 0;
}

.footer-minimal .footer-company-info .logo {
    margin-bottom: 0;
}

.footer-center {
    text-align: center;
}

.footer-center .footer-social-links {
    justify-content: center;
}

.footer-center .footer-company-top {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-company-top .logo {
    opacity: 1;
}

.footer-main {
    padding: 4rem 0;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-company-info .logo {
    margin-bottom: 1.25rem;
    height: auto;
}

.footer-company-desc {
    margin-bottom: 2rem;
}

.footer-company-desc p {
    margin-bottom: 0;
}

.footer-social-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.2s;
}

.footer-social-links li {
    margin-right: 0.625rem;
}

.footer-social-links li:last-child {
    margin-right: 0;
}

.footer-social-links li a {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--el-border-radius-min);
    fill: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.footer-social-links li a > svg {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.footer-social-links li a:hover {
    background-color: var(--primary-color);
    fill: var(--text-primary);
    opacity: 1;
}

.footer-item {
    margin-bottom: 2rem;
}

.footer-item:last-child {
    margin-bottom: 0;
}

.footer-item-heading {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    line-height: var(--heading-line-height);
    font-weight: bold;
}

.footer-mnu li {
    margin-bottom: 1rem;
}

.footer-mnu li:last-child {
    margin-bottom: 0;
}

.footer-mnu-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: -2rem;
    margin-bottom: -1rem;
}

.footer-mnu-line li {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.footer-contacts li {
    display: flex;
    margin-bottom: 1rem;
}

.footer-contacts li:last-child {
    margin-bottom: 0;
}

.footer-contacts li i {
    margin-right: 0.5rem;
}

.footer-contacts i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-contacts i.footer-contact-tel {
    font-size: 1.25rem;
}

.footer-contacts i.footer-contact-email {
    font-size: 1.125rem;
}

.footer-contact-info {
    opacity: 0.8;
}

.footer-contact-info a {
    opacity: 1;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}

.footer-contact-info p {
    margin: 0;
}

.footer-subscribe {
    display: flex;
}

.footer-subscribe .form-field {
    margin-right: 1rem;
    margin-bottom: 0;
    width: 100%;
}

.footer-subscribe .form-field input {
    background-color: transparent;
    color: var(--primary-color);
}

.footer-subscribe .form-field input::-webkit-input-placeholder, .footer-subscribe .form-field input::placeholder {
    color: var(--primary-color);
    opacity: 1;
}

.footer-subscribe .form-field .form-field-label {
    color: var(--primary-color);
}

.footer-bottom {
    position: relative;
    padding: 1.625rem 0 1.5rem;
    font-size: 0.875rem;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.2;
}

.footer-bottom .copyright {
    opacity: 0.8;
}

.footer-bottom .items {
    margin-bottom: -1.5rem;
}

.footer-bottom .item {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    margin-bottom: -1rem;
    margin-left: -1.25rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
    margin-left: 1.25rem;
}

.footer-links ul li a {
    display: block;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
}

.footer-links ul li a:hover {
    border-bottom-style: solid;
}

/* 4.6 Elements style */
.litems {
    margin-bottom: -45px;
}

.litem {
    margin-bottom: 45px;
}

.items {
    margin-bottom: -30px;
}

.item {
    margin-bottom: 30px;
}

.content-items {
    margin-bottom: -3.5rem;
}

.content-item {
    margin-bottom: 3.5rem;
}

.item-style {
    position: relative;
    background-color: var(--primary-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
    color: var(--text-primary);
    height: 100%;
    transition: box-shadow 0.2s;
}

.item-style:hover {
    box-shadow: var(--el-box-shadow);
}

.item-style:hover::after {
    border-color: transparent;
}

.item-style::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    pointer-events: none;
    transition: border-color 0.2s;
    z-index: 1;
}

.item-square {
    display: block;
    width: 100%;
    overflow: hidden;
}

.item-square::after {
    content: "";
    float: left;
    margin-top: 225px;
}

.item-wide {
    height: 33.75rem;
}

.flickity-slider .item-style:hover {
    box-shadow: none;
}

.flickity-slider .item-style:hover::after {
    border-color: var(--main-color);
}

.img-style {
    border: 1px solid var(--border-color);
    background-color: var(--primary-bg-color);
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.img-style img {
    margin: 0;
}

.img-style-min {
    border-radius: var(--el-border-radius-min);
}

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

.item-heading {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 1.125rem;
    font-weight: var(--heading-font-weight);
}

.item-heading a {
    text-decoration: none;
    color: var(--text-primary);
}

.item-heading a:hover {
    color: var(--main-color);
}

.item-heading-middle {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 1.25rem;
    font-weight: var(--heading-font-weight);
}

.item-heading-large {
    font-family: var(--heading-font-family), sans-serif;
    font-size: 1.5rem;
    font-weight: var(--heading-font-weight);
}

.item-border-radius {
    border-radius: var(--el-border-radius);
    overflow: hidden;
}

.el-ripple {
    --ripple-width: 100%;
    --ripple-time: 0.4s;
    position: relative;
    overflow: hidden;
    transition: all var(--ripple-time);
}

.el-ripple .el-ripple-circle {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--el-gradient1);
    transform: translate(-50%, -50%);
    transition: width var(--ripple-time), padding-top var(--ripple-time);
    z-index: 0;
}

.el-ripple span, .el-ripple div, .el-ripple i {
    position: relative;
    z-index: 1;
}

.el-ripple:hover {
    color: var(--primary-color);
}

.el-ripple:hover .el-ripple-circle {
    width: calc(var(--ripple-width) * 3);
    padding-top: calc(var(--ripple-width) * 3);
}

/* === 5. Cookie === */
.cookie-message {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.25rem 1rem;
    opacity: 0;
    visibility: hidden;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 111111;
    transition: all 0.2s;
}

.cookie-message::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: var(--text-primary);
    z-index: -1;
}

.cookie-message.open {
    opacity: 1;
    visibility: visible;
}

.cmc-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.cmc-desc p {
    display: block;
    margin: 0;
}

.mc-btn {
    white-space: nowrap;
    margin-left: 1.5rem;
    min-width: 11.25rem;
}

@media only screen and (max-width: 576px) {
    .cookie-message {
        display: block;
        padding: 1rem;
    }

    .cmc-desc {
        margin-bottom: 1rem;
    }

    .mc-btn {
        margin-left: 0;
    }
}

/* === 6. UI elements === */
.ui-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ui-nav li {
    cursor: pointer;
    padding: 0.625rem 1rem;
    border-left: 2px solid transparent;
    transition: all 0.25s;
}

.ui-nav li.active {
    color: var(--main-color);
    border-left-color: var(--main-color);
    background-color: var(--primary-bg-color);
}

.ui-nav li:hover {
    color: var(--main-color);
}

.ui-item {
    display: none;
}

.ui-item.active {
    display: block;
}

.ui-item .page-sections {
    padding-top: 0;
}

.ui-item-icons svg {
    fill: var(--text-primary);
}

/* === 7. Media === */
/*==========  Desktop First  ==========*/
@media (max-width: 1199.98px) {
    .main-mnu-list {
        margin-left: -0.625rem;
    }

    .main-mnu-list.main-mnu-list-min > li {
        margin-left: 0;
    }

    .main-mnu-list.main-mnu-list-min > li > a {
        padding: 0 0.25rem;
    }

    .main-mnu-list.main-mnu-list-min > li > a::after {
        padding: 0 0.25rem;
    }

    .main-mnu-list > li {
        margin-left: 0.5rem;
    }

    .mega-mnu-item {
        padding: 2rem 0.625rem 2rem 1.5rem;
    }

    .header-fixed .container {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .header-fixed .row {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }

    .header-fixed .row .header-fixed-col {
        padding: 0 0.625rem;
    }

    .section-path {
        width: calc(960px / 2);
    }

    .section-nav-list li.hover-link {
        overflow: initial;
    }

    .hover-link > span {
        transform: none;
    }

    .hover-link::after {
        content: none;
    }

    .hover-link.active > span, .hover-link:hover > span {
        transform: none;
    }

    .hl-list li.active > .hover-link, .hl-list li.open > .hover-link {
        color: var(--main-color);
    }

    .hl-list li.active > .hover-link > span, .hl-list li.open > .hover-link > span {
        transform: none;
    }

    .hl-list li.active > .hover-link::after, .hl-list li.open > .hover-link::after {
        content: none;
    }

    .item-wide {
        height: 28.125rem;
    }
}

@media (max-width: 991.98px) {
    .header-top {
        display: none;
    }

    .header-fixed {
        z-index: 101;
    }

    .header-search-form {
        padding-right: 0;
        padding-right: 4.375rem;
    }

    .mob-main-mnu {
        display: flex;
    }

    .section-nav-list li {
        margin-right: 1rem;
    }

    .section-item-md-wide {
        width: 100%;
    }

    .section-item-md-wide .section-path {
        width: 100%;
    }

    .item-wide {
        height: 20.625rem;
    }
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .header-fixed {
        padding: 0.625rem 0 0.625rem 0.25rem;
    }

    .logo img {
        max-height: 2.25rem;
    }

    .header-center .logo img {
        max-height: 2.25rem;
    }

    .header-actions {
        padding: 0.5rem 0;
    }

    .litems {
        margin-bottom: -30px;
    }

    .litem {
        margin-bottom: 30px;
    }

    .section-heading {
        margin-bottom: 3rem;
    }

    .section-heading h1, .section-heading h2, .section-heading h3 {
        font-size: 2rem;
    }

    .item-heading-large {
        font-size: 1.25rem;
    }

    .section-nav {
        margin-bottom: 1.5rem;
    }

    .section-nav-list {
        justify-content: start;
        white-space: nowrap;
        overflow-x: auto;
    }

    .footer-main {
        padding: 3rem 0;
    }

    .footer-mnu-line {
        justify-content: center;
    }

    .footer-minimal .footer-company-top {
        display: flex;
        justify-content: center;
    }

    .footer-minimal .footer-bottom {
        text-align: center;
    }

    .footer-minimal .footer-links ul {
        justify-content: center;
    }

    .footer-contacts li {
        margin-bottom: 1.25rem;
    }

    .footer-contact-info p {
        margin-bottom: 8px;
    }

    .footer-contact-info p:last-child {
        margin-bottom: 0;
    }

    .item-wide {
        height: 15rem;
    }
}

@media (max-width: 575.98px) {
    .popup {
        padding: 2rem 1.5rem;
    }

    .item-wide {
        height: 12rem;
    }

    .item-heading-middle,
  .item-heading-large {
        font-size: 1.125rem;
    }
}

@media only screen and (max-width: 480px) {
    .social-login {
        flex-wrap: wrap;
    }

    .social-login li {
        width: 100%;
    }

    .item-wide {
        height: 10rem;
    }
}

/*
:root {
    --media-width: 1400px;
    --media-font-size: 17px;
    --media-container-width: 1320px;
}
$media-width: var(--media-width);
$media-font-size: var(--media-font-size);
$media-container-width: var(--media-container-width);

@media only screen and (min-width : $media-width) {

    html {
        font-size: $media-font-size;
    }

    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: $media-container-width;
    }

}*/


/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }


.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 250px;
  border: 2px dashed rgba(0, 0, 0, 0.3);
  background: #e6ff98;
  padding: 20px 20px;
  border-radius: 5px;
}
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000;
    }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1;
    }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd);
    }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1;
    }
    .dropzone .dz-preview.dz-image-preview {
      background: transparent;
    }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        -moz-transition: opacity 0.2s linear;
        -ms-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear;
      }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none;
    }
    .dropzone .dz-preview .dz-remove:hover {
      text-decoration: underline;
    }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1;
    }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%;
    }
    .dropzone .dz-preview .dz-details .dz-size {
      margin-bottom: 1em;
      font-size: 16px;
    }
    .dropzone .dz-preview .dz-details .dz-filename {
      white-space: nowrap;
    }
    .dropzone .dz-preview .dz-details .dz-filename:hover span {
      border: 1px solid rgba(200, 200, 200, 0.8);
      background-color: rgba(255, 255, 255, 0.8);
    }
    .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
      border: 1px solid transparent;
    }
    .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
      background-color: rgba(255, 255, 255, 0.4);
      padding: 0 0.4em;
      border-radius: 3px;
    }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -o-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px);
    }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10;
    }
    .dropzone .dz-preview .dz-image img {
      display: block;
    }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      -moz-transition: opacity 0.4s ease-in;
      -ms-transition: opacity 0.4s ease-in;
      -o-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      -moz-animation: pulse 6s ease infinite;
      -ms-animation: pulse 6s ease infinite;
      -o-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        -moz-transition: width 300ms ease-in-out;
        -ms-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      -ms-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }

.dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626;
}


.text-big{
  font-size: 120%;
}

.text-small{
  font-size: 80%;
}

.text-tiny{
  font-size: 60%;
}

.floatR{
  float: right;
}

.formatProducts{
  position: absolute;
  bottom: 76px;
  vertical-align: middle;
  text-align: right;
  width: 40%;
  height: 12%;
}

.lowercase{
  text-transform: lowercase;
}


.valignMiddle{
  vertical-align: middle !important;
}

.text-left{
  text-align: left;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify;
}

.text-center{
  text-align: center;
}

.bgWTransp{
  background-color: rgba(255,255,255,0.7);
  border-radius: 3px;
  padding: 8px;
}

.paddingT40px{
  padding-top: 40px;
}

.w100{
  width: 100% !important;
}

.w80{
  width: 80% !important;
}

.w20{
  width: 20% !important;
}

.w95{
  width: 95% !important;
}

.w100 > li{
  width: 100% !important;
}

.hrMenu{
  border: 0;
  border-top: 1px solid #F0F4F8;
}

.imgMenuZeuss{
  display: inline-block;
  margin-top: -13px;
}

.textMenuZeuss{
  display: inline-block !important;
  margin-left: -21px;
}

.w10px{
  width: 10px !important;
}

.colorMain{
  color: var(--main-color) !important;
}

.colorPrimary{
  color: var(--text-primary) !important;
}

.colorGray{
  color: var(--placeholder-color) !important;
}

.colorRed{
  color: var(--zeussINTRA) !important;
}

.colorGreen{
  color: var(--alert-success) !important;
}

.colorOrange{
  color: var(--alert-warning) !important;
}

.colorBlue{
  color: var(--alert-primary) !important;
}

.displayInnline{
  display: inline-flex !important;
  align-items: flex-start;
}

.displayInnlineF{
  display: inline-flex !important;
}

.displayInnlineB{
  display: inline-block;
}

.w24{
  width: 24%;
}

.w25{
  width: 25%;
}

.w49{
  width: 49%;
}

.w50{
  width: 50%;
}

.w74{
  width: 74%;
}

.w73{
  width: 73%;
}

.w49m100{
  width: 49%;
}

@media (max-width: 700px) {
  .w49m100{
    width: 100%;
  }
}

.btnBlackActive{
  background-color: var(--text-primary) !important;
  color: var(--primary-color) !important;
}

.smallPaddingBtn{
  padding: 0.45em 1.25em !important;
}

.xtraSmallPaddingBtn{
  padding: 0.15em 0.65em !important
}

.thinPaddingBtn{
  padding: 0.35em 0.95em !important;
}

.paddingR20px{
  padding-right: 20px !important;
}

.paddingR40px{
  padding-right: 40px !important;
}

.paddingR5px{
  padding-right: 5px;
}

.margin-bottom0{
  margin-bottom: 0px !important;
}

.marginT0{
  margin-top: 0px;
}

.marginT6px{
  margin-top: 6px;
}

.marginT11px {
    margin-top: 11px;
}

.marginT15px{
  margin-top: 15px;
}

.marginT25px{
  margin-top: 25px;
}

.marginT30px{
  margin-top: 30px;
}

.marginT60px{
  margin-top: 60px;
}

.marginT-20px{
  margin-top: -20px;
}

.marginT-34px{
  margin-top: -34px;
}

.cursorPointer{
  cursor: pointer;
}

.cursorDrag{
  cursor: grabbing;
}

.cursorGrab{
  cursor: grab;
}


.noBG{
  background-color: transparent !important;
}

.bgRed2{
  background-color: rgba(255,0,0,0.5) !important;
}

.borderRed{
  border: 1px solid rgba(255,0,0) !important;
}

.alert-right{
  justify-content: flex-end !important;
}

.paddingAlertVE{
  padding: 0.25rem 0.2rem !important;
}

.marginT-30{
  margin-top: -30px !important;
}

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

.trBgColor{
  background-color: var(--primary-bg-color) !important;
}

.trBgColorWhite{
  background-color: white !important;
}

.trBgColorRed2{
  background-color: var(--alert-danger) !important;
}

.trBgColorRed{
  background-color: var(--alert-danger2) !important;
}

.trBgColorRed3{
  background-color: var(--alert-danger3) !important;
}

.trBgColorOrange{
  background-color: var(--alert-warning) !important;
}

.trBgColorGreen{
  background-color: var(--alert-success) !important;
}

.trBgColorGreen2{
  background-color: #CFF0CC !important;
}

.trBgColorBlue{
  background-color: var(--alert-primary) !important;
}

.trBgColorMain{
  background-color: var(--main-color) !important;
}

.trBgColorGray{
  background-color: #484848 !important;
}

.trBgColorGray2{
  background-color: #787878 !important;
}

.container-smFix {
    max-width: 540px;
}

.container-mdFix {
    max-width: 740px;
}

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

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

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

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

.displayFlex{
  display: flex;
}

.marginT5px{
  margin-top: 5px;
}

.marginT20px{
  margin-top: 20px;
}

.marginT30px{
  margin-top: 30px;
}

.marginT39px{
  margin-top: 39px;
}

.marginT65px{
  margin-top: 65px;
}

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

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


.bgRed{
  background-color: var(--main-color) !important;
}

.colorWhite{
  color: var(--primary-color) !important;
}

.teamContact{
  background-color: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 5px;
}

.top100px{
  top: -100px !important;
}

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

.teamLink{
  color: var(--text-primary);
  text-decoration: none;
}

.teamLink:hover{
  color: var(--main-color);
}

.teamLink2{
  color: var(--primary-color);
  text-decoration: none;
  font-size: small;
}

.teamLink2:hover{
  color: var(--main-color);
}

.w60{
  width: 60% !important;
}

.paddingT0px{
  padding-top: 0px !important;
}

.minH0px{
  min-height: 0px !important;
}

.bgSizeAuto{
  background-size: auto !important;
}

.padding0px{
  padding: 0px !important;
}

@media (min-width: 1199px) {
  .introContentNew{
    background-color: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: var(--el-border-radius-min);
  }
}

.inputDisabled{
  background-color: var(--placeholder-color) !important;
  color: var(--primary-color) !important;
}

.displayNone{
  display:none;
}

tr:hover td {
    background-color: var(--placeholder-color);
    color: var(--primary-color);
}

th{
  background-color: var(--primary-color);
}

.tableFixHead{
  overflow-y: auto;
  max-height: 80vh;
  width: 100%;
}
.tableFixHead thead th, .tableFixHeadSmall thead th { position: sticky; top: 0; z-index: 1; }

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--el-gradient1);
  box-shadow: inset 0 0 5px #484848;
  border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #484848;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #868686;
}

.bgHistory{
  background-color: var(--history);
  padding: 5px;
  border-radius: var(--el-border-radius);
}

.bgSettings{
  background-color: var(--placeholder-color);
  padding: 5px;
  border-radius: var(--el-border-radius);
}

.bgReminder{
  background-color: var(--alert-warning);
  padding: 5px;
  border-radius: var(--el-border-radius);
}



.stylePDFpreview{
  border: 5px solid var(--text-primary);
  border-radius: var(--el-border-radius);
  width: 100%;
  height: 70vh;
}

.stylePDFpreviewBig{
  border: 5px solid var(--text-primary);
  border-radius: var(--el-border-radius);
  width: 100%;
  height: 85vh;
}

.lineHNormal{
  line-height: unset !important;
}

.lineHNormal2{
  line-height: normal !important;
}

.wFitContent{
  width: fit-content !important;
}

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

.divHide{
  display: none !important;
}

.divHistoryScroll{
  padding: 5px;
  overflow-y: auto;
  max-height: 50vh;
}

.stylePDFpopup{
  padding: 0px !important;
  background-color: transparent !important;
}

.maxW50p{
  max-width: 50% !important;
}

.tinyText{
  font-size: 80%;
}

.bgWhite{
  background-color: var(--primary-bg-color) !important;
}

.minH120vh{
  min-height: 120vh !important;
}
.minH70vh{
  min-height: 70vh !important;
}
.minH50vh{
  min-height: 50vh !important;
}
.minH30vh{
  min-height: 30vh !important;
}

.paddingLR0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.paddingR10{
  padding-right: 10px !important;
}

.paddingR0{
  padding-right: 0px !important;
}

.paddingL0{
  padding-left: 0px !important;
}

.marginT-30px{
  margin-top: -30px;
}

.styleLegende{
  padding: 3px;
  border-radius: var(--el-border-radius-xs);
  padding-bottom: 0px;
  top: 4px;
  position: relative;
}

.paddingT27px{
  padding-top: 27px;
}

.bgDOC{
  background-color: var(--zeussDOC) !important;
}
.fontDOC{
  color: var(--zeussDOC) !important;
}

.bgSTORAGE{
  background-color: var(--zeussSTORAGE) !important;
}
.fontSTORAGE{
  color: var(--zeussSTORAGE) !important;
}

.bgDISPO{
  background-color: var(--zeussDISPO) !important;
}
.fontDISPO{
  color: var(--zeussDISPO) !important;
}

.bgHR{
  background-color: var(--zeussHR) !important;
}
.fontHR{
  color: var(--zeussHR) !important;
}

.bgCONTROL{
  background-color: var(--zeussCONTROL) !important;
}
.fontCONTROL{
  color: var(--zeussCONTROL) !important;
}

.bgCONFIG{
  background-color: var(--zeussMANAGE) !important;
}
.fontCONFIG{
  color: var(--zeussMANAGE) !important;
}

.bgMANAGE{
  background-color: var(--zeussMANAGE) !important;
}
.fontMANAGE{
  color: var(--zeussMANAGE) !important;
}

.bgINTRA{
  background-color: var(--zeussINTRA) !important;
}
.fontINTRA{
  color: var(--zeussINTRA) !important;
}

.bgANALYTICS{
  background-color: var(--zeussANALYTICS) !important;
}
.fontANALYTICS{
  color: var(--zeussANALYTICS) !important;
}

.bgFINANCE{
  background-color: var(--zeussFINANCE) !important;
}
.fontFINANCE{
  color: var(--zeussFINANCE) !important;
}

.bgPROJECTS{
  background-color: var(--zeussPROJECTS) !important;
}
.fontPROJECTS{
  color: var(--zeussPROJECTS) !important;
}

.bgOPERATOR{
  background-color: var(--zeussOPERATOR) !important;
}
.fontOPERATOR{
  color: var(--zeussOPERATOR) !important;
}

.cycle-slideshow > img {
  height: 150px !important;
}

.lineH0_6rem{
  line-height: 0.6rem !important;
}

.lineH1rem{
  line-height: 1rem !important;
  position: relative;
}

.lineH1remT2{
  line-height: 1rem !important;
  position: relative;
  top: 2px;
}

.lineH2rem {
    line-height: 2rem;
}

.lineH2_8rem {
    line-height: 2.8rem !important;
}

.lineH2_5rem {
    line-height: 2.5rem !important;
}

.lineH1{
  line-height: 1;
}

.padding1rem{
  padding: 1rem;
}

.inputBlank{
  border: 0px !important;
  margin-bottom: 0 !important;
}

.calVH{
  height: calc(100vh - 200px) !important;
}

.paddingB8px{
  padding-bottom: 8px;
}

.paddingB0px{
  padding-bottom: 0px;
}

.paddingB20px{
  padding-bottom: 20px;
}

.paddingB40px{
  padding-bottom: 40px;
}

.paddingL30px{
  padding-left: 30px;
}

.paddingR30px{
  padding-right: 30px;
}

.paddingT30px{
  padding-top: 30px;
}

.paddingL30px{
  padding-left: 30px !important;
}

.textLink{
	text-decoration: none;
}

.cursorNormal{
  cursor: default;
}

.item-square2::after {
    content: "";
    float: left;
    margin-top: 100% !important;
}

.marginT-11px{
  margin-top: -11px;
}

.textBottom{
  display: flex;
  align-items: flex-end;
}

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

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-color: var(--main-color) !important;
}

.select2-container .select2-selection--single {
    height: 52px !important;
    padding: calc(0.75em - 1px) 1rem  !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--el-border-radius-min) !important;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid var(--main-color) !important;
    border-radius: var(--el-border-radius-min) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--main-color) !important;
    color: white;
}

.infoHeader {
  text-align: center;
  width: 100%;
  padding: 15px;
  transition: background-color 1.8s ease;
  background-color: #fbd69e;
}
.infoContent {
  padding-bottom: 40px;
  height: 30vh;
  max-height: 30vh;
  width: 100%;
  letter-spacing: 3px !important;
  font-size: 19px;
  padding: 15px;
  transition: background-color 1.8s ease;
  background-color: #FFDEAD;
}
.infoFooter {
  width: 100%;
  text-align: center;
  padding: 15px;
  transition: background-color 1.8s ease;
  background-color: #fbd69e;
}

.infoHeader2 {
  text-align: center;
  width: 100%;
  color: #fff;
  padding: 15px;
  background-color: #DCDCDC;
}
.infoContent2 {
  height: 30vh;
  max-height: 30vh;
  padding: 15px;
  width: 100%;
  letter-spacing: 3px !important;
  font-size: 19px;
  padding: 15px;
  background-color: #F5F5F5;
}
.infoFooter2 {
  width: 100%;
  text-align: center;
  padding: 15px;
  background-color: #DCDCDC;
}

.infoHeader3 {
  width: 100%;
  padding: 15px;
}
.infoContent3 {
  padding: 15px;
  width: 100%;
  font-size: 14px;
}
.infoFooter3 {
  width: 100%;
  padding: 15px;
}

.infoFahrer{
    display: flex;
    height: 70vh;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 400px;
}

.textAreaInfo{
  width: 100%;
  height: 29vh !important;
  overflow-y: auto !important;
}

.marginL-10px{
  margin-left: -10px !important;
}

.marginL-4px{
  margin-left: -4px !important;
}

.margin0{
  margin: 0px !important;
}

.marginL11px{
  margin-left: 11px !important;
}

.marginL20px{
  margin-left: 20px !important;
}

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

.marginB40px{
  margin-bottom: 40px !important;
}

.popupFullScreen{
  min-width: 100% !important;
  min-height: 100% !important;
  height: 99%;
}

.popupFullScreen2 {
    min-width: 100% !important;
    min-height: 100% !important;
    height: 100%;
}

.stylePDFpreview2 {
    border: 5px solid var(--text-primary);
    border-radius: var(--el-border-radius);
    width: 100%;
    height: 95vh;
}

.popup2{
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5px 10px;
  margin: 0 auto;
  border-radius: var(--el-border-radius);
  overflow: hidden;
}

.popup_style2 {
    display: none;
    width: 100%;
    max-width: 28.125rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
    border-radius: 0;
    padding: 0 1rem;
    overflow: hidden;
}

.h330px{
  height: 330px !important;
}

.padding20px{
  padding: 20px;
}

.justify-content{
  justify-content: flex-end;
}

.bouncing-text {
  position: relative;
  display: flex;
  font-size: 24px;
}

.l1, .l2, .l3, .l4, .l5, .l6, .l7, .l8, .l9, .l10, .l11, .l12, .l13, .l14, .l15, .l16, .l17, .l18, .l19, .l20, .l21, .l22, .l23, .l24, .l25, .l26, .l27, .l28, .l29, .l30, .l31, .l32, .l33 {
  position: relative;
  color: #e51b1f;

}

.l1 {
  animation: bounce 2s ease infinite;
  -webkit-animation: bounce 2s ease infinite;
}

.l2 {
  animation: bounce 2s ease infinite .1s;
  -webkit-animation: bounce 2s ease infinite .1s;
}

.l3 {
  animation: bounce 2s ease infinite .2s;
  -webkit-animation: bounce 2s ease infinite .2s;
}

.l4 {
  animation: bounce 2s ease infinite .3s;
  -webkit-animation: bounce 2s ease infinite .3s;
}

.l5 {
  animation: bounce 2s ease infinite .4s;
  -webkit-animation: bounce 2s ease infinite .4s;
}

.l6 {
  animation: bounce 2s ease infinite .5s;
 -webkit-animation: bounce 2s ease infinite .5s;
}

.l7 {
  animation: bounce 2s ease infinite .6s;
 -webkit-animation: bounce 2s ease infinite .6s;
}

.l8 {
  animation: bounce 2s ease infinite .7s;
 -webkit-animation: bounce 2s ease infinite .7s;
}

.l9 {
  animation: bounce 2s ease infinite .8s;
 -webkit-animation: bounce 2s ease infinite .8s;
}

.l10 {
  animation: bounce 2s ease infinite .9s;
 -webkit-animation: bounce 2s ease infinite .9s;
}

.l11 {
  animation: bounce 2s ease infinite 1.0s;
 -webkit-animation: bounce 2s ease infinite 1.0s;
}

.l12 {
  animation: bounce 2s ease infinite 1.1s;
 -webkit-animation: bounce 2s ease infinite 1.1s;
}

.l13 {
  animation: bounce 2s ease infinite 1.2s;
 -webkit-animation: bounce 2s ease infinite 1.2s;
}

.l14 {
  animation: bounce 2s ease infinite 1.3s;
 -webkit-animation: bounce 2s ease infinite 1.3s;
}

.l15 {
  animation: bounce 2s ease infinite 1.4s;
 -webkit-animation: bounce 2s ease infinite 1.4s;
}

.l16 {
  animation: bounce 2s ease infinite 1.5s;
 -webkit-animation: bounce 2s ease infinite 1.5s;
}

.l17 {
  animation: bounce 2s ease infinite 1.6s;
 -webkit-animation: bounce 2s ease infinite 1.6s;
}

.l18 {
  animation: bounce 2s ease infinite 1.7s;
 -webkit-animation: bounce 2s ease infinite 1.7s;
}

.l19 {
  animation: bounce 2s ease infinite 1.8s;
 -webkit-animation: bounce 2s ease infinite 1.8s;
}

.l20 {
  animation: bounce 2s ease infinite 1.9s;
 -webkit-animation: bounce 2s ease infinite 1.9s;
}

.l21 {
  animation: bounce 2s ease infinite 2.0s;
 -webkit-animation: bounce 2s ease infinite 2.0s;
}

.l22 {
  animation: bounce 2s ease infinite 2.1s;
 -webkit-animation: bounce 2s ease infinite 2.1s;
}

.l23 {
  animation: bounce 2s ease infinite 2.2s;
 -webkit-animation: bounce 2s ease infinite 2.2s;
}

.l24 {
  animation: bounce 2s ease infinite 2.3s;
 -webkit-animation: bounce 2s ease infinite 2.3s;
}

.l25 {
  animation: bounce 2s ease infinite 2.4s;
 -webkit-animation: bounce 2s ease infinite 2.4s;
}

.l26 {
  animation: bounce 2s ease infinite 2.5s;
 -webkit-animation: bounce 2s ease infinite 2.5s;
}

.l27 {
  animation: bounce 2s ease infinite 2.6s;
 -webkit-animation: bounce 2s ease infinite 2.6s;
}

.l28 {
  animation: bounce 2s ease infinite 2.7s;
 -webkit-animation: bounce 2s ease infinite 2.7s;
}

.l29 {
  animation: bounce 2s ease infinite 2.8s;
 -webkit-animation: bounce 2s ease infinite 2.8s;
}

.l30 {
  animation: bounce 2s ease infinite 2.9s;
 -webkit-animation: bounce 2s ease infinite 2.9s;
}

.l31 {
  animation: bounce 1s ease infinite 3.0s;
 -webkit-animation: bounce 1s ease infinite 3.0s;
}

.l32 {
  animation: bounce 1s ease infinite 3.1s;
 -webkit-animation: bounce 1s ease infinite 3.1s;
}

.l33 {
  animation: bounce 1s ease infinite 3.2s;
 -webkit-animation: bounce 1s ease infinite 3.2s;
}

 @keyframes bounce {
        0%   { transform: scale(1,1) translateY(0); }
        10%  { transform: scale(1.1,.9) translateY(0); }
        30%  { transform: scale(.9,1.1)   translateY(-20px);}
        50%  { transform: scale(1.05,.95) translateY(0); }
        58%  { transform: scale(1,1) translateY(-7px); }
        65%  { transform: scale(1,1) translateY(0);}
        100% { transform: scale(1,1) translateY(0);}
    }

@-webkit-keyframes bounce {
       0%   { transform: scale(1,1) translateY(0); }
        10%  { transform: scale(1.1,.9) translateY(0); }
        30%  { transform: scale(.9,1.1)   translateY(-20px);}
        50%  { transform: scale(1.05,.95) translateY(0); }
        58%  { transform: scale(1,1) translateY(-7px);}
        65%  { transform: scale(1,1) translateY(0);}
        100% { transform: scale(1,1) translateY(0);}
}

@keyframes scale {
  0% {transform: scaleX(1);}
  25% {transform: scaleX(0.4);}
  50% {transform: scaleX(1);}
  75% {transform: scaleX(0.9);}
  100% {transform: scaleX(1);}
}

@-webkit-keyframes scale {
   0% {transform: scaleX(1);}
  25% {transform: scaleX(0.4);}
  50% {transform: scaleX(1);}
  75% {transform: scaleX(0.9);}
  100% {transform: scaleX(1);}
}

.h95vh{
  height: 95vh !important;
}

.maxW65p {
    max-width: 65% !important;
}

.top-18rem{
  top: -18rem !important;
}

.marginB0{
	margin-bottom: 0px !important;
}

.marginB-24px{
  margin-bottom: -24px;
}

.marginB-15px{
  margin-bottom: -15px;
}

.marginB5px{
  margin-bottom: 5px;
}

.marginB10px{
  margin-bottom: 10px;
}

.marginB15px{
  margin-bottom: 15px;
}

.paddingT10px{
  padding-top: 10px;
}

.paddingB10px{
  padding-bottom: 10px;
}

.news-post-img2{
  height: auto !important;
}

.marginB1-4rem{
  margin-bottom: 1.4rem !important;
}

.vdeBtnW70px{
  width: 70px !important;
}

.commentBox{
    height: 64vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.mbsc-ios.mbsc-textfield-inner{
  background-color: #F7F7F7;
}

.bgTransparent{
  background: transparent !important;
}

.mbsc-ios.mbsc-checkbox-right {
    padding: 0.5em 3.5em 0.5em 0.2rem !important;
}

.mbsc-checkbox {
    line-height: 1em !important;
}

.mbsc-ios.mbsc-checkbox-box {
    width: 1em !important;
    height: 1em !important;
    margin-top: -0.5em !important;
}

.mbsc-ios.mbsc-checkbox-box:after {
    top: 20% !important;
    left: 13% !important;
    width: 0.5em !important;
    height: 0.295em !important;
}

.mbsc-font {
    font-size: 14px !important;
    font-weight: 200 !important;
}

.assignmentPopup{
  max-width: 96% !important;
  width: 96% !important;
  height: 96% !important;
  max-height: 96% !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.mbsc-ios.mbsc-schedule-date-header-text{
  font-size: 1.5rem !important;
}

.mbsc-ios.mbsc-schedule-date-header-text{
  padding-top: 0px !important;
}

.mbsc-calendar-controls{
  width: 30% !important;
}

.mbsc-top-lkw{
  position: absolute !important;
  margin-top: 14px !important;
  z-index: 999999 !important;
  margin-left: -32px !important;
}

.mbsc-top-timer{
  position: absolute !important;
  margin-top: 10px !important;
  z-index: 999999 !important;
  margin-left: -1158px !important;
}

.mbsc-top-timer2{
  margin-top: 6px !important;
}

.mbsc-schedule-date-header{
  width: 390px !important;
  margin-left: 42% !important;
  border-bottom: 0px !important;
}

.padding5px{
  padding: 5px;
}

.height75{
  height: 75vh;
}

.mbsc-schedule-date-header-text{
  margin-top: -48px !important;
}

@media (max-width: 1200px) {
  .height75{
    height: 85vh !important;
  }
}

@media (max-width: 430px) {
  .height75{
    height: 92vh !important;
  }
}

@media (max-width: 610px) {
  .mbsc-schedule-date-header-text{
    margin-top: 0px !important;
  }
  .mbsc-schedule-date-header{
    width: 100% !important;
    margin-left: 0% !important;
  }
}

.mbsc-schedule-grid-scroll, .mbsc-timeline-grid-scroll {
  overflow-y: auto !important;
}

.mbsc-schedule-all-day-wrapper {
  overflow-y: auto !important;
}

.mbsc-ios.mbsc-schedule-resource.mbsc-ltr {
    border-left-width: 0px !important;
}

.popup_style.popup_style_xTraWide {
    max-width: 62.75rem;
}

.popup_style.popup_style_xTraWide90 {
    max-width: 90%;
}

.tableFixHeadSmall {
    overflow-y: auto;
    max-height: 60vh;
    width: 100%;
}

.marginT34px{
  margin-top: 34px;
}

.marginT50px{
  margin-top: 50px;
}

.paddingB7px{
  padding-bottom: 7px;
}

.tableFixHead31vh {
    overflow-y: auto;
    max-height: 31vh;
    width: 100%;
}

.tableFixHead46vh {
    overflow-y: auto;
    max-height: 46vh;
    width: 100%;
}

.tableFixHead20vh {
    overflow-y: auto;
    max-height: 20vh;
    width: 100%;
}

.tableFixHead34vh {
    overflow-y: auto;
    max-height: 34vh;
    width: 100%;
}

.tableFixHead80vh {
    overflow-y: auto;
    max-height: 80vh;
    width: 100%;
}

.maxWidth95vw{
  max-width: 95vw !important;
}

.posCircle{
  position: absolute;
  padding: 10px;
}

.posCircleMenu{
  position: absolute;
  padding: 10px;
  top: -31px;
  left: 12px;
}

.numberCircle {
    width: 2em;
    height: 2em;
    box-sizing: initial;
    font-size: 15px;
    text-align: center;
    border-radius: 50%;
    line-height: 2em;
    box-sizing: content-box;
    color: #666;
    font-weight: 700;
}

.borderIntra{
  border: 1px solid var(--zeussINTRA) !important;
}

.borderDoc{
  border: 1px solid var(--zeussDOC) !important;
}

.borderHr{
  border: 1px solid var(--zeussHR) !important;
}

.borderDispo{
  border: 1px solid var(--zeussDISPO) !important;
}

.borderStorage{
  border: 1px solid var(--zeussSTORAGE) !important;
}

.borderManage{
  border: 1px solid var(--zeussMANAGE) !important;
}

.borderControl{
  border: 1px solid var(--zeussCONTROL) !important;
}

.borderProjects{
  border: 1px solid var(--zeussPROJECTS) !important;
}

.borderOperator{
  border: 1px solid var(--zeussOPERATOR) !important;
}

.borderAnalytics{
  border: 1px solid var(--zeussANALYTICS) !important;
}

.borderFinance{
  border: 1px solid var(--zeussFINANCE) !important;
}

.numberIntra{
  border: 0.1em solid var(--zeussINTRA);
}

.numberDoc{
  border: 0.1em solid var(--zeussDOC);
}

.numberHr{
  border: 0.1em solid var(--zeussHR);
}

.numberDispo{
  border: 0.1em solid var(--zeussDISPO);
}

.numberStorage{
  border: 0.1em solid var(--zeussSTORAGE);
}

.numberManage{
  border: 0.1em solid var(--zeussMANAGE);
}

.numberControl{
  border: 0.1em solid var(--zeussCONTROL);
}

.numberProjects{
  border: 0.1em solid var(--zeussPROJECTS);
}

.numberOperator{
  border: 0.1em solid var(--zeussOPERATOR);
}

.numberAnalytics{
  border: 0.1em solid var(--zeussANALYTICS);
}

.numberFinance{
  border: 0.1em solid var(--zeussFINANCE);
}

.deleteDocBtn{
  vertical-align: top;
  margin-left: -9px;
}

.font24px{
  font-size: 24px;
}

.fontTiny{
  font-size: 12px;
}

.text-Moveright{
  right: 15px !important;
}

.smallImputText{
  font-size: 0.9rem !important;
  padding: 0 0.8rem !important;
  margin-bottom: 0rem !important;
}

.paddingL0R34{
  padding-left: 0px !important;
  padding-right: 34px !important;
}

.paddingL0R5{
  padding-left: 0px !important;
  padding-right: 5px !important;
}

.bgDisabled{
  background-color: #D1D1D1 !important;
}

.docShareCopyLink{
  font-size: 19px;
  color: var(--zeussINTRA);
}

.docShareCopyLink > a{
  font-size: 19px;
  color: var(--zeussINTRA);
}

.docShareCopyDiv{
  border: 1px solid var(--zeussDOC);
  border-radius: 5px;
  padding: 5px;
}

.marginR9px{
  margin-right: 9px !important;
}

.marginR10px{
  margin-right: 10px !important;
}

.marginR5px{
  margin-right: 5px !important;
}

.marginR0{
  margin-right: 0px !important;
}

.marginL5px{
  margin-left: 5px !important;
}

.paddingL5px{
  padding-left: 5px !important;
}

.tableFixHead200px {
    overflow-y: auto;
    max-height: 200px;
    width: 100%;
}

.bgGray{
  background: #bbbbbb !important;
}

.mbsc-calendar-month {
    min-width: 120px;
}

.mbsc-ios.mbsc-calendar-controls {
    min-width: 100%;
}

.containerZeuss {
  position: relative;
  width: 50%;
  height: 50vh !important;
}

.imageZeuss {
  opacity: 1;
  height: 100%;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.containerZeuss:hover .imageZeuss {
  opacity: 0.2;
}

.containerZeuss:hover .middle {
  opacity: 1;
}

.lg-outer {
    z-index: 9999999 !important;
}

.lg-backdrop {
    z-index: 9999999 !important;
}

.menuImage{
    width: 100%;
    height: auto;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    box-shadow: 1px 3px 9px -5px rgba(0,0,0,0.74);
    padding: 15px;
    background-color: #FFF
}

.bgMenu{
    background-color: #F9F9F9;
    border-radius: 5px;
    box-shadow: 1px 3px 9px -5px rgba(0,0,0,0.74);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.bgMenuManage{
    background-color: #F9F9F9;
    border-radius: 5px;
    box-shadow: 1px 3px 9px -5px rgba(0,0,0,0.74);
    margin-bottom: 30px;
}

.menuBtnBottom{
    float: bottom;
}

.mbsc-timeline-resource-col {
    width: 11em !important;
}

.mbsc-font {
    font-size: 12px !important;
}

.numberNotMenu {
    border: 0.1em solid #666;
}

.numberNotCircle {
    width: 20px;
    height: 20px;
    box-sizing: initial;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    line-height: 2em;
    color: #666;
}

.notificationMenu {
  animation: shake 1.25s linear infinite;
}

@keyframes shake {
  0% { transform: skewY(-15deg) scale(1, 1);}
  5% { transform: skewY(15deg)  scale(1.2, 1.2);}
  10% { transform: skewY(-15deg)  scale(1.5, 1.5);}
  15% { transform: skewY(15deg)  scale(1.2, 1.2);}
  20% { transform: skewY(0deg)  scale(1, 1);}
  100% { transform: skewY(0deg)  scale(1, 1);}
}

.progressB {
  --progressB: 0%;

  width: 100%;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 6px 5px;
  background: var(--text-primary);
}

.progressB .barB {
  width: var(--progressB);
  height: 100%;
  background-repeat: repeat;
  border-radius: 10px;
  animation:
    end 1s ease-out 1 2s;
  transition: width 3s ease 0s;
}

.barColorRed{
  background: linear-gradient(var(--alert-danger), var(--alert-danger), var(--alert-danger));
}
.barColorOrange{
  background: linear-gradient(var(--alert-warning), var(--alert-warning), var(--alert-warning));
}
.barColorGreen{
  background: linear-gradient(var(--alert-success), var(--alert-success), var(--alert-success));
}

@property --progressB {
  syntax: "<length>";
  initial-value: 0%;
  inherits: true;
}

@keyframes shine {
  0% { background-position: 0 0; }
  100% { background-position: 0 50px; }
}

.w115px{
  width: 115px;
}

.heightAuto{
  height: auto !important;
}

.icoDash {
  width: 3rem !important;
  height: 3rem !important;
  min-width: 3rem !important;
}

.paddingDash{
    padding: 0.5rem !important;
    height: 64% !important;
}

.colordoc{
  color: var(--zeussDOC);
}
.colorstorage{
  color: var(--zeussSTORAGE);
}
.colorintra{
  color: var(--zeussINTRA);
}
.colordispo{
  color: var(--zeussDISPO);
}
.colorHR{
  color: var(--zeussHR);
}
.colorcontrol{
  color: var(--zeussCONTROL);
}
.colormanage{
  color: var(--zeussMANAGE);
}
.colorprojects{
  color: var(--zeussPROJECTS);
}
.coloroperator{
  color: var(--zeussOPERATOR);
}
.coloranalytics{
  color: var(--zeussANALYTICS);
}
.colorfinance{
  color: var(--zeussFINANCE);
}

.maxH47vh{
  max-height: 47vh !important;
}

.searchDiv{
  width: 100%;
  height:35vh;
  border: 1px solid lightgray;
  border-radius: 5px;
  background: #FFF;
  position: absolute;
  z-index:1
}

.fontNormal{
  font-weight: normal !important;
}

.marginT-46px{
    margin-top: -46px;
}

.marginT-6pxAbsolute{
  margin-top: -6px;
  position: absolute;
}

.fullOverlay{
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 999999999999999999999999999999999999 !important;
  top: 0;
  left: 0;
  background-color: rgb(255,255,255);
	overflow-x: hidden;
	display: none;
  transition: 0.5s;
}

.styleLegendIco{
  top: 3px;
  position: relative;
}

.hCal{
  height: calc(100% - 20px);
}

.oAuto{
  overflow: auto !important;
}

.w5px{
  width: 5px;
}

.w2px{
  width: 2px;
}

.padding10px{
  padding: 10px;
}

.posMessMenu {
    position: absolute;
    padding: 4px;
    top: -4px;
    left: 0px;
    font-size: 11px;
    color: white;
    font-weight: 600;
}


@media (max-width: 700px) {
  .posMessMenu {
      top: -7px;
      left: 24px;
  }
}

.messTop{
  top: 5px;
}

.top-05{
  top: -0.5px !important;
}

.styleLegende2 {
    padding-left: 3px;
    border-radius: var(--el-border-radius-xs);
    padding-bottom: 0px;
    top: 0px;
    position: relative;
    margin: 2px;
    padding-right: 3px;
}

.textDel{
  text-decoration: line-through;
}

.posRelative{
  position: relative !important;
}

.paddingT20px{
  padding-top: 20px;
}

.lineH35{
  line-height:35px;
}

.leftTop0px{
  left: 0px !important;
  top: 0px !important;
  position: relative !important;
}

.h100{
  height: 100% !important;
}

.tdWithInput{
  padding-left: 0px !important;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.h51px{
  height: 51px;
}

.borderStyle{
  border-radius: 5px;
  padding: 15px;
}

.borderTbl{
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}

.borderDash{
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 5px;
  padding: 5px;
  margin: 1px;
  margin-top: 15px;
}

.xtrasmall-text{
  font-size: 0.75rem !important;
  line-height: 0px;
}

.lineHtd{
  line-height: 1.0 !important;
  padding-top: 7px;
  padding-bottom: 7px;
}

.top3px{
  top: 3px !important;
}

.font07rem{
  font-size: 0.7rem !important;
}
