/* VARIABLES */

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* FONTS */

@font-face {
    font-family: "PlayfairDisplay-Regular";
    src: url("../../font/playfair/PlayfairDisplay-Regular.ttf")
}

@font-face {
    font-family: "Montserrat-Regular";
    src: url("../../font/montserrat/Montserrat-Regular.ttf")
}

/* ELEMENTS */

*, :after, :before {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    color: #ffffff;
    background-color: #000;
    font-family: "PlayfairDisplay-Regular", serif;
}

main {
    padding: 20px 20px 80px;
}

h1 {
    font-size: 30px;
    margin: 16px auto;
    line-height: 1.29;
    font-weight: 100;
}

h2 {
    font-size: 28px;
    margin: 20px 0;
    line-height: 1.3;
    font-weight: 100;
}

h5 {
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.25;
    font-weight: 100;
}

p {
    font-family: "Montserrat-Regular", serif;
    font-size: 16px;
    line-height: 1.78;
    color: #949494;
}

.contact__item {
    font-family: "Montserrat-Regular", serif;
    font-size: 16px;
    line-height: 1.78;
    color: #949494;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* COMPONENTS */

.color--primary {
    color: #ffffff;
}

.header {
    margin: auto auto 20px;
}

.header__logo-img {
    max-width: 160px;
}

.menu__list {
    display: flex;
}

.menu__list-item-link {
    text-decoration: none;
    color: #949494;
}

.menu__list-item-link.active {
    color: #ffffff;
}

.social-icons {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
}

.social-icon__link {
    margin-left: 10px;
}

.social-icon {
    display: block;
    width: 32px;
    height: 32px;
    padding: 5px;
}

.headline {
    max-width: 600px;
    margin-left: 0;
}

.headline-caption {
    font-family: "Montserrat-Regular", serif;
    font-size: 16px;
    line-height: 1;
    color: #949494;
    text-transform: uppercase;
}

.img-wrapper--brand:before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    z-index: -1;
    background: #949494;
}

.img-wrapper--brand {
    position: relative;
    margin: 1px;
    background: #000;
}

.img-wrapper--brand img {
    background: #000;
}

.img-wrapper--brand--rounded:before {
    background: linear-gradient(135deg, #000 8%, #949494 100%);
    border-radius: 50%;
}

.img-wrapper--brand--rounded {
    border-radius: 50%;
}

.img-wrapper--brand--rounded img {
    border-radius: 50%;
}

.trending__list-item {
    position: relative;
    margin: auto;
    overflow: hidden;
    max-width: 330px;
}

.trending__content {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, .3);
    transition: all .3s ease;
}

.trending__img {
    filter: grayscale(1);
}

.trending__title-wrapper {
    position: relative;
    height: 70px;
}

.trending__title-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#000 10%, rgba(0, 0, 0, 0) 40%);
}

.trending__title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 16px;
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 20px;
}

.trending__title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 200px;
    z-index: -1;
    background-image: url("../../images/flowers.png");
    background-position-y: -130px;
    background-size: cover;
    background-repeat: no-repeat;
}

.trending__label {
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: "Montserrat-Regular", serif;
    display: flex;
    align-items: baseline;
    font-size: 14px;
    justify-content: flex-end;
}

.trending__label:before {
    content: "";
    background-image: url("../../images/divider-left-half.png");
    background-repeat: no-repeat;
    width: 40px;
    height: 5px;
    background-size: 100%;
    position: relative;
    top: -7px;
    margin-right: 10px;
}

.trending__label--big {
    font-size: 30px;
    font-weight: 700;
    margin-left: 2px;
}

.trending__link {
    background-color: #ffffff;
    color: #000;
    padding: 10px;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    transition: all .3s ease;
}

.trending__list-item.active .trending__title {
    color: #949494;
}

.trending__list-item.active .trending__img {
    filter: grayscale(0);
}

.trending__list-item.active .trending__link {
    opacity: 1;
    visibility: visible;
}

.scroll {
    position: fixed;
    right: 20px;
    bottom: 70px;
    background-color: #000;
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
}

.scroll__img {
    max-width: 40px;
}

