/** Google Font **/
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500');
@import url('https://fonts.googleapis.com/css?family=Arapey:400,400i');

@font-face {
    font-family: 'butlerlight';
    src: url('../fonts/Butler-Light.eot');
    src: url('../fonts/Butler-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Butler-Light.woff2') format('woff2'), url('../fonts/Butler-Light.woff') format('woff'), url('../fonts/Butler-Light.ttf') format('truetype'), url('../fonts/Butler-Light.svg') format('svg');
}

@font-face {
    font-family: 'butlermedium';
    src: url('../fonts/Butler-Medium.eot');
    src: url('../fonts/Butler-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Butler-Medium.woff2') format('woff2'), url('../fonts/Butler-Medium.woff') format('woff'), url('../fonts/Butler-Medium.ttf') format('truetype'), url('../fonts/Butler-Medium.svg') format('svg');
}

@font-face {
    font-family: 'butlerregular';
    src: url('../fonts/Butler.eot');
    src: url('../fonts/Butler.eot?#iefix') format('embedded-opentype'), url('../fonts/Butler.woff2') format('woff2'), url('../fonts/Butler.woff') format('woff'), url('../fonts/Butler.ttf') format('truetype'), url('../fonts/Butler.svg') format('svg');
}

/** Usage in CSS 
	font-family: 'Quicksand', sans-serif;
	font-family: 'butlerlight', serif;
	font-family: 'butlermedium', serif;
	font-family: 'butlerregular', serif;
	font-family: 'Arapey', serif;
**/

html, body {
    height: 100%;
}

body {
    font-family: 'Quicksand', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    color: #1c1c1c;
    position: relative;
}

a,
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    a:focus {
        outline: none;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'butlerlight', serif;
    font-weight: 100;
}

.clr_float {
    clear: both;
}

.clr {
    height: 10px;
    display: block;
    width: 100%;
}

.pt75 {
    padding-top: 75px !important;
}

.pt50 {
    padding-top: 50px;
}

.pt40 {
    padding-top: 40px;
}

.pt30 {
    padding-top: 30px;
}

.pr0 {
    padding-right: 0;
}

.pl0 {
    padding-left: 0;
}

.pr10 {
    padding-right: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr20 {
    padding-right: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pr30 {
    padding-right: 30px;
}

.pl30 {
    padding-left: 30px;
}

.pr40 {
    padding-right: 40px;
}

.pl40 {
    padding-left: 40px;
}

.plr0 {
    padding-left: 0;
    padding-right: 0;
}

.plr10 {
    padding-left: 10px;
    padding-right: 10px;
}

.plr20 {
    padding-left: 20px;
    padding-right: 20px;
}

.plr30 {
    padding-left: 30px;
    padding-right: 30px;
}

.mar_bott {
    margin-bottom: 30px;
}

.vertical_line_wrap {
    position: relative;
}

.vertical_line {
    position: absolute;
    top: 0;
    left: 30%;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}

/*** Loader ***/

#page_loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #222;
}

.loader_wrap {
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    position: relative;
    left: 50%;
    top: 50%;
    z-index: 15;
}

.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #fe6613;
    position: absolute;
    z-index: 20;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    animation: rotation 1s linear infinite;
}

.loader1 {
    width: 12px;
    height: 12px;
    background-color: #fe6613;
}

.loader2 {
    width: 30px;
    height: 30px;
    border: 2px dashed #e4e4e4;
    animation: rotation 2s linear infinite reverse;
}


@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**************/

/** line up and down animation **/

@keyframes line_up_down {
    0% {
        /*top: -45px;*/
        transform: translateY(0);
    }

    50% {
        /*top: -60px;	*/
        transform: translateY(-20px);
    }

    100% {
        /*top: -45px; */
        transform: translateY(0);
    }
}

/**************/

/*** FadeIn Animation **/

@keyframes fade_ele {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/*********************/


/*** top Content Section **/

.top_content {
    display: block;
    position: relative;
}

.logo {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: inline-block;
    margin: auto;
    background-color: #1c1c1c;
    padding: 3px 0px;
}

.main_top_nav .navbar-default .container {
    position: relative;
}

.menu_trig {
    display: none;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 10px 15px;
    background-color: #333;
    border-radius: 2px;
    cursor: pointer;
}

    .menu_trig i {
        font-size: 20px;
        color: #fff;
    }

.search_menu {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

.search_input_wrap {
    width: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    /*display: none;*/
    z-index: 10;
}

    .search_input_wrap .search_field {
        background-color: transparent;
        color: #fff;
        font-size: 20px;
        width: 100%;
        min-height: 80px;
        text-align: center;
        border: 0px;
    }

        .search_input_wrap .search_field:focus {
            outline: none;
        }

.main_top_nav {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

    .main_top_nav .navbar-default {
        /*background-color: #101010;*/
        background-color: #333;
        margin-bottom: 0;
        border-radius: 0px;
        border: 0;
        border-bottom: 1px solid #747a7e;
    }

        .main_top_nav .navbar-default .navbar-brand {
            height: auto;
            padding: 20px 15px;
        }

        .main_top_nav .navbar-default .navbar-nav {
            margin-top: 0px;
        }

            .main_top_nav .navbar-default .navbar-nav > li {
                opacity: 0;
            }

                .main_top_nav .navbar-default .navbar-nav > li > a {
                    color: #fff;
                    position: relative;
                    font-size: 20px;
                    letter-spacing: 1px;
                    padding: 28px 20px;
                    text-transform: none;
                    font-family: 'butlerlight', serif;
                    transition: all 0.3s ease;
                    cursor: pointer;
                }

                    .main_top_nav .navbar-default .navbar-nav > li > a:before {
                        position: absolute;
                        content: '';
                        display: inline-block;
                        bottom: -4px;
                        left: 15px;
                        right: 15px;
                        margin: auto;
                        background-color: #fe6613;
                        height: 3px;
                        width: auto;
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.3s ease;
                    }

                .main_top_nav .navbar-default .navbar-nav > li:hover > a:before {
                    bottom: -2px;
                    opacity: 1;
                    visibility: visible;
                }

                .main_top_nav .navbar-default .navbar-nav > li.active > a:before {
                    bottom: -2px;
                    opacity: 1;
                    visibility: visible;
                }

            .main_top_nav .navbar-default .navbar-nav > .active > a,
            .main_top_nav .navbar-default .navbar-nav > .active > a:hover,
            .main_top_nav .navbar-default .navbar-nav > .active > a:focus {
                color: #fe6613;
                background-color: transparent;
            }

            .main_top_nav .navbar-default .navbar-nav > li > a:hover,
            .main_top_nav .navbar-default .navbar-nav > li > a:focus {
                color: #fe6613;
                background-color: transparent;
            }

    .main_top_nav ul > li > a i {
        font-size: 16px;
        position: relative;
        top: 2px;
        padding-left: 3px;
        display: inline-block;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        -moz-transition: all .3s ease;
        transition: all .3s ease;
    }

    .main_top_nav ul > li.dropdown.open > a i {
        -webkit-transform: translateX(3px) rotate(180deg);
        -moz-transform: translateX(3px) rotate(180deg);
        -ms-transform: translateX(3px) rotate(180deg);
        -o-transform: translateX(3px) rotate(180deg);
        transform: translateX(3px) rotate(180deg);
    }

    .main_top_nav .dropdown-menu {
        margin: 0;
        padding: 0;
        background-color: transparent;
        min-width: 180px;
        left: 0;
        right: auto;
        top: 120%;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        -moz-transition: all .3s ease;
        transition: all .3s ease;
    }


    .main_top_nav .navbar-default .navbar-nav .dropdown-menu > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }

    .main_top_nav .navbar-default .navbar-nav .dropdown-menu > li > a {
        padding: 10px 20px;
        font-size: 18px;
        font-family: 'butlerlight', serif;
        background-color: #555;
        color: #fff;
    }

    .main_top_nav .navbar-default .navbar-nav .dropdown-menu > li:not(.active) > a:hover {
        background-color: #494949;
    }

    .main_top_nav .navbar-default .navbar-nav .dropdown-menu > li.active > a {
        /*background-color: #444;*/
        color: #fe6613;
    }

    .main_top_nav .navbar-default .navbar-nav > .open > a,
    .main_top_nav .navbar-default .navbar-nav > .open > a:hover,
    .main_top_nav .navbar-default .navbar-nav > .open > a:focus {
        color: #fe6613;
        background-color: transparent;
    }

    .main_top_nav .open > .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        top: 100%;
    }

/** Side Navigation **/
/*.open_menu_btn{ 
	font-size: 28px;
	cursor:pointer;
	color: #fff;
    position: fixed;
    text-align: center;
    top: 20px;
    right: 30px;
    display: none;
    width: 45px;
    background: rgba(31, 31, 31, 1);
    z-index: 1;
}*/

#sidenav_wrapper {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0px;
    background-color: rgba(0,0,0,0.6);
    overflow-x: hidden;
    overflow-y: auto;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0px;
    /*background-color: rgb(31,31,31);*/
    background-color: #fe6613;
    overflow-x: hidden;
    overflow-y: auto;
    /*-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;*/
    padding-top: 25px;
}

.sidenav_logo {
    padding: 8px 8px 8px 60px;
    background-color: #1c1c1c;
    display: none;
}

.sidenav ul {
    list-style-type: none;
}

    .sidenav ul a > i {
        position: absolute;
        right: 15px;
    }

    .sidenav ul .hasdrop a > i {
        top: 14px;
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        -o-transform-origin: center;
        transform-origin: center;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        -moz-transition: all .2s ease;
        transition: all .2s ease;
    }

.nav_menu_wrap {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    opacity: 0;
    margin-top: 90px;
}

