/************************/
/* meetthedesigner page */
/************************/
#meetthedesigner {
    margin: 40px 0;
}

.Headtitle {
    text-align: center;
    margin-bottom: 40px;
}

    .Headtitle h3 {
        font-size: 30px;
        color: #e6e6e6;
        position: relative;
        display: inline-block;
    }

        .Headtitle h3 .insidertitle {
            position: absolute;
            top: 15px;
            left: 15%;
            font-size: 22px;
            color: #000;
        }

    .Headtitle .line {
        width: 70px;
        background: #DCB452;
        height: 3px;
        margin: 10px auto;
    }

#meetthedesigner .desc {
    text-align: center;
    margin-top: 20px;
}

    #meetthedesigner .desc p {
        color: #000;
        line-height: 1.8;
        font-size: 14px;
    }

#meetthedesigner .image {
    text-align: center;
}

    #meetthedesigner .image img {
        width: 100%;
        height: auto;
    }

/************************/
/* New Update 20/7/2020 */
/***********************/
.video-js {
    width: 100%;
    height: 200px;
    margin-bottom: 5px;
}

    .video-js .vjs-big-play-button {
        font-size: 35px;
        line-height: 1.4em;
        height: 48px;
        width: 68px;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        padding: 0;
        cursor: pointer;
        opacity: 1;
        border: none;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 12px;
        transition: all 0.4s;
    }

    .video-js:hover .vjs-big-play-button {
        background-color: red;
    }

/*****************/
/* About Us page */
/****************/
#AboutUs {
    margin: 40px 0;
}


#AboutUs .TheBrand {
    padding: 30px;
    background-color: #F1F2F4;
    box-shadow: 1px 5px 10px #DDD;
}

    #AboutUs .TheBrand .desc {
        text-align: center;
        margin-top: 10px;
    }

        #AboutUs .TheBrand .desc p {
            color: #000;
            line-height: 1.8;
            font-size: 14px;
        }

    #AboutUs .TheBrand .image {
        text-align: center;
    }

        #AboutUs .TheBrand .image img {
            width: 100%;
            height: auto;
        }

#AboutUs .WhatSetsUsApart {
    padding: 30px;
}

    #AboutUs .WhatSetsUsApart .desc {
        text-align: center;
        margin-top: 10px;
    }

        #AboutUs .WhatSetsUsApart .desc p {
            color: #000;
            line-height: 1.8;
            font-size: 14px;
        }

    #AboutUs .WhatSetsUsApart .image {
        text-align: center;
    }

        #AboutUs .WhatSetsUsApart .image img {
            width: 100%;
            height: auto;
        }

#AboutUs .LialyCollections {
    padding: 30px;
    background-color: #F1F2F4;
    box-shadow: 1px 5px 10px #DDD;
}

    #AboutUs .LialyCollections .desc {
        text-align: center;
        margin-top: 10px;
    }

        #AboutUs .LialyCollections .desc p {
            color: #000;
            line-height: 1.8;
            font-size: 14px;
        }

    #AboutUs .LialyCollections .image {
        text-align: center;
    }

        #AboutUs .LialyCollections .image img {
            width: 100%;
            height: auto;
        }

/*****************/
/* Gallery page */
/****************/
#Gallery {
    background-image: url(../images/GalleryBG.png);
    background-size: cover;
    position: relative;
    height: 1000px;
}

.overlayGallery {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
}


#Gallery .content {
    padding: 40px 0;
    text-align: center;
    color: #FFF;
}

.galleryItem {
    width: 100%;
    background-color: #FFF;
    padding: 10px;
    margin-bottom: 30px;
}

    .galleryItem:hover .image img {
        transform: scale(1.1);
    }

    .galleryItem:hover .title h5 {
        color: #DCB452;
    }

    .galleryItem .image {
        width: 100%;
        height: 180px;
        margin-bottom: 10px;
        overflow: hidden;
    }

        .galleryItem .image img {
            width: 100%;
            height: 100%;
            transition: all 0.5s ease-in-out;
        }

    .galleryItem .title h5 {
        color: #8C8C8C;
        font-size: 16px;
        transition: all 0.5s ease-in-out;
    }

#Gallery .simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

#Gallery .simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

    #Gallery .simple-pagination li a,
    #Gallery .simple-pagination li span {
        color: #FFF;
        padding: 5px 10px;
        text-decoration: none;
        background-color: transparent;
        border-radius: 0px;
        box-shadow: none;
        border: 1px solid #FFF;
        outline: none;
    }

#Gallery .simple-pagination .current {
    background-color: #DCB452;
    border-color: #DCB452;
}

#Gallery .simple-pagination .prev.current,
#Gallery .simple-pagination .next.current {
    background-color: transparent;
    color: #FFF;
    border: 1px solid #FFF;
}

#Gallery .page-link:hover {
    color: #FFF;
    background: #DCB452;
    border-color: #DCB452;
}

/*********************/
/* Gallery Video page */
/*********************/
#GalleryVideo {
    margin: 40px 0;
}

