@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Regular.otf");
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Italic.otf");
    font-style: italic;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Thin.otf");
    font-weight: 100;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-ThinItalic.otf");
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Light.otf");
    font-weight: 300;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-LightItalic.otf");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Medium.otf");
    font-weight: 500;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-MediumItalic.otf");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Bold.otf");
    font-weight: 700;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-BoldItalic.otf");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Black.otf");
    font-weight: 900;
}
@font-face {
    font-family: "Azo Sans";
    src: url("../fonts/AzoSans-Black.otf");
    font-weight: 900;
    font-style: italic;
}

:root {

    /* Colors */
    --black: #333;
    --grey: #666;
    --light-grey: #ccc;
    --main-color: var(--black);
    --sec-color: var(--light-grey);
    --nav-link-color: var(--light-grey);

    /* Border */
    --bdr-radius: 12px;

    /* Buttons */
    --btn-main-bg: var(--main-color);
    --btn-main-color: var(--sec-color);

    /* Select2 */
    --select2--selection-bg: var(--light-grey);
    --select2--selection-color: var(--main-color);
    --select2--dropdown-bg: var(--main-color);
    --select2--dropdown-color: #fff;
    --select2-drodown-bdr: var(--main-color);

    /* Section */
    --section-bg: #ededed;

    /* Footer */
    --footer-color: #888;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Azo Sans";
    font-size: 1rem;
    margin: 0;
    padding: 0;
    color: var(--main-color);
}

.main-wrapper {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 100px;
}

/* Utilities */
a {
    color: var(--main-color);
    text-decoration: none;
    transition: .3s all;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.black {
    font-weight: 900;
}

.btn {
    border: none;
}

.btn:active {
    border: none;
}

/* Notify */
button.close,
button.growl-close {
    float: right;
    background-color: transparent;
    border: none;
    font-size: 1.4rem;
    opacity: .7;
    line-height: 1;
}

button.close:hover,
button.growl-close:hover {
    opacity: 1;
}

[data-notify="container"] {
    border-radius: .25rem;
    box-shadow: 0 3px 20px rgba(0 0 0 / 30%);
    border-width: 0;
    letter-spacing: 1px;
    width: auto;
    z-index: 9999 !important;
}

[data-notify="dismiss"] {
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
}

/* Header */
.mobile-hamburger {
    display: none;
}

#header {
    margin-top: 30px;
    position: fixed;
    width: 100%;
    z-index: 10;
}

#header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 100px;
    background-color: #333;
    background-image: url("/media/frontend/images/header-bg.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    border-radius: var(--bdr-radius);
    box-shadow: -1px 3px 6px rgba(0 0 0 / 85%);
}

#header .header-container #logo img {
    width: 300px;
    filter: drop-shadow(0 2px 6px rgba(0 0 0 / 75%));
}

#header .header-container .navigation {
    display: flex;
    margin: 0;
    padding: 0;
}

#header .header-container .navigation li {
    list-style: none;
}

#header .header-container .navigation li .navigation-link {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--nav-link-color);
    padding: 5px 55px;
    padding-bottom: 3px;
    border-radius: 25px;
}

#header .header-container .navigation li .navigation-link:hover,
#header .header-container .navigation li .navigation-link.active {
    background-color: var(--main-color);
}

/* End header */

/* Footer */
#footer {
    font-family: Raleway, sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    padding: 50px 0;
}

#footer .footer-section {
    display: flex;
    align-items: center;
}

#footer .footer-section .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#footer .terms {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#footer .terms li {
    list-style: none;
}

#footer .terms li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--sec-color);
}

#footer .terms li a {
    color: var(--footer-color);
}

#footer .footer-menu .dropdown-menu.show {
    position: absolute;
    bottom: 50px;
}

#footer .footer-menu .dropdown-toggle::after {
    display: none;
}

#footer .footer-menu .btn-footer-menu {
    width: 45px;
    height: 45px;
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0 0 0 / 20%);
    margin-right: 15px;
}

#footer .footer-menu .btn-footer-menu i {
    color: var(--footer-color);
}

#footer .footer-menu .text {
    text-transform: uppercase;
    color: var(--footer-color);
}

#footer .distributors-area .text {
    font-size: 1.2rem;
}

#footer .distributors-area .icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    margin-left: 10px;
}

#footer .distributors-area .icon i {
    color: #fff;
}

#footer .social-links {
    gap: 10px;
}

#footer .social-links .social-link {
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
}

#footer .social-links .social-link i {
    color: #fff;
    font-size: 1.2rem;
}

#footer .copyright .text {
    font-family: Oswald, sans-serif;
    font-weight: 500;
    color: var(--footer-color);
}

#footer .scroll-top .text {
    text-transform: uppercase;
    color: var(--footer-color);
}

#footer .scroll-top .icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0 0 0 / 20%);
    margin-left: 15px;
}

/* End footer */

/* Homepage */
#homepage {
    margin-top: -100px;
}

