@charset "UTF-8";
::selection {
    color: #fff;
    background-color: #7ed321;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #7ed321;
    text-decoration: none;
}

.circle {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #979797;
}

.c-green {
    color: #7ed321;
}

.c-orange {
    color: #f5a623;
}

.no-overflow {
    overflow: hidden !important;
}

.btn {
    position: relative;
    display: inline-block;
    width: 200px;
    font-family: 'DINAlternate-Bold', sans-serif;
    font-size: 20px;
    letter-spacing: -0.64px;
    line-height: 32px;
    border: 2px solid #7ED321;
    -webkit-border-radius: 43px;
    -moz-border-radius: 43px;
    border-radius: 43px;
    background: none;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    z-index: 1;
}

.btn.btn-green, .btn.btn-green-trans {
    overflow: hidden;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.btn.btn-green::before, .btn.btn-green::after, .btn.btn-green-trans::before, .btn.btn-green-trans::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    z-index: -1;
}

.btn.btn-green:hover::before, .btn.btn-green:hover::after, .btn.btn-green-trans:hover::before, .btn.btn-green-trans:hover::after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn.btn-green:hover::after, .btn.btn-green-trans:hover::after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}

.btn.btn-green {
    color: #fff;
    background-color: #7ED321;
}

.btn.btn-green::before {
    background-color: #c8f09d;
}

.btn.btn-green::after {
    background-color: #fff;
}

.btn.btn-green:hover {
    color: #7ED321;
    background-color: #fff;
}

.btn.btn-green-trans {
    color: #7ED321;
    background-color: #fff;
}

.btn.btn-green-trans::before {
    background-color: #c8f09d;
}

.btn.btn-green-trans::after {
    background-color: #7ED321;
}

.btn.btn-green-trans:hover {
    color: #fff;
    background-color: #7ED321;
}

.btn:focus {
    outline: none;
}

header {
    height: 120px;
    padding: 0 25px;
    background-color: #1e1d1d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media all and (max-width: 1379px) {
    header .logo {
        width: 200px;
        height: auto;
    }
}

header .icons {
    display: flex;
    align-items: flex-end;
    color: #757575;
}

@media all and (max-width: 1024px) {
    header .icons {
        display: none;
    }
}

header .icons a {
    padding: 0 15px;
    text-align: center;
}

@media all and (max-width: 1379px) {
    header .icons a {
        padding: 0 5px;
    }
}

header .icons a:hover .icon-basis {
    background-image: url("../images/nav-basis-hover.svg");
}

header .icons a:hover .icon-standard {
    background-image: url("../images/nav-standard-hover.svg");
}

header .icons a:hover .icon-wave {
    background-image: url("../images/nav-wave-hover.svg");
}

header .icons a:hover .icon-komfort {
    background-image: url("../images/nav-komfort-hover.svg");
}

header .icons a:hover .icon-authentikator {
    background-image: url("../images/nav-wave-hover.svg");
}

header .icons a:hover p {
    color: #fff;
}

header .icons a .icon {
    width: 38px;
    height: 46px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px 46px;
    transition: all .2s ease;
}

header .icons a .icon-basis {
    width: 56px;
    height: 34px;
    background-image: url("../images/nav-basis.svg");
    background-size: 56px 34px;
}

header .icons a .icon-standard {
    background-image: url("../images/nav-standard.svg");
}

header .icons a .icon-wave {
    background-image: url("../images/nav-wave.svg");
}

header .icons a .icon-komfort {
    background-image: url("../images/nav-komfort.svg");
}

header .icons a .icon-authentikator {
    background-image: url("../images/nav-wave.svg");
}

header .icons a p {
    margin: 2px 0 0;
    font-size: 10px;
    text-transform: uppercase;
    transition: color .2s ease;
}

@media all and (max-width: 1024px) {
    header nav {
        display: none;
    }
}

header nav ul {
    margin-bottom: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    list-style-type: none;
}

