:root {
    --dgray: hsla(0, 0%, 7%, 1);
    --gray: hsla(0, 0%, 13%, 1);
    --lgray: hsla(0, 0%, 25%, 1);
    --accent: hsla(47, 62%, 63%, 1);
}

html {
    background: var(--gray);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--dgray);
    background-position: bottom center;
    background-repeat: no-repeat;
    max-width: 1920px;
    margin: 0 auto;
}

img,
video {
    width: 100%;
    object-fit: cover;
}

section {
    position: relative;
    padding: 3.75rem 0;
}

footer {
    margin-bottom: 3.125rem;
}

*:focus,
button:focus,
a:focus {
    outline: 1px dotted var(--lgray);
}

h1,
h2,
h3,
h4,
h5 {
    position: relative;
    font-family: 'coniferous', sans-serif;
    ;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: .9375rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

p+h2,
p+h3,
p+h4,
p+h5,
ul+h2,
ul+h3,
ul+h4,
ul+h5 {
    margin-top: 1.875rem;
}

a {
    color: var(--accent);
    font-weight: 500;
    transition: color .3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--daccent);
}

ol,
ul {
    padding-left: 1.125rem;
    list-style-position: outside;
}

ol {
    list-style: lower-alpha;
}

ul {
    list-style: square;
}

li::marker {
    color: var(--accent);
}

label {
    position: relative;
    display: block;
    margin: 0;
    margin-top: 0.875rem;
}

legend+label {
    margin-top: 0;
}

label+input {
    min-width: 100%;
}

fieldset {
    margin-bottom: 1.875rem;
}

strong {
    font-weight: 700;
}

.btn {
    padding: .4375rem 1.875rem;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 500;
    line-height: 1.875rem;
    border-radius: 0;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}

.btn.btn-primary {
    background-color: var(--dgray);
    border: 1px solid var(--lgray);
    color: white;
}

