/** GENERAL **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'NexaLight';
    src: url('../fonts/FontfabricNexaLight.eot');
    src: url('../fonts/FontfabricNexaLight.eot') format('embedded-opentype'),
         url('../fonts/FontfabricNexaLight.woff2') format('woff2'),
         url('../fonts/FontfabricNexaLight.woff') format('woff'),
         url('../fonts/FontfabricNexaLight.ttf') format('truetype'),
         url('../fonts/FontfabricNexaLight.svg#FontfabricNexaLight') format('svg');
}

@font-face {
    font-family: "NexaRegular";
    src: url("../fonts/FontfabricNexaRegular.eot");
    src: url("../fonts/FontfabricNexaRegular.eot") format("embedded-opentype"),
        url("../fonts/FontfabricNexaRegular.woff2") format("woff2"),
        url("../fonts/FontfabricNexaRegular.woff") format("woff"),
        url("../fonts/FontfabricNexaRegular.ttf") format("truetype"),
        url("../fonts/FontfabricNexaRegular.svg#Nexa-Regular") format("svg");
}

@font-face {
    font-family: 'NexaBold';
    src: url('../fonts/FontfabricNexaBold.eot');
    src: url('../fonts/FontfabricNexaBold.eot') format('embedded-opentype'),
        url('../fonts/FontfabricNexaBold.woff2') format('woff2'),
        url('../fonts/FontfabricNexaBold.woff') format('woff'),
        url('../fonts/FontfabricNexaBold.ttf') format('truetype'),
        url('../fonts/FontfabricNexaBold.svg#FontfabricNexaBold') format('svg');
}

@font-face {
    font-family: "NexaXBold";
    src: url("../fonts/FontfabricNexaXBold.eot");
    src: url("../fonts/FontfabricNexaXBold.eot") format("embedded-opentype"),
        url("../fonts/FontfabricNexaXBold.woff2") format("woff2"),
        url("../fonts/FontfabricNexaXBold.woff") format("woff"),
        url("../fonts/FontfabricNexaXBold.ttf") format("truetype"),
        url("../fonts/FontfabricNexaXBold.svg#Nexa-XBold") format("svg");
}

body {
    min-width: 320px;
    line-height: 1.3;
    color: #1d1d1b;
    font-family: "NexaRegular", Arial, Tahoma, sans-serif;
    font-size: 18px;
}

:focus {
    outline: none;
}

img {
    width: 100%;
    border: none;
    vertical-align: middle;
}

a {
    color: #1d1d1b;
    text-decoration: none !important;
    transition: all 150ms;
    opacity: 1;
}

a:hover {
    color: #4f4f4f;
}

b, strong, dt {
    font-weight: 700;
}

h1, h1 a, h2, h2 a,
h3, h3 a, h4, h4 a,
h5, h5 a, h5, h6 a
{
    color: #000000;
    margin: 0;
}

h1 a:hover, h2 a:hover,
h3 a:hover, h4 a:hover,
h5 a:hover, h6 a:hover {
    color: #1d1d1b;
}

h2 {
    padding-bottom: 15px;
    font-family: "NexaXBold";
    font-size: 24px;
    text-transform: uppercase;
}

h3 {
    font-family: "NexaXBold";
    font-size: 18px;
    text-transform: uppercase;
}

strong {
    font-family: "NexaXBold";
}


/** HEADER **/
#header {
    padding: 20px 0;
    background-color: #000000;
    color: #ffffff;
}

#header a:hover {
    opacity: 0.7;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .container::before, #header .container::after {
    display: none;
}

#header .logo {
    display: block;
    width: 130px;
}

#header .side {
    margin-left: 15px;
    line-height: 0;
}

#header .social {
    padding-right: 8px;
    margin-bottom: 10px;
}

#header .social a {
    display: inline-block;
    width: 29px;
    height: 29px;
    background-size: cover;
}

#header .social .facebook {
    background-image: url("/landing-page/facebook.svg");
}

#header .social .instagram {
    background-image: url("/landing-page/instagram.svg");
}

#header .social .pinterest {
    background-image: url("/landing-page/pinterest.svg");
}

#header .social .youtube {
    background-image: url("/landing-page/youtube.svg");
}

#header .language {
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
}

#header .language .current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    height: 37px;
}

#header .language .current span {
    position: relative;
    top: 3px;
}

#header .language .current::after {
    content: "";
    display: block;
    margin-left: 10px;
    height: 29px;
    width: 29px;
    background-image: url("/landing-page/earth.svg");
}

#header .language:hover .current {
    background-color: #bfbfbf;
    color: #000000;
}

#header .language:hover .current::after {
    filter: invert(100);
}

#header .language .dropdown {
    position: absolute;
    display: none;
    padding-bottom: 10px;
    line-height: 1;
    width: 100%;
    background-color: #bfbfbf;
    z-index: 99999;
}

#header .language .dropdown a {
    display: block;
    padding: 12px 8px 6px;
    opacity: 1;
}

#header .language .dropdown a:hover {
    background-color: #000000;
    color: #bfbfbf;
}

#header .language:hover .dropdown {
    display: block;
}

@media (min-width: 450px) {
    #header .logo {
        width: 185px;
    }

    #header .side {
        margin-left: 20px;
    }

    #header .social {
        padding-right: 4px;
    }

    #header .social a {
        margin-right: 5px;
        width: 38px;
        height: 38px;
    }

    #header .language .current {
        height: 48px;
        justify-content: right;
    }

    #header .language .current::after {
        height: 38px;
        width: 38px;
    }
}

@media (min-width: 650px) {
    #header .container {
        align-items: end;
    }

    #header .side {
        display: flex;
        align-items: center;
    }

    #header .social {
        margin-bottom: 0;
        padding-right: 0;
    }

    #header .social a {
        margin-right: 10px;
    }

    #header .language {
        margin: 0 -10px 0 15px;
    }
}