header nav ul li a {
    padding: 20px;
    color: #757575;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: block;
    transition: color .2s ease;
}

@media all and (max-width: 1379px) {
    header nav ul li a {
        padding: 10px;
        font-size: 11px;
    }
}

header nav ul li ul {
    position: absolute;
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
    flex-direction: column;
    z-index: 15;
    background-color: #1e1d1d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

header nav ul li ul li a {
    padding: 10px 20px;
}

header nav ul li:hover > ul {
    display: flex;
}

header .mobile-menu-opener {
    width: 60px;
    height: 60px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 15;
}

@media all and (min-width: 1024px) {
    header .mobile-menu-opener {
        display: none;
    }
}

header .mobile-menu-opener span {
    display: block;
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #7ed321;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

header .mobile-menu-opener span:nth-child(even) {
    left: 50%;
}

header .mobile-menu-opener span:nth-child(odd) {
    left: 15px;
}

header .mobile-menu-opener span:nth-child(1), header .mobile-menu-opener span:nth-child(2) {
    top: 22px;
}

header .mobile-menu-opener span:nth-child(3), header .mobile-menu-opener span:nth-child(4) {
    top: 30px;
}

header .mobile-menu-opener span:nth-child(5), header .mobile-menu-opener span:nth-child(6) {
    top: 38px;
}

header .mobile-menu-opener.open span {
    background-color: #fff;
}

header .mobile-menu-opener.open span:nth-child(1), header .mobile-menu-opener.open span:nth-child(6) {
    transform: rotate(45deg);
}

header .mobile-menu-opener.open span:nth-child(2), header .mobile-menu-opener.open span:nth-child(5) {
    transform: rotate(-45deg);
}

header .mobile-menu-opener.open span:nth-child(1) {
    left: 17px;
    top: 24px;
}

header .mobile-menu-opener.open span:nth-child(2) {
    left: calc(50% - 2px);
    top: 24px;
}

header .mobile-menu-opener.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

header .mobile-menu-opener.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

header .mobile-menu-opener.open span:nth-child(5) {
    left: 17px;
    top: 34px;
}

header .mobile-menu-opener.open span:nth-child(6) {
    left: calc(50% - 2px);
    top: 34px;
}

header .mobile-menu-container {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    background-color: #1e1d1d;
    z-index: -25;
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media all and (min-width: 1024px) {
    header .mobile-menu-container {
        display: none !important;
    }
}

header .mobile-menu-container.open {
    opacity: 1;
    transition: opacity .3s ease;
    z-index: 10;
}

header .mobile-menu-container .icons,
header .mobile-menu-container nav {
    display: flex;
    z-index: 2;
}

header .mobile-menu-container .icons {
    margin-bottom: 50px;
}

header .mobile-menu-container .icons a:last-child {
    border-color: #fff;
}

header .mobile-menu-container .icons a .icon {
    width: 38px;
    height: 46px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px 46px;
    transition: all .2s ease;
}

header .mobile-menu-container .icons a .icon-basis {
    width: 56px;
    height: 34px;
    background-image: url("../images/nav-basis-mobile.svg");
    background-size: 56px 34px;
}

header .mobile-menu-container .icons a .icon-standard {
    background-image: url("../images/nav-standard-mobile.svg");
}

header .mobile-menu-container .icons a .icon-wave {
    background-image: url("../images/nav-wave-mobile.svg");
}

header .mobile-menu-container .icons a .icon-komfort {
    background-image: url("../images/nav-komfort-mobile.svg");
}

header .mobile-menu-container .icons a .icon-authentikator {
    background-image: url("../images/nav-wave-mobile.svg");
}

header .mobile-menu-container .icons a p {
    color: #fff;
}

header .mobile-menu-container nav {
    flex-direction: column;
}

header .mobile-menu-container nav a {
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: block;
    transition: color .2s ease;
    text-align: center;
}

header .mobile-menu-container .mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: .8;
    transform: rotate(0deg) translateY(-100%);
    transform-origin: top left;
    transition: all .6s ease;
}

header .mobile-menu-container .mobile-menu-bg.open {
    transform: rotate(90deg) translateY(-100%);
}

footer {
    margin-top: 50px;
    border-top: 2px solid #d8d8d8;
    background: #fff url("../images/footer-bg.png") no-repeat center center;
}

footer .logo {
    margin-top: -48px;
}

@media all and (max-width: 575px) {
    footer .logo {
        max-width: 100%;
        height: auto;
    }
}

footer h5 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4a4a4a;
}

footer p {
    line-height: 1.8;
    margin: 0;
}

footer a {
    transition: color .2s ease;
}

footer ul {
    margin: 0;
}

footer ul.list-inline li {
    position: relative;
}

footer ul.list-inline li:not(:last-child)::after {
    margin-left: 10px;
    content: '\25CF';
    display: inline-block;
    color: #7ed321;
}

footer ul:not(.list-inline) {
    list-style: none;
}

footer ul:not(.list-inline) li {
    line-height: 28px;
    position: relative;
    white-space: nowrap;
}

footer ul:not(.list-inline) li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-image: url("../images/list-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: 10px;
}

footer .circle {
    transition: all .2s ease;
}

footer .circle:hover {
    border-color: #7ed321;
    transform: translateY(-5px);
}

.gallery {
    display: flex;
}

.gallery .gallery-item {
    overflow: hidden;
}

.gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}

