@media (max-width: 1360px){
    html{
        font-size: 14px;
    }
}
@media (max-width: 1280px){
    html{
        font-size: 13px;
    }
}
@media (max-width: 1024px){
    html{
        font-size: 10px;
    }
}
@media (max-width: 991px){
    html{
        font-size: 16px;
    }
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 767px) {
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}

.hero-video {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 5rem);
    padding: 6.25rem 6.25rem 20vh;
    color: var(--hero-color, #fff);
}

.hero-video__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-video__bg > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video .container {
    max-width: 1600px;
}

.hero-video__btn {
    max-width: 18.125rem;
    margin-top: .625rem;
}

.hero-video__subtitle {
    text-shadow: 5px 5px 15px rgba(0,0,0,.33);
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-video__title {
    font-size: 7.125rem;
    line-height: 100%;
    font-weight: 800;
    max-width: 50rem;
    text-shadow: 5px 5px 15px rgba(0,0,0,.33);
}
@media (max-width: 991px) {
    .hero-video {
        min-height: calc(100vh - 167px);
        padding: 200px 0.75rem 10vh;
    }

    .hero-video__subtitle {
        font-size: 1.25rem;
        line-height: 120%;
    }

    .hero-video__title {
        font-size: 50px;
    }

    .hero-video__btn {
        max-width: 175px;
        margin-top: 24px;
    }
}







.collections {
    margin: 56px 0;
}

.collections__container {
    display: flex;
}

.collections__img {
    display: block;
    width: 58.2%;
    flex-shrink: 0;
    position: relative;
    margin-right: 3.5rem;
}

.collections__img::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 50%;
}

.collections__img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.625rem;
    transition: box-shadow .15s ease-in-out;
}
.collections__img:hover > img {
    box-shadow: 0 0 .75rem rgba(0,0,0,.7);
}

.collections__img::before {
    padding-top: 74.4%;
}

.collections__content {
    width: 100%;
}

.collections__title > * {
    font-weight: 600 !important;
    font-size: 2.5rem !important;
    line-height: 120% !important;
    color: #2d3047;
    margin: 0 !important;
}

.collection__link {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #00a7ce;
}
.collection__link:hover {
    text-decoration: none;
}

.collection__products {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 -1rem -2rem;
    flex-wrap: wrap;
}

.collection__products > * {
    width: calc(50% - 2rem);
    margin: 0 1rem 2rem;
}

.collection__products a {
    display: block;
    width: 100%;
    position: relative;
}

.collection__products a::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.collection__products a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: .5rem;
    transition: box-shadow .15s ease-in-out;
}
.collection__products a:hover > img {
    box-shadow: 0 0 .75rem rgba(0,0,0,.7);
}

.collection__products {
    margin: 2rem -1rem -2rem;
}

.collections.collections--reverse .collections__container {
    flex-direction: row-reverse;
}

.collections.collections--reverse .collections__img {
    margin-right: 0;
    margin-left: 3.5rem;
}

@media (max-width: 991px) {
    .collections {
        margin: 32px 0;
    }

    .collections__container {
        flex-direction: column !important;
    }

    .collections__img {
        width: 100%;
        margin: 0 0 16px !important;
    }

    .collections__title > * {
        font-size: 16px !important;
    }

    .collection__link {
        font-size: 12px;
    }

    .collection__products > :not(:nth-child(1)):not(:nth-child(2)) {
        display: none;
    }

}








.collections-row {
    margin: 2rem 0;
}
.collections-row__title > * {
    font-weight: 600;
    font-size: 2.5rem !important;
    line-height: 120% !important;
    color: #2d3047;
    margin: 0 !important;
}

.collections-row__title {
    margin-bottom: 2rem;
}

.collections-row__container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem -2rem;
    position: relative;
}

.collections-row__container > * {
    display: block;
    width: calc(100% / 3 - 2rem);
    margin: 0 1rem 2rem;
    position: relative;
}
.collections-row__container > *:hover img {
    box-shadow: 0 0 .75rem rgba(0,0,0,.7);
}

.collections-row__container > ::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 50%;
}

.collections-row__container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.625rem;
    transition: box-shadow .15s ease-in-out;
}

@media (max-width: 991px) {
    .collections-row__title > * {
        font-size: 1rem !important;
    }

    .collections-row__title {
        margin-bottom: 1rem;
    }

    .collections-row__container {
        margin: 0 -0.5rem -1rem;
    }

    .collections-row__container > * {
        width: calc(100% / 3 - 1rem);
        margin: 0 0.5rem 1rem;
    }
}











.products-row {
    margin: 4rem 0;
}

.products-row__title > * {
    font-weight: 600;
    font-size: 2.5rem !important;
    line-height: 120% !important;
    color: #2d3047;
    margin: 0 !important;
}

.products-row__title {
    margin-bottom: 2rem;
}

.products-row__container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem -2rem;
}

.products-row__container > * {
    margin: 0 1rem 2rem;
    width: calc(100% / 6 - 2rem);
}

.products-row__item-img {
    display: block;
    position: relative;
    margin-bottom: 1rem;
}

.products-row__item-img::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.products-row__item-img > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 0.625rem;
    transition: box-shadow .15s ease-in-out;
}

.products-row__item-title > * {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 133%;
    color: #989898;
    margin: 0;
}

.products-row__item-title {
    margin-bottom: 0.25rem;
}

.products-row__item-text {
    font-size: 1rem;
    line-height: 150%;
    color: #2d3047;
}

.products-row__item-text > * {
    margin: 0;
}

.products-row__item-rating {
    display: flex;
}

.products-row__item-rating svg {
    width: 1.25rem;
}

.products-row__item {
    display: flex;
    flex-direction: column;
}

.products-row__item-rating {
    margin-top: auto;
}

.products-row__item-text {
    margin-bottom: 1.25rem;
}

.products-row__item-img:hover > img {
    box-shadow: 0 0 .75rem rgba(0,0,0,.5);
}

@media (max-width: 991px) {
    .products-row {
        margin: 40px 0 25px;
    }

    .products-row__title{
        margin-bottom: 16px;
    }
    .products-row__title>*{
        font-size: 16px !important;
    }

    .products-row__container {
        margin: 0 -15px;
        flex-wrap: nowrap;
        padding: 10px 7px 15px;
        overflow-x: auto;
    }

    .products-row__container > * {
        margin: 0 8px;
        width: 90px;
        flex-shrink: 0;
    }

    .products-row__item-img {
        margin-bottom: 7px;
    }

    .products-row__item-title > * {
        font-size: 12px;
    }

    .products-row__item-text {
        font-size: 12px;
        line-height: 120%;
    }

    .products-row__item-title {
        margin-bottom: 10px;
    }

    .products-row__item-text {
        margin-bottom: 10px;
    }

    .products-row__item-rating svg {
        width: 12px;
    }
}