#homepage .slider.slider-filter .slider-box.active .slider-img {
    transform: scale(1.2);
}

#homepage .slider .slider-box {
    overflow: initial;
}

/* Slider */
.slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider .slider-box {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slider .slider-box .slider-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slider .slider-box .slider-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / 75%);
    transition: .5s all;
}

.slider .slider-box.active .slider-img::before,
.slider:not(.slider-transition) .slider-box:hover .slider-img::before {
    background-color: transparent;
}

.slider .slider-box .slider-img {
    transition: .5s all;
}

.slider .slider-box .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider.slider-filter .slider-box .slider-img {
    filter: grayscale(1);
}

.slider.slider-filter .slider-box.active .slider-img,
.slider.slider-filter:not(.slider-transition) .slider-box:hover .slider-img {
    z-index: 2;
    filter: grayscale(0);
}

.slider .slider-box .slider-content {
    padding: 0 50px;
    position: relative;
    text-align: center;
    color: var(--sec-color);
    transition: .3s all;
}

.slider .slider-box.active .slider-img + .slider-content,
.slider:not(.slider-transition) .slider-box:hover .slider-img + .slider-content {
    opacity: 0;
}

.slider .slider-box .slider-content .slider-title {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
}

.slider .slider-box .slider-content .slider-text {
    font-size: 1.2rem;
}

.slider .slider-box .slider-content .read-more {
    display: inline-block;
    padding: 8px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 0;
    border: 1px solid;
    border-radius: 25px;
}

.overlay-slider .slider-overlay {
    display: grid;
    opacity: 0;
    position: absolute;
    z-index: 4;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    transition: .3s all;
    background-color: #dcdcdc;
}

.overlay-slider .slider-overlay.open {
    left: 0;
    opacity: 1;
}

.overlay-slider .slider-overlay .overlay-img {
    overflow: hidden;
}

.overlay-slider .slider-overlay .overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-slider .slider-overlay .overlay-text {
    display: flex;
    align-items: center;
    background-color: #dcdcdc;
    padding: 100px 150px;
    font-size: 1.5rem;
    font-weight: 300;
    overflow-y: scroll;
}

.overlay-slider .slider-overlay .overlay-text p:not(:last-child) {
    margin-bottom: 50px;
}

/* .overlay-slider .slider-overlay .overlay-text p:last-child {
    margin-top: 100px;
    line-height: 50px;
} */

.overlay-slider .slider-overlay .close-overlay {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 2rem;
    cursor: pointer;
}

/* End slider */

/* Section */
.section .triangle-down {
    width: 0;
    height: 0;
    margin: 25px auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--main-color);
}

.section .triangle {
    margin: 0 5px;
}

.section .triangle-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid var(--main-color);
}

.section .triangle-left {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 40px solid var(--main-color);
}

.section .section-title,
.section .section-subtitle {
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}

.section .section-title {
    font-size: 3rem;
    margin-top: 80px;
}

.section .section-subtitle {
    font-size: 2.5rem;
}

.section .section-text {
    width: 60%;
    margin: auto;
    margin-top: 50px;
    font-weight: 300;
    line-height: 45px;
    font-size: 1.2rem;
}

.section .section-text p:not(:last-child) {
    margin-bottom: 50px;
}

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

.section .section-text.section-text-left {
    text-align: left;
}

.section .section-text.section-text-right {
    text-align: right;
}