.section,
footer {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.section-home {
    min-height: 300px;
    margin-bottom: 40px;
}

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

.section__headline {
    position: absolute;
    bottom: 20%;
    right: 0;
    text-align: right;
}

.section__headline-flowers {
    display: none;
}

.section__headline-promo {
    position: relative;
    left: -100px;
}

.section__headline-man {
    position: absolute;
    top: 0;
    left: 230px;
    max-width: 150px;
    z-index: -1;
}

.section__headline-woman {
    width: 300px;
    height: 300px;
    padding: 30px;
}

.section__headline-woman img {
    background-color: #000;
}

.section__title {
    text-align: center;
    text-transform: capitalize;
}

.section__description {
    display: block;
    margin: auto;
    max-width: 800px;
    text-align: center;
}

.section__divider {
    margin: auto;
    max-width: 82px;
    margin-bottom: 20px;
}

.section__divider--small {
    margin: 10px auto;
    max-width: 82px;
}

.section__divider--right {
    margin-left: 0;
    max-width: 41px;
}

.scrollable {
    position: relative;
    display: block;
    overflow: hidden;
}

.scrollable__wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: -moz-scrollbars-none;
    margin-bottom: -20px;
}

.scrollable__wrapper::-webkit-scrollbar {
    display: none;
}

.scrollable__body {
    white-space: nowrap;
    font-size: 0;
    padding-bottom: 20px;
}

.scrollable__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.scrollable__item:last-child {
    margin-right: 0;
}

.tab-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: auto;
}

.tab-list:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#000 10%, rgba(0, 0, 0, .4) 60%);
}

.tab-list-item {
    position: relative;
    font-size: 20px;
    line-height: 2.89;
    letter-spacing: 0.9px;
    text-align: left;
    cursor: pointer;
    padding: 20px;
}

.tab-list-item:before {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    width: 300px;
    height: 200px;
    z-index: -1;
    background-image: url("../../images/flowers.png");
    background-position-y: -70px;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel {
    text-align: center;
    position: relative;
}

.carousel__button {
    display: inline-block;
    padding: 20px;
    cursor: pointer;
}

.carousel__button.button--hide {
    opacity: .3;
}

.carousel__button--left {
    left: 0;
}

.carousel__button--right {
    right: 0;
}

.carousel__label {
    font-family: "Montserrat-Regular", serif;
    font-size: 12px;
    color: #949494;
    margin-bottom: 10px;
    opacity: .5;
}

.carousel__button-img {
    width: 30px;
    height: 16.5px;
}

.carousel__list-item {
    position: relative;
    cursor: pointer;
}

.carousel__list-item-title {
    position: absolute;
    top: 20px;
    left: -10px;
    background: #000;
    padding: 10px;
    letter-spacing: .9px;
}

.carousel__list-item-description {
    position: relative;
    font-family: "Montserrat-Regular", serif;
    display: flex;
    font-size: 14px;
    max-height: 85px;
    line-height: 1.78;
    margin-top: 20px;
    flex-flow: column;
    align-items: center;
    overflow: hidden;
    color: #949494;
}

.carousel__list-item-description:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 40%, #000 100%);
}

.carousel__list-item-description span {
    position: relative;
}

.carousel__list-item-description span:before {
    display: inline-block;
    content: "";
    width: 3px;
    height: 3px;
    background-color: #949494;
    border-radius: 50%;
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.carousel__info-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
    top: 20px;
    left: 20px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    font-size: 14px;
    letter-spacing: .9px;
    text-transform: uppercase;
    transform: scale(0);
    transition: all .3s ease-in-out;
    background-color: rgba(0, 0, 0, .3);
}

.carousel__info {
    padding: 10px;
    background-color: #000;
}

.img-wrapper--brand--rounded .carousel__info-wrapper {
    border-radius: 50%;
}

.tab-list-item-img-wrapper {
    position: relative;
    padding: 20px;
    max-width: 300px;
}

.tab-list-item-img {
    transition: .3s ease;
}

.tab-list-item-price {
    font-family: "Montserrat-Regular", serif;
    display: flex;
    align-items: baseline;
    position: absolute;
    bottom: 20px;
    right: -10px;
    padding: 10px;
    font-size: 14px;
    background-color: #000;
}