.btn.btn-secondary {
    background-color: var(--lgray);
    border: 1px solid var(--lgray);
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:active:not(:disabled):not(.disabled),
.btn.btn-primary.active:not(:disabled):not(.disabled),
.btn.btn-primary:hover {
    background-color: var(--dgray);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:active:not(:disabled):not(.disabled),
.btn.btn-secondary:hover {
    background-color: var(--lgray);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn.btn-icon {
    position: relative;
    padding: .4375rem 3.1875rem .4375rem 1.875rem;
}

.btn.btn-icon>i {
    position: absolute;
    right: .9375rem;
    top: 50%;
    transform: translateY(-50%);
}

.section-btn {
    margin-top: .9375rem;
}

.homepage-intro-block-body h2,
.category-card-title h3,
.section-title h3,
.review-title h3 {
    position: relative;
}

.homepage-intro-block-body h2::after,
.category-card-title h3::after,
.section-title h3::after,
.review-title h3::after {
    content: url('../img/divider-title.svg');
    position: absolute;
    bottom: 0;
}

.section-title h3 {
    display: block;
    text-align: center;
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
}

.section-title h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.homepage-intro-block-body h2 {
    padding-bottom: 1.875rem;
    margin-bottom: .9375rem;
}

.homepage-intro-block-body h2::after {
    left: 0;
}

.category-card-title h3 {
    padding-bottom: 1.875rem;
    margin-bottom: .9375rem;
}

.category-card-title h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.review-title h3 {
    padding-bottom: 1.875rem;
    margin-bottom: .9375rem;
}

.review-title h3::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ::::: Navigation ::::: */
#nav-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background: var(--dgray);
    border-top: 2px solid var(--accent);
}

#nav {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    height: 3.125rem;
    width: calc(100% + 1.875rem);
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

#nav>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

#nav-desktop,
.nav-submenu {
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 3.125rem;
    right: 0;
    overflow: hidden;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform .3s ease;
    background: white;
}

#nav-desktop.open,
.nav-submenu.open {
    transform: translateX(0);
    background: var(--dgray);
}

.nav-menu {
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-link,
.nav-dropdown {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem .9375rem;
    color: white;
    font-weight: 300;
    border: 0;
    text-decoration: none;
    background: transparent;
    transition: color .3s ease, background-color .3s ease;
    font-family: 'proxima-nova', sans-serif;
    text-align: left;
}

.nav-link:hover,
.nav-mobile-cta:hover,
.nav-dropdown:hover {
    text-decoration: none;
    color: var(--accent);
}

.nav-item-active>a,
.nav-item-active>button {
    color: var(--accent);
    font-weight: 500;
}

.nav-item-active>a:hover,
.nav-item-active>button:hover {
    color: white;
}

.nav-dropdown i {
    display: block;
    margin-left: .5rem;
}

.nav-item {
    position: relative;
}

.nav-submenu .nav-item:not(:first-of-type) {
    border-top: 1px solid hsla(0, 100%, 100%, 0.15);
}

.nav-submenu ul {
    list-style: none;
    padding: 0;
}

.nav-logo {
    height: 3.125rem;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .25rem;
}

.nav-logo img {
    height: 100%;
    object-fit: contain;
}

.logo-light {
    display: none;
}

.nav-logo-wrap,
.nav-mobile-cta,
.nav-toggler {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-width: 0 1px 0 0;
    color: white;
    font-weight: 200;
    z-index: 10;
}

.nav-toggler-icon {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1.5rem
}

.nav-toggler-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    opacity: 1;
    left: 0;
    background: white;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.nav-toggler-icon span:nth-child(1) {
    top: 5px
}

.nav-toggler-icon span:nth-child(2),
.nav-toggler-icon span:nth-child(3) {
    top: 11px
}

.nav-toggler-icon span:nth-child(4) {
    top: 17px
}

.open .nav-toggler-icon span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%
}

.open .nav-toggler-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.open .nav-toggler-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.open .nav-toggler-icon span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%
}

.nav-mobile-btn {
    background: transparent;
    color: white;
    border: 0;
    text-align: right;
}

.nav-mobile-btn i {
    margin-left: .4375rem;
}

.nav-mobile-cta,
.nav-toggler {
    font-size: 0;
    background: var(--dgray);
    color: white;
    text-decoration: none;
}

.nav-mobile-cta i {
    font-size: 1rem;
}

.nav-submenu li.nav-item.nav-item-active>.nav-link,
.nav-submenu li.nav-item.nav-item-active>.nav-dropdown {
    background-color: var(--dgray);
    color: white;
}

.nav-item-all .nav-link {
    font-size: .75rem;
    justify-content: flex-end;
    font-weight: 500;
}

.nav-item-contact,
.nav-item-shop {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .4375rem .9375rem;
}

.nav-item-contact .nav-link,
.nav-item-shop .nav-link {
    justify-content: flex-start;
}

#nav-desktop .nav-item-contact .nav-link,
#nav-desktop .nav-item-shop .nav-link {
    background: var(--accent);
    height: 2.5rem;
    border-radius: 20px;
    color: white;
    padding: 0 1.875rem;
    transition: background-color .3s ease;
}

#nav-desktop .nav-item-contact .nav-link:hover {
    background: var(--daccent);
}

#nav-desktop .nav-item-shop .nav-link {
    background: var(--dgray);
}

#nav-desktop .nav-item-shop .nav-link:hover {
    background: var(--accent);
}

#nav-desktop .nav-item-contact .nav-link i,
#nav-desktop .nav-item-shop .nav-link i {
    margin-right: .9375rem;
}

/* ::::: Breadcrumbs ::::: */
#breadcrumbs {
    padding: .4375rem;
    background: var(--accent);
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f111';
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--accent);
    font-size: .4375rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent);
}

/* ::::: Forms ::::: */
#contact-form .form-group:not(.formfieldrecaptcha),
#contact .form-group:not(.formfieldrecaptcha) {
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    line-height: 1;
    transition: border-color .3s ease, box-shadow .3s ease, padding .3s ease;
    background: white;
    border: 1px solid var(--lgray);
}

#contact-form .form-group label,
#contact .form-group label {
    display: inline-block;
    padding-bottom: .5rem;
    position: relative;
    font-weight: 600;
}

#contact-form .form-control,
#contact .form-control,
#contact-form .text-box,
#contact .text-box {
    width: 100%;
    border: 0;
    outline: 0;
    background: #f5f5f5;
    max-width: none !important;
    padding: .25rem .4375rem;
}

#contact-form .form-group:not(.formfieldrecaptcha):focus-within,
#contact .form-group:not(.formfieldrecaptcha):focus-within {
    -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    padding: 1.5rem 1rem;
    border-color: var(--accent);
}

#contact-form textarea.form-control,
#contact textarea.form-control {
    resize: vertical;
    min-height: 10rem;
}

#contact .umbraco-forms-field.hidden {
    opacity: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
}