.section .section-box {
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.section .section-box .hydra-hub {
    width: max-content;
    margin: auto;
    margin-top: 150px;
    position: relative;
}

.section .section-box .title {
    color: var(--sec-color);
    font-weight: 700;
}

.section .section-box .text {
    font-weight: 300;
    font-size: 1.2rem;
}

.section .section-box .hydra-hub::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 30px;
    width: 200px;
    height: 300px;
    margin-right: 100px;
    background-image: url("/media/frontend/images/arrow-down-left.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.section .section-box .hydra-hub::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 30px;
    width: 200px;
    height: 300px;
    margin-left: 100px;
    background-image: url("/media/frontend/images/arrow-down-right.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.section .section-wrapper {
    margin-top: 200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section .section-wrapper .hydra-zap {
    position: relative;
    width: max-content;
    float: right;
}

.section .section-wrapper .hydra-zap::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 15px;
    width: 150px;
    height: 80px;
    background-image: url("/media/frontend/images/arrow-right.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.section .section-wrapper .hydra-vox {
    position: relative;
    width: max-content;
    float: left;
}

.section .section-wrapper .hydra-vox::before {
    content: "";
    position: absolute;
    right: 100%;
    margin-right: -20px;
    top: 15px;
    width: 150px;
    height: 80px;
    background-image: url("/media/frontend/images/arrow-left.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.section .section-wrapper .brand-logo {
    margin: 0 100px;
}

.section .section-wrapper .brand-logo img {
    width: 300px;
}

.section .box {
    position: relative;
    background-color: #333;
    background-image: url("/media/frontend/images/pattern.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: var(--bdr-radius);
    margin-top: 200px;
    margin-bottom: 100px;
    padding: 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 0 rgba(0 0 0 / 20%);
}

.section .box .box-header .sub-title {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 25px;
    font-size: 1.3rem;
}

.section .box .box-body {
    margin: 40px 0 60px;
}

.section .box .box-body .title {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 10px;
}

.section .box .box-body .text {
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 20px;
}

.section .box .box-footer .btn-link {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--sec-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.3rem;
    background-color: var(--main-color);
    padding: 12px 45px;
    border-radius: 28px;
    border: 1px solid #fff;
}

/* Support kit */
.section-white-logo .white-logo {
    display: block;
    filter: drop-shadow(0 2px 2px rgba(0 0 0 / 8%));
    width: 50%;
    margin: 100px auto 50px;
}

.support-kit {
    font-family: Raleway, sans-serif;
    font-weight: 800;
    margin: 100px 0;
}

.support-kit ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 25px;
    margin: 0;
    padding: 0;
}

.support-kit ul li {
    list-style: none;
}

.support-kit ul li {
    text-transform: uppercase;
    font-size: 1.2rem;
    text-align: center;
}

.support-kit ul li .btn-support-kit {
    background-color: var(--grey);
    color: #fff;
    padding: 12px 45px;
    padding-top: 14px;
}

.support-kit .select2-container {
    width: 400px !important;
}

.support-kit .select2-container--open .select2-selection {
    box-shadow: none !important;
}

body .select2-container:not(.select2-container--disabled) .select2-selection:focus {
    box-shadow: none;
}

.support-kit .select2-container .select2-selection--single {
    background-color: var(--select2--selection-bg);
    border: none;
    border-radius: 0;
    padding: 5px 50px;
    height: auto;
}

.support-kit .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--select2--selection-color);
}

.support-kit .select2-container .select2-selection--single {
    background-image: none;
}

.support-kit .select2-container .select2-selection--single .select2-selection__arrow {
    display: block;
    position: absolute;
    width: 20px;
    height: 15px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.support-kit .select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: var(--select2--selection-color) transparent transparent transparent;
    border-width: 15px 10px 0;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin-left: 0;
    margin-top: 0;
}

.support-kit .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--select2--selection-color) transparent;
    border-width: 0 10px 15px;
}

body .select2-container .select2-dropdown {
    background-color: var(--select2--dropdown-bg);
    border: 1px solid var(--select2--dropdown-bdr) !important;
    box-shadow: none !important;
    border-radius: 0;
}

body .select2-container .select2-search--dropdown .select2-search__field {
    border: none;
    outline: none;
    background-color: var(--grey);
    color: #fff;
    text-transform: uppercase;
}

body .select2-container .select2-results__option--highlighted[aria-selected] {
    text-decoration: underline;
}

body .select2-container .select2-results__option[aria-selected] {
    background-color: var(--select2--dropdown-bg);
    color: #fff;
    text-transform: uppercase;
    font-family: Raleway, sans-serif;
    font-weight: 800;
    padding: 5px 25px;
}

.support-kit ul li .btn-product-section {
    color: var(--sec-color);
    padding: 5px 25px;
    cursor: pointer;
    transition: .3s all;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.2rem;
}

.support-kit ul li .btn-product-section:focus {
    box-shadow: none;
}

.support-kit ul li .btn-product-section:hover {
    color: var(--grey);
}

.support-kit .dropdown-menu {
    background-color: var(--main-color);
    border-radius: 0;
}

.support-kit .dropdown-item {
    color: #fff;
    font-weight: 800;
}

.support-kit .dropdown-item:hover,
.support-kit .dropdown-item:focus {
    background-color: transparent;
    color: #fff;
    text-decoration: underline;
}

/* Badge */
.badge-pattern {
    text-align: center;
    margin: 100px 0;
    text-transform: uppercase;
}

.badge-pattern .badge-subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 8px;
}

.badge-pattern .badge-title {
    display: inline-block;
    background: linear-gradient(rgba(255 255 255 / 75%), rgba(255 255 255 / 75%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
    font-weight: 500;
    font-size: 2rem;
    padding: 18px 130px;
    border-radius: var(--bdr-radius);
    box-shadow: 0 3px 2px rgba(0 0 0 / 30%);
    margin-top: 30px;
}

/* Products page */
#products-page .section.section-current-lineup .section-title {
    font-weight: 700;
    margin-bottom: 80px;
}

#products-page .section.section-current-lineup .section-subtitle span {
    font-weight: 900;
}

#products-page .section.section-current-lineup .row-current-lineup {
    row-gap: 80px;
}

#products-page .section.section-current-lineup .section-img img {
    display: block;
    width: 90%;
    margin: auto;
    margin-top: 50px;
}

#products-page .section.section-current-lineup .section-link {
    text-align: center;
    margin-top: 30px;
}