.gallery .gallery-item:hover > img {
    transform: scale(1.15);
}

.gallery .gallery-items {
    display: flex;
    flex-wrap: wrap;
}

.gallery .gallery-items > .gallery-item {
    flex: 0 0 45%;
}

.gallery .gallery-items > .gallery-item.w-55 {
    flex: 0 0 55%;
}

.downloads {
    padding-top: 90px;
    padding-bottom: 90px;
}

@media all and (max-width: 767px) {
    .downloads {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

.downloads h2 {
    margin-bottom: 0;
    font-size: 26px;
}

.downloads .media:hover {
    border: none;
    outline: none;
    box-shadow: none;
}

.downloads .media:hover .circle {
    border-color: #7ed321;
}

.downloads .media:hover h5 {
    color: #7ed321;
}

.downloads .media .circle {
    transition: border-color .2s ease;
}

.downloads .media h5 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: color .2s ease;
}

.downloads .media p {
    margin-bottom: 0;
    color: #9b9b9b;
}

.description {
    padding-top: 80px;
    padding-bottom: 80px;
    color: #9b9b9b;
    background-color: #f9f9f9;
}

@media all and (max-width: 767px) {
    .description {
        padding-top: 55px;
        padding-bottom: 55px;
    }
}

.description img {
    width: auto;
    height: 90px;
    margin: 0 auto 24px;
    display: block;
}

.description h3 {
    margin-bottom: 0;
    font-size: 26px;
    color: #4a4a4a;
}

.description ul {
    margin-bottom: 24px;
    list-style: none;
}

.description ul > li {
    line-height: 28px;
    position: relative;
}

.description ul > li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-image: url("../images/list-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: 10px;
}

.description ul > li ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.description p {
    margin-bottom: 12px;
}

.description p small {
    padding-left: 16px;
    font-size: 85%;
}

.description .youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.description .youtube-container iframe {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
}

.description-home p {
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.presentation {
    padding-top: 80px;
    padding-bottom: 80px;
    color: #f4f4f4;
    background: linear-gradient(-136deg, #2b2b2b 10%, #363535 97%);
}

@media all and (max-width: 767px) {
    .presentation {
        padding-bottom: 45px;
    }
}

.presentation .preview-container {
    margin-top: 80px;
    position: relative;
    cursor: grab;
}

.presentation .preview-container .drag {
    width: 80px;
    height: 80px;
    background: #7ed321 url("../images/icon-drag.svg") no-repeat center center;
    border-radius: 50%;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity .3s ease-in-out;
    animation-name: yoyo;
    animation-iteration-count: infinite;
    animation-duration: 1000ms;
    animation-timing-function: linear;
}

.presentation .preview-container .drag.hover {
    opacity: 0;
}

@media all and (max-width: 440px) {
    .presentation .preview-container .authenticator-preview {
        width: 100% !important;
    }
}

.presentation .preview-container .authenticator-preview .threesixty_images img {
    width: 100%;
    height: auto;
    top: 0;
    position: absolute;
}

.presentation .text-box {
    padding: 24px;
    background: linear-gradient(-136deg, #2b2b2b 10%, #363535 97%);
}

.presentation .text-box h2 {
    margin-bottom: 24px;
    text-transform: uppercase;
}

.presentation .text-box h2 small {
    font-size: 50%;
    font-weight: 300;
    display: block;
}

.presentation .text-box p {
    line-height: 1.8;
}

.presentation .text-box p.c-gray {
    color: #9b9b9b;
}

.presentation .text-box p.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #fff;
}

.presentation .text-box ul {
    margin-bottom: 0;
    list-style: none;
}

.presentation .text-box ul li {
    line-height: 28px;
    position: relative;
}

.presentation .text-box ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-image: url("../images/list-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: 10px;
}

@keyframes yoyo {
    0% {
        transform: translateX(-50%);
    }
    25% {
        transform: translateX(-60%);
    }
    50% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-40%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.breadcrumb {
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '•';
    font-size: 20px;
    line-height: 18px;
}

.breadcrumb li {
    font-size: 12px;
    color: #9b9b9b;
}

.breadcrumb li a {
    color: #4a4a4a;
    transition: color .2s ease;
}

.page-container {
    color: #39393a;
}

.page-container h1 {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.page-container h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
}

.page-container p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.page-container ul {
    padding-left: 30px;
}

.page-container a {
    transition: color .2s ease;
}

.page-container .banner {
    width: 100%;
    max-width: 728px;
    height: auto;
    max-height: 90px;
    border: 1px solid #000;
    transition: border-color .2s ease-in-out;
}

.page-container .banner:hover {
    border-color: #7ed321;
}

.page-container .accordion .faq-item {
    margin-bottom: 10px;
    border: 1px solid #f1f1f1;
}

.page-container .accordion .faq-item-header {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.page-container .accordion .faq-item-header.collapsed .plus {
    display: block;
}

.page-container .accordion .faq-item-header.collapsed .close {
    display: none;
}

.page-container .accordion .faq-item-header p {
    margin: 0;
    padding-left: 43px;
}

.page-container .accordion .faq-item-header .plus,
.page-container .accordion .faq-item-header .close {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.page-container .accordion .faq-item-header .plus {
    display: none;
}

.page-container .accordion .faq-item-header .plus path {
    fill: #7ed321;
}

.page-container .accordion .faq-item-header .close {
    display: block;
}

.page-container .accordion .faq-item-header .close path {
    fill: #d7d7d7;
}

.page-container .accordion .faq-item-content {
    padding: 0 20px;
}

.page-container .accordion .faq-item-content a {
    border-bottom: 1px dotted;
}

.page-container .info-box {
    margin-top: 40px;
    display: block;
}

.page-container .info-box-image {
    margin-bottom: 20px;
    overflow: hidden;
}

.page-container .info-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.page-container .info-box-text h3 {
    margin-bottom: 0;
    font-size: 24px;
}

.page-container .info-box:hover .info-box-image img {
    transform: scale(1.1);
}

.functions-header {
    background-image: linear-gradient(-138deg, #1D1C1C 0%, #343333 82%, #363535 100%);
}

.functions-header .breadcrumb {
    margin-bottom: 100px;
}

.functions-header .breadcrumb li {
    font-size: 12px;
}

.functions-header .breadcrumb li.active a {
    color: #9B9B9B;
}

.functions-header .breadcrumb li a {
    color: #fff;
    transition: color .2s ease;
}

.functions-header h1 {
    margin: 0 0 35px;
    color: #fff;
}

.functions-header p {
    margin: 0 0 100px;
    font-size: 20px;
    color: #9b9b9b;
}

.functions-content {
    padding-top: 100px;
    background-image: linear-gradient(-136deg, #2b2b2b 10%, #343333 81%, #363535 97%);
    position: relative;
}

@media all and (max-width: 767px) {
    .functions-content {
        padding-top: 50px;
    }
}

.functions-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    background: url("../images/functions-content-bg.svg") no-repeat fixed center 50px;
}

.functions-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #4A4A4A;
}

@media all and (max-width: 767px) {
    .functions-content::after {
        left: 15px;
        transform: none;
    }
}

.functions-content .functions-box {
    margin-bottom: 100px;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box {
        margin-bottom: 50px;
    }
}

.functions-content .functions-box::before, .functions-content .functions-box::after {
    content: '';
    position: absolute;
    left: -30px;
    background-color: #7ED321;
    opacity: 0;
    border-radius: 50%;
    z-index: 1;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box::before, .functions-content .functions-box::after {
        left: -13px;
    }
}

.functions-content .functions-box::before {
    top: 140px;
    width: 30px;
    height: 30px;
    z-index: 1;
    opacity: .25;
}

.functions-content .functions-box::after {
    top: 147px;
    width: 16px;
    height: 16px;
    left: -23px;
    z-index: 2;
    opacity: 1;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box::after {
        left: -6px;
    }
}

.functions-content .functions-box.left {
    padding: 0 40px 0 0;
    align-items: flex-end;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box.left {
        padding: 0 0 0 40px;
        align-items: flex-start;
    }
}

.functions-content .functions-box.left::before, .functions-content .functions-box.left::after {
    right: -30px;
    left: auto;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box.left::before, .functions-content .functions-box.left::after {
        left: -13px;
        right: auto;
    }
}

.functions-content .functions-box.left::after {
    left: auto;
    right: -23px;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box.left::after {
        left: -6px;
        right: auto;
    }
}

.functions-content .functions-box.left p {
    text-align: right;
}

@media all and (max-width: 767px) {
    .functions-content .functions-box.left p {
        text-align: left;
    }
}

.functions-content .functions-box-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.functions-content .functions-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.functions-content .functions-box h3 {
    margin: 0 0 15px;
    color: #fff;
}

.functions-content .functions-box p {
    margin: 0;
    font-size: 16px;
    color: #9b9b9b;
}

.contact-page {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
    background-image: linear-gradient(-136deg, #2b2b2b 10%, #363535 97%);
}

.contact-page .page-container h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #fff;
}

.contact-page .page-container p {
    color: #979797;
}

.contact-page .page-container p.c-white {
    color: #fff;
}

.products-page {
    background: url("../images/products-bg.jpg") no-repeat center;
    background-size: cover;
}

.products-page-home {
    background: url("../images/home-header.jpg") no-repeat center;
    background-size: cover;
}

.products-page .page-container {
    height: auto;
    min-height: calc(100vh - 120px);
    margin-bottom: -50px;
    display: flex;
}

@media all and (max-width: 767px) {
    .products-page .page-container {
        flex-direction: column;
    }
}

.products-page .product-box {
    width: 50%;
    padding: 30px 30px 80px;
    color: #fff;
    border-right: 1px solid #979797;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: width .3s ease-in-out, padding-bottom .5s ease-in-out, background-color .2s ease-in-out;
    position: relative;
}

@media all and (max-width: 767px) {
    .products-page .product-box {
        width: 100%;
        border: none;
        border-bottom: 1px solid #979797;
    }
}

.products-page .product-box:hover {
    padding-bottom: 10%;
    background-color: rgba(0, 0, 0, 0.85);
}

.products-page .product-box:hover .product-box-text {
    opacity: 1;
}

.products-page .product-box:hover .plus {
    margin-top: 20px;
    background-color: #7ed321;
}

.products-page .product-box .inactive-title {
    transform: rotate(90deg) translateY(10%);
    transition: opacity .3s ease-in-out;
    transform-origin: left;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 10px;
    left: 50%;
}

.products-page .product-box.active {
    width: 95%;
    padding-bottom: 100px;
    transition: width .3s ease-in-out, padding-bottom .5s ease-in-out, background-color .2s ease-in-out;
    cursor: default;
    background-image: linear-gradient(-136deg, #2b2b2b 10%, #363535 100%);
    justify-content: flex-start;
}

@media all and (max-width: 767px) {
    .products-page .product-box.active {
        width: 100%;
    }
}

.products-page .product-box.active:hover {
    padding-bottom: 100px;
    background-color: inherit;
}

.products-page .product-box.active .product-box-title,
.products-page .product-box.active .product-box-sentence,
.products-page .product-box.active .product-box-text,
.products-page .product-box.active .plus {
    display: none;
}

.products-page .product-box.active .active-layer {
    display: flex;
}

.products-page .product-box.inactive {
    width: 5%;
    cursor: pointer;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.85);
}

.products-page .product-box.inactive .inactive-title {
    opacity: 1;
    white-space: nowrap;
    font-family: 'Helvetica-Bold', sans-serif;
    font-size: 20px;
}

.products-page .product-box.inactive .product-box-title,
.products-page .product-box.inactive .product-box-sentence,
.products-page .product-box.inactive .product-box-text,
.products-page .product-box.inactive .plus {
    display: none;
}

.products-page .product-box h3 {
    text-transform: uppercase;
}

.products-page .product-box h3 small {
    display: block;
}

.products-page .product-box-text {
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.products-page .product-box .plus {
    width: 50px;
    height: 50px;
    margin-top: -60px;
    border-radius: 50%;
    transition: background-color .2s ease-in-out, margin-top .2s ease-in-out;
}

.products-page .product-box .plus path {
    fill: #fff;
}

.products-page .product-box .active-layer {
    display: none;
}

.products-page .product-box .active-layer .closeProductBox {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    box-shadow: none !important;
    outline: none !important;
    z-index: 5;
}

.products-page .product-box .active-layer .closeProductBox:hover svg path {
    fill: #7ed321;
}

.products-page .product-box .active-layer .closeProductBox svg {
    width: 100%;
    height: 100%;
}

.products-page .product-box .active-layer .closeProductBox svg path {
    fill: #fff;
    transition: fill .2s ease-in-out;
}

.products-page .product-box .active-layer .text-box {
    height: 100%;
    padding: 24px;
    background: linear-gradient(-136deg, #2b2b2b 10%, #363535 97%);
}

.products-page .product-box .active-layer .text-box h2 {
    margin-bottom: 24px;
    text-transform: uppercase;
}

.products-page .product-box .active-layer .text-box h2 small {
    font-size: 50%;
    font-weight: 300;
    display: block;
}

.products-page .product-box .active-layer .text-box p {
    line-height: 1.8;
}

.products-page .product-box .active-layer .text-box p.c-gray {
    color: #9b9b9b;
}

.products-page .product-box .active-layer .text-box p.c-orange {
    color: #f5a623;
}

.products-page .product-box .active-layer .text-box p.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #fff;
}

.products-page .product-box .active-layer .text-box ul {
    margin-bottom: 0;
    list-style: none;
}

.products-page .product-box .active-layer .text-box ul li {
    line-height: 28px;
    position: relative;
}

.products-page .product-box .active-layer .text-box ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-image: url("../images/list-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: 10px;
}