.GalleryVideoItem {
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
}

    .GalleryVideoItem:hover .date span,
    .GalleryVideoItem:hover .title h5 {
        color: #DCB452;
    }

    .GalleryVideoItem iframe {
        width: 100%;
        height: 200px;
    }

    .GalleryVideoItem .date {
        margin-bottom: 5px;
    }

        .GalleryVideoItem .date span {
            font-size: 14px;
            color: #8C8C8C;
            transition: all 0.2s ease-in-out;
        }


        .GalleryVideoItem .title_video h5 {
            font-size: 16px;
            color: #000;
            transition: all 0.2s ease-in-out;
        }


#GalleryVideo .simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

#GalleryVideo .simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

    #GalleryVideo .simple-pagination li a,
    #GalleryVideo .simple-pagination li span {
        color: #DCB452;
        padding: 5px 10px;
        text-decoration: none;
        background-color: transparent;
        border-radius: 0px;
        box-shadow: none;
        border: 1px solid #DCB452;
        outline: none;
    }

#GalleryVideo .simple-pagination .current {
    background-color: #DCB452;
    border-color: #DCB452;
    color: #FFF;
}

#GalleryVideo .simple-pagination .prev.current,
#GalleryVideo .simple-pagination .next.current {
    background-color: transparent;
    color: #DCB452;
    border: 1px solid #DCB452;
}

#GalleryVideo .page-link:hover {
    color: #FFF;
    background: #DCB452;
    border-color: #DCB452;
}

@media only screen and (max-width: 600px) {
    /*********************/
    /* Gallery Video page */
    /*********************/
    .GalleryVideoItem iframe {
        height: auto;
    }

    .GalleryVideoItem .date span {
        font-size: 12px;
    }

    .GalleryVideoItem .title_video h5 {
        font-size: 14px;
    }
    /****************/
    /* Gallery page */
    /****************/
    #Gallery {
        height: 3655px;
    }

    .galleryItem .image {
        height: auto;
    }

    .galleryItem .title h5 {
        font-size: 14px;
    }
    /************************/
    /* meetthedesigner page */
    /************************/
    .Headtitle h3 {
        font-size: 23px;
    }

        .Headtitle h3 .insidertitle {
            font-size: 16px;
        }

    .Headtitle .line {
        width: 50px;
    }

    #meetthedesigner .desc {
        margin-bottom: 20px;
    }

        #meetthedesigner .desc p {
            font-size: 12px;
        }
    /*****************/
    /* About Us page */
    /****************/
    #AboutUs .TheBrand .desc p,
    #AboutUs .WhatSetsUsApart .desc p,
    #AboutUs .LialyCollections .desc p {
        font-size: 12px;
    }

    #AboutUs .LialyCollections,
    #AboutUs .TheBrand {
        padding: 20px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    /*********************/
    /* Gallery Video page */
    /*********************/
    .GalleryVideoItem .date span {
        font-size: 12px;
    }

    .GalleryVideoItem .title_video h5 {
        font-size: 14px;
    }
    /****************/
    /* Gallery page */
    /****************/
    #Gallery {
        height: 1765px;
    }

    .galleryItem .title h5 {
        font-size: 14px;
    }
    /************************/
    /* meetthedesigner page */
    /************************/
    .Headtitle h3 {
        font-size: 25px;
    }

        .Headtitle h3 .insidertitle {
            font-size: 17px;
        }

    .Headtitle .line {
        width: 50px;
    }

    #meetthedesigner .desc {
        margin-bottom: 20px;
    }

        #meetthedesigner .desc p {
            font-size: 12px;
        }
    /*****************/
    /* About Us page */
    /****************/
    #AboutUs .TheBrand .desc p,
    #AboutUs .WhatSetsUsApart .desc p,
    #AboutUs .LialyCollections .desc p {
        font-size: 12px;
    }

    #AboutUs .LialyCollections,
    #AboutUs .TheBrand {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /*********************/
    /* Gallery Video page */
    /*********************/
    .GalleryVideoItem .date span {
        font-size: 12px;
    }

    .GalleryVideoItem .title_video h5 {
        font-size: 14px;
    }
    /****************/
    /* Gallery page */
    /****************/
    #Gallery {
        height: 1100px;
    }

    .galleryItem .image {
        height: 145px;
    }

    .galleryItem .title h5 {
        font-size: 14px;
    }
    /************************/
    /* meetthedesigner page */
    /************************/
    .Headtitle h3 {
        font-size: 25px;
    }

        .Headtitle h3 .insidertitle {
            font-size: 17px;
        }

    .Headtitle .line {
        width: 50px;
    }

    #meetthedesigner .desc p {
        font-size: 12px;
    }
    /*****************/
    /* About Us page */
    /****************/
    #AboutUs .TheBrand .desc p,
    #AboutUs .WhatSetsUsApart .desc p,
    #AboutUs .LialyCollections .desc p {
        font-size: 12px;
    }

    #AboutUs .LialyCollections,
    #AboutUs .TheBrand {
        padding: 20px;
    }
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
    /****************/
    /* Gallery page */
    /****************/
    #Gallery {
        height: 880px;
    }

    .galleryItem .image {
        height: 145px;
    }
}
