html[lang="ar"],
html[lang="ar"] body {
    direction: rtl;
}

body {
    background: #fff;
    color: #7b818c;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow-x: hidden;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* HEADER */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: #fff;
    height: 60px;
    padding: 15px 0;
}

.header-container {
    padding: 0 75px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 10px;
    margin-left: -88px;
}

    .logo img {
        max-width: 100%;
    }

@-webkit-keyframes logo-frame {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(100deg);
    }
}

@keyframes logo-frame {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(100deg);
    }
}

.header-tel {
    float: left;
    margin-right: 156px;
}

    .header-tel a {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.30px;
    }

    .header-tel .fa {
        font-size: 14px;
        margin-right: 5px;
    }

.header-tel-image {
    position: relative;
    float: right;
    margin-left: 20px;
    z-index: 2;
}

    .header-tel-image img {
        max-width: 100%;
    }

.main-nav {
    float: left;
    position: absolute;
    left: 0;
    text-align: center;
    right: 0;
}

    .main-nav ul li {
        display: inline-block;
    }

    .main-nav li:nth-child(3) {
        padding-right: 80px;
    }

    .main-nav li:nth-child(4) {
        padding-left: 80px;
    }

    .main-nav a {
        color: #000;
        font-size: 16px;
        font-weight: 500;
        float: left;
        padding: 3px 28px;
        letter-spacing: 0.50px;
        -webkit-transition: color 0.3s;
        transition: color 0.3s;
    }

        .main-nav a:hover {
            color: #f4823c;
        }

.header-lang {
    position: relative;
    float: left;
    z-index: 2;
}

    .header-lang a {
        color: #000;
        font-weight: 300;
        letter-spacing: 0.40px;
    }

/* MAIN SLIDER */
.home-slider {
    position: relative;
    padding: 0 60px;
    background-color: #fff;
}

.main-slider .item {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    text-align: center;
}

    .main-slider .item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.35);
    }

.main-slider .owl-dots {
    width: 20px;
    position: absolute;
    right: 3.3%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-slider .owl-dot {
    width: 20px;
    height: 20px;
    display: block;
    border: 4px solid transparent;
    border-radius: 50%;
    margin-bottom: 5px;
}

    .main-slider .owl-dot span {
        width: 12px;
        height: 12px;
        display: block;
        border: 2px solid #fff;
        border-radius: 50%;
    }

    .main-slider .owl-dot.active {
        border-color: rgba(255, 255, 255, 0.2);
    }

        .main-slider .owl-dot.active span {
            background-color: #fff;
        }

.slide-text {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    transform: translateY(-35%);
    color: #fff;
    z-index: 3;
}

.slide-title {
    font-family: "Playfair Display", serif;
    font-size: 90px;
    letter-spacing: 0.50px;
}

.slide-border {
    margin: 20px 0;
}

    .slide-border img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }

.slide-desc {
    width: 100%;
    max-width: 805px;
    margin: 0 auto 30px;
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 1px;
}