.umbraco-forms-indicator {
    color: var(--bs-danger);
    font-weight: 400;
}

.form-control:focus {
    box-shadow: none;
}

.field-validation-error {
    color: var(--bs-danger);
    padding: .9375rem 0;
    font-weight: 500;
}

.field-validation-info,
.field-validation-valid {
    display: block;
    padding: .9375rem 0;
    font-weight: 500;
}

.field-validation-valid {
    display: none;
}

.error-wrap .field-validation-error {
    display: inline-block;
}

#contact-form .form-group input+label,
#contact .form-group input+label {
    display: inline-block;
    margin-left: .4375rem;
}

#contact-form .form-control.input-validation-error,
#contact .form-control.input-validation-error,
#contact-form .form-group:not(.formfieldrecaptcha).error-wrap,
#contact .form-group:not(.formfieldrecaptcha).error-wrap {
    border: 1px solid var(--bs-danger);
}

#contact-form .form-group:not(.formfieldrecaptcha).error-wrap,
#contact .form-group:not(.formfieldrecaptcha).error-wrap {
    background: hsla(5, 67%, 53%, .1);
}

#contact .umbraco-forms-form fieldset {
    padding: 0;
}

#contact .file-upload {
    position: relative;
    height: 7.5rem;
    margin-top: 0.4375rem;
}

#contact .file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

#contact .file-upload .file-upload-field {
    position: absolute;
    top: 0;
    left: 0.0625rem;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed var(--lgray);
    background: var(--lgray);
    border-radius: 0.5rem;
    transition: border-color .3s ease;
}

#contact .file-upload:hover .file-upload-field,
#contact .file-upload:focus-within .file-upload-field {
    border-color: var(--mgray);
}

#contact .file-upload-icon {
    position: relative;
}

#contact .file-upload-icon i {
    color: var(--mgray);
    font-size: 1.875rem;
    transition: font-weight .1s ease;
}

#contact .file-upload-icon::after {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 50%;
    top: 59%;
    transform: translate(-50%, -50%);
    color: var(--mgray);
    transition: color .2s ease;
}

#contact .file-upload.file-upload-succes:hover .file-upload-field,
#contact .file-upload.file-upload-succes:focus-within .file-upload-field {
    border-color: var(--accent);
}

#contact .file-upload-error .file-upload-field,
#contact .file-upload.file-upload-error:hover .file-upload-field,
#contact .file-upload.file-upload-error:focus-within .file-upload-field,
#contact .form-group.error-wrap .file-upload-field {
    border-color: var(--bs-danger);
    background-color: hsla(5, 67%, 53%, .1);
}

#contact .file-upload-succes .file-upload-icon i {
    color: var(--accent);
}

#contact .file-upload-succes .file-upload-filename {
    color: var(--dgray);
}

#contact .file-upload-error .file-upload-icon i,
#contact .file-upload-error .file-upload-filename,
#contact .form-group.error-wrap .file-upload-field .file-upload-filename,
#contact .form-group.error-wrap .file-upload-field .file-upload-icon i,
#contact .form-group.error-wrap .file-upload-field .file-upload-icon::after {
    color: #8a1f11;
}

#contact .file-upload-succes .file-upload-icon::after {
    content: "\f00c";
    color: var(--accent);
}

#contact .file-upload-error .file-upload-icon::after {
    content: "\f00d";
    color: #8a1f11;
}

#contact .file-upload:hover .file-upload-field .file-upload-icon i {
    font-weight: 600;
}

#contact .file-upload:hover .file-upload-field .file-upload-icon::after {
    color: white;
    font-weight: 600;
}

#contact .file-upload-filename {
    color: var(--mgray);
    font-size: .75rem;
    margin-top: 0.9375rem;
}

.form-check-label {
    padding-left: 1.5rem;
}

.form-check-input {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    margin: 0;
    z-index: -1;
    left: 0;
    pointer-events: none;
}

.form-check-input:checked+.form-check-sign::before {
    animation: d .5s;
}

.form-check-sign::before {
    display: block;
    position: absolute;
    left: -.0625rem;
    content: "";
    background-color: hsla(0, 0%, 0%, .84);
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
    top: .125rem;
    transform: scale3d(2.3, 2.3, 1);
}

.form-check-input:checked+.form-check-sign .check,
.form-check-input:checked+.form-check-sign .radio {
    background: var(--accent);
}