.tab-list-item-price--big {
    font-size: 30px;
    margin-left: 5px;
    font-weight: 700;
}

.tab-list-item-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.footer__link {
    display: inline-block;
    font-size: 18px;
    line-height: 2.89;
    margin-right: 40px;
    text-decoration: none;
    color: #949494;
    transition: all .3s ease;
}

.copyright {
    text-align: center;
    opacity: 0.5;
    font-family: "Montserrat-Regular", serif;
    font-size: 12px;
    line-height: 2.67;
    color: #949494
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 640px;
    width: 100%;
    height: auto;
    z-index: 2;
    visibility: hidden;
    backface-visibility: hidden;
    padding: 20px;
    overflow: hidden;
    background-color: #000;
    transform: translateX(-50%) translateY(-50%);
}

.modal--show {
    visibility: visible;
}

.modal__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    background: rgba(0, 0, 0, .3);
    transition: all 0.3s;
}

.modal__close {
    width: 40px;
    height: 40px;
    margin: 20px 20px auto auto;
    border-radius: 50%;
    border: 1px solid #d59d85;
    cursor: pointer;
    background-size: 70%;
    background-position: center;
    background-image: url("../../images/close.png");
}

.modal--show ~ .modal__overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, .5);
}

.modal--show ~ main {
    filter: blur(3px);
}

.modal--show .modal__content {
    transform: translateY(0);
    opacity: 1;
}

.modal__background {
    position: absolute;
    right: -40px;
    top: -70px;
    width: 300px;
    height: 200px;
    background-image: url("../../images/flowers.png");
    background-size: cover;
}

.modal__content {
    position: relative;
    margin: 0 auto;
    transform: translateY(-5%);
    opacity: 0;
    padding: 20px;
    border: 1px solid #d59d85;
}

.modal__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
}

.modal__title:before {
    margin-right: 20px;
    background-image: url("../../images/divider-left-half.png");
}

.modal__title:after {
    margin-left: 20px;
    background-image: url("../../images/divider-right-half.png");
}

.countdown {
    display: flex;
}

.countdown__item {
    width: 20%;
    text-align: center;
    font-size: 30px;
    padding-bottom: 10px;
}

.countdown__item:first-child {
    border-left: 0;
}

.countdown__item-label {
    font-family: "Montserrat-Regular", serif;
    font-size: 12px;
    margin-top: 5px;
    color: #949494;
}

.prices {
    position: relative;
    margin: auto;
}

.prices__list {
    display: flex;
    flex-wrap: wrap;
}

.prices__list-item {
    position: relative;
    border-bottom: 1px solid #949494;
    width: 100%;
}

.prices__list-item:before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 45px;
    height: 5px;
    background-color: #000;
}

.prices__list-item:after {
    content: "";
    background-image: url("../../images/divider-left-half.png");
    background-repeat: no-repeat;
    width: 40px;
    height: 5px;
    background-size: 100%;
    position: absolute;
    bottom: -4px;
}

.prices__title {
    display: flex;
    width: 100%;
    padding: 20px 10px;
    font-size: 20px;
    letter-spacing: .9px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.prices__content-list {
    display: none;
    font-family: "Montserrat-Regular", serif;
    padding: 10px;
    line-height: 1.78;
    color: #949494;
}

.prices__content-list.active {
    display: block;
}

.prices__content-list.active ~ .prices__collapse:after {
    content: "-";
}

.prices__collapse {
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    pointer-events: none;
    font-size: 24px;
}

.prices__collapse:after {
    content: "+";
    color: #949494;
}

.prices__content-list-item {
    display: flex;
    justify-content: space-between;
    word-break: break-word;
    transition: .3s all;
}

.prices__content-list-item:last-child {
    margin-bottom: 20px;
}

.prices__price {
    color: #ffffff;
    margin-left: 10px;
    text-align: right;
    flex-shrink: 0;
}

.partners {
    text-align: center;
}

.partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 180px;
}

.partner__img {
    width: 100px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
}

.contact__item {
    padding-right: 20px;
    margin-bottom: 20px;
}

.contact__map-img {
    position: relative;
    display: block;
}

.contact__map-click {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .7);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    animation: pulse 2s infinite;
}

.link {
    color: #949494;
}

/* ABOVE MOBILE */