.slide-link {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.40px;
}

    .slide-link .fa {
        width: 45px;
        height: 45px;
        font-size: 15px;
        margin-left: 10px;
        padding: 12px 0;
        vertical-align: middle;
        background: #dfa85e;
        background: -webkit-gradient(left top, right top, color-stop(0%, #dfa85e), color-stop(53%, #b88b4c));
        background: -webkit-linear-gradient(left, #dfa85e 0%, #b88b4c 53%);
        background: linear-gradient(to right, #dfa85e 0%, #b88b4c 53%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfa85e', endColorstr='#b88b4c', GradientType=1 );
    }

    .slide-link:hover {
        color: #fff;
    }

        .slide-link:hover .fa {
            color: #f4823c;
            background: #fff;
        }

.slider-mouse-icon {
    width: 25px;
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    cursor: pointer;
    -webkit-animation: bounce 1.5s infinite;
    animation: bounce 1.5s infinite;
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

/* SOCIAL AREA */
.social-area {
    position: absolute;
    left: 9px;
    top: 60px;
    text-align: center;
}

.social-area-title {
    position: relative;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: -36px;
    top: 47px;
    color: #0c0c0c;
    font-weight: 500;
    letter-spacing: 1px;
}

    .social-area-title .fa {
        font-size: 18px;
        margin-right: 5px;
    }

.social-area-links {
    margin-top: 100px;
}

    .social-area-links a {
        display: block;
        width: 36px;
        height: 36px;
        margin-bottom: 5px;
        font-size: 18px;
        color: #464646;
        border: 1px solid #fff;
        border-radius: 50%;
        padding: 4px 0;
        -webkit-transition: color 0.3s, background-color 0.3s;
        transition: color 0.3s, background-color 0.3s;
    }

        .social-area-links a:hover {
            color: #fff;
            border-color: transparent;
        }

.facebook:hover {
    background-color: #3B5998;
}

.twitter:hover {
    background-color: #55acee;
}

.instagram:hover {
    background-color: #9b6954;
}

.google-plus:hover {
    background-color: #d34836;
}

.pinterest:hover {
    background-color: #cb2027;
}

/* CINARALTI INFO */
.cinaralti-info .container-fluid {
    padding: 0 75px;
}

.cinaralti-info-wrapper {
    background: url(../img/cinaralti-info-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 0 150px;
}

.cinaralti-info-inner {
    position: relative;
    min-height: 400px;
}

.cinaralti-info-image {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.cinaralti-info-text {
    padding: 60px 50px 20px 0;
    color: #fff;
}

.cinaralti-info-title {
    color: #dea85d;
    font-size: 22px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.cinaralti-info-desc {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.10px;
    line-height: 1.8;
}

/* HOME ADVERTISEMENT */
.home-advertisement {
    padding: 50px 0;
}

.home-advertisement-title {
    color: #333;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    letter-spacing: 2px;
    padding: 0 15px;
    margin-bottom: 40px;
}

.info-column,
.info-inner-column {
    padding: 0;
    position: relative;
}

.info-column-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.info-column-text {
    background-color: #f6eed9;
    padding: 35px;
    height: 375px;
    overflow: hidden;
}

    .info-column-text.medium {
        height: 187.5px;
    }

    .info-column-text.small {
        height: 230px;
    }

    .info-column-text.extra-small {
        height: 145px;
    }

.info-title {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.30px;
    margin-bottom: 10px;
}

.info-desc {
    color: #333;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.30px;
    margin-bottom: 20px;
}

.info-link a {
    display: block;
    color: #bc9052;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .info-link a .fa {
        display: inline-block;
        width: 20px;
        height: 20px;
        font-size: 9px;
        border: 2px solid #bc9052;
        text-align: center;
        padding: 3px 4px;
        margin: 0 10px;
        vertical-align: text-bottom;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .info-link a:hover .fa {
        color: #fff;
        background-color: #bc9052;
    }

.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

.bg-brown {
    background-color: #ece3cc;
}

.bg-lightbrown {
    background-color: #dda75d;
}

    .bg-lightbrown .info-title,
    .bg-lightbrown .info-desc,
    .bg-lightbrown .info-link a {
        color: #fff;
    }

    .bg-lightbrown .info-title {
        font-size: 28px;
    }

    .bg-lightbrown .info-link a .fa {
        border-color: #fff;
    }

.bg-black .info-title,
.bg-black .info-desc {
    color: #fff;
}

.info-inner-column.align-right .info-column-image {
    left: auto;
    right: 0;
}

/* OUR MENUS */
.our-menus {
    overflow-x: hidden;
}

.our-menus-title {
    color: #333;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    letter-spacing: 3px;
    padding: 0 15px;
    margin-bottom: 55px;
    text-align: center;
}

.our-menus-inner {
    background: url(../img/our-menus-bg.jpg) no-repeat center center;
    background-position: 50% 50%;
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0;
}

.om-list-item {
    margin-bottom: 15px;
}

.om-list-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.om-list-image {
    position: relative;
}

    .om-list-image::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: rgba(107, 47, 17, 0.5);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(107, 47, 17, 0.5)), color-stop(69%, rgba(107, 47, 17, 0.7)), color-stop(100%, #6b2f11));
        background: -webkit-linear-gradient(top, rgba(107, 47, 17, 0.5) 0%, rgba(107, 47, 17, 0.7) 69%, #6b2f11 100%);
        background: linear-gradient(to bottom, rgba(107, 47, 17, 0.5) 0%, rgba(107, 47, 17, 0.7) 69%, #6b2f11 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b2f11', endColorstr='#6b2f11', GradientType=0 );
        z-index: 1;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .om-list-image img {
        width: 100%;
    }

.om-image-text {
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 13%;
    right: 13%;
    color: #fff;
    text-align: center;
    z-index: 2;
    opacity: 0;
    -webkit-transition: top 0.3s, opacity 0.3s;
    transition: top 0.3s, opacity 0.3s;
}

.om-image-desc,
.om-image-title {
    font-size: 22px;
    letter-spacing: 0.30px;
}

.om-image-desc {
    font-weight: 200;
}

.om-image-title {
    font-weight: 500;
    margin: 25px 0 12px;
}

.om-image-arrow {
    display: inline-block;
    width: 26px;
    height: 26px;
    font-size: 10px;
    border: 2px solid #fff;
    padding: 3px 0;
}

.om-list-item:hover .om-list-image::before {
    opacity: 1;
}

.om-list-item:hover .om-image-text {
    top: 50%;
    opacity: 1;
}

/* PHOTO GALLERY */
.home-gallery {
    background: url(../img/photo-gallery-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    padding: 45px 0;
    overflow-x: hidden;
}

.home-gallery-inner {
    width: 100%;
    max-width: 955px;
    margin: 0 auto;
}

.home-gallery-main-title {
    color: #525252;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
}

.home-gallery-item {
    margin-bottom: 15px;
}

.home-gallery-image {
    position: relative;
}

    .home-gallery-image > img {
        width: 100%;
    }

    .home-gallery-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #231b14;
        background: -webkit-gradient(left top, left bottom, color-stop(0%, #231b14), color-stop(100%, #f27d09));
        background: -webkit-linear-gradient(top, #231b14 0%, #f27d09 100%);
        background: linear-gradient(to bottom, #231b14 0%, #f27d09 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#231b14', endColorstr='#f27d09', GradientType=0 );
        z-index: 1;
        opacity: 0;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

.home-gallery-title {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.50px;
}

.home-gallery-icon {
    position: absolute;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    color: #daa55b;
    font-size: 30px;
    padding: 15px 0;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    z-index: 2;
    opacity: 0;
    -webkit-transition: top 0.3s, opacity 0.3s, color 0.3s, background-color 0.3s;
    transition: top 0.3s, opacity 0.3s, color 0.3s, background-color 0.3s;
}

    .home-gallery-icon:hover {
        background-color: #fff;
        color: #f4823c;
    }

.home-gallery-title {
    position: absolute;
    left: 40px;
    bottom: 35px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.home-gallery-item:hover .home-gallery-image::before {
    opacity: 0.5;
}

.home-gallery-item:hover .home-gallery-icon {
    top: 50%;
    opacity: 1;
}

/* INNER PAGES */
.page-content {
    padding-bottom: 40px;
}

.page-banner {
    height: 300px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 60px;
}

.page-nav {
    margin-bottom: 15px;
}

    .page-nav ul li, .page-nav ul li a {
        display: inline-block;
    }

        .page-nav ul li a {
            color: #999;
            font-size: 13px;
            letter-spacing: 1px;
        }

            .page-nav ul li a:last-child {
                color: #525252;
            }

        .page-nav ul li:not(:last-child)::after {
            display: inline-block;
            color: #999;
            content: "/";
            margin: 0 5px 0 7px;
        }

        .page-nav ul li a:hover {
            color: #000;
        }

.page-title-border {
    position: relative;
    margin-bottom: 30px;
}

    .page-title-border::after {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        border-top: 1px solid #ddd;
    }

.page-title {
    position: relative;
    display: inline-block;
    color: #525252;
    font-size: 30px;
    font-weight: 700;
    padding-right: 20px;
    background-color: #fff;
    margin: 0;
    z-index: 1;
}

.photo-gallery-list-item {
    margin-bottom: 30px;
}

.photo-gallery-list-inner {
    position: relative;
    padding-bottom: 74%;
    overflow: hidden;
}

    .photo-gallery-list-inner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(244, 130, 60, 0.4);
        opacity: 0;
        z-index: 1;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .photo-gallery-list-inner img {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .photo-gallery-list-inner .fa {
        position: absolute;
        left: 50%;
        top: 45%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 84px;
        height: 84px;
        color: #fff;
        font-size: 30px;
        padding: 25px 0;
        border: 2px solid #fff;
        border-radius: 50%;
        text-align: center;
        z-index: 2;
        opacity: 0;
        -webkit-transition: top 0.3s, opacity 0.3s, color 0.3s, background-color 0.3s;
        transition: top 0.3s, opacity 0.3s, color 0.3s, background-color 0.3s;
    }

        .photo-gallery-list-inner .fa:hover {
            color: #f4823c;
            background-color: #fff;
        }

    .photo-gallery-list-inner:hover::after {
        opacity: 1;
    }

    .photo-gallery-list-inner:hover .fa {
        top: 50%;
        opacity: 1;
    }

/* POPUP ANIMATION */
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/* PHOTO GALLERY */
.gallery-category-grid {
    margin: 1px 0 25px;
}

.gallery-grid-item {
    padding: 0 0.5px;
}

    .gallery-grid-item.active .gallery-grid-inner::after {
        background-color: rgba(0, 100, 46, 0.2);
    }

.gallery-grid-inner {
    position: relative;
    overflow: hidden;
    padding-bottom: 24%;
}

    .gallery-grid-inner::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .gallery-grid-inner:hover::after {
        background-color: rgba(0, 100, 46, 0.2);
    }

    .gallery-grid-inner img {
        width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
    }

.gallery-grid-title {
    position: absolute;
    left: 40px;
    bottom: 20px;
    font-size: 22px;
    color: #fff;
    z-index: 2;
}

/* PRODUCT LIST */
.product-list-item {
    margin-bottom: 30px;
}

.product-list-image img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.product-list-title {
    color: #525252;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 0;
    text-align: center;
}

.product-category-list .gallery-grid-inner {
    padding-bottom: 40%;
}

/* COMMENTS */
.page-content.comments {
    padding-top: 45px;
    padding-bottom: 45px;
}

.comments-list,
.comments-form {
    padding: 0;
}

.comments-form-inner {
    background: #f4823c url(../img/comments-form-bg.png) no-repeat top -20px center;
    padding: 145px 35px 40px;
}

.comments-form-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.comments-form ::-webkit-input-placeholder {
    color: #fff;
    font-weight: 600;
}

.comments-form ::-moz-placeholder {
    color: #fff;
    font-weight: 600;
}

.comments-form :-ms-input-placeholder {
    color: #fff;
    font-weight: 600;
}

.comments-form :-moz-placeholder {
    color: #fff;
    font-weight: 600;
}

.comments-form .online-date-form input,
.comments-form .online-date-form textarea,
.comments-form .online-date-form select {
    font-size: 13px;
    color: #fff;
    border-color: #fff;
    font-weight: 500;
}

    .comments-form .online-date-form input[type="submit"] {
        width: 100px;
        font-size: 16px;
        font-weight: 700;
        background: #fff;
        color: #f4823c;
    }

        .comments-form .online-date-form input[type="submit"]:hover {
            background: #d6d1d1;
            color: #fff;
        }

.comments-list-item {
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #cecece;
}

.comment-date {
    color: #999;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
}

.comment-name {
    color: #000;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 7px 0 20px;
}

.comment-desc {
    color: #525252;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* CONTACT */
.contact-info {
    padding: 0 45px 0 0;
}

.contact-title {
    color: #525252;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ci-top {
    position: relative;
}

.ci-box {
    background-color: #000;
    min-height: 268px;
    text-align: center;
    padding: 5%;
}

    .ci-box span {
        display: block;
        color: #fff;
        font-size: 18px;
        font-weight: 200;
        letter-spacing: 4px;
    }

    .ci-box a {
        display: block;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 20px 0;
    }

    .ci-box strong {
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

.ci-image {
    padding: 0;
}

    .ci-image img {
        max-width: 100%;
        min-height: 268px;
    }

.contact-social ul {
    margin: 0 25px 0 30px;
}

    .contact-social ul li,
    .contact-social ul li a {
        float: left;
    }

        .contact-social ul li a {
            color: #fff;
            font-size: 18px;
            width: 50px;
            height: 50px;
            padding: 12px;
            margin-right: 5px;
            text-align: center;
            border-radius: 5px;
            -webkit-transition: -webkit-transform 0.3s;
            transition: -webkit-transform 0.3s;
            transition: transform 0.3s;
            transition: transform 0.3s, -webkit-transform 0.3s;
        }

            .contact-social ul li a:hover {
                -webkit-transform: translateY(-5px);
                -ms-transform: translateY(-5px);
                transform: translateY(-5px);
            }

.c-facebook {
    background-color: #3B5998;
}

.c-twitter {
    background-color: #55acee;
}

.c-instagram {
    background-color: #9b6954;
}

.ci-bottom {
    margin-top: 40px;
}

.contact-address {
    float: left;
    width: 57%;
}

    .contact-address,
    .contact-address a {
        display: block;
        text-align: right;
        color: #525252;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

        .contact-address a {
            margin-top: 5px;
        }

            .contact-address a img {
                margin-right: 5px;
            }

/* FOOTER */
.main-footer {
    background: url(../img/footer-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    padding: 45px 0 35px;
}

.footer-links {
    margin: 20px 0 30px;
}

    .footer-links a {
        display: inline-block;
        color: #fff;
        font-size: 16px;
        letter-spacing: 0.40px;
        padding: 10px 40px;
    }

        .footer-links a:hover {
            color: #f4823c;
            text-decoration: underline;
        }

.footer-grid {
    margin-bottom: 23%;
}

.footer-grid-item {
    display: inline-block;
    margin-bottom: 15px;
    border-right: 1px solid #7c868d;
    padding: 0 35px;
    text-align: left;
}

.footer-grid-inner {
    position: relative;
    padding-left: 45px;
}

    .footer-grid-inner img {
        position: absolute;
        left: 0;
        top: 0;
    }

.footer-grid-title {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-grid-subtitle,
.footer-grid-subtitle a {
    display: block;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.40px;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    color: #fff;
    background-color: #dfa85c;
    border-radius: 50%;
    letter-spacing: 0.40px;
    margin: 2px;
    padding: 7px 0;
    text-align: center;
}

.footer-copyright {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.40px;
    margin-bottom: 15px;
}

/* ONLINE DATE */
.online-date-trigger {
    width: 60px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
}

    .online-date-trigger img {
        width: 100%;
    }

.online-date-container {
    width: 350px;
    min-height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    padding: 90px 40px;
    z-index: 10;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    z-index: 10;
}

    .online-date-container.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

.online-date-close {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    background: #f4823c;
    text-align: center;
    padding: 3px 0;
    cursor: pointer;
}

.online-date-title {
    color: #f4823c;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.30px;
    margin-bottom: 20px;
}

.online-date-form input,
.online-date-form textarea,
.online-date-form select {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    color: #777;
    padding: 0 20px;
    outline: none;
    font-size: 16px;
    font-style: inherit;
    font-weight: 300;
    line-height: 50px;
    letter-spacing: 0.30px;
    background: none;
}

.online-date-form textarea {
    height: auto;
    padding-top: 10px;
    line-height: 16px;
    resize: none;
}

.online-date-form input[type="submit"] {
    display: inline-block;
    color: #fff;
    width: 165px;
    height: 50px;
    line-height: 30px;
    font-weight: 600;
    background: #f4823c;
    border: none;
}

    .online-date-form input[type="submit"]:hover {
        background: #ef630e;
    }

.online-date-form .form-group {
    margin-bottom: 10px;
}

.od-text-seperate {
    color: #f4823c;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.30px;
    position: relative;
    text-align: center;
    margin: 30px 0 25px;
}

    .od-text-seperate span {
        display: inline-block;
        padding: 0 10px;
        background-color: #fff;
    }

    .od-text-seperate::before, .od-text-seperate::after {
        content: "";
        position: absolute;
        top: 15px;
        width: 30%;
        border-top: 1px solid #ccc;
    }

    .od-text-seperate::before {
        left: 0;
    }

    .od-text-seperate::after {
        right: 0;
    }

.od-text-section {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.30px;
    margin-bottom: 15px;
}

    .od-text-section a {
        display: block;
        color: #333;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

        .od-text-section a:hover {
            color: #f4823c;
        }

    .od-text-section + .od-text-section {
        padding-top: 20px;
        position: relative;
    }

        .od-text-section + .od-text-section::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: 0 auto;
            width: 20px;
            border-top: 1px solid #ccc;
        }

/* TIMEPICKER CSS */
.bootstrap-timepicker {
    position: relative;
}

    .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
        left: auto;
        right: 0;
    }

        .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
            left: auto;
            right: 12px;
        }

        .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
            left: auto;
            right: 13px;
        }

    .bootstrap-timepicker .input-group-addon {
        cursor: pointer;
    }

        .bootstrap-timepicker .input-group-addon i {
            display: inline-block;
            width: 16px;
            height: 16px;
        }

.bootstrap-timepicker-widget.dropdown-menu {
    padding: 4px;
}

    .bootstrap-timepicker-widget.dropdown-menu.open {
        display: inline-block;
    }

    .bootstrap-timepicker-widget.dropdown-menu:before {
        border-bottom: 7px solid rgba(0, 0, 0, 0.2);
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        content: "";
        display: inline-block;
        position: absolute;
    }

    .bootstrap-timepicker-widget.dropdown-menu:after {
        border-bottom: 6px solid #FFFFFF;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        content: "";
        display: inline-block;
        position: absolute;
    }

.bootstrap-timepicker-widget.timepicker-orient-left:before {
    left: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-left:after {
    left: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:before {
    right: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:after {
    right: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:before {
    top: -7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:after {
    top: -6px;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #ffffff;
}

.bootstrap-timepicker-widget a.btn,
.bootstrap-timepicker-widget input {
    border-radius: 4px;
}

.bootstrap-timepicker-widget table {
    width: 100%;
    margin: 0;
}

    .bootstrap-timepicker-widget table td {
        text-align: center;
        height: 30px;
        margin: 0;
        padding: 2px;
    }

        .bootstrap-timepicker-widget table td:not(.separator) {
            min-width: 30px;
        }

        .bootstrap-timepicker-widget table td span {
            width: 100%;
        }

        .bootstrap-timepicker-widget table td a {
            border: 1px transparent solid;
            width: 100%;
            display: inline-block;
            margin: 0;
            padding: 8px 0;
            outline: 0;
            color: #333;
        }

            .bootstrap-timepicker-widget table td a:hover {
                text-decoration: none;
                background-color: #eee;
                border-radius: 4px;
                border-color: #ddd;
            }

            .bootstrap-timepicker-widget table td a i {
                margin-top: 2px;
                font-size: 18px;
            }

        .bootstrap-timepicker-widget table td input {
            width: 25px;
            margin: 0;
            text-align: center;
        }

.bootstrap-timepicker-widget .modal-content {
    padding: 4px;
}

@media (min-width: 767px) {
    .bootstrap-timepicker-widget.modal {
        width: 200px;
        margin-left: -100px;
    }
}

@media (max-width: 767px) {
    .bootstrap-timepicker {
        width: 100%;
    }

        .bootstrap-timepicker .dropdown-menu {
            width: 100%;
        }
}

/* MOBILE MENU */
.mobile-menu {
    background-color: #016529;
    display: none;
    padding-bottom: 25px;
    padding-top: 90px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 300;
    padding-left: 0;
    height: 100%;
    overflow: auto;
    right: -100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu ul {
        padding: 0 33px;
    }

        .mobile-menu ul li {
            display: block;
        }

    .mobile-menu .mm-parent {
        display: block;
        padding: 10px 0 20px;
        text-align: right;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu .mm-child {
        padding: 0 21px 10px;
    }

.mm-child li {
    border-right: 1px solid #fff;
}

.mobile-menu .mm-child a {
    display: block;
    padding: 5px 15px;
    text-align: right;
    color: #fff;
}

.mobile-menu-close {
    color: white;
    font-size: 40px;
    position: absolute;
    right: 31px;
    top: 0;
    display: block;
    color: #fff;
    cursor: pointer;
}

.hamburger {
    position: relative;
    float: right;
    display: none;
    width: 40px;
    height: 24px;
    margin: 0 15px;
    cursor: pointer;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

    .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
        background-color: #000;
        position: absolute;
        width: 40px;
        height: 4px;
        border-radius: 4px;
    }

        .hamburger-inner::after, .hamburger-inner::before {
            display: block;
            content: '';
        }

        .hamburger-inner::before {
            top: -10px;
        }

        .hamburger-inner::after {
            bottom: -10px;
        }

/* MEDIA */
@media (max-width: 1780px) {
    .main-nav a {
        padding: 3px 10px;
    }
}

@media (max-width: 1590px) {
    .logo {
        width: 150px;
        margin-left: -121px;
        left: 777px;
    }

    .main-nav {
        position: static;
        margin-left: 13%;
    }

        .main-nav a {
            font-size: 13px;
        }
}

@media (max-width: 1500px) {
    .logo {
        margin-left: -75px;
        left: 50%;
    }

    .header-tel-image {
        overflow: hidden;
    }

        .header-tel-image img {
            max-width: none;
        }

        .header-tel-image.support-tel {
            width: 30px;
        }

        .header-tel-image.whatsapp-tel {
            width: 22px;
        }

    .main-nav {
        position: absolute;
        margin: 0;
    }

        .main-nav a {
            padding: 3px 20px;
        }

        .main-nav li:nth-child(3) {
            padding-right: 40px;
        }

        .main-nav li:nth-child(4) {
            padding-left: 40px;
        }
}

@media (max-width: 1529px) {
    .slide-title {
        font-size: 60px;
    }

    .main-slider .owl-dots {
        right: 10px;
    }

    .slide-border {
        margin: 5px 0;
    }

    .slide-desc {
        font-size: 20px;
    }

    .slide-link .fa {
        width: 25px;
        height: 25px;
        font-size: 9px;
        padding: 5px 0;
    }

    .cinaralti-info-text {
        padding: 2% 50px 2% 0;
    }

    .info-title {
        font-size: 22px;
    }

    .info-desc,
    .info-link a {
        font-size: 16px;
    }

    .contact-address {
        float: left;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

        .contact-address a {
            text-align: left;
        }

    .cinaralti-info-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 1199px) {
    .logo {
        width: 150px;
        left: 140px;
    }

    .header-container {
        padding: 0 75px 0 220px;
    }

    .header-tel {
        margin: 0;
    }

        .header-tel a {
            font-size: 14px;
        }

    .main-nav {
        display: none;
    }

    .hamburger,
    .mobile-menu {
        display: block;
    }

    .slide-title {
        font-size: 50px;
    }

    .slide-border {
        display: none;
    }

    .info-column-text {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .header-container {
        padding: 0 15px 0 180px;
    }

    .home-slider {
        padding: 0;
    }

    .social-area,
    .main-slider .owl-dots,
    .main-nav {
        display: none;
    }

    .logo {
        width: 150px;
        margin-left: 0;
        left: 0;
    }

    .header-tel {
        margin-left: 150px;
    }

    .cinaralti-info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cinaralti-info-desc {
        font-size: 16px;
    }

    .info-column-text {
        padding: 15px;
    }

    .info-desc, .info-link a {
        font-size: 13px;
    }

    .footer-links a {
        padding: 10px 20px;
    }

    .online-date-trigger,
    .online-date-container {
        position: fixed;
    }

    .online-date-trigger {
        top: 60px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

        .online-date-trigger img:last-child {
            display: none;
        }

    .online-date-container {
        height: 100%;
    }

    .ci-image img,
    .ci-box {
        min-height: inherit;
    }

    .cinaralti-info .container-fluid {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .main-header {
        height: auto;
    }

    .footer-grid-item {
        display: block;
        text-align: center;
    }

    .footer-grid-inner {
        display: inline-block;
    }

    .slide-title {
        font-size: 30px;
    }

    .slide-desc {
        font-size: 18px;
    }

    .cinaralti-info-inner {
        min-height: inherit;
    }

    .cinaralti-info-text {
        padding: 15px 15px 30px;
    }

    .home-advertisement-title {
        font-size: 24px;
    }

    .info-column-image {
        position: static;
        padding-bottom: 50%;
    }

    .info-column-text,
    .info-column-text.small {
        height: inherit;
    }

    .home-gallery-image,
    .om-list-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .online-date-trigger {
        top: auto;
        bottom: 0;
    }

    .page-content {
        padding: 0 15px 40px 15px;
    }

    .ci-image img {
        width: 100%;
    }

    .contact-info {
        padding: 0;
    }

    .contact-form {
        margin-top: 25px;
    }
    .menu-content {
        padding-top: 25px;
    }
    .cinaralti-info {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .our-menus-title,
    .home-gallery-main-title {
        font-size: 30px;
    }

    .online-date-container {
        width: 100%;
    }

    .contact-social ul {
        width: 100%;
        margin: 10px 0;
    }

    .contact-social img {
        display: none;
    }

    .header-lang {
        margin-right: 20px;
    }

    .header-tel-image {
        float: left;
        margin: 5px 10px 0 0;
    }
}

/* MIN */
@media (min-width: 768px) {
    .comments-list {
        padding-right: 60px;
    }
}

@media (min-width: 992px) {
    .om-list-item {
        width: 20%;
        padding: 0 12px;
    }

    .product-category-list .gallery-grid-item {
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .our-menus-list .row,
    .home-gallery-inner .row {
        margin: 0 -12px;
    }
}

@media (min-width: 1530px) {
    .container {
        width: 1500px;
    }

    .product-list .row {
        margin: 0 -20px;
    }

    .product-list-item {
        width: 20%;
        padding: 0 20px;
    }

    .comments-list {
        width: 77%;
    }

    .comments-form {
        width: 23%;
    }
}
