@font-face {
    font-family: PlayfairDisplay;
    src: url(../fonts/PlayfairDisplay-Regular.ttf);
}
/* body font */
@font-face {
    font-family: Avenir-Light;
    src: url(../fonts/Avenir-Light.ttf);
}

body {
    font-family: Avenir-Light;
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: PlayfairDisplay;
    font-weight: normal;
}

h1 {
    font-size: 80px;
    line-height: 90px;
}

h2 {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 90px;
}

h3 {
    font-size: 36px;
    line-height: 53px;
}

p {
    font-weight: normal;
}

.container-fluid {
    overflow: hidden;
}

.container {
    max-width: 1920px;
    width: 100%;
}

.hamburger .nav-toggle {
    position: absolute;
    z-index: 9;
    padding: 10px 35px 16px 0px;
    width: 135px;
    height: 134px;
}

    .hamburger .nav-toggle:focus {
        outline: none;
    }

    .hamburger .nav-toggle span {
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }

        .hamburger .nav-toggle span:before, .hamburger .nav-toggle span:after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 5px;
            border-radius: 1px;
            background: #000;
            cursor: pointer;
            left: 29%;
        }

        .hamburger .nav-toggle span:before {
            top: 40%;
        }

        .hamburger .nav-toggle span:after {
            bottom: 40%;
        }

        .hamburger .nav-toggle span:before, .hamburger .nav-toggle span:after {
            -webkit-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

    .hamburger .nav-toggle.active span {
        background-color: transparent;
    }

        .hamburger .nav-toggle.active span:before {
            top: 49%;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .hamburger .nav-toggle.active span:after {
            bottom: 40%;
            -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
        }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7a1b2;
    z-index: 1;
    padding: 100px;
    overflow: hidden;
}

    .overlay nav {
        position: relative;
        text-align: center;
        font-size: 54px;
    }

        .overlay nav .social-menu a {
            font-size: 16px;
        }

/* Menu style */
/* Effects */
.overlay-boxify {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

    .overlay-boxify.open {
        visibility: visible;
        opacity: 1;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        color: #000;
    }

        .overlay-boxify.open a {
            color: #000;
        }

            .overlay-boxify.open a .fab {
                font-size: 30px;
                text-align: left;
            }

        .overlay-boxify.open ul li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            text-align: left;
            margin-bottom: 10px;
        }

            .overlay-boxify.open ul li a {
                font-size: 22px;
                line-height: 50px;
                color: #000;
            }

                .overlay-boxify.open ul li a:hover {
                    text-decoration: none;
                }

        .overlay-boxify.open .overlay-checkout {
            text-align: left;
        }

            .overlay-boxify.open .overlay-checkout h2 {
                font-size: 64px;
            }

            .overlay-boxify.open .overlay-checkout a {
                font-size: 21px;
                color: #000;
            }

            .overlay-boxify.open .overlay-checkout .underline {
                text-decoration: underline;
            }

            .overlay-boxify.open .overlay-checkout .add-plus {
                margin-bottom: 100px;
                background: none;
                position: static;
                height: auto;
            }

                .overlay-boxify.open .overlay-checkout .add-plus a {
                    font-size: 70px;
                }

.home h1 {
    margin-top: 130px;
}

.home .founded {
    margin-top: 200px;
}

.home p {
    font-size: 21px;
}

.home a {
    color: #000;
    text-decoration: none;
}

.home .read-more {
    margin-top: 90px;
    display: block;
}

.home .main-banner-top {
    margin-top: 134px;
    align-items: center;
}

    .home .main-banner-top p {
        color: #565656;
    }

    .home .main-banner-top a {
        border-bottom: 1px solid #000;
        display: inline-block;
        color: #565656;
    }

.home .top-left {
    position: absolute;
    -webkit-transform: rotate(-90deg) scaleX(-1);
    transform: rotate(-90deg) scaleX(-1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 900px;
}

    .home .top-left .content {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

        .home .top-left .content a {
            font-weight: bold;
            color: #000;
            text-transform: uppercase;
            font-size: 16px;
            line-height: 90px;
        }

            .home .top-left .content a:hover {
                text-decoration: none;
            }

.home .main-nav {
    height: 134px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .home .main-nav .logo {
        margin-top: 40px;
    }

    .home .main-nav .hamburger {
        background: #f7a1b2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 134px;
        width: 135px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.home .full-height {
    /*height: 100vh;*/
    overflow: hidden;
}

.home .reference-guide-container {
    position: relative;
}

    .home .reference-guide-container .reference-guide {
        position: absolute;
        width: 75%;
        bottom: 0;
    }

        .home .reference-guide-container .reference-guide a {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .home .reference-guide-container .reference-guide a h2 {
                line-height: 1.4;
            }

            .home .reference-guide-container .reference-guide a .plus {
                font-size: 3rem;
                line-height: 1;
                padding-top: 0.5rem;
            }

        .home .reference-guide-container .reference-guide p {
            font-size: 21px;
        }

.home .fragrance-wheel {
    background: #f4f4f4;
    padding: 200px 0;
}

.home .carousel .clients-carousel {
    padding-top: 3rem;
}

.home .carousel-left-action .carousel-controls {
    display: flex;
    justify-content: space-evenly;
}

.home .carousel-left-action .carousel-control-prev,
.home .carousel-left-action .carousel-control-next {
    left: auto;
    opacity: 1;
    color: #000;
    top: auto;
    position: static;
}

    .home .carousel-left-action .carousel-control-prev img,
    .home .carousel-left-action .carousel-control-next img {
        width: 30px;
    }

    .home .carousel-left-action .carousel-control-prev:hover,
    .home .carousel-left-action .carousel-control-next:hover {
        color: #000;
    }

.home .carousel-left-action .carousel-control-next {
    left: 150px;
}

.home .testimonials {
    background: #f4f4f4;
    padding: 175px 0;
}

    .home .testimonials .bg-white {
        background: #fff;
        z-index: 1;
    }

    .home .testimonials .z-index {
        z-index: 1;
        background: #f4f4f4;
    }

    .home .testimonials .testimonial {
        background: #e6e5e5;
        padding: 80px;
    }

    .home .testimonials p {
        color: #565656;
    }

        .home .testimonials p .testimonial-info {
            color: #000;
        }

.home .wheel-content {
    padding: 30px 0 70px;
    z-index: 1;
}

    .home .wheel-content .language-event {
        margin-top: 60px;
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
    }

    .home .wheel-content .modal-dialog {
        width: 35%;
    }

        .home .wheel-content .modal-dialog .close {
            right: 30px;
            top: 30px;
        }

    .home .wheel-content .choose-language-container {
        padding: 130px 0 150px;
    }

        .home .wheel-content .choose-language-container .choose-language {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .home .wheel-content .choose-language-container .choose-language li {
                width: 50%;
                list-style: none;
                margin-bottom: 40px;
            }

                .home .wheel-content .choose-language-container .choose-language li a {
                    opacity: .3;
                    text-decoration: none;
                }

                    .home .wheel-content .choose-language-container .choose-language li a:hover {
                        opacity: 1;
                    }

                .home .wheel-content .choose-language-container .choose-language li .active {
                    opacity: 1;
                }

    .home .wheel-content h4 {
        font-size: 42px;
        line-height: 52px;
        font-weight: normal;
        margin-bottom: 100px;
    }

.home .fragrance-match {
    background: #f4f4f4;
    padding-top: 70px;
    padding-bottom: 90px;
}

    .home .fragrance-match h1 {
        margin: 0 0 20px;
    }

    .home .fragrance-match p {
        margin-bottom: 30px;
    }

    .home .fragrance-match h4 {
        font-size: 32px;
        line-height: 90px;
    }

    .home .fragrance-match a {
        margin-top: 100px;
        font-weight: bold;
        font-size: 16px;
        line-height: 90px;
    }

        .home .fragrance-match a:hover {
            text-decoration: none;
        }

    .home .fragrance-match .form-control:focus {
        border-color: inherit;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .home .fragrance-match .form-control-wrapper {
        position: relative;
    }

        .home .fragrance-match .form-control-wrapper .form-control {
            border: 0;
            background: transparent;
            border-bottom: 3px solid #000;
            height: 100px;
            margin-bottom: 180px;
            font-family: 'Font Awesome 5 Free';
        }

        .home .fragrance-match .form-control-wrapper:after {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            content: '\f002';
            color: #000;
            position: absolute;
            right: 20px;
            top: 25px;
            font-size: 30px;
            cursor: pointer;
        }

.home .fragrance-wheel-content {
    margin-top: 220px;
}

    .home .fragrance-wheel-content h1 {
        margin-top: 0;
    }

.home .modal-dialog {
    max-width: 100%;
    position: absolute;
}

    .home .modal-dialog .close {
        position: absolute;
        right: 10px;
        z-index: 1;
        top: 10px;
        opacity: 1;
        font-size: 50px;
    }

.add-plus {
    font-size: 70px;
    color: #000;
    height: auto !important;
    width: auto !important;
    right: 0px;
}

    .add-plus:hover {
        text-decoration: none;
    }

.rotating-slider ul.slides li {
    color: #fff;
}

    .rotating-slider ul.slides li:nth-of-type(1) {
        background: #3498db;
    }

    .rotating-slider ul.slides li:nth-of-type(2) {
        background: url("http://static.pexels.com/wp-content/uploads/2014/05/car-oldtimer-snow-342-825x550.jpg");
    }

    .rotating-slider ul.slides li:nth-of-type(3) {
        background: #e74c3c;
    }

    .rotating-slider ul.slides li:nth-of-type(4) {
        background: url("http://static.pexels.com/wp-content/uploads/2014/06/analog-camera-old-olympus-om-10-1528-825x550.jpg");
    }

    .rotating-slider ul.slides li:nth-of-type(5) {
        background: #f1c40f;
    }

    .rotating-slider ul.slides li:nth-of-type(6) {
        background: url(http://static.pexels.com/wp-content/uploads/2014/06/bridge-city-night-645-827x550.jpg);
    }

    .rotating-slider ul.slides li .inner {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 2em;
        height: 100%;
        width: 100%;
    }

footer {
    background: #e6e5e5;
    padding-top: 320px;
    padding-bottom: 182px;
}

    footer h3 {
        line-height: 1.4;
    }

    footer .get-in-touch {
        margin-bottom: 250px;
    }

        footer .get-in-touch p {
            line-height: 36px;
            font-size: 21px;
            color: #565656;
        }

        footer .get-in-touch a {
            font-size: 21px;
            font-weight: normal;
            color: #565656;
            padding: 0;
        }

    footer .connect-with-us a {
        font-size: 21px;
        font-weight: bold;
        color: #000;
        padding: 0;
    }

        footer .get-in-touch a:hover, footer .connect-with-us a:hover {
            text-decoration: none;
        }

    footer .get-in-touch .nav {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 42px;
    }

    footer .copyrights {
        font-size: 12px;
    }

.contact .contact-banner {
    padding-top: 100px;
}

    .contact .contact-banner h1 {
        margin-bottom: 60px;
        margin-top: 0;
    }

    .contact .contact-banner .contact-text-right {
        margin-bottom: 120px;
    }

.contact p {
    font-size: 21px;
}

.contact address {
    font-size: 21px;
}

.contact h5 {
    font-weight: normal;
}

.contact .contact-form {
    background: #f4f4f4;
    padding: 60px 0;
}

    .contact .contact-form h1 {
        margin-bottom: 25px;
    }

    .contact .contact-form .form-control {
        margin-bottom: 30px;
        height: 90px;
        padding: 20px 60px;
        border: 1px solid #ccc;
        font-size: 21px;
        line-height: 36px;
        color: #000;
    }

    .contact .contact-form .btn {
        width: 290px;
        height: 90px;
        background: #000;
        font-size: 21px;
        line-height: 36px;
        margin-top: 20px;
    }

.order .form-control {
    border: 1px solid #000;
    margin-bottom: 30px;
    padding-top: 15px;
    text-transform: uppercase;
    font-size: 15px;
    height: 60px;
    padding: 20px 60px;
}

.order select.form-control {
    padding-top: 10px;
}

.order .small-select {
    padding: 10px;
    height: auto;
    width: auto;
}

.order textarea.form-control {
    height: auto !important;
}

.order .btn {
    text-transform: uppercase;
    line-height: 44px;
    padding-top: 15px;
    padding-bottom: 10px;
}

.order .btn-dark {
    background: #000;
}

.order .btn-outline-dark {
    border: 1px solid #000;
}

    .order .btn-outline-dark:hover {
        background: #000;
    }

.order .order-page {
    margin-top: 134px;
    padding-bottom: 100px;
}

    .order .order-page h5 {
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 40px;
    }

    .order .order-page h6 {
        font-weight: bold;
    }

    .order .order-page p {
        font-size: 18px;
    }

    .order .order-page .cart-item p {
        line-height: 44px;
    }

.order .order-page-topbar h2 {
    text-transform: uppercase;
}

.order .wizard-control {
    margin-top: 200px;
    border: 1px solid #000;
}

    .order .wizard-control .nav-item {
        border: 1px solid #000;
        padding-top: 15px;
        padding-bottom: 15px;
        text-transform: uppercase;
    }

.order .nav-pills .nav-link.active,
.order .nav-pills .show > .nav-link {
    background: #000;
}

.order .payment ul {
    margin: 0;
    padding: 0;
}

.order .payment li {
    list-style: none;
}

.review .shipping {
    font-weight: bold;
}

.review h5 {
    font-family: Avenir-Light;
}

.review h6 {
    font-family: Avenir-Light;
    font-weight: bold;
}

.order-details h3, h4, h5, h6 {
    font-family: Avenir-Light;
    font-weight: bold;
}

.our-work .our-work-quote {
    margin: 140px 0;
}

.our-work h1 {
    margin-bottom: 55px;
}

.our-work p {
    font-size: 21px;
}

.our-work .our-work-content {
    position: relative;
}

    .our-work .our-work-content h2 {
        margin: 70px 0 50px;
    }

    .our-work .our-work-content h3 {
        margin: 70px 0 50px;
    }

    .our-work .our-work-content p {
        font-size: 21px;
    }

    .our-work .our-work-content ul.nav {
        margin-bottom: 60px;
        margin-top: 25px;
    }

.our-work .compare-products .compare-products-left,
.our-work .compare-products .compare-products-right {
    padding-top: 160px;
    padding-bottom: 200px;
}

.our-work .compare-products .compare-products-right {
    background: #f4f4f4;
    color: #000;
}

    .our-work .compare-products .compare-products-right .mid-gray {
        background: #eaeaea;
    }

    .our-work .compare-products .compare-products-right .table td,
    .our-work .compare-products .compare-products-right .table th {
        vertical-align: middle;
    }

.about .about-banner h1 {
    margin: 110px 0 60px;
}

.about p {
    font-size: 21px;
}

.about h3 {
    font-size: 80px;
}

.about .about-content {
    margin: 70px 0 50px;
}

    .about .about-content .margin-top {
        margin-top: 105px;
    }

    .about .about-content h3 {
        margin-bottom: 45px;
    }

.about .our-team-vertical h4 {
    font-size: 32px;
    line-height: 42px;
    text-align: right;
    margin: 110px 0 115px;
    font-weight: normal;
}

.about .our-team-vertical .nav {
    text-align: right;
}

    .about .our-team-vertical .nav .nav-link {
        color: #b2b2b2;
        font-size: 21px;
    }

        .about .our-team-vertical .nav .nav-link.active {
            background: none;
            color: #000;
            position: relative;
        }

            .about .our-team-vertical .nav .nav-link.active:before {
                background: url(../img/active-caret.png) no-repeat right;
                position: absolute;
                right: -80px;
                content: "";
                height: 63px;
                width: 32px;
                z-index: 1;
                top: 0;
                bottom: 0;
                margin: auto;
            }

.about .our-team-vertical .tab-content {
    background: #f4f4f4;
    padding-top: 275px;
    padding-bottom: 348px;
}

.about .our-team {
    background: #f4f4f4;
    padding-top: 70px;
}

    .about .our-team h3 {
        margin-bottom: 125px;
    }

    .about .our-team .team-member {
        position: relative;
    }

        .about .our-team .team-member .add-plus {
            width: 152px !important;
            height: 80px !important;
            background: #fff;
            position: absolute;
            bottom: 0;
            left: 0;
        }

            .about .our-team .team-member .add-plus a {
                color: #000;
                height: 80px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                font-weight: 100;
                float: right;
                margin-right: 10px;
            }

                .about .our-team .team-member .add-plus a:hover {
                    text-decoration: none;
                }

.reference-guide h3 {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 70px;
}

.reference-guide .add-plus-left {
    left: 0;
}

.reference-guide .edition-history {
    background: #f4f4f4;
    padding: 168px 0;
}

.reference-guide .add-plus {
    position: absolute;
    top: 0;
    right: 2rem;
    width: 6rem !important;
    height: 6rem !important;
    font-size: 0.875rem;
    text-align: center;
    background-color: #f7a1b2;
    color: #000 !important;
    border-radius: 50%;
    padding: 1rem;
    text-transform: uppercase;
    border: none !important;
}

    .reference-guide .add-plus a:hover {
        text-decoration: none;
    }

    .reference-guide .add-plus h5 {
        font-size: 40px;
        text-align: left;
    }

.reference-guide .small-add-plus {
    width: auto !important;
    height: auto !important;
}

.reference-guide .reference-guide-banner h1 {
    margin-bottom: 80px;
}

.reference-guide .reference-guide-banner .reference-banner {
    position: relative;
}

/*.reference-guide .reference-guide-banner .reference-banner .add-plus {
  right: 0;
}*/

.reference-guide .reference-guide-content .quotes {
    margin-top: 120px;
}

.reference-guide .reference-guide-content .edition33 {
    margin-top: 145px;
}

    .reference-guide .reference-guide-content .edition33 .quote-bottom {
        margin-top: -40px;
    }

.reference-guide .yearly-edition {
    padding: 4rem;
}

    .reference-guide .yearly-edition img {
        margin-bottom: 15px;
    }

    .reference-guide .yearly-edition .carousel-slide-title {
        font-size: 1.125rem;
        color: #000;
        margin-bottom: 10px;
    }

    .reference-guide .yearly-edition .carousel-right-action {
        position: relative;
    }

        .reference-guide .yearly-edition .carousel-right-action .carousel-control-prev,
        .reference-guide .yearly-edition .carousel-right-action .carousel-control-next {
            position: static;
            width: auto;
        }

    .reference-guide .yearly-edition .carousel-controls {
        display: flex;
        justify-content: flex-end;
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .reference-guide .yearly-edition .carousel-right-action .carousel-control-prev img,
    .reference-guide .yearly-edition .carousel-right-action .carousel-control-next img {
        margin-bottom: 0;
        max-width: 28px;
    }

.reference-book-page p, .home p {
    font-size: 1rem !important;
    color: #565656;
}

    .reference-book-page p.text-black {
        color: #000 !important;
    }

.reference-book-page .main-banner-content {
    padding-right: 4rem;
}

.reference-book-page .main-banner-top a.btn {
    border-radius: 0;
    background-color: #000;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 0.5rem;
    line-height: 1.4;
    height: 40px;
}

.reference-book-page .select-country select {
    font-size: 0.875rem;
    text-align: center;
    height: 40px;
    border: 1px solid #000;
}

.reference-book-page .quotes-section {
    background-color: #f4f4f4;
    padding: 4rem;
}

.reference-book-page .quotes-wrapper {
    max-width: calc(100% - 120px);
    margin: 0 auto;
}

    .reference-book-page .quotes-wrapper h2 {
        font-size: 36px;
        line-height: 1.2;
    }

.reference-book-page .history-section {
    padding: 4rem 2rem 0 2rem;
}

    .reference-book-page .history-section .history-wrapper {
        max-width: calc(100% - 40px);
        margin: 0 auto;
        padding-bottom: 2rem;
    }

    .reference-book-page .history-section .img-wrap {
        background-color: #eceded;
        /*padding: 1rem;*/
        height: 100%;
        display: flex;
        align-items: center;
    }

    .reference-book-page .history-section .mobile-padding {
        padding-right: 4rem;
    }

    .reference-book-page .history-section hr {
        border-color: #ccc;
    }

.reference-book-page .pl-section .main-banner-content {
    padding-left: 3rem;
    padding-right: 0;
}

.carousel-side-action .carousel-control-next,
.carousel-side-action .carousel-control-prev {
    top: auto;
    right: 0;
    background: #fff;
    width: 175px;
    opacity: 1;
    height: 168px;
    font-size: 60px;
    color: #000;
}

    .carousel-side-action .carousel-control-next img,
    .carousel-side-action .carousel-control-prev img {
        width: 35px;
    }

    .carousel-side-action .carousel-control-next:hover,
    .carousel-side-action .carousel-control-prev:hover {
        color: #000;
    }

.carousel-side-action .carousel-control-prev {
    right: 175px;
    left: auto;
}

.fragrance {
    padding-bottom: 40px;
    padding-top: 0 !important;
}

    .fragrance h4 {
        font-size: 32px;
        font-weight: normal;
    }

    .fragrance .fragrance-box {
        margin-bottom: 150px;
    }

    .fragrance .fragrance-chevren {
        text-align: right;
        margin-top: 100px;
    }

        .fragrance .fragrance-chevren a {
            width: 100px;
            display: inline-block;
        }

            .fragrance .fragrance-chevren a img {
                width: 35px;
            }

            .fragrance .fragrance-chevren a:hover {
                text-decoration: none;
            }

.perfume-legends .nav {
    margin-top: 100px;
}

.perfume-legends h3 {
    font-size: 52px;
}

.video-section .video {
    position: relative;
}

    .video-section .video img {
        position: relative;
    }

    .video-section .video .video-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: 236px;
        width: 400px;
        text-align: center;
        color: #fff;
    }

        .video-section .video .video-content a {
            color: #fff;
            margin-bottom: 70px;
            display: block;
        }

        .video-section .video .video-content p {
            font-size: 30px;
        }

.compare-products-mobile {
    display: none;
}

.match-scent h4 {
    font-size: 32px;
    margin-bottom: 70px;
}

.match-scent .carousel-left-action .carousel-control-prev,
.match-scent .carousel-left-action .carousel-control-next {
    top: auto;
    bottom: 250px;
    width: 175px;
}

    .match-scent .carousel-left-action .carousel-control-prev img,
    .match-scent .carousel-left-action .carousel-control-next img {
        width: 35px;
    }
/*# sourceMappingURL=styles.css.map */

/* ========Custom CSS============*/
.fs-60 {
    font-size: 55px;
}

.fs-20 {
    font-size: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mainDiv {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-25 {
    padding: 25px !important;
}

.pb-30 {
    padding: 30px !important;
}

.pt-60 {
    padding-top: 55px !important;
}

.pt-48 {
    padding-top: 48px;
}

.pt-0 {
    padding-top: 0 !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-14 {
    margin-top: 14px;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-neg-34 {
    margin-top: -34px;
}

.mb-14 {
    margin-bottom: 14px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.lh-80 {
    line-height: 75px;
}

.lh-44 {
    line-height: 44px;
}

.m-50 {
    margin: 50px 0 50px !important;
}

.w-100 {
    width: 100%;
}

.rotating-wheel {
    height: 360px !important;
}

.home .fragrance-wheel {
    padding: 75px 0 40px;
}

    .home .fragrance-wheel.pd-top {
        padding-top: 200px;
    }

    .home .fragrance-wheel p {
        color: #565656;
    }

    .home .fragrance-wheel a {
        border-bottom: 1px solid #000;
        text-transform: uppercase;
        display: inline-block;
        line-height: 1rem;
        color: #565656;
    }

footer .get-in-touch .nav {
    margin-bottom: 16px;
}

.plusMinusjQ {
    margin-bottom: 0;
}

    .plusMinusjQ .plus, .plusMinusjQ .minus {
        float: right;
        font-weight: 500;
        font-size: 64px;
        cursor: pointer;
    }

    .plusMinusjQ .minus, .plusMinusjQChild {
        display: none;
    }

.home .testimonials {
    padding: 40px 0;
}

.changeLangDiv {
    display: none;
    background: #cfcfcf;
    padding: 20px;
}

.home .wheel-content .changeLangDiv h4 {
    margin-bottom: 40px;
}

.home .wheel-content h4.family-name {
    margin-bottom: 50px !important;
}

a.language, a.iframelanguage {
    display: block;
    cursor: pointer;
    font-weight: normal !important;
}

.changeLangBtn img {
    width: 30px;
}

.family-description.rtl {
    direction: rtl;
    text-align: right;
}

.media-content .chevren {
    text-align: right;
    margin-top: 100px;
}

    .media-content .chevren a {
        width: 100px;
        display: inline-block;
    }

        .media-content .chevren a img {
            width: 35px;
        }

.media-content .media-title {
    padding-bottom: 30px;
    font-size: 30px;
}

    .media-content .media-title .date {
        font-size: 18px;
    }

.media-content .link {
    text-decoration: underline;
}

.media-content .tab-content p {
    margin-bottom: 5px;
}

.background-grey {
    background: #f4f4f4;
}

.matchitdiv {
    display: none;
    background: #cfcfcf;
    padding: 20px;
}

    .matchitdiv h4 {
        margin-bottom: 20px;
    }

    .matchitdiv .link {
        padding: 0;
        padding-bottom: 5px;
    }

.iframelangdiv {
    display: none;
    background: #cfcfcf;
    padding: 20px;
}

    .iframelangdiv h4 {
        margin-bottom: 10px;
        line-height: 1.2 !important;
    }

.iframelangbtn img {
    width: 30px;
}

.iframelangbtn a {
    line-height: 5px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.lh-0 {
    line-height: 0 !important;
}

.booking_calender {
    width: calc(100% - 108px);
    margin-left: 50px;
}

    .booking_calender .slick-slide {
        padding: 5px;
        margin-top: 8px;
    }

    .booking_calender .slick-slide-inner {
        border: 1px solid #333;
        padding: 15px 20px;
        text-align: center;
    }

        .booking_calender .slick-slide-inner .title {
            font-size: 1rem;
            line-height: 1.5625;
            margin-bottom: 5px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .booking_calender .slick-slide-inner .date {
            line-height: 1.25;
            font-size: .875rem;
        }

        .booking_calender .slick-slide-inner > span {
            display: block;
        }

        .booking_calender .slick-slide-inner.disabled {
            opacity: 0.25;
        }

        .booking_calender .slick-slide-inner.active {
            border-color: #F4F4F4;
            background: #F4F4F4;
            color: #000;
            position: relative;
        }

            .booking_calender .slick-slide-inner.active:before {
                content: "";
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 10px 14px;
                border-color: transparent transparent #F4F4F4;
                position: absolute;
                top: -15px;
                z-index: 6;
                left: 47.5%;
                transform: translateX(-47.5%);
            }

    .booking_calender .booking_calender_slick {
        padding: 0 20px;
    }

    .booking_calender .slick-next {
        right: 0;
    }

        .booking_calender .slick-next::before {
            content: '\f285';
        }

    .booking_calender .slick-prev::before {
        content: '\f284';
    }

    .booking_calender .slick-prev {
        left: 0;
    }

        .booking_calender .slick-next::before, .booking_calender .slick-prev::before {
            color: #000;
            display: inline-block;
            font-family: bootstrap-icons !important;
            font-style: normal;
            font-weight: 600 !important;
        }

.slick-slide > div:not(:last-child) {
    margin-bottom: 10px;
}

.product-name {
    font-size: 30px;
    font-family: Avenir-Light;
}

@media only screen and (max-width: 1440px) {
    .rotating-wheel {
        height: 330px !important;
    }
}

@media only screen and (max-width: 1199px) {
    .home .home-banner h1 {
        margin-top: 70px;
    }

    .home .home-banner .founded {
        margin-top: 50px;
    }

    .home .home-banner .read-more {
        margin-bottom: 70px;
    }

    .full-height {
        height: auto !important;
    }

    .rotating-wheel {
        height: 280px !important;
    }
    .headline-4{
        line-height:50px !important;
    }
}

@media only screen and (max-width: 991px) {
    .rotating-wheel {
        height: 240px !important;
    }
}

@media only screen and (max-width: 767px) {
    .rotating-wheel {
        height: 200px !important;
    }

    .container-iframe {
        padding-top: 100% !important;
    }

    .margin-1 {
        margin-top: 100px !important;
    }
}

@media only screen and (max-width: 540px) {
    .rotating-wheel {
        height: 160px !important;
    }
}

@media only screen and (max-width: 480px) {
    .rotating-wheel {
        height: 120px !important;
    }
}

@media (min-width: 768px) {
    .fs-16 {
        font-size: 16px;
    }
}

/* ============New Classes=========*/
.headline {
    font-size: 48px !important;
    line-height: 60px !important;
}

.headline-2 {
    font-size: 36px !important;
}

.headline-3 {
    font-size: 36px !important;
}

.headline-4 {
    font-size: 24px !important;
}

.img-michael-edwards {
    max-width: 80%;
}

.img-fragrance-wheel {
    max-width: 80%;
}

.img-book {
    max-width: 70%;
}
.michaeledwards-video {
    margin-top: 150px;
}
.michaeledwards-video .back {
    margin-bottom: 20px;
}
.michaeledwards-video video{
    width:100%;
}
.home .fragrancewheel {
    margin-top: 70px;
}
.home .fragrancewheel .content {
    padding-right: 4rem;
}

@media screen and (max-width: 767px) {
    .headline {
        font-size: 36px !important;
        line-height: 50px !important;
    }
    .headline-4 {
        font-size: 30px !important;
    }

    .mt-24 {
        margin-top: 24px !important;
    }

    .res-pt-50 {
        padding-top: 50px !important;
    }

    .mt-73 {
        margin-top: 73px !important;
    }

    .perfumelegends, .michaeledwards {
        margin-top: 50px;
    }
    .home .fragrancewheel {
        margin-top: 50px;
    }
    .home .fragrancewheel .content {
        padding-right: 0;
    }
    .img-michael-edwards {
        max-width: 100%;
    }
}

.box-padding {
    padding-bottom: 18px !important;
    padding-top: 18px !important;
}