ul.first_level {
    padding-left: 0px;
}

    ul.first_level > li {
        position: relative;
        background: none;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

        ul.first_level > li a {
            padding: 8px 10px 8px 40px;
            font-size: 24px;
            color: #fff;
            display: block;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -ms-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
            font-family: 'butlerlight', serif;
            cursor: pointer;
        }

            ul.first_level > li a:hover {
                color: #1c1c1c;
            }

            ul.first_level > li a:hover,
            ul.first_level > li a:focus,
            ul.first_level > li a:active {
                text-decoration: none;
                outline: none;
            }

        ul.first_level > li.active > a {
            color: #1c1c1c;
            text-decoration: none;
        }

        ul.first_level > li.hasdrop > ul.drop_menu li a {
            padding: 6px 10px 6px 20px;
            font-size: 22px;
        }

        ul.first_level > li.hasdrop > ul.drop_menu li.active a {
            color: #1c1c1c;
            text-decoration: none;
        }


/*.nav_menu_wrap .drop_menu {
    position: relative;
    
    bottom: -15px;
    left: 40px;
    z-index: 1000;
    min-width: 160px;
    width: 100%;
    text-align: left;
    list-style: none;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	
	margin: 0;
	padding: 0;
	top: 120%;
	display: block;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;transition: all 0.3s ease;

}*/
.nav_menu_wrap .drop_menu a {
    padding-left: 20px;
}

.nav_menu_wrap .drop_menu {
    position: relative;
    /*top: 110%;*/
    bottom: 0px;
    left: 40px;
    z-index: 1000;
    min-width: 160px;
    width: 100%;
    text-align: left;
    list-style: none;
    background-color: transparent;
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    top: 120%;
    display: none;
    /*visibility: hidden;
	opacity: 0;*/
    /*-webkit-transition: all 0.3s ease;-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;transition: all 0.3s ease;*/
}

/*.nav_menu_wrap .open > .drop_menu {
    display: block;
    visibility: visible;
    opacity: 1;
    bottom: 0;
}*/

/*.nav_menu_wrap .open > .drop_menu {
    display: block;
}*/
.nav_menu_wrap ul > li.hasdrop.open > a i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sidenav .closebtn {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 35px;
    line-height: 1.2;
    background-color: #333;
    /*color: #fe6613;*/
    color: #ccc;
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    border-bottom-left-radius: 2px;
    cursor: pointer;
}

    .sidenav .closebtn b {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        font-weight: 400;
    }


/**************************/



/*** banner style ***/

#main_banner {
    width: 100%;
    position: relative;
    height: 800px;
    background: #333 url('../img/banner/main-banner.jpg') no-repeat center;
    background-size: cover;
    padding-top: 75px;
    margin-top: 60px;
}

/*#main_banner img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}*/

#main_carousel {
    position: absolute;
    right: 32%;
    top: 0;
    width: 100%;
    z-index: 8;
    width: 350px;
    height: 500px;
    display: inline-block;
}

    #main_carousel .carousel-inner {
        background: rgba(0,0,0,0);
        margin: auto;
        position: relative;
        height: 100%;
    }

    #main_carousel .item {
        width: 350px;
        height: 300px;
        /*border: 1px solid red;*/
        z-index: 10;
        margin: auto;
        /*transform: rotate(45deg);
	box-shadow: 1px 2px 25px rgba(0,0,0,0.23);*/
        margin-top: 80px;
        overflow: hidden;
    }

/*#main_carousel .item:before {
	position: absolute;
	z-index: 11;
	content: '';
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 1px solid #666;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin:auto;
}*/

.bann_text_cont {
    position: absolute;
    width: 80%;
    height: 250px;
    text-align: left;
    /*transform: rotate(-45deg);*/
    z-index: 100;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    /*border: 1px solid yellow;*/
}

.banner_text {
    color: #000;
}

    .banner_text h1 {
        font-family: 'Arapey', serif;
        font-size: 42px;
        font-style: italic;
        color: inherit;
        position: relative;
        margin: 0;
        line-height: 1.2;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -o-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-delay: 0.2s;
        -moz-animation-delay: 0.2s;
        -o-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .banner_text span {
        font-family: 'butlerlight', serif;
        color: #fe6613;
        font-size: 46px;
        text-transform: uppercase;
        font-style: normal;
        display: block;
        -webkit-animation-delay: 1.5s;
        -moz-animation-delay: 1.5s;
        -o-animation-delay: 1.5s;
        animation-delay: 1.5s;
        /*animation-duration: 1.5s;*/
    }

        .banner_text span > strong {
            position: relative;
            top: -7px;
            font-weight: 400;
            font-size: 34px;
        }

#myCarousel .carousel-indicators {
    bottom: 60px;
}

    #myCarousel .carousel-indicators li {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin: 1px;
        cursor: pointer;
        background-color: #b2b2b2;
        border: 0px;
        border-radius: 50%;
        /*transform: rotate(45deg);*/
        margin: 3px;
    }

#main_carousel .carousel-indicators .active {
    width: 15px;
    height: 15px;
    background-color: #fe6613;
}


#main_banner .banner_btn {
    position: absolute;
    bottom: 40px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 0;
}

    #main_banner .banner_btn .btn-link {
        color: #fff;
        text-transform: uppercase;
        font-size: 18px;
        font-family: 'butlerregular', serif;
        position: relative;
        letter-spacing: 2.5px;
        -webkit-animation: fade_ele 1.8s linear infinite;
        -moz-animation: fade_ele 1.8s linear infinite;
        -o-animation: fade_ele 1.8s linear infinite;
        animation: fade_ele 1.8s linear infinite;
    }

        #main_banner .banner_btn .btn-link:hover {
            text-decoration: none;
            color: #e46713;
        }

        #main_banner .banner_btn .btn-link:focus {
            text-decoration: none;
            outline: none;
        }

        #main_banner .banner_btn .btn-link:before {
            content: '';
            position: absolute;
            width: 1px;
            height: 40px;
            background-color: #e46713;
            top: -45px;
            margin: auto;
            left: 0;
            right: 0;
            -webkit-animation: line_up_down 1.8s linear infinite;
            -moz-animation: line_up_down 1.8s linear infinite;
            -o-animation: line_up_down 1.8s linear infinite;
            animation: line_up_down 1.8s linear infinite;
        }
/*************************/

.index_sect {
    display: block;
    padding: 90px 0;
}

    .index_sect h1 {
        font-size: 48px;
        margin-bottom: 30px;
        /*line-height: 1.3;*/
        font-family: 'Arapey', serif;
        font-style: italic;
        line-height: 1;
    }

        .index_sect h1 span.i_head {
            font-size: 80px;
            display: block;
            text-transform: none;
        }

        .index_sect h1 span {
            font-size: 78px;
            text-transform: uppercase;
            display: block;
        }

    .index_sect p {
        font-size: 18px;
        margin-bottom: 15px;
    }

/*** button styles ***/

.theme_btn {
    width: auto;
    min-width: 220px;
    height: 62px;
    line-height: 62px;
    background-color: #fff;
    color: #323232;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    font-family: 'Arapey', serif;
    margin-top: 40px;
    padding: 0 20px;
    border-radius: 0px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

    .theme_btn:hover {
        text-decoration: none;
        color: #fff;
        background-color: #cba983;
    }

    .theme_btn:focus {
        text-decoration: none;
        background-color: #fff;
        color: #323232;
    }

.theme_outline_btn {
    width: auto;
    min-width: 165px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    border: 1px solid #cba983;
    color: #cba983;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
    border-radius: 0px;
}

    .theme_outline_btn:hover {
        background-color: #cba983;
        color: #f2f2f2;
        /*box-shadow: 0px 6px 12px rgba(203, 169, 131, 0.65);*/
        text-decoration: none;
    }

    .theme_outline_btn:focus {
        color: #cba983;
        text-decoration: none;
        background-color: transparent;
    }

.theme_btn2 {
    width: auto;
    min-width: 340px;
    height: 62px;
    line-height: 62px;
    padding: 0 20px;
    background-color: #fff;
    color: #caa983;
    border: 1px solid #caa983;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    margin-top: 40px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    position: relative;
}

    .theme_btn2:before, .theme_btn2:after {
        content: '';
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 1px;
        background-color: #caa983;
        top: 50%;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .theme_btn2:before {
        right: 100%;
    }

    .theme_btn2:after {
        left: 100%;
    }

    .theme_btn2:hover {
        background-color: #caa983;
        color: #f2f2f2;
        -webkit-box-shadow: 0px 6px 12px rgba(202, 169, 131, 0.65);
        -moz-box-shadow: 0px 6px 12px rgba(202, 169, 131, 0.65);
        box-shadow: 0px 6px 12px rgba(202, 169, 131, 0.65);
        text-decoration: none;
    }

        .theme_btn2:hover:before,
        .theme_btn2:hover:after {
            -webkit-transform: scale(1.4);
            -moz-transform: scale(1.4);
            -ms-transform: scale(1.4);
            -o-transform: scale(1.4);
            transform: scale(1.4);
        }

    .theme_btn2:focus {
        text-decoration: none;
        color: #caa983;
        background-color: #fff;
    }

.theme_btn3 {
    width: auto;
    min-width: 240px;
    height: 70px;
    line-height: 68px;
    padding: 0 20px;
    background-color: transparent;
    color: #fe6613;
    border: 1px solid #fe6613;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    margin-top: 40px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-family: 'Arapey', serif;
    font-style: italic;
}

    .theme_btn3:hover {
        background-color: #fe6613;
        color: #f2f2f2;
        -webkit-box-shadow: 0px 6px 12px rgba(203, 169, 131, 0.65);
        -moz-box-shadow: 0px 6px 12px rgba(203, 169, 131, 0.65);
        box-shadow: 0px 6px 12px rgba(203, 169, 131, 0.65);
        text-decoration: none;
    }

    .theme_btn3:focus {
        text-decoration: none;
        color: #fe6613;
        background-color: transparent;
    }

.theme_btn4 {
    width: auto;
    min-width: 220px;
    height: 62px;
    line-height: 62px;
    background-color: #caa983;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    font-family: 'Arapey', serif;
    margin-top: 40px;
    padding: 0 20px;
    border-radius: 0px;
}

    .theme_btn4:hover {
        text-decoration: none;
        color: #fff;
        background-color: #c1935f;
    }

.view_prof_btn {
    width: auto;
    min-width: 100px;
    height: 40px;
    line-height: 38px;
    padding: 0 10px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-top: auto;
    border-radius: 0px;
    /*font-family: 'Arapey', serif;*/
}

    .view_prof_btn:hover {
        background-color: #fe6613;
        border-color: #fe6613;
        color: #f2f2f2;
        text-decoration: none;
    }

    .view_prof_btn:focus {
        text-decoration: none;
        color: #fff;
        background-color: transparent;
    }

/******************/


/**** About Section ****/

#about {
    background-color: transparent;
    padding: 0;
}

    #about .row {
        margin-right: 0;
        margin-left: 0;
    }

    #about .container.vertical_line_wrap {
        padding: 90px 15px;
    }

        #about .container.vertical_line_wrap .vertical_line.line1 {
            left: 26%;
        }

        #about .container.vertical_line_wrap .vertical_line.line2 {
            left: auto;
            right: 23%;
        }