@media (min-width: 992px) {
    #header .language {
        margin-left: 30px;
    }
}


/** CONTENT **/
#content .section {
    margin: 0 -15px;
    padding: 50px 15px;
    border-bottom: 1px solid #000000;
}

#content .section.row {
    padding-left: 0;
    padding-right: 0;
}

#content .section .col {
    margin-bottom: 35px;
    padding-right: 30px;
    padding-left: 30px;
}

#content .section .col:last-child {
    margin-bottom: 0;
}

#content .section .description p:last-child {
    margin-bottom: 0;
}

#content .section .description ul {
    padding-left: 20px;
}

#content .section .description li {
    margin-bottom: 5px;
}

#content .navigation {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -25px;
    font-size: 17px;
}

#content .navigation .item {
    padding: 0 10px;
    margin-bottom: 25px;
    width: 50%;
    text-align: center;
}

#content .navigation .image {
    display: flex;
    margin: 0 auto 10px;
    height: 50px;
    width: 45px;
}

#content .navigation a.button {
    display: inline-block;
    padding: 10px 30px 6px;
    text-transform: uppercase;
    font-family: "NexaXBold";
    font-size: 11px;
    background-color: #A3A3A3;
    color: #ffffff;
}

#content .navigation a.button:hover {
    background-color: #000000;
}

#content .duraquarz {
    margin-bottom: 30px;
}

#content .duraquarz .image {
    margin: 0 auto 20px;
    max-width: 550px;
    width: 100%;
}

#content .duraquarz p {
    line-height: 1;
    margin: 0;
}

#content .duraquarz .percentages {
    display: flex;
    font-family: 'NexaLight';
    font-size: 18px;
}

#content .duraquarz .item {
    width: 50%;
    padding: 12px 20px;
    text-align: center;
    border-right: 2px solid #000000;
}

#content .duraquarz .item:first-child {
    padding-left: 0;
}

#content .duraquarz .item:last-child {
    padding-right: 0;
    border-right: 0;
}

#content .duraquarz .big {
    font-size: 40px;
}

#content .icons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -35px;
    font-size: 14px;
}

#content .icons p {
    margin-bottom: 0;
}

#content .icons .item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 0 20px;
    width: 100%;
}

#content .icons .image {
    display: flex;
    flex-shrink: 0;
    margin-right: 20px;
    height: 55px;
    width: 55px;
}

#content .duraquarz-bg::before {
    content: "";
    height: 55px;
    width: 305px;
    background-image: url("/landing-page/duraquarz.svg");
    background-repeat: no-repeat;
    flex-shrink: 0;
}

#content .resistance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
}

#content .resistance .item {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

#content .resistance .image {
    display: flex;
    margin-right: 30px;
    height: 100px;
    width: 100px;
}

#content .resistance .info p:last-child {
    margin-bottom: 0;
}

@media (min-width: 450px) {
    #content .icons .item {
        width: 50%;
    }

    #content .duraquarz-bg::before {
        height: 45px;
        width: 220px;
    }
}

@media (min-width: 650px) {
    #content .navigation .item {
        width: 33.33%;
    }
}

@media (min-width: 768px) {
    #content .duraquarz {
        display: flex;
        justify-content: space-between;
    }

    #content .duraquarz .image {
        margin: 12px 0 0;
        max-width: 350px;
    }

    #content .duraquarz .item {
        max-width: 180px;
        padding: 12px 10px;
        width: auto;
    }

    #content .icons .item {
        width: 33.33%;
    }
}

@media (min-width: 992px) {
    #content .section .col {
        margin-bottom: 0;
    }

    #content .navigation .item {
        width: 16.66%;
    }

    #content .duraquarz .image {
        max-width: 440px;
    }

    #content .duraquarz .percentages {
        font-size: 20px;
    }

    #content .duraquarz .item {
        max-width: 220px;
    }
    
    #content .duraquarz-bg::before {
        height: 55px;
        width: 305px;
    }

    #content .resistance {
        justify-content: left;
    }
}

@media (min-width: 1200px) {
    #content .duraquarz .image {
        max-width: 490px;
    }

    #content .duraquarz .percentages {
        font-size: 22px;
    }

    #content .duraquarz .item {
        max-width: 240px;
        padding: 12px 25px;
    }

    #content .duraquarz .big {
        font-size: 44px;
    }

    #content .icons .item {
        width: 25%;
    }
}



/** FOOTER **/
#footer {
    margin-top: 50px;
    text-align: center;
}

#footer p {
    margin: 0;
}

#footer .container {
    color: #584e4e;
}

#footer .baseline {
    font-size: 30px;
    padding: 34px 0 27px;
    background-color: #000000;
    margin-top: 40px;
}

#footer .baseline a {
    color: #ffffff;
}

#footer .baseline a:hover {
    color: #eeeeee;
}


/** SCROLL UP */
#scrollUp {
    bottom: 20px;
    right: 20px;
	width: 50px;
    height: 50px;
    text-align: center;
    background-color: #000000;
    z-index: 1001 !important;
    transition: background-color 150ms;
}

#scrollUp:hover {
    background-color: #a3a3a3;
}

#scrollUp .icon {
    display: inline-block;
    margin-top: 10px;
    height: 25px;
    width: 25px;
    background-image: url("../img/scroll-up.svg");
    background-size: cover;
}

#content .pimcore_editable .col-sm-12  {
    margin-bottom: 20px;
}

#content .pimcore_editable .col-sm-12 label {
    display: flex;
    align-items: center;
}

#content .pimcore_editable .col-sm-12 label .pimcore_tag_input {
    width: 100%;
    margin-left: 15px;
}