@media (min-width: 481px) {
    main {
        padding: 20px 40px 80px;
    }

    .modal__title {
        letter-spacing: .9px;
        font-size: 22px;
    }

    .modal__title:before,
    .modal__title:after {
        content: "";
        width: 40px;
        height: 5px;
        display: block;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .countdown__item {
        border-left: 1px solid #d59d85;
    }

    .contact__map-click {
        width: 90px;
        height: 90px;
    }
}

/* BELOW TABLET */

@media (max-width: 719px) {
    .header__logo-img {
        margin: auto;
    }

    .menu {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000;
        z-index: 1;
        border-top: 1px solid #949494;
    }

    .menu__list-item {
        width: 20%;
        text-align: center;
    }

    .menu__list-item:last-child {
        width: 25%;
    }

    .menu__list-item-link {
        display: block;
        padding: 20px 0;
    }

    #fb-root {
        display: none;
    }
}

/* MOBILE ONLY */

@media (max-width: 480px) {
    .section__headline-woman:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, .5);
    }
}

/* ABOVE TABLET */

@media (min-width: 720px) {
    h1 {
        font-size: 45px;
        margin: 24px auto;
    }

    h2 {
        font-size: 40px;
        margin: 30px 0;
    }

    .modal__title {
        font-size: 32px;
    }

    .trending__list-item {
        margin-right: 20px;
    }

    p,
    .prices,
    .contact__item {
        font-size: 16px;
    }

    .contact__item {
        padding-right: 30px;
        margin-bottom: 30px;
    }

    main {
        padding: 40px 80px;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
    }

    .header--sticky .header {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1;
        background: #000;
        max-width: 100%;
        padding: 20px 80px;
        transition: all .3s ease;
        border-bottom: 1px solid #949494;
    }

    .header--sticky main {
        margin-top: 61px;
    }

    .menu__list-item:last-child .menu__list-item-link {
        padding: 10px 0 10px;
    }

    .menu__list-item-link {
        font-size: 18px;
        line-height: 2.33;
        text-align: left;
        padding: 10px 10px;
    }

    .section-home {
        min-height: 345px;
        margin-bottom: 60px;
    }

    .section__headline {
        left: 0;
        right: inherit;
        text-align: left;
    }

    .section__headline-flowers {
        display: block;
        max-width: 500px;
        margin: auto;
    }

    .section__headline-promo {
        position: absolute;
        top: 0;
        right: 0;
        left: inherit;
        margin-bottom: 0;
    }

    .section__divider {
        margin-bottom: 30px;
    }

    .tab-list-item {
        font-size: 30px;
    }
}

/* DESKTOP  */

@media (min-width: 980px) {
    h1 {
        font-size: 62px;
        margin: 32px auto;
    }

    h2 {
        font-size: 45px;
        margin: 40px 0;
    }

    p,
    .prices,
    .contact__item {
        font-size: 18px;
    }

    .trending__title {
        font-size: 20px;
    }

    .trending__list-item:hover .trending__title {
        color: #949494;
    }

    .trending__list-item:hover .trending__img {
        filter: grayscale(0);
    }

    .trending__list-item:hover .trending__link {
        opacity: 1;
        visibility: visible;
    }

    .carousel__info-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
    }

    .carousel__list-item:hover .carousel__info-wrapper {
        opacity: 1;
        transform: scale(1);
    }

    .contact__item {
        padding-right: 40px;
        margin-bottom: 40px;
    }

    .section-home {
        min-height: 545px;
        margin-bottom: 60px;
    }

    .section__headline-man {
        left: 400px;
    }

    .section__headline-woman {
        width: 540px;
        height: 540px;
    }

    .section__headline-flowers {
        max-width: 724px;
    }

    .section__divider {
        margin-bottom: 40px;
    }

    .prices__content-list-item:hover {
        background-color: #949494;
        color: #ffffff;
        padding: 0 10px;
    }

    .footer__link:hover {
        text-decoration: underline;
    }

    .instagram-media {
        min-height: 300px;
        transition: all .3s ease;
        filter: grayscale(1);
    }

    .instagram-media:hover {
        filter: grayscale(0);
    }
}
/*# sourceMappingURL=common.css.map */