.about_img {
    width: 100%;
}

    .about_img img {
        width: 100%;
        -webkit-object-fit: cover;
        -o-object-fit: cover;
        object-fit: cover;
        height: 700px;
    }

.text_cont {
    padding: 0px 60px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 700px;
}

    .text_cont h1 {
        margin-top: 0;
    }

    .text_cont.rgt {
        padding-right: 120px;
    }

    .text_cont.lft {
        padding-left: 120px;
        padding-right: 150px;
    }

#about .text_cont {
    background-color: #e9e2d0;
}


/*********************/

/*** Business Spaces ***/

#busi_spaces {
    background-color: #efefef;
    padding: 0;
}

    #busi_spaces .row {
        margin-right: 0;
        margin-left: 0;
    }

    #busi_spaces .container.vertical_line_wrap {
        padding: 90px 15px;
    }

        #busi_spaces .container.vertical_line_wrap .vertical_line.line1 {
            left: auto;
            right: 23%;
        }

/********************/


#z_factor {
    background: #333 url('../img/z-factor-bg.jpg') no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    height: 430px;
    padding: 0;
}

    #z_factor h1 {
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
        padding-top: 100px;
        color: #fe6613;
        font-size: 110px;
        text-transform: uppercase;
        font-family: 'butlerlight', serif;
        font-style: normal;
    }

        #z_factor h1 strong {
            font-size: 72px;
            display: inline-block;
            position: relative;
            top: -16px;
            font-weight: 400;
        }

    #z_factor h4 {
        margin-top: 0;
        margin-bottom: 0;
        text-align: center;
        color: #fff;
        font-size: 40px;
        font-family: 'Arapey', serif;
        font-style: italic;
    }

#features {
    width: 100%;
    padding-bottom: 80px;
    text-align: center;
}

    #features .theme_btn2 {
        margin-top: 15px;
    }

.f_box {
    display: block;
    min-height: 450px;
    position: relative;
    padding: 15px 20px 5px;
    text-align: center;
    margin-top: -100px;
}

.f_img_box {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #caa983;
    position: relative;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .f_img_box:before {
        position: absolute;
        display: inline-block;
        content: '';
        width: 210px;
        height: 210px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-bottom: 1px solid #caa983;
        top: -15px;
        left: -15px;
        -webkit-transition: -webkit-transform 0.8s ease-in-out, border-bottom-color 0.2s;
        -moz-transition: -moz-transform 0.8s ease-in-out, border-bottom-color 0.2s;
        transition: transform 0.8s ease-in-out, border-bottom-color 0.2s;
    }

    .f_img_box:after {
        position: absolute;
        display: inline-block;
        content: '';
        height: 35px;
        background-color: #caa983;
        bottom: -50px;
        left: 0;
        right: 0;
        margin: auto;
        width: 1px;
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        -moz-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }


    .f_img_box img {
        /*width: 80px; */
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

.f_cont {
    padding-top: 75px;
}

.f_box h3 {
    font-size: 32px;
    color: #a47a4c;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Arapey', serif;
    font-style: italic;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/*.f_box .theme_btn2 {
	position: absolute;
	bottom: 15px;
	left: 30px;
	right: 30px;
	margin: auto;
}*/

.f_box:hover .f_img_box:before {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    border-bottom-color: #fe6613;
}

.f_box:hover .f_img_box:after {
    background-color: #fe6613;
}

.f_box:hover .f_img_box {
    background-color: #fe6613;
}

    .f_box:hover .f_img_box img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

.f_box:hover h3 {
    color: #fe6613;
}


/** Owl Carousel **/

.owl-carousel .item a {
    display: block;
}

    .owl-carousel .item a:focus {
        text-decoration: none;
        outline: none;
    }

.owl_controls {
    position: absolute;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    top: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}

    .owl_controls i {
        font-size: 60px;
        line-height: 32px;
    }

    .owl_controls.customPrevBtn {
        left: 0px;
    }

    .owl_controls.customNextBtn {
        right: 0px;
    }

    .owl_controls:hover,
    .owl_controls:focus {
        color: #f42826;
        outline: none;
    }
/*****************/

/** Latest Developments ***/

#latest_dev {
    padding: 50px 0;
    background-color: #cba983;
}

    #latest_dev .vertical_line {
        top: 7%;
        bottom: 6%;
        left: 50%;
        height: auto;
        background-color: #866c50;
    }

    #latest_dev .development_slider,
    #latest_dev .testimonial_slider {
        position: relative;
        padding-top: 0px;
    }

        #latest_dev .development_slider .owl-carousel,
        #latest_dev .testimonial_slider .owl-carousel {
            padding-top: 40px;
        }

    #latest_dev .owl-carousel .item {
        padding: 0 60px;
    }

    #latest_dev .testimonial_slider .item {
        padding: 0 70px;
    }

    #latest_dev .owl_controls {
        position: relative;
        top: 0;
        left: auto;
        margin: auto;
        border: 0px;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        #latest_dev .owl_controls:hover {
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
            transform: scale(1.2);
        }

        #latest_dev .owl_controls.customPrevBtn {
            margin-right: 10px;
        }

        #latest_dev .owl_controls.customNextBtn {
            margin-left: 10px;
        }

    #latest_dev h1 {
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: 10px;
        text-transform: uppercase;
        font-family: 'butlerlight', serif;
        font-style: normal;
        color: #fff;
        font-size: 32px;
    }

        #latest_dev h1 span {
            font-family: 'Arapey', serif;
            font-style: italic;
            text-transform: none;
            font-size: 112px;
            color: #1c1c1c;
            letter-spacing: 0px;
        }

.proj_info h2 {
    font-size: 40px;
    font-family: 'Arapey', serif;
    font-style: italic;
    color: #1c1c1c;
}

#latest_dev .development_slider .proj_info h2 {
    margin-bottom: 25px;
}

.proj_info p {
    color: #1c1c1c;
    font-size: 16px;
}

.underline {
    display: block;
    width: 100%;
    border-bottom: 1px solid #866c50;
}

.proj_box {
    display: block;
    text-align: center;
    min-height: 330px;
}

.testi_text {
    /*min-height: 230px;*/
    min-height: 180px;
    position: relative;
    text-align: center;
    margin: 10px 0;
    padding-top: 0px;
}

    .testi_text p {
        color: #fff;
        /*padding-top: 60px;*/
        padding-top: 20px;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .testi_text img {
        width: 70% !important;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: -1;
    }


/**** hightlights ***/

#highlights {
    background-color: #ebebeb;
    padding: 0;
}

.high_img img {
    width: 100%;
    height: 800px;
    -webkit-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

#highlights h1 {
    font-size: 100px;
    color: #b2b2b2;
    margin-top: 0;
    margin-bottom: 35px;
}

.high_info {
    padding-left: 60px;
    padding-top: 40px;
    overflow-x: hidden;
}

    .high_info ul {
        padding-left: 0;
        width: 70%;
        list-style-type: none;
        margin-bottom: 0;
    }

        .high_info ul li {
            display: block;
            padding-bottom: 10px;
            position: relative;
        }

            .high_info ul li:before {
                content: '';
                position: absolute;
                width: 40px;
                height: 1px;
                background-color: #f6671e;
                left: -60px;
                top: 15px;
            }

    .high_info h3 {
        font-size: 30px;
        font-family: 'butlerregular', serif;
        margin-top: 0;
        margin-bottom: 10px;
    }

/*** Inner Page ***/

.inn_page_sect {
    display: block;
    padding: 60px 0;
}

    .inn_page_sect h1 {
        font-size: 48px;
        margin-bottom: 30px;
        font-family: 'Arapey', serif;
        /*line-height: 1.3;*/
    }

        .inn_page_sect h1 span {
            font-size: 78px;
            text-transform: uppercase;
            display: block;
        }

    .inn_page_sect p {
        font-size: 16px;
        margin-bottom: 15px;
    }

/*** Commercial Page **/

#commercial_page {
    padding-bottom: 0;
}

.inner_page_banner {
    background: #fff url('../img/inner-commercial-banner.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100vh;
}

    .inner_page_banner .text_cont {
        text-align: center;
        width: 64%;
        margin: auto;
        padding: 50px 60px 0px;
        display: block;
    }

        .inner_page_banner .text_cont h1 {
            font-size: 48px;
            margin-bottom: 30px;
            font-family: 'Arapey', serif;
        }

        .inner_page_banner .text_cont p {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 400;
        }

    .inner_page_banner .theme_btn {
        background-color: #1c1c1c;
        width: 280px;
        color: #fff;
    }

        .inner_page_banner .theme_btn:hover {
            background-color: #c1935f;
        }


.workspace h1 {
    font-family: 'Arapey', serif;
    width: 45%;
    margin: auto;
}

.workspace img {
    margin-top: 40px;
}

.fea_text_box .workspace_features:nth-of-type(1) {
    /*padding-bottom: 70px;*/
    min-height: 280px;
}

.fea_text_box .workspace_features:nth-of-type(2) {
    padding-top: 110px;
}

.workspace_features {
    width: 100%;
    padding: 0px;
    text-align: center;
}

    .workspace_features h3 {
        font-size: 30px;
        color: #cba983;
        margin-top: 0;
        margin-bottom: 15px;
        font-family: 'Arapey', serif;
    }

.clients {
    display: block;
    width: 100%;
    padding: 70px 0;
}

    .clients h1 {
        margin-bottom: 40px;
    }

    .clients p {
        margin-bottom: 30px;
    }

    .clients .note p {
        margin-top: 30px;
        margin-bottom: 0;
    }

.outer_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

    .outer_wrap .cl_img {
        width: 20%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 110px;
        border-bottom: 1px solid #e7e7e7;
        border-right: 1px solid #e7e7e7;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .outer_wrap .cl_img:hover {
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }

        .outer_wrap .cl_img:nth-of-type(5n) {
            border-right: 0px;
        }

        .outer_wrap .cl_img.last_row_ele {
            border-bottom: 0px;
        }

            /*.outer_wrap .cl_img.last_row_ele:nth-of-type(1n) { border-left: 1px solid #e7e7e7; }*/

            .outer_wrap .cl_img.last_row_ele:nth-last-of-type(2) {
                border-left: 0px;
            }

            .outer_wrap .cl_img.last_row_ele:nth-last-of-type(1) {
                border-left: 0px;
            }


.workspace_gallery {
    background-color: #e4e4e4;
    padding: 50px 0;
    text-align: center;
}