#products-page .section.section-current-lineup .section-link .btn {
    background-image: url("/media/frontend/images/pattern.png");
    background-color: var(--btn-main-bg);
    color: var(--btn-main-color);
    font-size: 1.5rem;
    border-radius: 30px;
    padding: 10px 45px;
    text-decoration: none;
}

#products-page .section.section-products {
    background-color: var(--section-bg);
    padding: 80px;
    margin-top: 100px;
}

#products-page .section.section-products .section-title {
    font-size: 2.5rem;
    margin-top: 0;
}

#products-page .section.section-products .section-title .bold {
    font-size: 3rem;
}

#products-page .section.section-products .products .product {
    position: relative;
    cursor: pointer;
}

#products-page .section.section-products .products .product img {
    display: block;
    height: 300px;
    transition: .5s ease-in-out;
}

#products-page .section.section-products .products .product.superhead img {
    height: 150px;
}

#products-page .section.section-products .products .product:hover img {
    transform: scale(2);
    transform-origin: bottom;
    filter: drop-shadow(0 15px 15px rgba(0 0 0 / 70%));
    position: relative;
    z-index: 2;
}

#products-page .section.section-products .products .product .info {
    display: block;
    margin-top: 10px;
}

#products-page .section.section-products .products {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 300px;
}

#products-page .section.section-products .products .product {
    text-align: center;
}

#products-page .section.section-products .products .product .btn-link {
    display: inline-block;
    background: linear-gradient(rgba(0 0 0 / 80%), rgba(0 0 0 / 80%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    font-size: 1rem;
    border-radius: var(--bdr-radius);
    padding: 13px 80px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0 0 0 / 50%);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 30px;
    transition: .3s all;
}

#products-page .section.section-products .products .product:hover .btn-link {
    background: linear-gradient(rgba(255 255 255 / 25%), rgba(255 255 255 / 25%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.2);
    color: var(--main-color);
}

#products-page .section.section-legacy-products {
    margin-top: 200px;
}

#products-page .section.section-legacy-products .slider {
    margin-top: 100px;
}

/* Accordion Faq */
.section-faq {
    margin-top: 200px;
}

.section-faq .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#accordionFaq .accordion-button {
    background: linear-gradient(rgba(255 255 255 / 65%), rgba(255 255 255 / 65%)), url("/media/frontend/images/pattern-transparent.png");
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 500;
    display: block;
    text-align: center;
    border-radius: var(--bdr-radius);
    box-shadow: 0 3px 3px rgba(0 0 0 / 35%);
}

#accordionFaq .accordion-button:not(.collapsed) {
    background: linear-gradient(rgba(0 0 0 / 80%), rgba(0 0 0 / 80%)), url("/media/frontend/images/pattern-transparent.png");
    color: #fff;
}

#accordionFaq .accordion-item {
    border: none;
    margin-bottom: 20px;
}

#accordionFaq .accordion-item .accordion-body {
    width: 50%;
    margin: auto;
    text-align: center;
    padding: 30px;
    font-weight: 300;
    font-size: 1.3rem;
}

/* Product page */
#superhub-page .slider-without-text .slider-box .slider-img::before,
#supervox-page .slider-without-text .slider-box .slider-img::before {
    background-color: initial;
}

#superhub-page .section-description .section-subtitle {
    margin: 100px 0;
}

#superhub-page .overlay-slider {
    height: 80vh;
}

#superhub-page .overlay-slider .slider-box .slider-img::before {
    z-index: 2;
}

#superhub-page .overlay-slider .slider-box .slider-content {
    z-index: 3;
}

.section.section-specs {
    text-align: center;
    margin-top: 200px;
}

.section.section-specs .section-title {
    margin-bottom: 50px;
    font-size: 2rem;
}

.section.section-specs ul {
    margin: 0;
    padding: 0;
}

.section.section-specs .spec {
    margin-bottom: 50px;
}

.section.section-specs ul li {
    list-style: none;
    margin-bottom: 8px;
}

.section .section-img img {
    width: 50%;
    display: block;
    margin: auto;
    margin-top: 50px;
}

.section .product-details {
    margin-top: 150px;
}

#hydra-hub-page .section .product-details {
    text-align: center;
    margin-top: 50px;
}

#hydra-hub-page .section .product-details .title,
#hydra-hub-page .section .product-details .text {
    text-align: center;
    display: block;
}

/* Super Vox */
#supervox-page .section .section-img img {
    width: 80%;
}

/* Vox up */
#vox-up-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .product-details .title-wrapper {
    width: max-content;
    margin: auto;
}