.form-check-sign .check,
.form-check-sign .radio {
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: .0625rem solid rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 1;
    border-radius: .1875rem;
    background: white;
}

.form-check-sign .radio {
    border-radius: 50%;
}

.form-check-label span {
    display: block;
    position: absolute;
    left: -.0625rem;
    top: .0625rem;
    transition-duration: .2s;
}

.form-check-input:checked+.form-check-sign .check::before,
.form-check-input:checked+.form-check-sign .radio::before {
    color: #fff;
    box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem -.75rem 0 .6875rem;
    animation: c .3s forwards;
}

.form-check-sign .check::before,
.form-check-sign .radio::before {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    display: block;
    margin-top: -.375rem;
    margin-left: .375rem;
    width: 0;
    color: #fff;
    height: 0;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, inset 0 0 0 0;
}

.form-check-input:focus,
input.form-check-input:focus+.form-check-sign>.check,
input.form-check-input:focus+.form-check-sign>.radio {
    outline: 0;
    border: .0625rem solid var(--accent);
    -webkit-box-shadow: 0 .125rem .25rem -.0625rem rgba(0, 0, 0, .2), 0 .25rem .3125rem 0 rgba(0, 0, 0, .14), 0 .0625rem .625rem 0 rgba(0, 0, 0, .12);
    box-shadow: 0 .125rem .25rem -.0625rem rgba(0, 0, 0, .2), 0 .25rem .3125rem 0 rgba(0, 0, 0, .14), 0 .0625rem .625rem 0 rgba(0, 0, 0, .12);
}

#contact-form .form-group .form-check-label,
#contact .form-group .form-check-label {
    display: block;
}

.btn-submit.submit {
    background-color: var(--dgray);
    color: white;
    pointer-events: none;
}

.btn-submit .submit-btn-load,
.btn-submit.submit .submit-btn-default {
    display: none;
}

.btn-submit.submit .submit-btn-load {
    display: block;
}

.btn-submit i,
#gdpr-cookie-message .btn i {
    margin-right: .4375rem;
}

/* ::::: reCAPTCHA ::::: */

.recaptcha-badge {
    display: flex;
    align-items: center;
}

.recaptcha-icon {
    flex: 0 0 auto;
    width: 10%;
    max-width: 1.875rem;
    margin-right: .9375rem;
}