#commercial_page .workspace_gallery span.h {
    font-family: 'butlerlight', serif;
    font-size: 40px;
    color: #1c1c1c;
    text-align: center;
    text-transform: uppercase;
    background-color: #666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 6px rgba(255,255,255,0.4);
    line-height: 1.1;
    text-align: center;
}

.workspace_gallery span.h span {
    font-size: 100px;
    display: block;
    background-color: #666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 6px rgba(255,255,255,0.4);
}

.workspace_gallery .grid {
    width: 85%;
    margin: 50px auto 0;
}

.workspace_gallery .grid-item {
    width: 28%;
    float: left;
    margin: 2%;
    background-color: #fff;
    padding: 10px;
    -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 1px rgba(0,0,0,0.1);
    box-shadow: 0 0 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .workspace_gallery .grid-item .workspace_img {
        overflow: hidden;
        -webkit-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
        position: relative;
        z-index: 1;
    }

    .workspace_gallery .grid-item a {
        display: block;
        color: #333;
    }

    .workspace_gallery .grid-item .workspace_img:before {
        content: '';
        position: absolute;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        -o-transform-origin: center;
        transform-origin: center;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: rgba(203,169,131,0.2);
    }

    .workspace_gallery .grid-item img {
        width: 100%;
    }

    .workspace_gallery .grid-item:hover {
        -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.15);
        -moz-box-shadow: 0 1px 6px rgba(0,0,0,0.15);
        box-shadow: 0 1px 6px rgba(0,0,0,0.15);
        -webkit-transform: translateY(-4px);
        -moz-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
        -o-transform: translateY(-4px);
        transform: translateY(-4px);
    }

        .workspace_gallery .grid-item:hover .workspace_img:before {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
        }

.workspace_info {
    padding: 20px 0;
    text-align: center;
}

    .workspace_info h4 {
        font-family: 'Quicksand', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .workspace_info .theme_outline_btn {
        margin-top: 10px;
    }

        .workspace_info .theme_outline_btn i {
            font-size: 25px;
            position: relative;
            top: 2px;
        }

/**************************/


/*** Residential Page ***/

#residential_page.inn_page_sect {
    padding-top: 0px;
    padding-bottom: 0;
}

#residential_page .vertical_line {
    left: 50%;
    display: none;
}

.residential_page_head {
    padding: 40px 0 30px;
    background-color: #fff;
}

#residential_page h1 {
    margin-bottom: 10px;
    margin-top: 0;
    font-family: 'Arapey', serif;
}

.residential_banner {
    width: 100%;
    margin-top: 0px;
    height: 500px;
}

#residential_page .banner_360 {
    padding-bottom: 60px;
}

.residential_banner img {
    width: 100%;
}

#residential_page .fea_wrap {
    padding-top: 70px;
}

#residential_page .workspace_features {
    min-height: 160px;
}

    #residential_page .workspace_features.text-right {
        text-align: right !important;
    }

    #residential_page .workspace_features.text-left {
        text-align: left !important;
    }

#residential_page .fea_text_box .workspace_features:nth-of-type(2) {
    padding-top: 40px;
}

#residential_page .fea_text_box .workspace_features.text-right.ml40 {
    margin-left: 40px;
}

#residential_page .fea_text_box .workspace_features.text-left.minus_ml {
    margin-left: -40px;
}

#residential_page .workspace_features h3 {
    font-size: 24px;
    color: #cba983;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.residential_fea_img {
    position: relative;
    z-index: 1;
}

    .residential_fea_img img {
        margin-left: 3px;
        margin-top: -100px;
    }

    .residential_fea_img:before {
        content: '';
        width: 360px;
        height: 360px;
        border-radius: 50%;
        left: 0;
        right: 0;
        margin: auto;
        top: 0;
        bottom: 0;
        background-color: #fff;
        position: absolute;
        display: block;
        z-index: -1;
    }