.section .product-details .title {
    display: flex;
    align-items: center;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.section .product-details .subtitle {
    letter-spacing: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.section .product-details.mainboard .subtitle {
    padding-left: 170px;
}

.section .product-details .title .triangle-right {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 25px solid var(--main-color);
}

.section .product-details .title .triangle-right:last-child {
    margin-right: 20px;
}

.section .product-details .title .triangle:nth-child(2n) {
    border-left-color: var(--light-grey);
}

.section .product-details .row {
    justify-content: center;
    margin-top: 50px;
}

.section .product-details .col-text .title {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0;
}

.section .product-details .col-img img {
    width: 100%;
    filter: drop-shadow(0 4px 4px rgba(0 0 0 / 70%));
}

.section .product-details .col-img .black-dragon-mainboard-img {
    transform: rotate(-45deg);
    position: relative;
    margin-top: -50px;
}

.section .product-details .nav-tabs {
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section .product-details .nav-tabs .nav-link {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 6px 80px;
    background: linear-gradient(rgba(255 255 255 / 65%), rgba(255 255 255 / 65%)), url("/media/frontend/images/pattern-transparent.png");
    box-shadow: 0 1px 2px #333;
    border-radius: 0;
    color: var(--main-color);
}

.section .product-details .nav-tabs .nav-link.active {
    background-color: #333;
    padding: 15px 80px;
    color: #fff;
    background: linear-gradient(rgba(0 0 0 / 80%), rgba(0 0 0 / 80%)), url("/media/frontend/images/pattern-transparent.png");
}

.section .product-details .tab-content .tab-pane {
    padding: 20px 0;
    text-align: center;
    font-weight: 300;
}

.section .product-details .tab-content .tab-pane img {
    width: 100%;
    display: block;
}

.section .product-details.product-details-bg {
    background-color: var(--main-color);
    color: #fff;
    padding: 50px 0;
}

.section .product-details.product-details-bg .content {
    font-size: 1.2rem;
}

.reviews {
    margin: 100px 0;
}

.reviews .row {
    justify-content: center;
}

.reviews .title {
    text-align: center;
    font-weight: 900;
    margin-bottom: 100px;
}

.reviews .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
}

.reviews .content img {
    width: 200px;
}

.reviews .carousel {
    margin-top: 100px;
}

.reviews .carousel .carousel-item .review {
    text-align: center;
    width: max-content;
    margin: auto;
    font-size: 1.2rem;
}

.reviews .carousel .carousel-item .review .review-text {
    margin-bottom: 5px;
}

.reviews .carousel .carousel-control-prev {
    left: -50px;
}

.reviews .carousel .carousel-control-next {
    right: -50px;
}

.reviews .carousel .carousel-control-prev i,
.reviews .carousel .carousel-control-next i {
    color: var(--main-color);
    font-size: 2rem;
}

.section.section-downloads {
    margin-bottom: 100px;
}

.section.section-downloads .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.section.section-downloads .section-title .title {
    margin: 0 20px;
}

.section.section-downloads .section-title .triangle {
    margin: 0 10px;
}

.section.section-downloads .section-title .triangle-right {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 25px solid var(--main-color);
}

.section.section-downloads .section-title .triangle-left {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 25px solid var(--main-color);
}

.section.section-downloads .section-title .triangle-right:nth-child(2n) {
    border-left-color: var(--sec-color);
}

.section.section-downloads .section-title .triangle-left:nth-child(2n) {
    border-right-color: var(--sec-color);
}

.section.section-downloads .links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 25px;
}

.section.section-downloads .links img {
    height: 60px;
}

/* Company page */
#company-page .company-slider {
    margin: 80px 0;
}

#company-page .section-history {
    margin-top: 150px;
}

#company-page .section-history .section-title {
    font-size: 2.5rem;
}

#company-page .section-history .section-subtitle {
    font-size: 2rem;
}

#company-page .section-history .history {
    margin-top: 150px;
    position: relative;
    padding: 50px 0;
    padding-bottom: 80px;
}

#company-page .section-history .history::after {
    content: "";
    width: 5px;
    border-radius: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(rgba(0 0 0 / 80%), rgba(0 0 0 / 80%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
}

#company-page .section-history .history .history-product {
    display: grid;
    justify-content: center;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr;
    position: relative;
    margin-bottom: 20px;
    z-index: 2;
}

#company-page .section-history .history .history-product .product-img img {
    position: relative;
    top: 30px;
    height: 130px;
}

#company-page .section-history .history .history-product.hydra-stack .product-img img {
    height: 160px;
}

#company-page .section-history .history .history-product:nth-child(odd) .product-img img {
    padding-right: 120px;
    float: right;
}

#company-page .section-history .history .history-product:nth-child(even) .product-img img {
    padding-left: 120px;
}

#company-page .section-history .history .history-product .history-info {
    position: relative;
    top: 25px;
    height: 100px;
}

#company-page .section-history .history .history-product:nth-child(odd) .history-info {
    padding-left: 80px;
}

#company-page .section-history .history .history-product:nth-child(even) .history-info {
    padding-right: 80px;
    text-align: right;
}

#company-page .section-history .history .history-product.hydra-black-dragon .history-info {
    width: max-content;
}

