@import url(https://db.onlinewebfonts.com/c/b138bce5cff4301ae63bd75f2b1cea12?family=Mallory+Book);

@font-face {
    font-family: "Mallory Book";
    src: url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.eot");
    src: url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/b138bce5cff4301ae63bd75f2b1cea12.svg#Mallory Book") format("svg");
}

html, body, button {
    font-family: "Mallory Book", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    letter-spacing: 0.9px;
    overflow-x: hidden;
    height: 100%;
}

* {
    box-sizing: border-box;
}

/* Colors from :root variables */
/*:root {
    --color-primary: #fbf5f4ff;
    --color-secondary: #f7d4cbff;
    --color-tertiary: #f0aa9aff;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-gray-dark: #eaeaea;
    --text-gray: #dbdbdb;
    --text-gray-dark: #363636;
    --text-color: #000000;
    --color-black: #000000;
    --container-width-max: 1140px;
    --container-width-full: 100%;
}*/

/* Background classes */
.bg-primary {
    background-color: var(--color-primary);
}
.bg-secondary {
    background-color: var(--color-secondary);
}
.bg-tertiary {
    background-color: var(--color-tertiary);
}
.bg-gray {
    background-color: var(--color-gray);
}
.bg-gray-dark {
    background-color: var(--color-gray-dark);
}
.bg-black {
    background-color: var(--color-black);
}
.bg-white {
    background-color: white;
}

/* Text color classes */
.text-primary {
    color: var(--color-primary);
}
.text-secondary {
    color: var(--color-secondary);
}
.text-tertiary {
    color: var(--color-tertiary);
}
.text-white {
    color: var(--color-white);
}
.text-gray {
    color: var(--color-gray);
}
.text-gray-dark {
    color: var(--color-gray-dark);
}
.text-black {
    color: var(--color-black);
}
.text-default {
    color: var(--text-color);
}
.text-gray {
    color: var(--text-gray);
}
.text-gray-dark {
    color: var(--text-gray-dark);
}

/* Margin */
.m-0   {
    margin: 0;
}
.m-1   {
    margin: 0.25rem;
}
.m-2   {
    margin: 0.5rem;
}
.m-3   {
    margin: 0.75rem;
}
.m-4   {
    margin: 1rem;
}
.m-5   {
    margin: 1.25rem;
}
.m-6   {
    margin: 1.5rem;
}
.m-8   {
    margin: 2rem;
}
.m-10  {
    margin: 2.5rem;
}
.m-12  {
    margin: 3rem;
}
.m-16  {
    margin: 4rem;
}

/* Margin X (left/right) */
.mx-0   {
    margin-left: 0;
    margin-right: 0;
}
.mx-1   {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
.mx-2   {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.mx-3   {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}
.mx-4   {
    margin-left: 1rem;
    margin-right: 1rem;
}
.mx-5   {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

/* Margin Y (top/bottom) */
.my-0   {
    margin-top: 0;
    margin-bottom: 0;
}
.my-1   {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.my-2   {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.my-3   {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-4   {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-5   {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Padding */
.p-0   {
    padding: 0;
}
.p-1   {
    padding: 0.25rem;
}
.p-2   {
    padding: 0.5rem;
}
.p-3   {
    padding: 0.75rem;
}
.p-4   {
    padding: 1rem;
}
.p-5   {
    padding: 1.25rem;
}
.p-6   {
    padding: 1.5rem;
}
.p-8   {
    padding: 2rem;
}
.p-10  {
    padding: 2.5rem;
}
.p-12  {
    padding: 3rem;
}
.p-16  {
    padding: 4rem;
}

/* Padding X */
.px-0   {
    padding-left: 0;
    padding-right: 0;
}
.px-1   {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-2   {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-3   {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4   {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-5   {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Padding Y */
.py-0   {
    padding-top: 0;
    padding-bottom: 0;
}
.py-1   {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-2   {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-3   {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4   {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5   {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.pt-0   {
    padding-top: 0rem;
}
.pt-1   {
    padding-top: 0.25rem;
}
.pt-2   {
    padding-top: 0.5rem;
}
.pt-3   {
    padding-top: 0.75rem;
}
.pt-4   {
    padding-top: 1rem;
}
.pt-5   {
    padding-top: 1.25rem;
}
.pt-6   {
    padding-top: 1.5rem;
}

.pb-0   {
    padding-bottom: 0rem;
}
.pb-1   {
    padding-bottom: 0.25rem;
}
.pb-2   {
    padding-bottom: 0.5rem;
}
.pb-3   {
    padding-bottom: 0.75rem;
}
.pb-4   {
    padding-bottom: 1rem;
}
.pb-5   {
    padding-bottom: 1.25rem;
}
.pb-6   {
    padding-bottom: 1.5rem;
}

.w-full {
    max-width: 100%;
    width: 100%;
}
.b-t-c-transparent {
    border-top-color: transparent !important;
}
.b-l-c-transparent {
    border-left-color: transparent !important;
}
.b-t-0 {
    border-top-width: 0;
}
.b-l-0 {
    border-left-width: 0;
}

.container {
    width: var(--container-width-full);
    max-width: var(--container-width-max);
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-padding-full {
    padding: 60px;
}

.btn {
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    font-weight: 700;
    height: 39px;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-center {
    text-align: center !important;
    justify-content: center;
}

/* Header */

.header-message {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.header-main .logo img {
    width: 370px;
}

.header-main > div:not(.logo) a {
    font-size: 1.5rem;
}

.header-main > div.logo a {
    display: flex;
}

.header-menu ul {
    list-style: none;
    justify-content: center;
    font-size: 15px;
}

.header-menu a {
    text-transform: uppercase;
}

.header-menu > ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.header-menu > ul > li {
    position: relative;
}

.header-menu ul a {
    display: block;
    text-decoration: none;
}

.header-menu .dropdown-menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    transition: 0.3s cubic-bezier( 0.785, 0.135, 0.15, 0.86 );
    padding: 0;
    margin: 0;
    min-width: 100%;
    width: max-content;
    z-index: 100;
}

.header-menu .dropdown:hover .dropdown-menu {
    transition: unset;
    pointer-events: all;
    opacity: 1;
}

.header-menu .dropdown-menu a {
    padding-top: 0;
}

.header-menu .dropdown > a {
    display: flex;
    gap: 1rem;
    align-items: center;
}
/* Header */





/* Mobile menu */

.mobile-menu {
    width: 100%;
    height: 100%;
    background: hsl(0deg 0% 0% / 25%);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s cubic-bezier( 0.785, 0.135, 0.15, 0.86 );
}

body.show-mobile-menu .mobile-menu {
    opacity: 1;
    pointer-events: all;
}

body.hiding-mobile-menu .mobile-menu {
    opacity: 0;
    pointer-events: none;
}

.mobile-menu .menu-container {
    background: white;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    opacity: 0;
}

body.show-mobile-menu .menu-container {
    animation-name: open-menu;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-delay: 0.45s;
    animation-fill-mode: forwards;
}

.mobile-menu-close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--color-gray-dark);
}

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

.mobile-menu a {
    text-decoration: none;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}

.mobile-menu .dropdown-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.mobile-menu .dropdown > a i.fa-chevron-right {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--text-gray-dark);
    font-size: 10px;
}

.mobile-menu .dropdown > a.active i.fa-chevron-right {
    transform: rotate(90deg);
}

.mobile-menu .thin-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-dark);
}

.mobile-menu .cta-button {
    justify-content: center;
}

body.closing-menu .menu-container {
    animation-name: close-menu;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

@keyframes open-menu {
    0% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
        opacity: 1;
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
    }
}

@keyframes close-menu {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
    }
    100% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
        opacity: 1;
    }
}


/* End mobile menu */


/* Content Hero */

.hero-image {
    aspect-ratio: 16/9;
    position: relative;
}

.hero-image video {
    width: 100%;
    height: 100%;
}

.hero-image .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: contrast(0.5) saturate(2);
}

.hero-image .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    gap: 4vw;
}

.hero-image .text-container span {
    font-size: 1.5vw;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 0.75vw;
    font-weight: 400;
}

.hero-image .text-container h1 {
    font-size: 4.5vw;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    letter-spacing: 1.5vw;
    font-weight: bold;
}

.hero-image .text-container a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.5vw;
    padding: 1vw 2vw !important;
}

/* End Content Hero */


/* Content BL1 */

.text-img-section {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

.text-img-section .text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-img-section h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.text-img-section .paragraph {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-img-section .paragraph * {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.9px;
    margin: 0;
    padding: 0;
}

.text-img-section > div {
    width: 50%;
}

.text-img-section .image-block img {
    aspect-ratio: 3 / 2;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.text-img-section .action a{
    padding: 15px 45px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: min-content;
    font-weight: 600;
    text-decoration: none;
}

.text-img-section.reversed {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .text-img-section.reversed,
    .text-img-section {
        flex-direction: column;
    }
    .text-img-section > div {
        width: 100%;
    }
    .text-img-section .text-block {
        padding-left: 0;
        padding-right: 0;
    }
}

/* End Content BL1 */


/* Image Shortcuts */

.image-shortcuts {
    display: flex;
    width: 100%;
    text-decoration: none;
}

.image-shortcuts a {
    display: block;
    text-decoration: none;
}

.image-shortcuts > a {
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: 0.3s cubic-bezier( 0.785, 0.135, 0.15, 0.86 );
}

.image-shortcuts > a:hover{
    background-size: 105%;

}

.image-shortcuts > a .text-segment {
    padding-left: 2rem;
    letter-spacing: 7.6px;
    font-size: 2em;
    text-transform: uppercase;
    width: 66%;
}

.image-shortcuts > a .btn {
    width: calc(33% - 2rem);
    text-align: center;
}

.flex-container {
    position: absolute;
    left: 0;
    bottom: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    width: 100%;
    align-content: flex-end;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .image-shortcuts {
        flex-direction: column;
    }
}

/* End Shortcuts */


/* Start Reviews */

.reviews-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 2rem;
}

.reviews-block h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 9.5px;
    margin: 0;
    padding: 0;
}

.reviews-block .review {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    cursor: pointer;
    text-align: center;
}

.reviews-block .review-text {
    font-size: 1.3em;
    font-style: italic;
    letter-spacing: 1.2px;
}


.reviews-block .review-author {
    font-size: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-block .tns-outer {
    position: relative;
}

.reviews-block .tns-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 100;
}

.reviews-block .tns-controls button {
    background: transparent;
    border: none;
    color: black;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    z-index: 100;
}

.reviews-block .tns-controls button i {
    font-size: 18px;
}


/* End Reviews */





/* Title section */

.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-section h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 9.5px;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* End title section */





/* Accordion section */

.faq-section .accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.9px;
    cursor: pointer;
}

.faq-section  .accordion-content * {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.accordion-title i {
    transition: transform 0.3s ease;
}

.accordion-faq.active .accordion-title i {
    transform: rotate(90deg);
}

.faq-section  .accordion-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-section .accordion-faq {
    border-bottom: 1px solid black;
}

/* End accordion section */








/* Brands section */

.brands-section .brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.brands-section .brands-header > div {
    width: 33%;
}

.brands-section .brands-header > div.line {
    height: 2px;
}

.brands-section .brands-header > div.title {
    font-size: 2em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brands-section .brands {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.brands-section .brands img {
    max-height: 30px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    flex-grow: 1;
    opacity: 0.5;
}

@media (max-width: 576px) {


    .brands-section .brands-header > div.line {
        width: 25%;
    }

    .brands-section .brands-header > div.title {
        width: 50%;
    }

}

/* End brands section */



/* Start contact section */

.contact-blocks-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.contact-blocks-container .contact-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    flex: 1;
    min-width: 0;
}

.contact-blocks-container .contact-block .title {
    font-weight: bold;
    font-size: 1.75rem;
    text-transform: uppercase;
}

.contact-blocks-container .contact-block .action {
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .contact-blocks-container {
        flex-direction: column;
    }
}

/* End contact section */

/* Lookbook */
.gallery-lookbook {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-lookbook  .row {
    display: flex;
    gap: 1rem;
    align-items: center;
    gap: 0.5rem;
}

.gallery-lookbook img {
    height: 200px;
    object-fit: cover;
    transform: scale(0);
    animation-name: pop-in;
    animation-duration: 0.3s;
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-fill-mode: forwards;
}

@keyframes pop-in {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}


/* End lookbook */

/* Footer */

.copyright {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 12px;
}

footer h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

footer .container {
    display: flex;
    justify-content: flex-start;
}

footer .element {
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
}


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

footer .element ul li a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.9px;
    text-decoration: none;
}

footer .element {
    width: 25%;
}

footer .element:last-child {
    width: 50%;
}

footer .subscribe-form {
    width: 100%;
}

footer .subscribe-form input,
footer .subscribe-form button {
    appearance: none;
    font-size: 16px;
    min-height: 47px;
    padding: 6px 16px;
    width: 100%;
    text-align: center;
    border: 1px solid #c5c5c5;
    color: #1f2124;
    flex-grow: 1;
    max-width: 100%;
    vertical-align: middle;
    outline: none;
    transition: 0.3s cubic-bezier( 0.785, 0.135, 0.15, 0.86 );
}


footer .subscribe-form > div {
    display: flex;
}

footer .subscribe-form input:hover,
footer .subscribe-form input:focus {
    box-shadow: inset 0 0 0px 1px #c5c5c5;
}

footer .subscribe-form input::placeholder {
    font-family: "Mallory Book", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

footer .subscribe-form button {
    text-transform: uppercase;
    border-color: transparent;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
}

footer .subscribe-form button:hover{
    transition: all .3s;
    color: #fff;
}

footer .socials {
    display: flex;
    gap: 1rem;
    justify-content: start;
}

footer .socials a {
    color: transparent;
}

footer .social-btn {
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .social-btn i {
    font-size: 20px;
    transform: translate(1px);
}

footer .social-btn:hover {
    transform: scale(1.1);
}

/* Footer */















@media (min-width: 1000px) {
    .hide-xl {
        display: none !important;
    }

}

@media (max-width: 1000px) {
    .hide-xs {
        display: none !important;
    }
}

@media (max-width: 768px) {
    footer .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    footer .container .element {
        width: 100%;
    }

    footer .socials {
        justify-content: center;
    }

    .header-main .logo img {
        width: 300px;
    }


    .section-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

}

@media (max-width: 576px) {


    .header-main .logo img {
        width: 225px;
    }




}