.our_process {
    padding: 40px 0;
    background: #fff url('../img/our-process-bg.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

    .our_process h4 {
        font-size: 30px;
        text-transform: uppercase;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .our_process h1 {
        margin-top: 0;
        margin-bottom: 15px;
    }

.punchline {
    font-size: 20px;
    color: #a47a4c;
}


.process_box {
    min-height: 300px;
    text-align: center;
    /*border: 1px solid #ddd;*/
}

    .process_box span {
        font-size: 260px;
        line-height: 240px;
        margin-top: 20px;
        position: relative;
        z-index: 2;
        color: #a47a4c;
        text-align: center;
        display: block;
        font-family: 'butlerlight';
        /*text-shadow: 0 5px 10px rgba(0,0,0,0.3);*/
        /*text-shadow: 0 28px 3px rgba(0,0,0,0.07);*/
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .process_box span:before {
            display: block;
            position: absolute;
            top: 15px;
            color: rgba(0,0,0,0);
            content: attr(data-content);
            font-size: 275px;
            font-weight: bold;
            z-index: -1;
            /*text-shadow: 1px 8px 15px rgba(0,0,0,0.09);*/
            text-shadow: 2px 8px 25px rgba(0,0,0,0.14)
        }

    .process_box:hover span {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .process_box:hover h5 {
        color: #a47a4c;
    }

.indicator_line {
    width: 1px;
    height: 60px;
    background-color: #a47a4c;
    margin: auto;
}

.process_box h5 {
    font-family: 'butlerregular';
    /*font-family: 'Arapey', serif;*/
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.themes {
    background-color: #545454;
    padding: 70px 0;
    position: relative;
}

    .themes h1 {
        font-family: 'butlerlight', serif !important;
        font-size: 240px;
        color: #595959;
        margin-bottom: 0;
        text-align: center;
        text-transform: uppercase;
        background-color: #2b2a2a;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0px 6px 20px rgba(179, 179, 179, 0.15);
        position: relative;
    }

        .themes h1 span {
            font-size: 56px;
            color: #cba983;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            margin: auto;
            text-transform: lowercase;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
        }

.head_line {
    font-size: 18px;
    display: block;
    text-align: center;
    color: #e4e4e4;
    width: 60%;
    margin: auto;
}

.theme_tab {
    padding: 70px 0px 15px;
}

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

    .themes_tab_wrap ul.nav-tabs {
        position: absolute;
        width: 30px;
        right: 0;
        top: 50%;
        border: 0px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .themes_tab_wrap ul.nav-tabs > li {
            margin-bottom: 0;
            width: 100%;
            display: block;
        }

            .themes_tab_wrap ul.nav-tabs > li > a {
                margin-right: 0px;
                border: none;
                border-bottom: 3px solid #cba983;
                border-radius: 0;
                font-size: 26px;
                text-align: center;
                color: rgba(250,250,250,0.05);
                padding: 6px 0px;
                font-family: 'butlerlight';
            }

                .themes_tab_wrap ul.nav-tabs > li > a span {
                    color: #595959;
                    background-color: #2b2a2a;
                    -webkit-background-clip: text;
                    -moz-background-clip: text;
                    background-clip: text;
                    color: transparent;
                    text-shadow: 0px 6px 20px rgba(179, 179, 179, 0.15);
                    transition: all 0.3s ease-in-out;
                }

            .themes_tab_wrap ul.nav-tabs > li.active > a,
            .themes_tab_wrap ul.nav-tabs > li.active > a:hover,
            .themes_tab_wrap ul.nav-tabs > li.active > a:focus {
                color: #cba983;
                cursor: default;
                background-color: transparent;
                border: none;
                border-bottom: 3px solid #fff;
            }

                .themes_tab_wrap ul.nav-tabs > li.active > a span,
                .themes_tab_wrap ul.nav-tabs > li.active > a:hover span,
                .themes_tab_wrap ul.nav-tabs > li.active > a:focus span {
                    color: #cba983;
                    cursor: default;
                }

    .themes_tab_wrap ul.nav > li > a:hover,
    .themes_tab_wrap ul.nav > li > a:focus {
        text-decoration: none;
        background-color: transparent;
        color: #fff;
    }

        .themes_tab_wrap ul.nav > li > a:hover span {
            color: #cba983;
            text-shadow: none;
        }

    .themes_tab_wrap ul.nav > li > a:focus {
        border: none;
        border-bottom: 3px solid #fff;
    }

.theme_img img {
    width: 100%;
    -webkit-box-shadow: 2px 15px 25px rgba(0,0,0,0.3);
    -moz-box-shadow: 2px 15px 25px rgba(0,0,0,0.3);
    box-shadow: 2px 15px 25px rgba(0,0,0,0.3);
    -webkit-animation-duration: 2.5s;
    -moz-animation-duration: 2.5s;
    -o-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -o-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.theme_info {
    padding-left: 50px;
    padding-top: 20px;
}

    .theme_info h2 {
        font-size: 80px;
        color: #cba983;
        margin-bottom: 15px;
        font-family: 'Arapey', serif;
        -webkit-animation-duration: 2.5s;
        -moz-animation-duration: 2.5s;
        -o-animation-duration: 2.5s;
        animation-duration: 2.5s;
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        -o-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .theme_info p {
        color: #fff;
        font-size: 18px;
        -webkit-animation-duration: 2.5s;
        -moz-animation-duration: 2.5s;
        -o-animation-duration: 2.5s;
        animation-duration: 2.5s;
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        -o-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .theme_info .theme_btn {
        min-width: 200px;
        margin-top: 20px;
    }


/*** About Page ***/

#about_page {
    padding-bottom: 0;
    background-color: #dddbd5;
}

.about_bg {
    background: #fff url('../img/about-page-banner.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    height: 900px;
}

    .about_bg .about_banner_text {
        position: absolute;
        left: 10%;
        top: 40%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-left: 100px;
        text-align: left;
        width: 600px;
    }

        .about_bg .about_banner_text h1 {
            font-family: 'Arapey', serif;
            font-size: 80px;
            color: #fe6613;
            margin-top: 0;
            margin-bottom: 5px;
            font-style: italic;
        }

        .about_bg .about_banner_text h3 {
            margin-top: 0;
            margin-bottom: 0;
            font-size: 42px;
            color: #1c1c1c;
            font-family: 'Arapey', serif;
            font-style: italic;
        }

#about_page .about_info p {
    line-height: 1.5;
    margin-bottom: 20px;
}

#about_page .about_info hr {
    margin-top: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #a9a7a1;
}

.leader {
    width: 100%;
    padding: 0px 0 40px;
}

    .leader h1 {
        margin-bottom: 20px;
    }

    .leader p {
        width: 80%;
        margin: auto;
    }

.leaders_wrap {
    padding-top: 50px;
    margin-left: 0;
    margin-right: 0;
}

    .leaders_wrap .col-xs-6 {
        padding-left: 0;
        padding-right: 0;
    }

.leader_box {
    min-height: 480px;
    position: relative;
    text-align: center;
    /*overflow: hidden;*/
}

/*.leader_box:before{
	position: absolute;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	left: -100%;
	background-color: rgba(0,0,0,0.1);
	box-shadow: inset -8px 1px 80px rgba(0,0,0,0.05);
	transition: all 0.5s ease-in-out;
	z-index: 10;
}

.leader_box.wrap_anim:before {
	animation: wrap_box 0.8s ease-in 1;
}

@keyframes wrap_box {
	0% { left: -100%; }
	50% { left: 0%; }
	100% { left: -100%; }
	
}*/

/*@keyframes wrap_box {
	0% { width: 0%; }
	50% { width: 100%; }
	60% { width: 100% }
	100% { width: 0%; }
}*/

.leader_img_outer {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    margin: 10px auto 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.leader_img {
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
}

    .leader_img img {
        width: 100%;
        -o-object-fit: cover;
        -webkit-object-fit: cover;
        object-fit: cover;
        height: 205px;
    }

.leader_img_outer:before,
.leader_img_outer:after {
    position: absolute;
    display: inline-block;
    content: '';
    left: 0;
    right: 0;
    margin: auto;
}

.leader_img_outer:before {
    height: 100px;
    background-color: #fff;
    top: 100%;
    width: 2px;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.leader_img_outer:after {
    height: 30px;
    width: 30px;
    background-color: #f8703e;
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: -50%;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.leader_info {
    margin-top: 85px;
    padding-top: 60px;
    border-top: 2px solid #fff;
}

    .leader_info h6 {
        font-size: 16px;
        font-weight: 500;
        font-family: 'Quicksand', sans-serif;
        margin-top: 0px;
        margin-bottom: 15px;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

    .leader_info p {
        font-size: 15px;
        line-height: 1.4;
    }

.text_box {
    width: 100%;
    position: relative;
    min-height: 380px;
    border-right: 1px solid #a9a7a1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.leader_box:hover .leader_img_outer {
    border-color: #d2cfca;
    background-color: #dddbd5;
    -webkit-box-shadow: 0px 1px 50px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 1px 50px rgba(0,0,0,0.3);
    box-shadow: 0px 1px 50px rgba(0,0,0,0.3);
}

.leader_box:hover .text_box {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}

    .leader_box:hover .text_box h6 {
        color: #f8703e;
    }

.leaders_wrap .col-xs-6:nth-of-type(4) .text_box {
    border-right: 1px solid transparent;
}

.social_cont ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
}

    .social_cont ul li {
        display: inline-block;
        /*margin-right: 5px;*/
    }

        .social_cont ul li:last {
            margin-right: 0px;
        }

        .social_cont ul li a {
            display: block;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-size: 17px;
            border-radius: 50%;
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            text-decoration: none;
        }

            .social_cont ul li a:hover {
                background-color: #f8703e;
                border-color: #f8703e;
                -webkit-transform: translateY(-4px);
                -moz-transform: translateY(-4px);
                -ms-transform: translateY(-4px);
                -o-transform: translateY(-4px);
                transform: translateY(-4px);
                -webkit-box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
                -moz-box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
                box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
            }

#about_page .abt_clients {
    padding: 60px 0;
    background: #fff url('../img/about-client-bg.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    min-height: 950px;
}

    #about_page .abt_clients h1 {
        margin-bottom: 10px;
        margin-top: 0;
    }

    #about_page .abt_clients p {
        margin-bottom: 40px;
    }

.abt_outer_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

    .abt_outer_wrap .abt_cl_img {
        width: 20%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 110px;
        border-bottom: 1px solid #cfb495;
        border-right: 1px solid #cfb495;
    }

        .abt_outer_wrap .abt_cl_img img {
            -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .abt_outer_wrap .abt_cl_img:hover img {
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }

        .abt_outer_wrap .abt_cl_img:nth-of-type(5n) {
            border-right: 0px;
        }

        .abt_outer_wrap .abt_cl_img.abt_last_row_ele {
            border-bottom: 0px;
        }


/*******************/


/** Careers **/

/*** Z Factor Page ***/

#careers_page {
    padding-bottom: 0;
    padding-top: 0;
}

.careers_bg {
    background: #fff url('../img/inner-careers-banner.png') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

    .careers_bg .career_text {
        position: absolute;
        right: 0;
        top: 40%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-right: 100px;
        text-align: left;
        width: 700px;
    }

        .careers_bg .career_text h1 {
            font-family: 'Arapey', serif;
            font-size: 100px;
            color: #1c1c1c;
            margin-top: 0;
            margin-bottom: 5px;
            font-style: italic;
        }

            .careers_bg .career_text h1 span {
                color: #fe6613;
            }

        .careers_bg .career_text h3 {
            margin-top: 0;
            margin-bottom: 0;
            font-size: 28px;
            color: #1c1c1c;
            font-family: 'Arapey', serif;
            font-style: italic;
            /*font-family: 'butlerlight', serif;*/
        }

.careers_info {
    padding: 65px 0;
    text-align: center;
    background-color: #e4e4e4;
}

    .careers_info h1 {
        font-size: 60px;
        color: #fe6613;
        /*font-family: 'butlerlight', serif;*/
        font-family: 'Arapey', serif;
        margin-top: 0;
        margin-bottom: 0;
    }

    .careers_info p {
        font-size: 22px;
        width: 80%;
        margin: auto;
    }

.c_step_wrap {
    margin-top: 50px;
    margin-bottom: 50px;
}

.c_step {
    min-height: 200px;
    background-color: #d2d2d2;
    text-align: center;
    padding: 30px 15px 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .c_step h4 {
        font-size: 32px;
        color: #323232;
        margin-top: 0px;
        margin-bottom: 15px;
        /*font-family: 'butlerregular', serif;*/
        font-family: 'Arapey', serif;
        /*text-transform: uppercase;*/
        -webkit-transition: color 0.3s ease;
        -moz-transition: color 0.3s ease;
        -ms-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

    .c_step p {
        font-size: 18px;
        margin-bottom: 0;
    }

    .c_step:hover {
        -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.2);
        -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.2);
        box-shadow: 0 1px 5px rgba(0,0,0,0.2);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }

        .c_step:hover h4 {
            color: #fe6613;
        }

.openings_wrap {
    background: url('../img/openings-bg.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    padding: 60px 0;
    text-align: center;
}

.co_outer {
    display: block;
    width: 100%;
}

.openings_wrap h1 {
    font-size: 68px;
    font-family: 'Arapey', serif;
    color: #fe6613;
    /*font-family: 'butlerlight', serif;*/
    margin-top: 0;
    margin-bottom: 0;
}

.openings_wrap p {
    font-size: 20px;
    color: #fff;
}

.co_outer {
    display: block;
    padding-top: 40px;
}

    .co_outer .table > thead > tr > th,
    .co_outer .table > thead > tr > td,
    .co_outer .table > tbody > tr > td {
        text-align: center;
        vertical-align: top;
        border-bottom: 1px solid #ddd;
    }

        .co_outer .table > thead > tr > th:first-child,
        .co_outer .table > thead > tr > td:first-child,
        .co_outer .table > tbody > tr > td:first-child {
            text-align: left;
        }

    /*.co_outer .table > tbody > tr:last-child > td{
	border-bottom: none;	
}*/
    .co_outer .table > thead > tr > th {
        color: #fe6613;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 18px;
        padding: 20px;
    }

    .co_outer .table > tbody > tr > td {
        padding: 25px 20px;
        font-size: 16px;
        color: #fff;
    }

    .co_outer p {
        font-size: 16px;
        margin-bottom: 0;
    }

        .co_outer p a {
            color: #fff;
        }

            .co_outer p a:hover {
                color: #fe6613;
            }

    .co_outer ul {
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

        .co_outer ul li {
            display: block;
            margin-bottom: 0px;
            font-size: 16px;
            color: #fff;
            text-align: left;
        }

.hr_mail {
    text-align: left;
    padding-left: 20px;
    padding-top: 20px;
}

    .hr_mail a {
        color: #fe6613;
    }

.opening_profile_modal .modal-content {
    border-radius: 2px;
    background-color: #333;
}

.opening_profile_modal .modal-header {
    padding: 15px 20px;
}

.opening_profile_modal .modal-body {
    padding: 30px 20px;
}

.opening_profile_modal .modal-header {
    color: #d69f63;
    border-bottom: 1px solid #999;
}

    .opening_profile_modal .modal-header h4 {
        font-family: 'Arapey', serif;
        font-size: 24px;
    }

    .opening_profile_modal .modal-header .close {
        font-size: 32px;
        font-weight: 400;
        opacity: 1;
        color: #c5c5c5;
        text-shadow: none;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -ms-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .opening_profile_modal .modal-header .close:hover {
            color: #d69f63;
        }

        .opening_profile_modal .modal-header .close:focus {
            outline: none;
        }

.opening_profile_modal p {
    color: #fff;
}

    .opening_profile_modal p strong {
        font-family: 'Arapey', serif;
        color: #d69f63;
        font-weight: 400;
        font-size: 20px;
    }

    .opening_profile_modal p a {
        color: #d69f63;
    }

        .opening_profile_modal p a:hover {
            color: #fe6613;
        }


/***************/


/** Contact Page **/

.contact_bg {
    background: #fff url('../img/inner-contact-banner.png') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    height: 800px;
}

    .contact_bg .contact_banner_text {
        position: absolute;
        left: 10%;
        top: 45%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-left: 60px;
        text-align: left;
        width: 600px;
    }

        .contact_bg .contact_banner_text h1 {
            font-family: 'Arapey', serif;
            font-size: 70px;
            color: #000;
            margin-top: 0;
            margin-bottom: 10px;
            font-style: italic;
        }

        .contact_bg .contact_banner_text p {
            font-size: 20px;
            margin-bottom: 0;
            color: #000;
        }

#contact_page {
    padding: 0 0;
}

.contact_info {
    /*background-color: #282f39;*/
    background-color: #445c7b;
    padding: 60px 0;
}

.cont_add_info {
    display: block;
    width: 100%;
    padding-top: 35%;
}

.cadd_info_wrap {
    width: 100%;
    display: block;
    margin-bottom: 40px;
    color: #000;
    font-family: 'Quicksand', sans-serif;
}

    .cadd_info_wrap h4 {
        font-size: 28px;
        font-weight: 500;
        /*color: #fe6613;*/
        color: #ff860f;
        margin-bottom: 15px;
        font-family: inherit;
    }

    .cadd_info_wrap p {
        font-size: 18px;
        color: #fff;
        margin-bottom: 0;
    }

    .cadd_info_wrap span {
        display: block;
    }

        .cadd_info_wrap span a {
            color: #fe6613;
            font-size: 20px;
            font-weight: 500;
        }

.map_loc img {
    /*-webkit-filter: drop-shadow(1px 4px 10px rgba(0,0,0,0.8));
	filter: drop-shadow(1px 4px 10px rgba(0,0,0,0.8));*/
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.map_loc:hover img {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.loc_map {
    display: block;
}

    .loc_map iframe {
        width: 100%;
        min-height: 460px;
    }

.quick_cont_bar {
    display: block;
    width: 100%;
    background-color: #cba983;
    padding: 45px 0;
}

.call_us_box {
    display: block;
    padding-left: 40px;
}

.call_us_box_wrap {
    display: table;
}

.call_us_icon, .call_us_box_info {
    display: table-cell;
    vertical-align: top;
}

.call_us_icon {
    width: 100px;
}

    .call_us_icon img {
        transition: all 0.3s ease-in-out;
    }

.call_us_box_info {
    padding-left: 15px;
    padding-top: 3px;
}

    .call_us_box_info h5 {
        font-size: 30px;
        color: #000;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .call_us_box_info a {
        font-size: 30px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
    }

        .call_us_box_info a:hover {
            color: #fe6613;
        }

.call_us_box_wrap:hover .call_us_icon img {
    transform: translateY(-4px);
    /*box-shadow: 0 4px 8px -2px rgba(0,0,0,0.4);*/
    -webkit-filter: drop-shadow(0 0px 1px rgba(0,0,0,0.5));
    filter: drop-shadow(0 0px 1px rgba(0,0,0,0.5));
}



/*** Z Factor Page ***/

#zfactor_page {
    padding-bottom: 0;
}

.z_factor_bg {
    background: #fff url('../img/inner-zfactor-banner.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

    .z_factor_bg .z_bg_text {
        position: absolute;
        right: 0;
        top: 40%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-right: 100px;
        text-align: left;
        width: 700px;
    }

        .z_factor_bg .z_bg_text h1 {
            font-family: 'Arapey', serif;
            font-size: 70px;
            color: #fff;
            margin-top: 0;
            margin-bottom: 5px;
            font-style: italic;
        }

            .z_factor_bg .z_bg_text h1 span {
                color: #fe6613;
            }

        .z_factor_bg .z_bg_text h3 {
            margin-top: 0;
            margin-bottom: 0;
            font-size: 40px;
            color: #fff;
            font-family: 'butlerlight', serif;
        }

.del_promise {
    padding: 0px 0 50px;
    text-align: center;
}

    .del_promise h1 {
        font-size: 60px;
        color: #fe6613;
        /*font-family: 'butlerlight', serif;*/
        font-family: 'Arapey', serif;
        margin-top: 0;
        margin-bottom: 0;
    }

    .del_promise p {
        font-size: 22px;
    }

.del_pro_img {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
}

    .del_pro_img img {
        width: 100%;
    }

.del_step {
    min-height: 210px;
    /*background-color: #f2f2f2;*/
    text-align: center;
    padding: 30px 15px 5px;
}

    .del_step h4 {
        font-size: 28px;
        color: #fe6613;
        margin-top: 0px;
        margin-bottom: 15px;
        font-family: 'butlerlight', serif;
        text-transform: uppercase;
    }

    .del_step p {
        font-size: 18px;
        margin-bottom: 0;
    }

.int_solution {
    background: #fff url('../img/int-solution-bg.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    padding: 50px 0 90px;
    text-align: center;
}

.int_sol_desc {
    padding-right: 60px;
    padding-left: 60px;
}

    .int_sol_desc.right {
        padding-left: 40px;
        padding-right: 20px;
        padding-top: 40px;
    }


.int_solution h1 {
    font-size: 68px;
    font-family: 'Arapey', serif;
    /*font-family: 'butlerlight', serif;*/
    margin-top: 0;
    margin-bottom: 0;
}

.int_solution p {
    font-size: 18px;
}

.int_sol {
    width: 100%;
    padding: 20px 60px;
    margin-top: 60px;
    position: relative;
}

.int_sol_inn {
    padding: 30px 40px;
    background-color: #323232;
    width: 100%;
    min-height: 295px;
}

    .int_sol_inn h3 {
        font-family: 'Arapey', serif;
        font-size: 48px;
        color: #fe6613;
        margin-top: 0;
        margin-bottom: 12px;
        text-align: left;
    }

    .int_sol_inn p {
        font-size: 18px;
        color: #e4e4e4;
        text-align: left;
    }

.int_sol_img_b {
    width: 350px;
    height: 350px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    /*left: 140px;*/
    -webkit-box-shadow: 20px 26px 25px rgba(0,0,0,0.15);
    -moz-box-shadow: 20px 26px 25px rgba(0,0,0,0.15);
    box-shadow: 20px 26px 25px rgba(0,0,0,0.15);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .int_sol_img_b.left {
        left: 140px;
        right: auto;
    }


    .int_sol_img_b.right {
        right: 140px;
        left: auto;
    }

    .int_sol_img_b img {
        width: 100%;
        -webkit-object-fit: cover;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

.int_sol:hover .int_sol_img_b {
    -webkit-box-shadow: 20px 26px 25px rgba(0,0,0,0.3);
    -moz-box-shadow: 20px 26px 25px rgba(0,0,0,0.3);
    box-shadow: 20px 26px 25px rgba(0,0,0,0.3);
}

.turnkey_int_solutions {
    padding: 50px 0;
    text-align: center;
}

    .turnkey_int_solutions h1 {
        font-size: 52px;
        color: #fe6613;
        /*font-family: 'butlerlight', serif;*/
        font-family: 'Arapey', serif;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .turnkey_int_solutions p {
        font-size: 18px;
        width: 65%;
        margin: 0 auto 30px;
    }

.sol_ic_box_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

    .sol_ic_box_wrap.advisory_icons {
        padding: 20px 40px 0px;
    }

.sol_ic_box {
    min-height: 180px;
    width: 16.66%;
    padding: 0px 5px;
    /*background-color: #f2f2f2;*/
    text-align: center;
}

.ic_box {
    position: relative;
    height: 100px;
    text-align: center;
    width: 100%;
}

    .ic_box img {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

.sol_ic_box_wrap h6 {
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sol_ic_box:hover .ic_box img {
    -webkit-transform: translateY(-4px) scale(1.1);
    -moz-transform: translateY(-4px) scale(1.1);
    -ms-transform: translateY(-4px) scale(1.1);
    -o-transform: translateY(-4px) scale(1.1);
    transform: translateY(-4px) scale(1.1);
}

.sol_ic_box:hover h6 {
    color: #caa983;
}


.class_quality {
    background-color: #caa983;
    padding: 50px 0;
}

    .class_quality .col-xs-12 {
        padding-right: 15px;
    }

    .class_quality h1 {
        font-family: 'butlerlight', serif;
        font-size: 88px;
        margin-bottom: 50px;
        color: #fff;
        text-align: center;
        text-transform: none;
        /*background-color: #b79977;*/
        background-color: #957d61;
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 3px 3px 0px rgba(200,200,200,0.09);
    }

.quality_box {
    width: auto;
    max-width: 475px;
    min-height: 550px;
    margin-bottom: 30px;
}

    .quality_box img {
        /*box-shadow: 25px 20px 15px rgba(135, 111, 84, 0.25);*/
        -webkit-box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.12);
        -moz-box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.12);
        box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.12);
        width: 100%;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .quality_box h2 {
        font-family: 'Arapey', serif;
        font-size: 48px;
        margin-top: 45px;
        margin-bottom: 15px;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .quality_box p {
        font-size: 18px;
        color: #fff;
        text-align: left;
    }

    .quality_box:hover img {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.18);
        -moz-box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.18);
        box-shadow: 22px 20px 15px rgba(0, 0, 0, 0.18);
    }

    .quality_box:hover h2 {
        color: #000;
    }

/*** 360 Degree Page ***/

#degree_page {
    padding-bottom: 0;
}

.deg360_cont {
    background-color: #f2f2f2;
    padding: 25px 0;
}

#degree_page .deg360_cont h1 {
    font-family: 'butlerlight', serif;
    font-size: 240px;
    color: #1c1c1c;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    background-color: #b1b1b1;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: -2px 9px 15px rgba(255,255,255,0.62);
    position: relative;
    line-height: 1;
}

.deg360_cont h1 span {
    font-family: 'Arapey', serif;
    font-style: italic;
    font-size: 80px;
    display: block;
    color: #1c1c1c;
    line-height: 1;
    position: absolute;
    text-transform: none;
    top: 29%;
    left: 0;
    right: 0;
    margin: auto;
    /*-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);*/
}


.page_cont_tabs {
    padding-top: 40px;
}

    .page_cont_tabs h2 {
        font-size: 52px;
        color: #fe6613;
        font-family: 'Arapey', serif;
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .page_cont_tabs .nav {
        margin-bottom: 30px;
    }

    .page_cont_tabs .nav-pills > li {
        float: left;
        background: #ddd;
        width: 30%;
    }

        .page_cont_tabs .nav-pills > li + li {
            margin-left: 5%;
        }

        .page_cont_tabs .nav-pills > li > a {
            border-radius: 0px;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-align: center;
            padding: 25px;
            color: #fff;
            background-color: #545454;
        }

    .page_cont_tabs .nav > li > a:hover,
    .page_cont_tabs .nav > li > a:focus {
        text-decoration: none;
        background-color: #454545;
    }

    .page_cont_tabs .nav-pills > li.active > a,
    .page_cont_tabs .nav-pills > li.active > a:hover,
    .page_cont_tabs .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #fe6613;
    }

    .page_cont_tabs .tab-content {
        padding: 30px 0;
        text-align: center;
    }

        .page_cont_tabs .tab-content .theme_btn {
            min-width: 260px;
            font-family: 'Quicksand', sans-serif;
            text-transform: uppercase;
            font-size: 19px;
            font-weight: 400;
            letter-spacing: 4px;
            height: 70px;
            line-height: 70px;
            background-color: #fe6613;
            color: #fff;
            margin: 30px auto 0;
        }

            .page_cont_tabs .tab-content .theme_btn:hover {
                background-color: #1c1c1c;
                color: #fff;
                text-decoration: none;
            }

.proj_details_box {
    background-color: #fff;
    padding: 20px 15px;
    border: 1px solid #e5e5e5;
    margin-bottom: 40px;
    text-align: left;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.proj_thumb {
    overflow: hidden;
    height: 330px;
    position: relative;
}
    /*.proj_thumb img { 
	width: 100%; 
	-webkit-transition: all 0.4s ease-in-out;-o-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;
}*/
    .proj_thumb .proj_view_box {
        width: 100%;
        height: 100%;
        margin-left: 0%;
        float: none;
    }

        .proj_thumb .proj_view_box span {
            color: #fff;
        }

.proj_info_box {
    padding: 0 15px;
}

    .proj_info_box .theme_btn4 {
        margin-top: 0px;
        font-family: 'Quicksand', sans-serif;
        font-size: 18px;
        font-weight: 500;
    }

.modal_360_viewer {
    overflow: hidden;
    height: 400px;
    position: relative;
}

    .modal_360_viewer .proj_view_box {
        width: 100%;
        height: 100%;
        margin-left: 0%;
        float: none;
    }

.proj_details_box h6,
.proj_details_box h4,
.proj_details_box p,
.proj_details_box span {
    color: #1c1c1c;
}

.proj_details_box p {
    font-size: 16px;
    line-height: 1.6;
}

.proj_details_box h6,
.proj_details_box h4 {
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
}

.proj_details_box h6 {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.proj_details_box h4 {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 4px;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.proj_details_box ul {
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    list-style: none;
}

    .proj_details_box ul li {
        border-right: 1px solid #e9e2d0;
        display: inline-block;
        padding: 0 15px;
    }

        .proj_details_box ul li:last-child {
            border-right: 0px;
        }

        .proj_details_box ul li:first-child {
            padding-left: 0;
        }

.user_comment {
    display: table;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 22px;
}

.quote, .quote_text {
    display: table-cell;
    vertical-align: top;
}

.quote {
    width: 130px;
    text-align: center;
}

    .quote img {
        margin: auto;
    }

.quote_text {
    padding-left: 15px;
    padding-right: 15px;
}

    .quote_text p {
        margin-bottom: 0;
    }

.proj_details_box:hover {
    -webkit-box-shadow: 0 1px 3px -1px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 1px 3px -1px rgba(0,0,0,0.05);
    box-shadow: 0 1px 3px -1px rgba(0,0,0,0.05);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

    .proj_details_box:hover h4 {
        color: #fe6613;
    }

/************************/


/*** Blogs Page ***/

#blog_page {
    padding-top: 100px;
    border-bottom: 1px solid #e4e4e4;
}

.blog_cont_wrap h2 {
    font-size: 42px;
    color: #fe6613;
    font-family: 'Arapey', serif;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 6px;
}

.blog_head {
    display: block;
    width: 100%;
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    margin-bottom: 15px;
    position: relative;
}

.post_drop_trig {
    position: absolute;
    top: 12px;
    right: 0;
    display: none;
    width: 40px;
    height: 30px;
    background-color: #ddd;
    color: #333;
    line-height: 30px;
    font-size: 22px;
    text-align: center;
}

.recent_post_wrap h2 {
    color: #1c1c1c;
}

.recent_post_wrap .blog_head {
    border-bottom: 0px;
}

.blog_box {
    display: block;
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
}

    .blog_box h3 {
        font-family: 'Quicksand', sans-serif;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 24px;
    }

        .blog_box h3 a {
            color: #1c1c1c;
            text-decoration: none;
        }

            .blog_box h3 a:hover {
                color: #fe6613;
                text-decoration: none;
            }

.blog_post_by {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

    .blog_post_by span {
        font-size: 15px;
        font-style: italic;
    }

        .blog_post_by span:after {
            content: '|';
            position: relative;
            padding-left: 5px;
        }

        .blog_post_by span:last-child:after {
            content: '';
        }

.blog_thumb {
    display: block;
    width: 100%;
    position: relative;
}
    /*.blog_thumb span {
	top: 15px;
	right: 15px;
	left:auto;
}*/
    .blog_thumb a.pinit_btn {
        position: absolute;
        top: 15px;
        right: 55px;
        width: 60px;
        height: 26px;
        line-height: 27px;
        background-color: #c8232c !important;
        color: #fff;
        font-size: 12px;
        text-align: center;
        border-radius: 5px;
        cursor: pointer;
    }

        .blog_thumb a.pinit_btn i {
            padding-right: 5px;
            font-size: 14px;
        }

.share_trig {
    width: 30px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 4px;
    color: #fe6613;
    font-size: 15px;
    background-color: #fff;
}

.share_opt {
    position: absolute;
    top: 40px;
    width: 33px;
    height: auto;
    display: none;
    right: 15px;
    text-align: center;
    background-color: #ddd;
}

.share_trig:hover .share_trig + .share_opt {
    display: block;
}


.oss-widget-interface a {
    /*width: 30px !important;*/
    margin: auto;
}

    .oss-widget-interface a:hover {
        padding-left: 0 !important;
        width: 32px !important;
    }



.blog_thumb img {
    width: 100%;
}

.recent_post_box {
    display: block;
    width: 100%;
    padding: 20px 0px;
    border-bottom: 1px solid #dadada;
}

.recent_post_wrap .recent_post_box:last-child {
    border-bottom: 0px;
}

.rpb_outer {
    display: table;
    width: 100%;
}

.rpb_post_img, .rpb_desc {
    display: table-cell;
    vertical-align: top;
}

.rpb_post_img {
    width: 125px;
    overflow: hidden;
}

    .rpb_post_img img {
        width: 100%;
    }

.rpb_desc {
    padding-left: 10px;
    padding-top: 6px;
}

    .rpb_desc h6 {
        font-family: 'Quicksand', sans-serif;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 16px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dadada;
        line-height: 1.3;
    }

        .rpb_desc h6 a {
            color: #1c1c1c;
            text-decoration: none;
        }

            .rpb_desc h6 a:hover {
                color: #fe6613;
                text-decoration: none;
            }

.recent_post_box.active .rpb_desc h6 a {
    color: #fe6613;
}


.rpb_desc span {
    display: block;
    font-size: 13px;
    font-style: italic;
}

/*** Blog Details Page ***/

#blog_details_page {
    padding-top: 100px;
    border-bottom: 1px solid #e4e4e4;
}

    #blog_details_page h3,
    #blog_details_page h4,
    #blog_details_page h5 {
        font-family: 'Quicksand', sans-serif;
        margin-top: 0;
    }

    #blog_details_page .blog_box {
        padding-top: 35px;
    }

    #blog_details_page h3 {
        margin-top: 0;
        margin-bottom: 6px;
        font-size: 32px;
    }

    #blog_details_page h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    #blog_details_page h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #blog_details_page .recent_post_wrap .blog_head {
        margin-bottom: 0;
    }

    #blog_details_page p a {
        color: #fe6613;
        font-weight: 500;
    }

.blog_text_outer ul {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 15px;
}

    .blog_text_outer ul li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 5px;
    }

        .blog_text_outer ul li:before {
            content: '\f111';
            position: absolute;
            font-family: FontAwesome;
            font-size: 10px;
            color: #fe6613;
            left: 0;
            top: 5px;
        }


/*** Footer Section ***/

#footer_sect {
    padding: 0;
    background: #fff;
}

    #footer_sect .container.vertical_line_wrap {
        padding: 80px 15px;
    }

    #footer_sect .vertical_line {
        left: 14.2%;
    }

    #footer_sect h1 {
        color: #fe6613;
        font-size: 40px;
        margin: 0;
        font-style: normal;
        color: #1c1c1c;
    }

        #footer_sect h1 span {
            font-size: 46px;
            text-transform: none;
            color: #fe6613;
        }

.footer_logo {
    padding-top: 12px;
    padding-bottom: 10px;
    background-color: #fff;
}

.consult_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.consult_btn {
    padding-left: 30px;
}

#footer_sect .theme_btn3 {
    margin-top: 0;
    font-family: 'Arapey', serif;
}


#copyright {
    padding: 20px 0;
    border-top: 1px solid #e7e7e7;
    background:#fff;
}

.copy ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 15px;
    margin-top: 11px;
}

    .copy ul li {
        display: inline-block;
        margin-right: 10px;
        color: #4d4948;
        position: relative;
    }

        .copy ul li:first-child {
            margin-left: 0;
        }

            .copy ul li:first-child:before {
                content: '';
                display: none;
            }

        .copy ul li:before {
            content: '|';
            padding-right: 10px;
        }