#company-page .section-history .history .history-product.hydra-stack .history-info {
    top: 10px;
}

#company-page .section-history .history .history-product .product-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

#company-page .section-history .history .history-product .product-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
}

#company-page .section-history .history .history-product .history-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(rgba(0 0 0 / 60%), rgba(0 0 0 / 60%)), url("/media/frontend/images/pattern-transparent.png");
    padding: 3px 25px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    height: max-content;
}

/* Sales page */

.section .divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
}

.section .divider .triangle-left:nth-child(odd) {
    border-right-color: var(--light-grey);
}

.section .divider .triangle-right:nth-child(odd) {
    border-left-color: var(--light-grey);
}

#sales-page .section-sellers {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 100px;
}

#sales-page .section-sellers .seller .seller-header {
    display: flex;
    gap: 20px;
}

#sales-page .section-sellers .seller .seller-header .seller-img img {
    height: 40px;
    box-shadow: 0 3px 6px rgba(0 0 0 / 40%);
}

#sales-page .section-sellers .seller .seller-header .seller-title .title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#sales-page .section-sellers .seller .seller-header .seller-title .subtitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

#sales-page .section-sellers .seller .seller-body {
    margin-top: 20px;
    font-weight: 300;
}

#sales-page .section-sellers .seller .seller-body .location {
    display: flex;
    gap: 0 10px;
}

#sales-page .section-sellers .seller .seller-body i {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

/* Contact page */
#contact-page .section-contact {
    justify-content: center;
}

#contact-page .section-contact .office-img img {
    width: 100%;
}

#contact-page .section-contact .company-info {
    padding-left: 30px;
}

#contact-page .section-contact .company-info .name {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 50px;
}

#contact-page .section-contact .company-info p {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#contact-page .section-contact .company-info p:last-child {
    margin-bottom: 0;
}

#contact-page .section-contact-form {
    margin-top: 100px;
}

#contact-page .section-contact-form form {
    border: 1px solid #cacaca;
    border-top: none;
    position: relative;
}

#contact-page .section-contact-form .form-row {
    margin: 0;
}

#contact-page .section-contact-form .form-row .col {
    padding: 0;
}

#contact-page .section-contact-form .title-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#contact-page .section-contact-form .title-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

#contact-page .section-contact-form .title-wrapper .title {
    background-color: #000;
    color: #fff;
    padding: 18px 80px;
    font-weight: 400;
}

#contact-page .section-contact-form .title-wrapper .subtitle {
    background: linear-gradient(rgba(255 255 255 / 55%), rgba(255 255 255 / 55%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
    padding: 15px 50px;
    font-weight: 900;
    box-shadow: 0 2px 3px rgba(0 0 0 / 20%);
    height: max-content;
}

#contact-page .section-contact-form .form-group {
    margin-bottom: 20px;
}

#contact-page .section-contact-form .help-block {
    color: #e55353;
    margin-top: 5px;
    margin-left: 10px;
}

#contact-page .section-contact-form .form-control {
    border: none;
    border-radius: 0;
    color: var(--main-color);
    font-size: 1.2rem;
}

#contact-page .section-contact-form .form-control::placeholder {
    color: var(--main-color);
}

#contact-page .section-contact-form .form-control:focus {
    box-shadow: none;
}

#contact-page .section-contact-form .form-control:not(textarea) {
    background: linear-gradient(rgba(255 255 255 / 55%), rgba(255 255 255 / 55%)), url("/media/frontend/images/pattern-transparent.png");
    background-size: cover;
    box-shadow: 0 2px 2px rgba(0 0 0 / 30%);
    font-weight: 700;
    text-transform: uppercase;
}

#contact-page .section-contact-form .form-control:not(textarea):focus {
    box-shadow: 0 2px 2px rgba(0 0 0 / 30%);
}

#contact-page .section-contact-form textarea {
    padding-bottom: 50px;
}

#contact-page .section-contact-form .btn-submit-form {
    position: absolute;
    bottom: -10px;
    right: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 10px 40px;
}