.recaptcha-links {
    flex: 0 0 auto;
    max-width: 16.5rem;
    font-size: .625rem;
    line-height: 1.5;
    margin-top: .4375rem;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ::::: Hero ::::: */
#hero {
    padding: 0;
    margin-top: 0;
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-title h1 {
    line-height: 1;
    font-size: 1.75rem;
    color: var(--accent);
}

.hero-title h2 {
    line-height: 1;
    position: relative;
    padding-bottom: 3rem;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero-title h2::after {
    content: url('../img/divider-hero.svg');
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(30%);
}

.hero-title h3 {
    font-family: 'proxima-nova', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}

/* ::::: Intro ::::: */
.homepage-intro-block-img {
    display: none;
}

/* ::::: Cards ::::: */
.wood-bg {
    background-image: url(../img/wood-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.card.category-card {
    border-radius: 0;
    background-color: var(--dgray);
    background-image: url(../img/card-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 1.875rem;
    box-shadow: 0px .75rem .75rem rgba(0, 0, 0, 0.25);
}

.category-card-img,
.category-card-content,
.category-card-btn {
    padding: .9375rem;
}

.category-card-btn {
    padding-top: 0;
}

.category-card-img img {
    max-height: 10rem;
    object-fit: contain;
}

.category-card-title,
.category-card-body,
.category-card-btn {
    display: flex;
    justify-content: center;
}

.category-card-body {
    text-align: center;
}

/* ::::: Illustration ::::: */
#illustration {
    padding-bottom: 0;
    border-bottom: 4px solid var(--accent);
}

.illustration-title {
    display: block;
    text-align: center;
}

.illustration-title h4 {
    font-size: 3rem;
}

/* ::::: Review ::::: */
.review-wrap {
    background: var(--gray);
    padding: .9375rem;
}

.review-container {
    border: 1px solid white;
    padding: .9375rem;
}

.review-title {
    display: block;
    text-align: center;
}

.review-content {
    max-width: 1240px;
    margin: 0 auto;
}

.review-name {
    font-weight: 600;
    margin-top: .9375rem;
}

.review-nav-dots ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-nav-dots li {
    font-size: 0;
    list-style: none;
    margin: 0 .4375rem;
}

.review-nav-dots li button {
    background: white;
    border-radius: 50%;
    border: 0;
    width: 1rem;
    height: 1rem;
}

.review-nav-dots li.slick-active button {
    background: var(--accent);
}

/* ::::: Footer ::::: */
footer {
    padding-top: 1.875rem;
    border-top: 4px solid var(--accent);
}

.footer-bottom {
    margin-top: 1.875rem;
}

.footer-bottom-div {
    padding: .4375rem 0;
    border-top: 1px solid white;
}

/* ::::: Header ::::: */
.header-title h2 {
    line-height: 1;
    margin: 0;
    color: var(--accent);
}

.header-title h1 {
    font-size: 2.5rem;
    line-height: 1;
}

/* ::::: Gallery ::::: */
#gallery {
    background-color: var(--gray);
}

.gallery-img {
    border: 1px solid var(--accent);
    margin-bottom: 1.875rem;
}

.gallery-img a {
    display: block;
}

/* ::::: Animations ::::: */
@-moz-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-webkit-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-o-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-webkit-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-o-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@keyframes cursor {
    to {
        border-color: transparent;
    }
}

[ripple] {
    position: relative;
    overflow: hidden;
}

[ripple] .ripple--container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

[ripple] .ripple--container span {
    transform: scale(0);
    border-radius: 100%;
    position: absolute;
    opacity: 0.75;
    animation: ripple 1000ms;
    background: hsla(330, 2%, 88%, .5);
}

@keyframes c {
    0% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, .9375rem .125rem 0 .6875rem
    }

    50% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem .125rem 0 .6875rem
    }

    to {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem -.75rem 0 .6875rem
    }
}

@keyframes d {
    0% {
        opacity: 0
    }

    50% {
        opacity: .2
    }

    to {
        opacity: 0
    }
}

.animate.fade {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate.fade.fade-left {
    transform: translateX(-1.875rem);
}

.animate.fade.fade-right {
    transform: translateX(1.875rem);
}

.animate.fade.in-view {
    opacity: 1;
    transform: translateX(0);
}



/* ::::: Responsive ::::: */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

    /* ::::: Nav ::::: */
    .nav-mobile-cta {
        font-size: 1rem;
    }

    .nav-mobile-cta i {
        margin-right: .4375rem;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* ::::: Hero ::::: */
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title h1 {
        font-size: 2.5rem;
    }

    .hero-title h2 {
        font-size: 4rem;
    }

    .hero-title h2::after {
        transform: translateX(-50%) scale(30%);
    }

    /* ::::: Header ::::: */
    header {
        position: relative;
    }

    .header-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-title {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .header-title h1 {
        font-size: 3.5rem;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* :::::: Hero ::::: */
    .hero-title h1 {
        font-size: 2rem;
    }

    .hero-title h2 {
        font-size: 4.5rem;
        padding-bottom: 4rem;
    }

    .hero-title h2::after {
        transform: translateX(-50%) scale(50%);
    }

    /* ::::: Cards ::::: */
    .category-card-img,
    .category-card-content,
    .category-card-btn {
        padding: 1.875rem;
    }

    .category-card-btn {
        padding-top: 0;
    }

    /* ::::: Footer ::::: */
    footer {
        padding-top: 3.75rem;
    }

    .footer-bottom {
        margin-top: 3.75rem;
    }

    /* ::::: Header ::::: */

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    h1 {
        font-size: 3rem;
    }

    h2,
    .section-title h3 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    section {
        padding: 7.5rem 0;
    }

    footer {
        margin: 0;
    }


    /* ::::: Navigation ::::: */
    #nav-wrapper {
        bottom: auto;
        top: 0;
        border-top: 0;
        transition: background-color .3s ease;
        background: none;
    }

    #nav-wrapper.scrolled {
        background-image: none;
        color: var(--dgray);
        box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0.25);
        background: var(--dgray);
    }

    #nav {
        height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0 .9375rem;
        margin: 0;
        border-top: 0;
        transition: height .3s ease;
    }

    .nav-logo {
        height: 8.75rem;
        padding: .9375rem 0;
        transition: height .3s ease;
    }

    .scrolled #nav .nav-logo-wrap .nav-logo {
        height: 6.25rem;
    }

    .nav-menu>.nav-item>a,
    .nav-menu>.nav-item>button {
        height: 100%;
    }

    .nav-toggler,
    .nav-mobile-cta,
    .nav-mobile-btn {
        display: none;
    }

    #nav-desktop {
        flex-direction: row;
        position: static;
        overflow: visible;
        background: transparent;
    }

    #nav-desktop::before,
    #nav-desktop::after {
        content: '';
        display: block;
        height: 1px;
        background: white;
        position: absolute;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    #nav-desktop::after {
        bottom: 0;
    }

    .nav-menu {
        flex-direction: row;
        width: 100%;
    }

    #nav-desktop .nav-menu .nav-item {
        width: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-left: 1px solid white;
    }

    #nav-desktop .nav-menu li:last-of-type {
        border-right: 1px solid white;
    }

    #nav-desktop .nav-menu .nav-item .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-submenu {
        position: absolute;
        left: 0;
        min-width: 12.5rem;
        top: auto;
        bottom: auto;
        right: auto;
        overflow: visible;
        background: white;
    }

    #nav-desktop,
    .nav-submenu {
        transform: translateX(0);
        align-items: initial;
    }

    #nav>* {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: none;
    }

    #nav .nav-logo-wrap {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        border: 0;
        transition: all .3s ease;
        height: auto;
    }

    .nav-submenu .nav-dropdown-item .nav-submenu {
        top: 0;
        left: 100%;
    }

    .nav-dropdown-item>.nav-submenu {
        visibility: hidden;
        opacity: 0;
    }

    .nav-submenu.open {
        visibility: visible;
        opacity: 1;
        z-index: 2;
        background: var(--dgray);
    }

    .nav-item-contact {
        margin: 0 0 0 1.875rem;
    }

    .nav-item-shop {
        margin: 0 0 0 .9375rem;
    }

    .nav-submenu .nav-link {
        color: white;
    }

    #nav-desktop .nav-item-contact .nav-link,
    #nav-desktop .nav-item-shop .nav-link {
        padding: 0 .9375rem;
    }

    #nav-desktop .nav-item-contact .nav-link i,
    #nav-desktop .nav-item-shop .nav-link i {
        display: none;
    }

    /* ::::: Hero ::::: */
    .hero-title h1 {
        font-size: 3rem;
    }

    .hero-title h2 {
        font-size: 5.5rem;
    }

    .hero-title h3 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-title h2::after {
        transform: translateX(-50%) scale(75%);
    }

    /* ::::: Intro ::::: */
    .homepage-intro-block-img {
        display: block;
        position: absolute;
        right: 0;
        bottom: 3.75rem;
        width: 16rem;
    }

    /* ::::: Illustration ::::: */
    .illustration-title {
        margin-bottom: 3.5rem;
    }

    .illustration-title h4 {
        font-size: 5.5rem;
    }

    /* ::::: Review ::::: */
    .review-wrap,
    .review-container {
        padding: 1.875rem;
    }

    .review-title h3 {
        margin-bottom: 1.875rem;
    }

    /* ::::: Footer ::::: */
    footer {
        padding-top: 5.625rem;
    }

    .footer-bottom {
        margin-top: 5.625rem;
    }

    .footer-design {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    /* ::::: Header ::::: */
    .header-title {
        margin-top: 6rem;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    /* ::::: Navigation ::::: */
    #nav-desktop .nav-item-contact .nav-link,
    #nav-desktop .nav-item-shop .nav-link {
        padding: 0 1.875rem;
    }

    #nav-desktop .nav-item-contact .nav-link i,
    #nav-desktop .nav-item-shop .nav-link i {
        display: inline-block;
    }

    .category-page-info-pages {
        display: inline;
    }

    /* ::::: Hero ::::: */
    .hero-title h1 {
        font-size: 4rem;
    }

    .hero-title h2 {
        font-size: 6rem;
        padding-bottom: 5rem;
        margin-bottom: 3rem;
    }

    .hero-title h3 {
        font-size: 3rem;
    }

    .hero-title h2::after {
        transform: translateX(-50%);
    }

    /* ::::: Illustration ::::: */
    .illustration-title {
        margin-bottom: 5.5rem;
    }

    .illustration-title h4 {
        font-size: 6rem;
    }

    /* ::::: Header ::::: */
    .header-title h1 {
        font-size: 5rem;
    }

    .header-title h2 {
        font-size: 3.75rem;
    }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    /* ::::: Header ::::: */
    .header-title h1 {
        font-size: 6rem;
    }

    .header-title h2 {
        font-size: 5rem;
    }
}