.social {
    text-align: right;
}

    .social ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
    }

        .social ul li {
            display: inline-block;
            margin-right: 6px;
        }

            .social ul li:last-child {
                margin-right: 0;
            }

            .social ul li a {
                display: block;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                text-align: center;
                background-color: #fe6613;
                color: #fff;
            }

                .social ul li a i {
                    font-size: 22px;
                    line-height: 40px;
                }

                .social ul li a:hover {
                    -webkit-transform: translateY(-6px);
                    -moz-transform: translateY(-6px);
                    -ms-transform: translateY(-6px);
                    -o-transform: translateY(-6px);
                    transform: translateY(-6px);
                    -webkit-box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
                    -moz-box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
                    box-shadow: 0px 3px 8px rgba(254, 102, 19, 0.65);
                }


/** Form Styles **/

.modal.quick_enq_form {
    z-index: 10000;
}

.quick_enq_form .modal-content {
    border-radius: 2px;
    background-color: #333;
}

.quick_enq_form .modal-header {
    padding: 15px 20px;
}

.quick_enq_form .modal-body {
    padding: 40px 20px 30px;
}

.quick_enq_form .modal-header {
    color: #d69f63;
    border-bottom: 1px solid #999;
}

    .quick_enq_form .modal-header h4 {
        font-family: 'Arapey', serif;
        font-size: 24px;
    }

    .quick_enq_form .modal-header .close {
        font-size: 32px;
        font-weight: 400;
        opacity: 1;
        color: #c5c5c5;
        text-shadow: none;
        -webkit-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

        .quick_enq_form .modal-header .close:hover {
            color: #d69f63;
        }

        .quick_enq_form .modal-header .close:focus {
            outline: none;
        }

/** Enq Form Modal Styles **/

.quick_enq_form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.quick_enq_form .form-control {
    height: 38px;
}

textarea.enq_form_fields {
    resize: none;
    height: 80px !important;
    padding-top: 10px;
}

.quick_enq_form .enq_form_fields {
    color: #dcdcdc;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid #c5c5c5;
    box-shadow: none;
    border-radius: 2px;
    /*text-indent: 100px;*/
    padding-left: 110px;
    outline: none;
    background: transparent;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .quick_enq_form .enq_form_fields::-webkit-input-placeholder {
        color: #fff;
    }

    .quick_enq_form .enq_form_fields::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .quick_enq_form .enq_form_fields:-ms-input-placeholder {
        color: #fff;
    }

    .quick_enq_form .enq_form_fields:-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .quick_enq_form .enq_form_fields::placeholder {
        color: #fff;
    }

    .quick_enq_form .enq_form_fields ~ label.enq_field_nm {
        color: #c5c5c5;
        font-size: 12px;
        text-transform: uppercase;
        border-radius: 2px;
        font-family: inherit;
        display: inline-block;
        font-weight: 500;
        position: absolute;
        pointer-events: none;
        background-color: #535353;
        padding: 6px 6px;
        min-width: 100px;
        left: 4px;
        top: 4px;
        margin-bottom: 0;
        visibility: visible;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .quick_enq_form .enq_form_fields:focus ~ label.enq_field_nm {
        visibility: visible;
        line-height: 15px;
        top: -22px;
        padding: 4px 6px;
        left: 0;
        font-size: 12px;
        /*font-size:14px;*/
        background-color: #a47a4c;
        color: #fff;
    }

    .quick_enq_form .enq_form_fields:focus {
        outline: none;
        border-color: #a47a4c;
        box-shadow: none;
        /*text-indent: 0;*/
        padding-left: 8px;
    }

/** By default the company field is hidden.. **/
#show_field {
    display: none;
}

/*** Radio Button Styles **/
.quick_enq_form .form-group.select_opt {
    margin-bottom: 25px;
}

.select_opt ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

    .select_opt ul li {
        color: #c5c5c5;
        display: block;
        position: relative;
        float: left;
        width: 48%;
        height: auto;
    }

        .select_opt ul li input[type=radio] {
            position: absolute;
            visibility: hidden;
        }

        .select_opt ul li label {
            display: block;
            position: relative;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.1;
            padding: 5px 5px 5px 40px;
            margin: 5px auto;
            /* height: 30px; */
            z-index: 9;
            cursor: pointer;
            /*-webkit-transition: all 0.25s linear;*/
            -webkit-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

            .select_opt ul li label span {
                font-size: 12px;
                color: #c5c5c5;
                text-align: left;
                display: block;
                line-height: 1;
                padding-top: 5px;
            }

        .select_opt ul li:hover label {
            color: #FFFFFF;
        }

        .select_opt ul li .check {
            display: block;
            position: absolute;
            border: 2px solid #c5c5c5;
            border-radius: 100%;
            height: 20px;
            width: 20px;
            top: 10px;
            left: 5px;
            z-index: 5;
            /*transition: border .25s linear;
		-webkit-transition: border .25s linear;*/
            -webkit-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .select_opt ul li:hover .check {
            border: 2px solid #FFFFFF;
        }

        .select_opt ul li .check::before {
            display: block;
            position: absolute;
            content: '';
            border-radius: 100%;
            height: 10px;
            width: 10px;
            top: 3px;
            left: 3px;
            -webkit-transform: scale(0.5);
            -moz-transform: scale(0.5);
            -ms-transform: scale(0.5);
            -o-transform: scale(0.5);
            transform: scale(0.5);
            margin: auto;
            /*transition: background 0.25s linear, transform 0.25s ease;*/
            -webkit-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            ;
            /*-webkit-transition: background 0.25s linear;*/
        }

.select_opt input[type=radio]:checked ~ .check {
    border: 2px solid #a47a4c;
}

    .select_opt input[type=radio]:checked ~ .check::before {
        background: #a47a4c;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.select_opt input[type=radio]:checked ~ label {
    color: #a47a4c;
}
/***********************/
.enq_sub_btn {
    background-color: #a47a4c;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    font-size: 17px;
    min-width: 120px;
    padding: 8px 12px;
    color: #fff;
    /*font-weight: bold;*/
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    .enq_sub_btn:hover,
    .enq_sub_btn:focus {
        outline: none;
        background-color: #cc7020;
        color: #fff;
    }

.btn_cancel {
    background-color: #888;
    color: #fff;
    margin-left: 10px;
}

    .btn_cancel:hover,
    .btn_cancel:focus {
        outline: none;
        background-color: #777;
        color: #fff;
    }

/**************/

.error_msg {
    position: absolute;
    top: 100%;
    right: 0px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #fd5151;
    text-align: left;
}



/********** Back To Top Anchor ******/

.back_to_top {
    position: fixed;
    bottom: 70px;
    right: 50px;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    display: none;
    font-size: 22px;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .back_to_top:hover {
        background-color: rgba(0,0,0,0.8);
        color: #fe6613;
        text-decoration: none;
    }


/*** 360 view modals ***/

.modal.view_360_modal {
    z-index: 10000;
}

.view_360_modal .modal-content {
    border-radius: 2px;
    background-color: #333;
}

.view_360_modal .modal-header {
    padding: 15px 20px;
}

.view_360_modal .modal-body {
    padding: 40px 20px 30px;
}

.view_360_modal .modal-header {
    color: #d69f63;
    border-bottom: 1px solid #999;
}

.view_360_modal .modal-header h4 {
    font-family: 'Arapey', serif;
    font-size: 24px;
}

.view_360_modal .modal-header .close {
    font-size: 32px;
    font-weight: 400;
    opacity: 1;
    color: #c5c5c5;
    text-shadow: none;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.view_360_modal .modal-header .close:hover {
    color: #d69f63;
}

.view_360_modal .modal-header .close:focus {
    outline: none;
}


/** Updated on 27-Dec-18 **/

/*.view_thumbs {
    display: block;
    height: 75%;
    margin: 20px auto 0 0px;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}*/

.project_vr_view {
    position: relative;
    /*-webkit-box-shadow: 0 1px 15px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 15px rgba(0,0,0,0.5);*/
    /*box-shadow: 0 1px 25px rgba(0,0,0,0.25);*/
}

.modal_360_viewer {
    box-shadow: 0 1px 25px rgba(0,0,0,0.25);   
}


.vr_thumb_wrap { padding-left: 0; }

.view_thumbs {
    /*display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;*/
    display: flex;
    align-items: center;

    position: absolute;
    top: 0;
    right: 0;
    /*display: block;*/
    width: 150px;
    height: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
    margin: 0px auto 0 0px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 89;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /*white-space: nowrap;*/
}

/*.view_thumbs:hover {
    background-color: rgba(61,61,61,0.5);
}*/

.view_thumbs ul {
    margin: 0px 0 0 0;
    padding: 0;
    padding-top: 10px;
}

.view_thumbs ul li {
    display: inline-block;
    width: 120px;
    list-style: none;
    cursor: pointer;
    border-radius: 10px;
    opacity: 0.6;
    background: #505050;

    margin-bottom: 8px;
    color: #fff;
    font-size: 12px;
    float:none;
    margin-right: 0;
    text-align: center;
    -webkit-box-shadow: 0 1px 15px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 15px rgba(0,0,0,0.5);
    box-shadow: 0 1px 15px rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.view_thumbs ul li:nth-of-type(4n) {
    margin-right: 2%;
}

/***************************/

.view_thumbs ul li.active {
    background: #fe6613;
    opacity: 0.9;
}

.view_thumbs ul li span {
    border-radius: 10px;
    opacity: 0.4;
    display: block;
    background: #505050;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.view_thumbs ul li.active span {
    background: #fe6613;
    opacity: 0.9;
}

.view_thumbs ul li img {
    cursor: pointer;
    width: 100%;
    /*height: 110px;*/
    height: 90px;
}
.view_thumbs ul li:not(.active):hover span {
    background: #404040;
    opacity: 0.9;
}
.view_thumbs ul li:not(.active):hover {
    background: #404040;
    opacity: 0.9;

    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/* scroll width */
.view_thumbs::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

/* Track */
.view_thumbs::-webkit-scrollbar-track {
    /*box-shadow: inset 1px 1px 6px #fff;*/
    box-shadow: inset 1px 1px 6px #757575;
    border-radius: 10px;
}

/* Handle */
.view_thumbs::-webkit-scrollbar-thumb {
    /*background: #838383;*/
    /*background: #737373;*/
    background: #6b6b6b;
    border-radius: 10px;
}

/* Handle on hover */
.view_thumbs::-webkit-scrollbar-thumb:hover {
    background: #d69f63;
}

/*@media screen and (max-width: 1199px){
    .vr_thumb_wrap { padding-left: 15px; }
    .view_thumbs {
        height: 75%; 
        margin: 20px auto 0 0px;
        overflow-y: hidden;
        overflow-x: auto;
        white-space: nowrap; 
    }

    .view_thumbs ul li { margin-right: 2%; }
}

@media screen and (max-width: 991px){

    .view_thumbs ul li{
        width:30%;
        margin-right: 5%;
        margin-bottom: 5%;
    }
        .view_thumbs ul li:nth-of-type(4n) {
            margin-right: 5%;
        }
        .view_thumbs ul li:nth-of-type(3n) {
            margin-right: 0;
        }
}*/

@media screen and (max-width: 767px) {

    .proj_styles_nav {
        left: 0; right: auto;
    }

    .view_thumbs {
        display: block;
        width: 100%;
        float: none;
        margin: 0 auto 0em auto;
        overflow-x: auto;
        position: relative;
        padding-top: 15px;
        padding-bottom: 0;
        
    }
        .view_thumbs ul {
            /*flex-wrap:nowrap;*/
            text-align: left;
        }

        .view_thumbs::-webkit-scrollbar {
            height: 8px;
        }

        /*.view_thumbs ul {
            white-space: nowrap;
        }*/

        .view_thumbs ul li {
            float: none;
            margin-right: 2%;
            min-width: 140px;
            font-size: 14px;
            padding: 6px;
            border-radius: 20px;

        }
        .view_thumbs ul li:nth-of-type(4n), .view_thumbs ul li:nth-of-type(3n) {
            margin-right: 2%;
        }

        .view_thumbs ul li img {
            /*//width: 120px;
            //height: 80px;*/
        }


}

@media screen and (max-width: 640px) {
    .view_thumbs {
        /*height: 124px;*/
        padding-bottom: 15px;
    }

        .view_thumbs ul {
            white-space: nowrap;
        }

            .view_thumbs ul li img {
               /*// height: 60px;*/
            }
}


/*************************/



