﻿html {
    position: relative;
    width: 100%;
    min-height: 100%;
}
body {
    width: 100%;
    height: 100%;
	color: #2e3435;
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;	
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 25px;
}
a {
  color: #2e3435;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #ec008c;
  text-decoration: none;
}
hr {
	width: 100%;
}
img {
	vertical-align: middle;
	border-width: 0;
    border: 0;
    border: none;
    outline: none;
    outline: 0;
    border-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;	
}
ul {
	padding: 0;
    margin: 0;
    list-style: none;
}
::selection {
    background: #eaeaea;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/page-loader.gif') 50% 50% no-repeat rgb(255, 255, 255);
    opacity: 1;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
}
.bg-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btnPrimary {
    color: #fff;
    background-color: #2c98f0;
    border-color: #2c98f0;
}
.btnPrimary:hover {
    color: #fff;
    background-color: #238ade;
    border-color: #238ade;
}
.btnOutline {
	color: #2e3435;
    background-color: transparent;
    background-image: none;
    border: 2px solid #2e3435;
	font-weight: bold;
}
.btnOutline:hover {
	color: #fff;
    background-color: #2e3435;
	border: 2px solid #2e3435;
}
.btnLarg {
	
}
.navBar {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}
/*-------------------Header-------------------*/
.headerBar {
	width: 100%;
    z-index: 1000;
    display: inline-block;
    padding: 20px 0;
}
.headerWidth {	
	width: 100%;
	max-width: 1140px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.headerLft {
	float: left;
}
.headerRgt {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.headerBrand {
	width: 120px;
	display: inline-block;
}
.headerNav .navItem a {
	display: inline-block;
}
.headerIcon {
	height: 26px;
}
.headerNav {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.headerNav .navItem {
	margin-left: 24px;
	display: inline-block;
}
.headerMenu {
	cursor: pointer;
}
.headerCart a {
	position: relative;
}
.headerCart .cartCount {
	position: absolute;
    top: 6px;
    right: -6px;
    border-radius: 16px;
    background: #ec006d;
    width: 10px;
    height: 10px;
    text-align: center;
    font-size: 0;
	font-weight: bold;
    line-height: 9px;
	text-indent: 150%;
    white-space: nowrap;
    overflow: hidden;
	color: #fff;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.headerCart:hover .cartCount {
	width: 30px;
	height: 16px;
	font-size: 12px;
	text-indent: 0;
	padding: 3px 6px;
}
.dropDown {
	position: relative;
}
.dropDownMenu {
	display: none;
	position: absolute;
    right: 0;
    top: 52px;
    white-space: nowrap;
    min-width: 160px;
	-webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.dropDownMenu.on {
	display: block;
}
.dropDownMenu li {
	padding: 10px 20px;
    background: #fff;
    margin: 4px 0;
		box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);

}
.dropDownMenu a {
	color: #2e3435 !important;
	padding-left: 0;
	-webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
	width: 100%;
}
.dropDownMenu a:hover {
	color: #ec008c !important;
	padding-left: 4px;
}
.dropDownMenu a i {
	padding-right: 4px;
	font-size: 14px;
}
@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.hamburgerMenu {
    position: relative;
    width: 26px;
    height: 24px;
}
.hamburgerMenuIcon {
    top: 50%;
    display: block;
    margin-top: -1px;
}
.hamburgerMenuIcon:after, .hamburgerMenuIcon:before {
    display: block;
    content: "";
}
.hamburgerMenuIcon, .hamburgerMenuIcon:after, .hamburgerMenuIcon:before {
    position: absolute;
    width: 26px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .25s;
    transition-property: transform;
    border-radius: 4px;
}
.hamburgerMenuIcon:before {
    transition: top .1s ease-in .25s,opacity .1s ease-in;
}
.hamburgerMenuIcon:before {
    top: -8px;
}
.hamburgerMenuIcon:after {
    transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19);
}
.hamburgerMenuIcon:after {
    bottom: -8px;
}
.on .hamburgerMenuIcon {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(225deg);
}
.on .hamburgerMenuIcon:before {
    top: 0;
    transition: top .1s ease-out,opacity .1s ease-out .12s;
    opacity: 0;
}
.on .hamburgerMenuIcon:after {
    bottom: 0;
    transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}
.headerContact:hover .headerIcon {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.headerLocation:hover .headerIcon  {
    -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.headerUser .headerIcon {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.headerUser:hover .headerIcon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.headerCart:hover a  {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
  animation-duration: 1s;
}

.headerLight {
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
}
.headerLight .l, .headerDark .d {
	display: black;
}
.headerDark .l, .headerLight .d {
	display: none;
}
.headerLight .hamburgerMenuIcon, .headerLight .hamburgerMenuIcon:after, .headerLight .hamburgerMenuIcon:before {
    background-color: #fff;
}
.headerLight .headerNav .navItem a {
    color: #fff;
}
.headerDark {
	background-color: #fff;
	position: fixed;
	top: -87px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
.headerDark .hamburgerMenuIcon, .headerDark .hamburgerMenuIcon:after, .headerDark .hamburgerMenuIcon:before {
    background-color: #2e3435;
}
.headerDark .headerNav .navItem a {
    color: #2e3435;
}

@media (max-width: 767px) {
.headerNav .navItem {
    margin-left: 20px;
}
.headerContact, .headerLocation, .headerLaguage {
	display: none !important;
}
.dropDown {
    position: inherit;
}
.dropDownMenu {
	width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    top: 77px;
}
}

/*-------------------Banner-------------------*/
#banner {
	background: #2e3435;
}
.mainBanner {
    width: 100%;
    height: 480px;
    text-align: center;
    overflow: hidden;
	position: relative;
}
.bannerContent {
    text-align: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
	width: 100%;
}
.bannerContact .navBar, .serviceDisplay .navBar {
	-webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.contactIcon {
	width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px #fff solid;
    margin: 3px auto;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.serviceDisplay {
	color: #a7a9ac;
    padding-top: 64px;
}
.bannerContact {
	width: 100%;
    position: absolute;
    bottom: 20px;
    z-index: 97;
}
.bannerContact .whatsappWeb {
	display: block;
}
.bannerContact .whatsappMob {
	display: none;
}
.bannerContact a {
    color: #fff;
    font-size: 22px;
    padding: 0px 30px;
	display: inline-block;
}
.bannerContact p {
    margin: 0;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.bannerContact a:hover .contactIcon {
    -webkit-transform: scale(1.2); /* WebKit */
    -moz-transform: scale(1.2); /* Mozilla */
    -o-transform: scale(1.2); /* Opera */
    -ms-transform: scale(1.2); /* Internet Explorer */
    transform: scale(1.2); /* CSS3 */
}
.bannerContact a:hover p {
    -webkit-transform: scale(.8); /* WebKit */
    -moz-transform: scale(.8); /* Mozilla */
    -o-transform: scale(.8); /* Opera */
    -ms-transform: scale(.8); /* Internet Explorer */
    transform: scale(.8); /* CSS3 */
}
.bgImg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0px;
	background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.bgOverlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.bannerText {
    position: relative;
}
.bannerText .textItem {
    color: #fff;
    margin: 10px 0;
    position: relative;
    z-index: 11;
}
.bannerText .bgCircle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px #fff solid;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -170px;
    margin-top: -170px;
    z-index: 10;
    opacity: 0;
    transform: scale(0);
}
.bannerText .textItem1 {
    font-size: 34px;
    line-height: 34px;
    font-weight: 300;
}
.bannerText .textItem2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 55px;
    /* text-transform: uppercase!important;*/
}
.bannerText .textItem3 {
    font-size: 34px;
    line-height: 34px;
    font-weight: 300;
    margin-bottom: 20px;
}
.bannerText .textItem4, .bannerText .textItem5 {
    font-size: 30px;
    line-height: 30px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.serviceDisplay {
    color: #a7a9ac;
    padding-top: 64px;
}
.serviceDisplay .arabic {
    font-size: 19px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.serviceDisplay .english {
    font-size: 24px;
}
.serviceDisplay img {
    height: 17px;
}
.serviceDisplay .navItem + .navItem::before {
    display: inline-block;
    color: #ffffff;
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    margin: 0 6px 2px;
}
.serviceDisplay .navBar, .bannerContact .navBar {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.innerBanner {
    width: 100%;
    height: 480px;
    text-align: center;
    overflow: hidden;
	position: relative;
}
.innerBanner .bannerText {
    margin-top: 64px;
}
.innerBanner .bannerText .textItem2 {
    font-size: 90px;
    font-weight: 700;
    line-height: 90px;
}

@media (max-width: 767px) {
.bannerText .bgCircle {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
}
.bannerText .textItem1 {
    font-size: 24px;
    line-height: 24px;
}
.bannerText .textItem2 {
    font-size: 40px;
    line-height: 40px;
}
.bannerText .textItem3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
}
.bannerText .textItem4, .bannerText .textItem5 {
    font-size: 20px;
    line-height: 20px;
}
.serviceDisplay {
    padding-top: 24px;
}
.serviceDisplay .english {
    font-size: 16px;
}
.serviceDisplay .arabic {
    font-size: 13px;
}
.bannerContact a {
    font-size: 16px;
    padding: 0px 14px;
}
.bannerContact .contactIcon {
    width: 40px;
    height: 40px;
}
.innerBanner .bannerText .textItem2 {
    font-size: 40px;
    line-height: 40px;
}
.bannerContact .whatsappWeb {
	display: none;
}
.bannerContact .whatsappMob {
	display: block;
}
}

/*-------------------Menu-------------------*/
.mainMenu {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 0;
    top: 0;
    right: 0;
	opacity: 0;
    z-index: 98;
    overflow: hidden;
    position: fixed;
    text-transform: uppercase;
}
.menuArea {
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	padding-top: 78px;
	display: none;
    opacity: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.menuBrand {
	position: absolute;
	width: 120px;
    display: inline-block;
}
.menuItem li {
    opacity: 0;
    transform: translateY(500px);
}
.menuItem .navItem a {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	line-height: 48px;
	display: inline-block;
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.menuItem .navItem a:hover {
	color: #ec008c;
	-webkit-transform: scale(1.1); /* WebKit */
    -moz-transform: scale(1.1); /* Mozilla */
    -o-transform: scale(1.1); /* Opera */
    -ms-transform: scale(1.1); /* Internet Explorer */
    transform: scale(1.1); /* CSS3 */
}
.menuLanguage {
	padding: 26px 0;
    font-size: 30px;
    line-height: 30px;
    color: #949494;
}
.menuLanguage a {
	font-size: 24px;
    color: #949494;
	-webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.menuLanguage .active {
	color: #fff;
}
.menuLanguage .active:hover {
	color: #ec008c;
}
.menuBtn .btn {
	opacity: 0;
    min-width: 150px;
    margin: 5px 0;
	font-weight: bold;
	transform: translateY(100px);
}
.menuBtn .btnFlip {
    min-width: 162px;
    margin: 4px 0;
	opacity: 0;
    transform: translateY(100px);
}
.menuBtn .btnOutline {
	color: #fff;
    background-color: transparent;
    background-image: none;
    border: 2px solid #fff;
}
.menuBtn .btnOutline:hover {
	color: #fff;
    background-color: #2e3435;
}
@media (max-width: 767px) {
.menuItem .navItem a {
    font-size: 26px;
    line-height: 40px;
}
.menuLanguage {
    padding: 18px 0;
    font-size: 20px;
    line-height: 20px;
}
.menuLanguage a {
    font-size: 16px;
}
.menuBtn .btn, .menuBtn .btnFlip {
    min-width: 150px;
    font-weight: bold;
    font-size: 12px;
}
}
/*-------------------Works-------------------*/
.contantBlock {
	width: 100%;
    background: #fff;
    padding: 30px 0;
}
.contantBlock.blockStart {
	padding-top: 74px;
}
.contantBlock.blockEnd {
	padding-bottom: 74px;
}
.work-top h4 {
	color: #595b61;
	margin-bottom: 20px;	
}
.work-top h3 {
	color: #ec008c;
	margin-top: 36px;
	margin-bottom: 0;
	font-weight: bold;
}
.workGallery {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0 4%;
    width: 100%;
}
.workGallery li {
    width: 25%;
    float: left;
    padding: 8px;
	z-index: 0;
}
.workGallery li:hover {
	z-index: 5;
}
.workGallery li div {
	overflow: hidden;
	position: relative;
}
.workGallery img {
	width: 100%;
}
.workGallery .galleryTitle {
	position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    z-index: 4;
	opacity: 0;
	font-size: 18px;
    font-weight: bold;
	-webkit-transition: all .4s ease-in-out .15s;
    -moz-transition: all .4s ease-in-out .15s;
    -o-transition: all .4s ease-in-out .15s;
    transition: all .4s ease-in-out .15s;
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
.workGallery li div:hover .galleryTitle {
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.workGallery .workBtn {
	position: absolute;
    bottom: 15px;
    right: 22px;
    text-align: center;
    color: #fff;
    z-index: 4;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out .35s;
    -moz-transition: all .5s ease-in-out .35s;
    -o-transition: all .5s ease-in-out .35s;
    transition: all .5s ease-in-out .35s;
}
.workGallery li div:hover .workBtn {
    opacity: 1;
}


.workGallery a:after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    left: 50%;
    top: 50%;
    z-index: 3;
    border-radius: 50%;
    /*background-color: rgba(236, 0, 140, .5);*/
	opacity: 0;

	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -moz-transform: translateX(-50%) translateY(-50%) scale(0);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0);
}
.workGallery li div:hover a:after {
    transform: translateX(-50%) translateY(-50%) scale(1);
	opacity: 1;
}
.workGallery li:nth-child(6n+1) a:after{
    background: rgba(182, 46, 115, .8);
}
.workGallery li:nth-child(6n+2) a:after{
    background: rgba(116, 67, 126, .8);
}
.workGallery li:nth-child(6n+3) a:after{
    background: rgba(77, 150, 128, .8);
}
.workGallery li:nth-child(6n+4) a:after{
    background: rgba(192, 83, 83, .8);
}
.workGallery li:nth-child(6n+5) a:after{
    background: rgba(0, 143, 181, .8);
}
.workGallery li:nth-child(6n+6) a:after{
    background: rgba(208, 190, 45, .8);
}

.work-bottom .nav-item {
	padding: 12px 16px;	
}
.work-bottom .nav-link {
	padding: 6px 0;
	position: relative;
	    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;

}
.work-bottom .nav-link:hover {
	color: #ec008c;
}
.work-bottom .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec008c;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.work-bottom .nav-link:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
@media (max-width: 991px) {
.workGallery li {
    width: 33.33%;
}
.workGallery {
    padding: 0;
}
}
@media (max-width: 767px) {
.workGallery li {
    width: 50%;
}
.work-bottom .nav-item {
    padding: 2px 0;
    width: 100%;
}
}
/*-------------------Footer-------------------*/
.footerBlock {
    color: #fff;
    padding: 50px 0;
    background-color: #2e3435;
	width: 100%;
	position: relative;
	z-index: 2;
	font-size: 14px;
}
.footerWidth {
    width: 100%;
    max-width: 1140px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.footerTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.footerBottom {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	margin-top: 24px;
}
.footerTop .navBar {
	margin-bottom: 30px;
}
.footerBottom .navBar {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.footerBottom .navItem {
    padding: 0 4px;
	font-size: 30px;
}
.footerBlock .socialMedia {
	padding-top: 22px;
}
.footerBlock .socialMedia a {
    border-radius: 50%;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    margin-right: 12px;
    margin-top: 3px;
}
.footerBlock .socialMedia a i {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.footerBlock .socialMedia a:hover i {
	-webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.footerForm {
	padding: 10px 0 0 0;
}
.footerForm input {
    width: calc(100% - 40px);
    float: left;
    height: 40px;
    border-radius: 0;
    border: 1px solid #9e9e9e;
    background-color: transparent;
    font-size: 15px;
    color: #fff;    
}
.footerForm input:focus {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}
.footerForm button {
    width: 40px;
    font-size: 15px;
    height: 40px;
    border: 1px solid #9e9e9e;
    padding: 0;
	border-radius: 0;
	background-color: transparent;
	border-left: transparent;
	color: #9e9e9e;
}
.footerForm button:hover {
    border: 1px solid #ec008c;
	background-color: #ec008c;
	color: #fff;
}
.footerForm button:focus {
    box-shadow: none !important;
}
.footerForm button:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #ec008c;
    border-color: #ec008c;
}
.footerMap {
	width: 140px;
	height: 140px;
	background: #ccc;
	border-radius: 50%;
	margin: 22px auto 0px;
	overflow: hidden;
}
.footerBlock p {
    margin: 0;
}
.footerBlock a {
    color: #fff;
	-webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
}
.footerBlock a:hover {
    color: #ec008c;
    text-decoration: none;
}
.footerBlock .navItem > a {
	padding-left: 0;
}
.footerBlock .navItem > a:hover {
	padding-left: 4px;
}
.footerBlock .navbarBrand {
    width: 260px;
	padding: 0;
    margin: 0 0 10px 0;
	display: inline-block;
	position: relative;
}
.footerBlock .circleRibbon.big {
    position: absolute;
    top: 9px;
    left: 131px
    display: flex;
}
.footerBlock .circleRibbon.big span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: -1.3px;
    position: relative;
}
.footerBlock .circleRibbon.small {
    position: absolute;
    top: 29px;
    left: 131px;
    display: flex;
}
.footerBlock .circleRibbon.small span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: -1px;
    position: relative;
}
.footerBlock .navItem img {
	height: 30px;
    border-radius: 3px;
}
.footerBlock .navItem .sslIcon {
	height: 50px;
}
.footerBottom p {
    font-size: 12px;
}
@media (max-width: 767px) {
.footerTop {
    display: inline-block;
	width: 100%;
	margin: 0;
}
.footerBlock .col {
    flex-basis: inherit;
    flex-grow: inherit;
    width: 100%;
    text-align: center;
}
.footerBottom {
	-webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.footerBlock .navItem .sslIcon {
    height: 33px;
}
.footerLeft, .footerRight {
	margin: 0 10px;
}
.footerBottom p {
    margin: 0;
    font-size: 12px;
    text-align: center;
    margin-bottom: 6px;
}
}



/*-------------------Commen-------------------*/
.color-circle {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    z-index: 1;
    opacity: 0;
}
.color-circle.lft {
    left: 0;
}
.color-circle.rgt {
    right: 0;
    transform: rotate(180deg);
}
.color-circle span {
    position: absolute;
    border-radius: 50%;
    display: inline-block;
}
.color-circle span:nth-child(1){
    background: #b62e73;
    top: 6%;
    left: 22%;
    width: 30px;
    height: 30px;
}
.color-circle span:nth-child(2){
    background: #74437e;
    top: 15%;
    left: 34%;
    width: 45px;
    height: 45px;
}
.color-circle span:nth-child(3){
    background: #4d9680;
    top: 26%;
    left: 28%;
    width: 34px;
    height: 34px;
}
.color-circle span:nth-child(4){
    background: #c05353;
    top: 42%;
    left: 24%;
    width: 30px;
    height: 30px;
}
.color-circle span:nth-child(5){
    background: #008fb5;
    top: 50%;
    left: 38%;
    width: 25px;
    height: 25px;
}
.color-circle span:nth-child(6){
    background: #bcb044;
    top: 60%;
    left: 36%;
    width: 22px;
    height: 22px;
}

.circleRibbon {
	position: absolute;
    top: 0;
    left: 131px;
    display: flex;
}
.circleRibbon span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: -1.5px;
	position: relative;
}
.circleRibbon span:nth-child(12n+1){
    background: #00aeef;
	z-index: 12;
}
.circleRibbon span:nth-child(12n+2){
    background: #4d7da8;
	z-index: 11;
}
.circleRibbon span:nth-child(12n+3){
    background: #715574;
	z-index: 10;
}
.circleRibbon span:nth-child(12n+4){
    background: #662e4f;
	z-index: 9;
}
.circleRibbon span:nth-child(12n+5){
    background: #e81e89;
	z-index: 8;
}
.circleRibbon span:nth-child(12n+6){
    background: #bf6a74;
	z-index: 7;
}
.circleRibbon span:nth-child(12n+7){
    background: #977857;
	z-index: 6;
}
.circleRibbon span:nth-child(12n+8){
    background: #6c6c35;
	z-index: 5;
}
.circleRibbon span:nth-child(12n+9){
    background: #faed34;
	z-index: 4;
}
.circleRibbon span:nth-child(12n+10){
    background: #8dae77;
	z-index: 3;
}
.circleRibbon span:nth-child(12n+11){
    background: #377f7f;
	z-index: 2;
}
.circleRibbon span:nth-child(12n+12){
    background: #20596d;
	z-index: 1;
}




/*-------------------Contact-------------------*/
.contactDetails h3 {
	color: #2e3435;
    font-weight: bold;
    font-size: 28px;
	margin-bottom: 20px;
}
.contactDetails h4 {
	color: #ec008c;
    font-weight: 600;
    font-size: 22px;
    margin-top: 26px;
}
.contactDetails .socialMedia a {
    border: 2px solid #bfbfbf;
    color: #bfbfbf;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    margin-right: 7px;
    margin-top: 10px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.contactDetails .socialMedia a:hover {
	color: #ec008c;
	border-color: #ec008c;
	-webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);

}
.contactForm  .form-group {
    margin-bottom: 30px;
}
.contactForm  .form-control {
    border-radius: 0;
    background: transparent;
    border: 1px solid #9e9e9e;
    color: #2e3435;
	padding: 10px 12px;
}
.contactForm .form-control:focus {
    border-color: #2e3435 !important;
    outline: 0;
    box-shadow: none;
}
.contactForm .formBtn {
    margin: 0 -4px;
    display: inline-block;
}
.contactForm .btn {
	margin: 0 4px 8px;
    width: calc(50% - 8px);
    float: left;
}
.parallaxBlock {
	width: 100%;
	text-align: center;
	color: #fff;
	position: relative;
}
.parallaxBlock .bgImg {
    background-position: center;
}
.parallaxBlock .bgOverlay {
	background-color: rgba(0,0,0,.65);
}
.parallaxBlock h3 {
	margin-bottom: 16px;
	color: #fff;
}
.parallaxBlock .question {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-top: 42px;
}
.mapFull {
	width: 100%;
	height: 400px;
}

/*-------------------Login-------------------*/
.loginBlock {
	width: 100%;
	height: 100%;
	min-height: 480px;
}
.loginTop {
	padding-top: 64px;
	min-height: 470px;
}
.loginTop h3 {
	color: #ec008c;
    margin-bottom: 0;
    font-weight: bold;
}
.loginTop h4 {
	font-size: 34px;
    margin: 0;
    color: #8e8e8e;	
}
.loginBottom {
	background: #5253A3;
	min-height: 500px;
}
.loginTop, .loginBottom {
	width: 100%;
	height: 50%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.orderBlock {
	text-align: center;
	max-width: 730px;
    width: 100%;
}
.orderFlow {
	position: relative;
	padding: 30px 0;
	height: 180px;
}
.orderFlowItems {
	display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
	position: relative;
}
.orderFlowItems  li {
	display: inline-block;
	width: 130px;
}
.orderFlowItems p {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

}
.orderFlowItems li:hover  p {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.orderFlowItems .icon {
	width: 80px;
	height: 80px;
    border-radius: 50%;
	background: #5253A3;
	margin: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.orderFlowItems .icon img {
	width: 100%;
}
.orderFlowItems li:hover  .icon {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.orderFlowRibbon {
	position: absolute;
	width: 100%;
	top: 98px;
}
.circle-ribbon span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0;
}
.circle-ribbon span:nth-child(12n+1){
    background: #fff200;
}
.circle-ribbon span:nth-child(12n+2){
    background: #fdca90;
}
.circle-ribbon span:nth-child(12n+3){
    background: #fac6c5;
}
.circle-ribbon span:nth-child(12n+4){
    background: #fde8f1;
}
.circle-ribbon span:nth-child(12n+5){
    background: #ec008c;
}
.circle-ribbon span:nth-child(12n+6){
    background: #c193c3;
}
.circle-ribbon span:nth-child(12n+7){
    background: #b7cbe9;
}
.circle-ribbon span:nth-child(12n+8){
    background: #e2f4fd;
}
.circle-ribbon span:nth-child(12n+9){
    background: #00afef;
}
.circle-ribbon span:nth-child(12n+10){
    background: #86d0cb;
}
.circle-ribbon span:nth-child(12n+11){
    background: #dfedc8;
}
.circle-ribbon span:nth-child(12n+12){
    background: #fffde8;
}
.loginFormArea {
	background: #fff;
	padding: 40px;
	display: flex;
	z-index: 1;
	color: #2e3435;
    text-align: left;
}
.loginFormArea h5 {
    margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.loginFormArea p {
	text-align: center;
    margin-bottom: 0;
}
.loginFormArea .forgotPassword {
	float: right;
}
.loginFormArea form {
	width: 50%;
}
.signInForm {
	padding-right: 40px;
    border-right: 1px solid #ccc;
}
.signUpForm {
	padding-left: 40px;
}
.loginFormArea  .form-control {
    border-radius: 0;
    background: transparent;
    border: 1px solid #9e9e9e;
    color: #2e3435;
	padding: 10px 12px;
}
.loginFormArea .form-control:focus {
    border-color: #2e3435 !important;
    outline: 0;
    box-shadow: none;
}
.loginFormArea .btn {
	width: 100%;
	margin-bottom: 14px;
}

@media (max-width: 767px) {
.loginFormArea {
    display: block;
	padding: 25px;
	width: 100%;
}
.loginFormArea .signInForm {
    width: 100%;
    padding: 0;
    border: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
}
.loginFormArea .signUpForm {
    width: 100%;
    padding: 0;
    border: 0;
    padding-top: 25px;
}
.signUpForm .col-md-6:nth-child(1) {
    margin-bottom: 1rem;
}
.loginFormArea .forgotPassword {
    float: inherit;
    display: inline-block;
    width: 100%;
    margin-left: -20px;
}
.loginBottom {
	padding: 24px;
}
.loginTop {
	padding-top: 94px;
    padding-bottom: 36px;
}
.orderFlow {
    height: inherit;
}
.orderFlowRibbon {
    display: none;
}
.orderFlowItems li {
    width: 70px;
}
.orderFlowItems p {
    font-size: 10px;
}
.orderFlowItems .icon {
    width: 60px;
    height: 60px;
}
.loginTop h4 {
    font-size: 28px;
}
}

/*-------------------Listing page-------------------*/
.listMenu {
	width: 100%;
	background: #E6E7E8;
	padding: 10px 0;
}
.listMenu .nav-item {
	padding: 12px 16px;	
}
.listMenu .nav-link {
	padding: 6px 0;
	position: relative;
	-webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.listMenu .nav-link:hover, .listMenu .active .nav-link {
	color: #ec008c;
}
.listMenu .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec008c;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.listMenu .nav-link:hover:before, .listMenu .active .nav-link:before {
  visibility: visible;
  transform: scaleX(1);
}
.listingItemNav {
	border: 1px solid #ccc;
	padding: 5px 15px;
	margin-top: 30px;
	margin-bottom: 15px;
}
.listingItemNav .nav-link {
    cursor: pointer;
    margin: 8px 0px 8px 12px;
    padding: 0;
}
.productListing {
	display: inline-block;
    width: 100%;
	position: relative;
}
.productItemImg img {
	width: 100%;
}
.productListingLoader {
    width: 100%;
    height: 0;
    position: absolute;
    z-index: 6;
	top: 0;
    left: 0;
    text-align: center;
	opacity: 0;
	background: #fff;
	overflow: hidden;
}
/*---Thump---*/
.productListing.thump .productItem {
	width: 25%;
    float: left;
    padding: 15px;
}
.productListing.thump .productItemImg {
	border: 1px solid #ccc;
    border-bottom: 0;
	overflow: hidden;
	position: relative;
}

.productListing.thump .productItemContant {
	text-align: center;
    padding: 15px;
	position: relative;
	border: 1px solid #ccc;
    border-top: 0;
}
.productListing.thump .productItemDetail {
	position: absolute;
    top: -67px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px;
	color: #fff;
    z-index: 4;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out .15s;
    -moz-transition: all .4s ease-in-out .15s;
    -o-transition: all .4s ease-in-out .15s;
    transition: all .4s ease-in-out .15s;
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.productListing.thump .productItem:hover .productItemDetail {
	opacity: 1;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/*---List---*/
.productListing.list .productItem {
	width: 100%;
    padding: 15px;
}
.productListing.list .productItem > div {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	border: 1px solid #ccc;
}
.productListing.list .productItemImg {
    position: relative;
    overflow: hidden;
    width: 260px;
	height: 260px;
}
.productListing.list .productItemContant {
	text-align: left;
    padding: 15px 22px;
    position: relative;
    width: calc(100% - 260px);
}
.productItemImg:before, .productItemImg:after  {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	left: 50%;
	top: 50%;
	z-index: 3;
	border-radius: 50%;
	background-color: rgba(236, 0, 140, .5);
	opacity: 0;
	
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	-moz-transform: translateX(-50%) translateY(-50%) scale(0);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0);
	transform: translateX(-50%) translateY(-50%) scale(0);
}
.productItem:hover .productItemImg:after {
	transform: translateX(-50%) translateY(-50%) scale(1);
	opacity: 1;
}
.productItem:nth-child(6n+1) .productItemImg:after{
    background: rgba(182, 46, 115, .8);
}
.productItem:nth-child(6n+2) .productItemImg:after{
    background: rgba(116, 67, 126, .8);
}
.productItem:nth-child(6n+3) .productItemImg:after{
    background: rgba(77, 150, 128, .8);
}
.productItem:nth-child(6n+4) .productItemImg:after{
    background: rgba(192, 83, 83, .8);
}
.productItem:nth-child(6n+5) .productItemImg:after{
    background: rgba(0, 143, 181, .8);
}
.productItem:nth-child(6n+6) .productItemImg:after{
    background: rgba(208, 190, 45, .8);
}


.productItemContant .btnFlip {
    letter-spacing: 0;
    font-size: 14px;
    line-height: 36px;
    margin: 6px 0;
}
.productItemContant .btnFlip:before {
    padding: 0px 18px;
    line-height: 36px;
	color: #ec008c;
	background: #eaeaea;
}
.productItemContant .btnFlip:after {
    color: #ffffff;
    background: #ec008c;
}

@media (max-width: 991px) {
.productListing.thump .productItem {
    width: 50%;
}
}
@media (max-width: 767px) {
.productListing.thump .productItem {
    max-width: 360px;
	width: 100%;
    margin: auto;
    float: inherit;
}
.listingItemNav h5 {
	font-size: 16px;
}
.listMenu .nav-item {
    padding: 2px 10px;
    font-size: 14px;
}
.productListing.list .productItemImg {
    width: 100px;
    height: 100px;
}
.productListing.list .productItemContant {
    width: calc(100% - 100px);
}
}

/*-------------------Product page-------------------*/
.productBanner {
	width: 100%;
    overflow: hidden;
    position: relative;
	height: inherit;
}
.productBanner .card {
    text-align: left;
    border-radius: 0;
    color: #7C8081;
    margin: 120px 0;
}
.productBanner .card h4 {
	font-size: 38px;
}
.productBanner .list-group-item {
    position: relative;
    display: block;
    padding: 2px 0px;
    margin-bottom: -1px;
    background-color: #fff;
    border: none;
	color: #1082A4;
	font-size: 14px;
}
.productBanner .list-group-item:before {
	content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}
.productBanner .list-group-item:nth-child(5n+1):before {
    background: #00AEEF;
}
.productBanner .list-group-item:nth-child(5n+2):before {
    background: #E81E89;
}
.productBanner .list-group-item:nth-child(5n+3):before {
    background: #FAED34;
}
.productBanner .list-group-item:nth-child(5n+4):before {
    background: #121617;
}
.productBanner .list-group-item:nth-child(5n+5):before {
    background: #FFF;
	border: 1px solid #00AEEF;
}
.detail-banner, .detail-banner .bg-img {
	height: 500px;
}
.owl-carousel {
	margin-top: -76px;
}
.owl-carousel .item {
	overflow: hidden;
	position: relative;
}
.owl-nav, .owl-dots {
	display: none !important;
}

.owl-carousel  .owl-title {
	position: absolute;
	bottom: 30px;
	width: 100%;
	color: #fff;
	text-align: center;
	z-index: 4;
	opacity: 0;
	font-size: 18px;
    font-weight: bold;
	-webkit-transition: all .4s ease-in-out .15s;
    -moz-transition: all .4s ease-in-out .15s;
    -o-transition: all .4s ease-in-out .15s;
    transition: all .4s ease-in-out .15s;
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
.owl-item  a:hover .owl-title {
	opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.owl-item  a {
	overflow: hidden;
}
.owl-item  a:before, .owl-item  a:after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    left: 50%;
    top: 50%;
    z-index: 3;
    border-radius: 50%;
	opacity: 0;

	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -moz-transform: translateX(-50%) translateY(-50%) scale(0);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0);
}
.owl-item:hover a:after, .owl-item:hover a:before {
    transform: translateX(-50%) translateY(-50%) scale(1);
	opacity: 1;
}
.owl-item:nth-child(6n+1) a:after{
    background: rgba(182, 46, 115, .8);
}
.owl-item:nth-child(6n+2) a:after{
    background: rgba(116, 67, 126, .8);
}
.owl-item:nth-child(6n+3) a:after{
    background: rgba(77, 150, 128, .8);
}
.owl-item:nth-child(6n+4) a:after{
    background: rgba(192, 83, 83, .8);
}
.owl-item:nth-child(6n+5) a:after{
    background: rgba(0, 143, 181, .8);
}
.owl-item:nth-child(6n+6) a:after{
    background: rgba(208, 190, 45, .8);
}

.price-calculator .next-btn, .price-calculator .finish-btn  {
	float: right;
}
.price-calculator .previous-btn {
	float: left;
}
.price-calculator .next-btn, .price-calculator .previous-btn, .price-calculator .finish-btn {
	min-width: 110px;
}
.detailsPriceDisplay{
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
	position: -webkit-sticky;
	position: sticky;
    top: 116px;
}
.detailsPriceBody {
	padding: 20px;
}
.detailsPriceDisplay .price {
	color: #4A6FB5;
	font-size: 34px;
	margin-top: 35px;
}
.detailsPriceDisplay .detailsPriceBody span {
	font-size: 12px;
}
.detailsPriceDisplay .detailsPriceBody input {
	width: 120px;
	display: inline-block;
    margin-left: 6px;
}
.detailsPriceDisplay .detailsPriceBody .btn {
	margin: 14px 0;
}

.price-calculator {
}
.price-calculator .card {
	margin-bottom: 10px;
}
.price-calculator .card-header {
	background: #fff;
	cursor: pointer;
	border-bottom: none;
}
.price-calculator  .card-footer {
	border-top: none;
	background: #fff;
	display: inline-block;
    width: 100%;
}
.price-calculator .card-header h5 {
	display: inline-block;
    font-size: 16px;
}
.price-calculator .card-header span {
	display: inline-block;
    font-size: 16px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: right;
    color: #9e9e9e;
    padding: 0 20px;
}
.price-calculator .card-body {
	display: inline-block;
	width: 100%;
}
.price-calculator .card-.footerBlock {
	background: #fff;
	display: inline-block;
	width: 100%;
}
.price-calculator .card-.footerBlock .next-btn {
	background: #4A6FB5;
	border-color: #4A6FB5;
	border-radius: 0.25rem;
	float: right;
}
.price-calculator .card-.footerBlock .previous-btn {
	background: #4A6FB5;
	border-color: #4A6FB5;
	border-radius: 0.25rem;
}
.price-calculator .card-body .custom-radio {
	width: 25%;
    margin: 0;
    padding: 8px;
    float: left;
    text-align: center;
}
.price-calculator .custom-radio .custom-control-label::before, .price-calculator .custom-control-label::after {
	display: none;
}
.price-calculator .card-body .custom-radio img {
	width: 100%;
	margin-bottom: 6px;
}
.price-calculator .custom-radio .custom-control-input:checked ~ .custom-control-label {
	border-color: #4A6FB5;
}
.price-calculator .custom-radio .custom-control-label {
	border: 2px solid transparent;
	padding: 8px;
    border-radius: 8px;
	cursor: pointer;
}

.price-calculator-items {
	width: 25%;
    padding: 10px 24px;
    float: left;
    text-align: center;
	font-size: 14px;
}
.price-calculator-items label {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 0 6px 0;
	border-radius: 50%;
    overflow: hidden;
	
	    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    transition: all .2s ease-out;
	
	-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.price-calculator-items label:hover {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}
.price-calculator-items input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.price-calculator-items img {
	width: 100%;
}
.price-calculator-items .checkmark {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.price-calculator-items input:checked ~ .checkmark:after {
	display: block;
	border: 2px solid #ff47b4;
}
.price-calculator-items .checkmark:after {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ccc;
	content: "";
	border-radius: 50%;
}
.files input {
    padding: 140px 0 0 0;
	height: 140px;
	cursor: pointer;
}
.files { 
	position:relative
}
.files:before {  
	pointer-events: none;
    position: absolute;
    top: 34px;
    left: 0;
    width: 180px;
    right: 0;
    content: "UPLOAD ART WORK";
    background: #ec008c;
	color: #fff;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
}
.files:after {
    position: absolute;
    bottom: 28px;
    left: 0;
	pointer-events: none;
    width: 100%;
    right: 0;
    content: " DRAG AND DROP ARTWORK FILES ";
    display: block;
    margin: 0 auto;
    color: #2ea591;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}
.contant {
	font-size: 14px;
}
.contant h5 {
	font-size: 18px;
	text-align: center;
}
.contant h6 {
	margin-top: 25px;
    margin-bottom: 10px;
	font-weight: bold;
	font-size: 15px;
}
.contant p {
	margin-bottom: 5px;
}
.contant .contant-list {
	margin-bottom: 5px;
    padding-left: 10px;
    list-style: none;
}
.contant .contant-list li {
    position: relative;
    letter-spacing: .01em;
    padding-left: 10px;
}
.contant .contant-list li:before {
    position: absolute;
    border-radius: 4px;
    left: 0px;
    top: 8px;
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background-color: #000;
}
@media (max-width: 767px) {
.price-calculator-items {
    width: 50%;
    padding: 10px 10px;
    font-size: 12px;
    min-height: 170px;
}
.price-calculator .card-header {
    padding: 8px 14px;
}
.price-calculator .card-header span {
    font-size: 14px;
    top: 11px;
    padding: 0 14px;
}
.price-calculator .card-header h5 {
    font-size: 14px;
}
}

/*-------------------About page-------------------*/
.darckBlock {
	background: #343b3c;
	text-align: center;
	color: #fff;
	padding: 74px 0;
	width: 100%
}
.darckBlock p {
	color: #8a8a8a;
	font-size: 14px;
}
.contantFullBlock {
	display: flex;
}
.aboutImg {
	background-image: url(../img/bg-img4.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
	width: 50%;
}
.aboutContact {
	width: 50%;
	padding: 74px;
}
@media (max-width: 991px) { 
.aboutContact {
	width: 50%;
	padding: 50px;
}
}
@media (max-width: 767px) {
.aboutImg {
	display: none;
}
.aboutContact {
    width: 100%;
    padding: 50px 15px;
}
}

/*-------------------Clients page-------------------*/
.client-top h3 {
    color: #ec008c;
    font-weight: bold;
}
.clientList {
	overflow: hidden;
	padding-top: 1px;
}
.clientList ul {
	display: inline-block;
    width: calc(100% + 8px);
    margin-left: -2px;
    text-align: center;
}
.clientList li {
	width: 25%;
	height: 280px;
    float: left;
	border: 1px solid #ccc;
    margin: -1px -1px 0 0;
	padding: 40px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.clientList li img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    transition: all .2s ease-out;

}
.clientList li:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.client-bottom {
	
}
@media (max-width: 1199px) {
.clientList li {
	height: 235px;
}	
}
@media (max-width: 991px) {
.clientList li {
	height: 174px;
	padding: 20px
}	
}
@media (max-width: 767px) {
.clientList li {
	width: 100%;
	height: inherit;
}
.clientList li img {
	max-width: 200px;
	width: 100%;
}	
}



/***************Responsive***************/
@media (max-width: 991px) {
.circle-ribbon {
    line-height: 0;
    padding: 10px 0;
}
.whatsapp-web {
	display: none;
}
.whatsapp-mob {
	display: block;
}
.work-item-img li {
    width: 33.3%;
}
.contactForm .formBtn {
    margin: 0;
}
.contactForm .btn {
	margin: 0 0 8px;
    width: 100%;
}
}
@media (max-width: 767px) {
header .container {
	padding: 0;
	position: relative;
	padding-top: 50px;
}
.header-menu-icon {
    position: absolute;
    right: -14px;
    top: 59px;
}
.header-user {
    position: absolute;
    top: 59px;
    right: 102px;
}
.header-cart {
    position: absolute;
    top: 58px;
    right: 35px;
}
header .nav {
	width: 100%;
	position: absolute;
	top: 0;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}
.inner-banner, .inner-banner .bg-img {
    height: 360px;
}
.inner-banner {
	margin-top: 114px;
}
.footerBlock .col {
    flex-basis: inherit;
    flex-grow: inherit;
    width: 100%;
    text-align: center;
}
.work-item-img li {
    width: 100%;
}
.contactForm {
    margin-top: 20px;
}
.menu .nav-link {
    padding: 4px 0;
    font-size: 26px;
    font-weight: 600;
}
.menu-btn .btn {
    width: 80%;
    font-size: 14px;
}
.service-display .arabic {
    font-size: 13px;
}
.service-display .english {
    font-size: 16px;
}
.service-display {
    padding-top: 52px;
}
.menu {
    z-index: 99;
}
.menu-close {
	display: block;
}
.footerBlock .nav-item .ssl-icon {
    height: 33px;
}
.login-form-area {
    display: block;
	margin: 15px 0;
	padding: 14px;
}
.login-form-area form {
    width: 100%;
	padding: 0;
    border: 0;
}
.login-top, .login-bottom {
	height: inherit;
	
}
.login-top {
    padding-top: 114px;
}
.order-flow {
    height: inherit;
}
.order-flow-ribbon {
    display: none;
}
.footerBlock .socialMedia a {
    margin-right: 6px;
    margin-left: 6px;
}
    .inner-banner .banner-text .bg-circle, .banner-text .bg-circle {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
    }
    
    .banner-text .text-item {
        margin: 5px 0;
    }
    .banner-text #text-item1 {
        font-size: 24px;
        line-height: 24px;
    }
    .inner-banner .banner-text #text-item2, .banner-text #text-item2 {
        font-size: 30px;
        line-height: 30px;
    }
    .inner-banner .banner-text #text-item3, .banner-text #text-item3 {
        font-size: 24px;
        line-height: 24px;
		margin-bottom: 15px;
    }
	.banner-text #text-item4, .banner-text #text-item5 {
		font-size: 20px;
		line-height: 20px;
	}
    .color-circle span {
        -webkit-transform: scale(0.5); /* WebKit */
        -moz-transform: scale(0.5); /* Mozilla */
        -o-transform: scale(0.5); /* Opera */
        -ms-transform: scale(0.5); /* Internet Explorer */
        transform: scale(0.5); /* CSS3 */
    }
}

/*-------------------Button-------------------*/
.animatedBtn {
	position: relative;
	overflow: hidden;
	font-weight: bold;
	z-index: 1;
	background: transparent;
}
.animatedBtn:before  {
	content: "";
	position: absolute;
	height: 350px;
	left: 50%;
	top: 50%;
	width: 350px;
	z-index: -1;
	border-radius: 50%;
	-webkit-transition: all .75s ease-in-out .2s;
	-moz-transition: all .75s ease-in-out .2s;
	-o-transition: all .75s ease-in-out .2s;
	transition: all .75s ease-in-out .2s;
	-moz-transform: translateX(-50%) translateY(-50%) scale(0);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0);
	transform: translateX(-50%) translateY(-50%) scale(0);
}
.animatedBtn:after  {
	content: "";
	position: absolute;
	height: 350px;
	left: 50%;
	top: 50%;
	width: 350px;
	z-index: -1;
	border-radius: 50%;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
	-moz-transform: translateX(-50%) translateY(-50%) scale(0);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0);
	transform: translateX(-50%) translateY(-50%) scale(0);
}
.animatedBtn:hover:after, .animatedBtn:hover:before {
	transform: translateX(-50%) translateY(-50%) scale(1);
}

.animatedBtn.lightBtn {
	border: 2px solid #fff;
	color: #fff;
}
.animatedBtn.lightBtn:hover {
	color: #fff;
	text-shadow: none;
}
.animatedBtn.lightBtn:after, .animatedBtn.lightBtn:before {
	background-color: rgba(255, 255, 255, 0.2);
}
.animatedBtn.darckBtn {
	border: 2px solid #2e3435 !important;
	color: #2e3435 !important;
}
.animatedBtn.darckBtn:hover {
	color: #2e3435;
	text-shadow: none;
}
.animatedBtn.darckBtn:after, .animatedBtn.darckBtn:before {
	background-color: rgba(46, 52, 53, 0.05);
}
.btnFlip {
  outline: 0;
  color: #fff;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: 'Open Sans';
  text-transform: uppercase;
  font-weight: bold;
}
.btnFlip:hover:after {
  opacity: 1;
  -webkit-transform: translateY(0) rotateX(0);
          transform: translateY(0) rotateX(0);
}
.btnFlip:hover:before {
  opacity: 0;
  -webkit-transform: translateY(50%) rotateX(90deg);
          transform: translateY(50%) rotateX(90deg);
}
.btnFlip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #2e3435;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  background: #fff;
  content: attr(data-back);
  -webkit-transform: translateY(-50%) rotateX(90deg);
          transform: translateY(-50%) rotateX(90deg);
}
.btnFlip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: #fff;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  background: #ec008c;
  content: attr(data-front);
  -webkit-transform: translateY(0) rotateX(0);
          transform: translateY(0) rotateX(0);
}
.largeBtn {
	font-size: 20px;
}


/*-------------------Hover Animation-------------------*/

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

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

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

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

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
    -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



/*.slideInUp {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.7s ease-out;
          transition: all 0.7s ease-out;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}
.slideInUp.slideInUp2, .slideInUp.slideInUp3 {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.isActive .slideInUp {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.isActive .slideInUp.slideInUp2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.isActive .slideInUp.slideInUp3 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}*/