@media (width >= 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1800px;
    }
}
@media (width <= 1400px) {
    #header .header-container {
        padding: 5px 50px;
    }

    #header .header-container .navigation li .navigation-link {
        padding: 5px 35px;
    }

    #sales-page .section-sellers {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (width <= 1200px) {
    html {
        font-size: 14px;
    }

    .main-wrapper {
        padding-top: 0;
    }

    .section .section-subtitle {
        font-size: 2.4rem;
    }

    .mobile-hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        left: 20px;
        top: 20px;
        z-index: 11;
    }

    .mobile-hamburger .hamburger {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        background-color: #333;
        background-image: url("/media/frontend/images/header-bg.png");
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        border-radius: 50%;
    }

    .mobile-hamburger .hamburger .hamburger-box {
        left: -2px;
    }

    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        width: 35px;
        background-color: var(--sec-color);
    }

    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::after,
    .hamburger.is-active .hamburger-inner::before {
        background-color: var(--sec-color);
    }

    #header {
        margin: 0;
        width: 400px;
        height: 100vh;
        left: -420px;
        transition: .3s all;
    }

    #header.nav-active {
        left: 0;
    }

    #header .container {
        max-width: 100%;
        height: 100%;
        padding: 0;
    }

    #header .header-container {
        display: block;
        border-radius: 0;
        background-image: none;
        width: 100%;
        height: 100%;
        padding: 100px 50px;
    }

    #header .header-container #logo img {
        display: block;
        margin: auto;
    }

    #header .header-container .navigation {
        display: block;
        margin-top: 50px;
    }

    #header .header-container .navigation li {
        text-align: center;
    }

    #header .header-container .navigation li .navigation-link {
        display: inline-block;
        padding: 0;
        margin: 20px 0;
    }

    /* Homepage */

    #homepage {
        margin-top: 0;
    }

    #homepage .section .section-box .hydra-hub {
        margin-top: 50px;
    }

    #homepage .section .section-box .hydra-hub::after,
    #homepage .section .section-box .hydra-hub::before {
        display: none;
    }

    #homepage .section .section-wrapper .hydra-zap::after,
    #homepage .section .section-wrapper .hydra-vox::before {
        display: none;
    }

    #homepage .section .section-wrapper .brand-logo {
        display: none;
    }

    #homepage .section-group .section-wrapper {
        margin-top: 50px;
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }

    #homepage .section .section-wrapper .hydra-zap,
    #homepage .section .section-wrapper .hydra-vox {
        float: none;
    }

    /* Slider */

    .slider.slider-without-text {
        height: 60vh;
    }

    .slider .slider-box .slider-content .slider-title,
    .section .box .box-body .title {
        font-size: 2rem;
    }

    .section .box .box-header .sub-title {
        font-size: 1rem;
    }

    .overlay-slider .slider-overlay {
        display: block;
    }

    .overlay-slider .slider-overlay .overlay-img {
        height: 50%;
    }

    .overlay-slider .slider-overlay .overlay-text {
        position: relative;
        font-size: 1.2rem;
    }

    .overlay-slider .slider-overlay .overlay-text p:not(:last-child) {
        margin-bottom: 25px;
    }

    /* Products page */
    #products-page .section.section-products .products {
        display: block;
        margin-top: 100px;
    }

    #products-page .section.section-products .products .product {
        margin-bottom: 100px;
    }

    #products-page .section.section-products .products .product:last-child {
        margin-bottom: 0;
    }

    #products-page .section.section-products .products .product img {
        margin: auto;
    }

    #products-page .section.section-products .products .product:hover img {
        transform: scale(1.5);
    }

    #accordionFaq .accordion-item .accordion-body {
        width: 100%;
    }
}
@media (width <= 992px) {
    #products-page .section.section-current-lineup .section-img img {
        width: 100%;
    }

    #sales-page .section-sellers {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (width <= 768px) {
    .container {
        max-width: 90%;
    }

    .section-white-logo .white-logo {
        width: 80%;
    }

    .section .box {
        margin-top: 100px;
        padding: 30px 60px;
    }

    .section .divider {
        gap: 10px;
        margin-top: 30px;
    }

    /* Products page */
    #products-page .section.section-legacy-products {
        margin-top: 100px;
    }

    #products-page .section.section-products .products .product img {
        height: 250px;
    }

    #products-page .section.section-products .products .product.superhead img {
        height: 100px;
    }

    /* Product page */
    .section .product-details .subtitle {
        letter-spacing: 10px;
    }

    .section .product-details .row.row-inverse .col-img {
        order: 2;
    }

    .section .product-details .col-img img {
        display: block;
        width: 80%;
        margin: auto;
    }

    #black-dragon-page .section .section-img img {
        width: 80%;
    }

    .section .product-details {
        margin-top: 80px;
    }

    .section .triangle {
        margin: 0;
        transform: scale(.7);
    }

    .reviews .title {
        margin-bottom: 50px;
    }

    .reviews .content {
        gap: 50px;
    }

    .reviews .carousel .carousel-item .review {
        width: 80%;
    }

    .reviews .carousel .carousel-control-prev {
        left: -20px;
    }

    .reviews .carousel .carousel-control-next {
        right: -20px;
    }

    .section.section-downloads .section-title .triangle {
        margin: 0;
    }

    #supervox-page .section .section-img img {
        width: 100%;
    }

    .section.section-specs .section-title {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Company page */
    #company-page .section-history .history {
        padding: 80px 0;
    }

    #company-page .section-history .history::after {
        left: auto;
        right: 30px;
    }

    #company-page .section-history .history .history-product .history-year {
        top: 10px;
        left: auto;
        right: -55px;
    }

    #company-page .section-history .history .history-product {
        grid-template-columns: 1fr;
        padding-right: 120px;
        margin-bottom: 50px;
    }

    #company-page .section-history .history .history-product:last-child {
        margin-bottom: 0;
    }

    #company-page .section-history .history .history-product:nth-child(2n+1) .product-img {
        order: 2;
    }

    #company-page .section-history .history .history-product:nth-child(2n) .product-img img {
        padding-left: 0;
    }

    #company-page .section-history .history .history-product:nth-child(2n+1) .product-img img {
        padding-right: 0;
    }

    #company-page .section-history .history .history-product .product-img img {
        top: 0;
        float: right;
    }

    #company-page .section-history .history .history-product .history-info {
        top: 0;
        height: auto;
        margin-bottom: 25px;
    }

    #company-page .section-history .history .history-product:nth-child(2n+1) .history-info {
        padding-left: 0;
        float: none;
        width: 100%;
        text-align: right;
    }

    #company-page .section-history .history .history-product:nth-child(2n) .history-info {
        padding-right: 0;
    }

    /* Sales page */
    #sales-page .section .divider {
        gap: 10px;
    }

    /* Contact page */
    #contact-page .section-contact-form .title-wrapper {
        grid-template-columns: 1fr;
    }
}
@media (width <= 600px) {
    html {
        font-size: 12px;
    }

    /* Menu */
    .mobile-hamburger .hamburger {
        width: 45px;
        height: 45px;
        justify-content: center;
        padding: 0;
    }

    .mobile-hamburger .hamburger .hamburger-box {
        left: 0;
        width: 26px;
    }

    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        width: 26px;
        height: 3px;
    }

    .hamburger--emphatic .hamburger-inner::after {
        top: 8px;
    }

    .hamburger-inner::after {
        bottom: -8px;
    }

    .hamburger-inner::before {
        top: -8px;
    }

    #header {
        width: 80%;
        left: -85%;
    }

    #header .header-container #logo img {
        width: 100%;
    }

    /* Homepage */
    #homepage .section-group .section-wrapper {
        margin-top: 25px;
        gap: 25px;
    }

    /* Slider */
    .slider {
        display: block;
        height: auto;
    }

    #homepage .slider {
        display: grid;
        grid-template-columns: 1fr;
        height: 100vh;
    }

    .slider .slider-box .slider-content {
        padding: 50px;
    }

    .slider.slider-without-text {
        display: grid;
        height: 400px;
    }

    /* Products page */
    #products-page .section.section-current-lineup .section-title {
        margin-bottom: 50px;
    }

    #products-page .section.section-current-lineup .row-current-lineup {
        row-gap: 50px;
    }

    #products-page .section.section-products {
        padding: 50px 0;
    }

    #products-page .section.section-products .products .product:hover img {
        transform: scale(1.5);
    }

    #products-page .section.section-legacy-products .slider {
        margin-top: 50px;
    }

    .section-faq {
        margin-top: 100px;
    }

    #accordionFaq .accordion-button {
        font-size: 1.5rem;
    }

    /* Product page */
    #superhub-page .overlay-slider {
        height: auto;
    }

    #superhub-page .section-description .section-subtitle {
        margin: 50px 0;
    }

    .section .section-text {
        width: 100%;
        line-height: 30px;
        margin-top: 25px;
    }

    .section.section-specs {
        margin-top: 100px;
    }

    .section .section-title {
        margin-top: 50px;
    }

    .section .box {
        padding: 30px;
        margin-top: 50px;
    }

    .section .box .box-body .title {
        letter-spacing: 5px;
    }

    .section .box .box-header .sub-title {
        letter-spacing: 10px;
    }

    .section .box .box-body {
        margin: 40px 0;
    }

    .section .box .box-body .title br {
        display: none;
    }

    .section .box .box-footer .btn-link {
        width: 180px;
    }

    .section.section-specs .spec {
        margin-bottom: 25px;
    }

    /* Company page */
    .badge-pattern {
        margin: 50px 0;
    }

    .badge-pattern .badge-subtitle {
        letter-spacing: 5px;
    }

    .badge-pattern .badge-title {
        font-size: 1.5rem;
        padding: 18px 80px;
    }

    #company-page .section-history {
        margin-top: 100px;
    }

    #company-page .section-history .history {
        margin-top: 50px;
    }

    #company-page .section-history .history .history-product {
        padding-right: 100px;
    }

    #company-page .section-history .history .history-product .history-year {
        right: -45px;
    }

    #company-page .section-history .history .history-product .product-img img {
        height: 100px;
    }

    /* Support kit */
    .section-white-logo .white-logo {
        width: 100%;
    }

    .support-kit {
        margin: 50px 0;
    }

    .support-kit .select2-container {
        width: auto !important;
    }

    /* Sales page */
    #sales-page .section-sellers {
        grid-template-columns: 300px;
        justify-content: center;
    }

    /* Footer */
    #footer .social-links {
        width: 100%;
        justify-content: center;
    }

    #footer .terms {
        width: 100%;
    }
}
