@import url('https://fonts.googleapis.com/css?family=Merriweather|Roboto');
@import url('normalize.css');


/*
	Theme Name: allore.
	Created : July 13, 2018
	Updated : None
	Version: 1.0

*/

/* ========================================================================== */
/* ========================================================================== */
							/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */
    
/*	

    1. BASE MODULE.	
		1.1. RESET
		1.2. TYPOGRAPHY
		1.3. BUTTONS
		1.4. LOADER

	2. LAYOUT MODULE.
		2.1 SPACING AND ALIGNMENT
		2.2 HEADER
		2.3 SIDEBAR
		2.5 FOOTER
		2.6 CAROUSEL

	3. PAGES MODULE.
		3.1 COMMON STYLES
		3.2 ABOUT PAGES
		3.3 CONTACT US
		3.4 SERVICES
		3.5 BLOG 
		3.6 404 ERROR PAGE
		3.7 SHOP
		3.8 PRODUCT DETAIL
		
	4. COMPONENTS MODULE.
		4.1 SCROLLING TOP
		4.2 TESTIMONIAL SLIDER
		4.3 IMAGE GALLERY
		4.4 VIDEO POPUP
		4.5 CUSTOMERS CAROUSEL.
		
	5. MEDIA QUERIES MODULE.
		5.1 TYPOGRAPHY BREAKPOINTS VIEW
		5.2 THEME BREAKPOINTS VIEW
		
*/ 

/* ==========================================================================
   	1. BASE MODULE.
   ========================================================================== */

/* ================== 
	1.1. RESET. 
   ================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
    overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/* ================== 
	1.2. TYPOGRAPHY. 
   ================== */
h1{
    font-size: 24px;
	font-family: 'Merriweather', serif;
}

h2{
    font-size: 22px;
	font-family: 'Roboto', sans-serif;
}

h3{
    font-size: 20px;
    font-family: 'Merriweather', serif;
}

h4{
    font-size: 18px;
	font-family: 'Merriweather', serif;
}

h5{
    font-size: 16px;
	font-family: 'Roboto', sans-serif;
}

h6{
    font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

p{
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #000000;
}

/* ================== 
	1.3. BUTTONS. 
   ================== */
.btn {
  display: inline-block;
  padding: 6px 30px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-custom {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
  transition: 0.3s;
    border-radius: 30px;
}
.btn-custom:focus,
.btn-custom.focus {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
}
.btn-custom:hover {
  color: #FFF;
  background-color: #BF7DE8;
  border-color: #BF7DE8;
}
.btn-custom:active,
.btn-custom.active,
.open > .dropdown-toggle.btn-custom {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
}

.btn-transparent {
  color: #F05295;
  background-color: transparent;
  border-color: #F05295;
  transition: 0.3s;
  border: solid 2px #F05295;
  border-radius: 30px;
}
.btn-transparent:focus,
.btn-transparent.focus {
  color: #FFF;
  background-color: transparent;
  border-color: #F05295;
}
.btn-transparent:hover {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
}
.btn-transparent:active,
.btn-transparent.active,
.open > .dropdown-toggle.btn-transparent {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
}

/* ================== 
	1.4. LOADER. 
   ================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background-color: #fde8f0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 1px solid transparent;
  border-top-color: #591782;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid transparent;
  border-top-color: #591782;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid transparent;
  border-top-color: #591782;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   	2. LAYOUT MODULE.
   ========================================================================== */

/* ================== 
	2.1. SPACING AND ALIGNMENT. 
   ================== */
.wrapper{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main{
    margin: 50px 0px 50px 0px;
}

.no-margin-bottom{
    margin: 50px 0px 0px 0px;
}

.section{
    padding: 15px;
    margin: 0px auto 0px auto;
}

.section-full{
    padding: 15px;
    padding: 0px 15px 0px 15px;
    margin: 0px auto 0px auto;
}

.color-background{
    padding: 40px 0px 40px 0px;
    background: #f9f9f9;
}

@media (min-width: 1200px) {
.section {
    width: 1200px;
}
    
.section-full {
    width: 1800px;
}
	
hr.top-line{
	width: 1170px;
}
 
}
hr.top-line{
    border-top: 1px solid #fff;
    margin: 0px auto 0px auto;
}
 
/* ================== 
	2.2. HEADER. 
   ================== */
.main-nav .section{
	padding: 0px;
}

.main-nav{
	position: absolute;
	width: 100%;
	z-index: 999;
	background-color: #ff2b4e;
	height: 120px;
	border-bottom: solid 3px #F05295;
}

.header{
	width: 100%;
	background: transparent;
	margin-bottom: 60px;
  
}

.top-header{
    margin-top: -15px;
    height: 50px;
    transition: 0.5s;
    background: #0798BC;
	padding: 15px 0px 15px 0px;
	transition: 0.3s;
}

.content p{
	color: #FFF;
	transition: 0.3s;
}

.rightside{
	float: right;
}

.social-items{
	display: inline-block;
	margin-right: 10px;
}

.social-items .fa{
	font-size: 16px;
	transition: 0.3s;
}

.social-items .fa:hover{
	color: #2D527C;
}

.location-top{
	display: inline-block;
	margin-right: 10px;
}

.button-container{
    margin: 30px 0px 30px 0px;
}

.navbar-brand{
	width: 150px;
}

.navbar-brand img{
	width: 100%;
}

.main-slider{
    z-index: 0;
}

.main-nav{
    z-index: 2; 
}

.main-header{
    height: 900px;
}

/* ================== 
	2.3. SIDEBAR. 
   ================== */
.sidebar{
    height: 100%;
    clear: both;
}

/* ================== 
	2.5. FOOTER. 
   ================== */
.main-footer{
	background-color: #0003c9;
	padding: 40px 0px 60px 0px;
	color: #FFF;
}

.footer-logo{
	width: 120px;
	margin-bottom: 10px;
}

.footer-logo img{
  width: 100%;
}

.social-footer{
	margin-top: 30px;
}

.social-footer h6{
	color: #d9d9d9;
}

.social-items{
    display: inline-block;
    margin: 10px 5px 0px 0px;
}

.social-items .fa{
    color: #F05295;
	font-size: 18px;
	transition: 0.3s;
}

.social-items .fa:hover{
    color: #fff;
}

.icon-fa{
    display:inline-block;
    font-size: 25px;
    line-height: 32px;
    background: #FFF;
    color: #FFF;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 5px;
    float: left;
	border: solid 1px #FFF;
	transition: 0.3s;
}

.icon-fa:hover .fa{
    color: #FFF;
}

.icon-fa:hover{
    background: #F05295;
	border: solid 1px #F05295;
}

.footer-categories h6{
	color: #FF404C;
}

.about-footer p{
	color: #fff;
    margin-top: 20px;
}

.footer-center, .footer-right{
    padding-top: 50px;
}

.categories-list{
	margin: 20px 15px 0px 0px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
    color: 
}
.categories-list-2{
	margin-top: 10px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

.main-footer a:link {
    text-decoration: none;
	color: #FFF;
}

.main-footer a:visited {
    text-decoration: none;
	color: #FFF;
}

.main-footer a:hover {
    text-decoration: none;
	color: #FFF;
}

.main-footer a:active {
    text-decoration: none;
	color: #FFF;
}

.subscribe-footer h6{
	margin-bottom: 10px;
}

.subscribe-footer p{
	color: #FFF;
}

.newsletter-box {
	margin: 15px 0px 15px 0px;
}

.newsletter-box form {
  	display: flex;
  	align-items: center;
}

.newsletter-box .input {
  	width: 75%;
  	height: 38px;
  	background: #FDFCFB;
  	border: none;
  	font-family: inherit;
  	color: #737373;
  	letter-spacing: 1px;
  	text-indent: 5%;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

.newsletter-box .button {
  	width: 25%;
  	height: 38px;
  	background-color: #F05295;
  	border: none;
  	border-radius: 0 5px 5px 0;
  	font-family: inherit;
  	font-weight: 500;
  	color: inherit;
  	letter-spacing: 1px;
  	cursor: pointer;
  	color: #FFF;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

p.cursive{
	font-style: italic;
    color: #FFF;
}

.left-footer{
	float: left;
}

.right-footer{
	float: right;
	color: #595959;
}

.left-footer p{
	color: #FFF;
	font-size: 13px;
}

.right-footer p{
	color: #FFF;
	font-size: 13px;
	transition: 0.3s;
}

/* ==========================================================================
   2.6 CAROUSEL. 
   ========================================================================== */
.main-slider{
    z-index: 0;
    height: 900px;
}

.main-nav{
    z-index: 2; 
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-caption h1{
	font-size: 60px;
	font-family: 'Merriweather', serif;
	text-align: left;
	text-decoration: none;
	color: #0003c9;
	text-shadow: none;
}

.carousel-caption p{
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
    text-shadow: none;
}

.carousel-inner {
    height: 900px;
}

.carousel-caption{
    padding-bottom:280px;
}

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.btn-large {
  padding: 8px 22px;
  font-size: 18px;
}

.inner-btn{
    text-align: left;
    display: inline-block;
    margin-right: 20px;
    float: left;
}


.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #591782;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 17px;
  height: 17px;
  margin: 0;
  background: #591782;
  border: #591782 solid 2px;
}

.left .carousel-control .icon-prev{
    color: #F2A81D;
    text-shadow: none;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
    text-shadow: none;
    color: #F05295;
    margin-top: 5%;
}

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}
html,
body,
.carousel,
.carousel-inner,
.carousel-inner .item {
  height: 100%;
}
.item:nth-child(1) {
  background: #fbd0e2;
}
.item:nth-child(2) {
  background: #fbd0e2;
}
.item:nth-child(3) {
  background: #fbd0e2;
}

/* ==========================================================================
   	3. PAGES MODULE.
   ========================================================================== */

/* ================== 
	3.1. THEME PAGES COMMON STYLES. 
   ================== */
.pages-header{
    background-image: url("../img/images/img2.jpg");
    height: 500px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
    position: relative;
	margin-bottom: 60px;
}

.section-heading{
    width: 100%;
    position: absolute;
    bottom: 0;
}

.span-title h1{
    color: #FFF;
}

.span-title p{
    color: #FFF;
}

.section-title h2{
    text-align: center;
}

.section-title{
    margin-bottom: 30px;
    padding: 0px 120px 0px 120px;
}

.section-title p{
	text-align: center;
	color: #000000;
	margin-top: 10px;
}

hr.center{
    width: 120px;
    border-top: 2px solid #F05295;
    margin: 15px auto 15px auto;
    text-align: center;
}

hr.center:after {
    font-family: FontAwesome;
	content: '\f299';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #FFF;
	color: #F05295;
	font-size: 18px;
}

hr.center-color{
    width: 120px;
    border-top: 2px solid #F05295;
    margin: 15px auto 15px auto;
    text-align: center;
}

hr.center-color:after {
    font-family: FontAwesome;
	content: '\f299';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #F9F9F9;
	color: #F05295;
	font-size: 18px;
}

/* ================== 
	3.2. ABOUT PAGE. 
   ================== */
/* ========== #ABOUT ONE ========== */
.about-us{
    margin-top: 40px;
}

.about-us h6{
	font-size: 15px;
	color: #0003c9;
	text-transform: uppercase;
}

.about-us p{
    line-height: 1.6;
    margin: 10px 0px 20px 0px;
}

.about-us-pic img{
    width: 100%;
}

/* ========== #TEAM STYLE 1 ========== */

.staff {
  display: block;
  line-height: 1.42857143;
  background-color: #fff;
  padding: 40px 0px 20px 0px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.staff > img,
.staff a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.staff:hover,
a.staff:focus,
a.staff.active {
  border-color: #337ab7;
}
.staff .caption {
  padding: 9px;
  color: #333;
  text-align: center;
  margin: 20px 0px 20px 0px;
}

.staff-avatar{
    width: 180px;
    height: 180px;
    margin: auto;
}

.staff-avatar img{
    width: 100%;
    border-radius: 50%;
}

.staff-social{
    margin-top: 10px;
}

.inner-fa{
    display: inline-block;
    margin: 0px 4px 0px 4px;
    color: #F05295;
}

.inner-fa a:link {
    text-decoration: none;
    color: #F05295;
    transition: 0.8s;
}

.inner-fa a:visited {
    text-decoration: none;
    color: #F05295;
}

.inner-fa a:hover {
    text-decoration: none;
    color: #591782;
}

.inner-fa a:active {
    text-decoration: none;
    color: #F05295;
}

.service-grid{
    background: #FFF;
    padding: 60px;
    text-align: center;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.service-grid h6{
    color: #00354A;
    transition: 0.6s;
    text-transform: uppercase;
}

.service-grid p{
    color: #999;
}

.last-grid{
    border-right: solid 1px transparent;
}

.bottom-grid{
   border-bottom: solid 1px transparent; 
}

.service-grid-image{
    width: 50px;
    margin: auto;
    margin-bottom: 10px;
}

.service-grid-image img{
    width: 100%;
}

.service-grid:hover h6{
    color: #F05295;
    font-weight: normal;
}

/* ========== #ABOUT TWO ========== */
.about-us-2 img{
    width: 100%;
    border-left: solid 5px #F05295;
    border-bottom: solid 5px #F05295;
}

.about-us-info h6{
    color: #F05295;
    font-style: italic;
}

.about-us-info p{
    line-height: 1.8;
    margin: 5px 0px 20px 0px;
}

.inner-checklist p{
    line-height: 1.8;
    margin: 5px;
}

.inner-checklist .fa{
    color: #BF7DE8;
}

.spa-parallax { 
    background-image: url("../img/images/img6.jpg");
    height: 450px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
}

.parallax-content{
    bottom: 50px;
    color: #333;
    max-width: 650px;
}

.parallax-content h6{
    color: #F05295;
    font-style: italic;
}

.parallax-content h1{
    font-weight: 600;
    font-size: 50px;
}

.counter-facts{
    margin-top: 30px;
}

.inner-facts{
    width: 200px;
    height: 70px;
    display: inline-block;
    margin-right: 10px;
}

.facts-icon{
    float: left;
    margin-right: 15px;
    width: 40px;
}

.facts-icon img{
    width: 100%;
}

.inner-facts .counter{
    margin: 0px;
    text-align: left;
    padding: 0px;
    color: #F05295;
    font-weight: 600;
}

.inner-facts p{
    margin-top: 5px;
}

/* ========== #TEAM STYLE 2 ========== */

.staff-2 {
  display: block;
  line-height: 1.42857143;
  background-color: #fff; 
  position: relative;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;

}
.staff-2 > img,
.staff-2 a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.staff-2:hover,
a.staff-2:focus,
a.staff-2.active {
  border-color: #337ab7;
}
.staff-2 .caption {
  padding: 15px 0px 15px 0px;
  color: #591782;
}

.staff-2 .caption p{
  line-height: 1.8;
  color: #b3b3b3;
}

.staff-2 .caption h6{
  font-size: 16px;
  color: #BF7DE8;
  line-height: 2;
}

.staff-social-2{
    width: 30px;
    height: 128px; 
    text-align: center;
    margin-top: -128px;
    position: absolute;
}

.staff-social-2 .inner-social-2{
    width: 30px;
    height: 30px;
    margin: 2px 0px 2px 0px;
    background: #F05295;
    padding: 5px;
    color: #FFF;
    transition: 0.3s;
}

.staff-social-2 .inner-social-2:hover{
   background: #591782;
}

.video-parallax { 
    background-image: url("../img/images/img7.jpg");
    height: 450px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.section-center{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 576px;
    height: 170px;
    border-radius: 3px;
    text-align: center;
    color: #FFF;
}

.section-center h6{
    font-style: italic;
    line-height: 2;
}

/* ========== #ABOUT THREE ========== */

.about-us-video .popup-youtube .video-image {
    position: relative;
    display: inline-block;
    width: 100%;
}


.about-us-info-3 h6{
    color: #BF7DE8;
    font-style: italic;
}

.about-us-info-3 p{
    line-height: 1.7;
    margin: 10px 0px 20px 0px;
}

.twoside {
  display: inline-block;
  background: #fff;
  text-align: center;
}

.twoside__canvas {
  display: block;
  max-width: 100%;
  height: auto;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.twoside__caption {
  font-size: 18px;
  color: #591782;
  font-weight: bold;
}

.slide-info{
    margin-top: 40px;
}

.slide-info h6{
    color: #F05295;
    font-style: italic;
}

.slide-info p{
    line-height: 1.6;
    margin: 10px 0px 20px 0px;
}

.signature{
    width: 200px;
}

.signature img{
    width: 100%;
}

/* ========== #TEAM STYLE 3 ========== */
.headshot img{
    width: 100%;
}
.profile {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;

  width: 100%;
  background: #000000;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.profile * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile img {
  max-width: 100%;
  position: relative;
  top: 0;
  opacity: 1.0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.profile h3 {
  position: absolute;
  color: #ffffff;
  bottom: 0;
  text-transform: uppercase;
  padding: 6px;
  margin: 0;
  left: 40px;
  opacity: 0;
  -webkit-transform: translate(-10px, 0);
  transform: translate(-10px, 0);
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.profile .icons {
  bottom: 35px;
  width: 35px;
  position: absolute;
  text-align: center;
}
.profile .icons i {
  display: inline-block;
  font-size: 22px;
  color: #ffffff;
  opacity: 1;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translate(-35px, 35px);
  transform: translate(-35px, 35px);
}
.profile .corner {
  position: absolute;
  bottom: 0;
  text-align: center;
}
.profile .icons i,
.profile .corner {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background: #262626;
}
.profile a {
  opacity: 0.8;
}
.profile a:hover {
  opacity: 1;
}
.profile a:hover i {
  width: 40px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.profile.right {
  background: #F05295;
}
.profile.right .icons i,
.profile.right .corner {
  background: #F05295;
}
.profile.center {
  background: #591782;
}
.profile.center .icons i,
.profile.center .corner {
  background: #591782;
}
.profile.left {
  background: #BF7DE8;
}
.profile.left .icons i,
.profile.left .corner {
  background: #BF7DE8;
}

.profile:hover img,
.profile.hover img {
  opacity: 0.5;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.profile:hover h3,
.profile.hover h3 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}
.profile:hover .icons,
.profile.hover .icons {
  opacity: 1;
}
.profile:hover .icons i,
.profile.hover .icons i {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.profile:hover a:first-child i,
.profile.hover a:first-child i {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.profile:hover a:nth-child(2) i,
.profile.hover a:nth-child(2) i {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.profile:hover a:nth-child(3) i,
.profile.hover a:nth-child(3) i {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.corner .fa{
    color: #FFF;
}

/* ================== 
	3.3. CONTACT US. 
   ================== */
.alert-success {
  color: #FFF;
  background-color: #F05295;
  border-color: #F05295;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}

.alert {
  padding: 10px 35px 10px 15px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* ========== #CONTACT US 1 ========== */
.no-padding-bottom{
	margin-bottom: 0px;
}

.form-box-2{
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 50px 40px 50px 40px;
    margin-top: -240px;
    position: relative;
    text-align: center;
}

.customize2{
    border: none;
    -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
    border-radius: 0px;
    background: #FAFCFC;
    height: 60px;
    padding: 6px 12px;
    font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	border: solid 1px #FAFCFC;
    color: #000;
}

.customize2:focus {
  border-color: #e0ebeb;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.customize2::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.customize2:-ms-input-placeholder {
  color: #333;
}
.customize2::-webkit-input-placeholder {
  color: #333;
}

.customize2::-ms-expand {
  background-color: none;
  border: 0;
}

.span-address{
    text-align: center;
    padding: 0px 40px 0px 40px;
}

.span-address .contact-icon {
    width: 80px;
    height: 80px;
    border: solid 2px #F05295;
    border-radius: 50%;
    line-height: 80px;
    position: relative;
    float: none;
    margin: auto auto 10px auto;
}

.span-address .contact-icon img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

.customize{
    border: none;
    -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
    border-radius: 0px;
    background: #fde8f0;
    height: 60px;
    padding: 6px 12px;
    font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	border: solid 1px #fde8f0;
    color: #000;
}

.customize:focus {
  border-color: #e0ebeb;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.customize::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.customize:-ms-input-placeholder {
  color: #333;
}
.customize::-webkit-input-placeholder {
  color: #333;
}

.customize::-ms-expand {
  background-color: none;
  border: 0;
}

/* ========== #CONTACT US 2 ========== */
.contact-box{
    text-align: center;
    background: #F9F9F9;
    padding: 50px 0px 50px 0px;
}

.contact-box .fa{
    font-size: 40px;
    text-align: center;
    color: #F05295;
}

.contact-box h4{
    line-height: 2;
}

.form-container{
    background: #F9F9F9;
    padding: 80px;
    height: 547px;
}

.contact-left, .contact-right{
    padding: 0px;
    height: 547px;
}

.no-margin{
    margin: 0px;
    background: #333;
}

.contact-right .map-container{
  background: #F9F9F9;
}

.footer.no-margin-top{
    margin-top: 0px;
}

/* ========== #CONTACT US 3 ========== */
.form-box{
    text-align: center;
}

.inner-address-2{
    margin-top: 20px;
}

.inner-address-2 p{
    line-height: 2.5;
}

.span-contact h6{
    color: #F05295;
    font-size: 16px;
}

.span-contact h1{
    line-height: 2;
}

.inner-address-2 .fa{
    color: #F05295;
}

/* ================== 
	3.4. SERVICES. 
   ================== */
/* ========== #SERVICES 1 ========== */
hr.short{
    width: 80px;
    border-top: 3px solid #F05295;
    margin: 10px 0px 10px 0px;
}

.service-pic img{
    width: 100%;
}

.box-services p{
    margin: 15px 0px 20px 0px;
}

.inner-services .services-icon-1{
    width: 50px;
}

.inner-services .services-icon-1 img{
    width: 100%;
}

.inner-services p{
    margin-top: 5px;
}

/* ========== #SERVICES TWO ========== */

.about-front{
    margin-top: 50px
}

.about-front h2{
    text-align: left;
    color: #333;
    font-weight: 600;
}

.about-front h6{
    font-size: 16px;
    margin: 10px 0px 10px 0px;
    color: #666;
}

.about-front p{
	text-align: left;
	color: #000;
	margin-bottom: 20px;
}

.grid-box{
    padding: 50px 10px 50px 0px;
    border-bottom: solid 1px #ddd;
    border-right: solid 1px #ddd;
    height: 160px;
}

.bottom-grid-2{
    border-bottom: solid 1px transparent;
}

.right-grid-2{
    border-right: solid 1px transparent;
    padding-left: 20px;
}

.grid-icon-2{
    float: left;
    margin-right: 20px;
    width: 60px;
}

.grid-icon-2 img{
    width: 100%;
}

.grid-info h6{
    color: #333;
    font-weight: 600;
}

.grid-info p{
    color: #999;
}

/* ========== #SERVICES THREE ========== */
.services-thumb {
  display: block;
  line-height: 1.42857143;
  background-color: #fff;
  margin: 20px 0px 20px 0px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}

.services-thumb > img,
.services-thumb a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

a.services-thumb:hover,
a.services-thumb:focus,
a.services-thumb.active {
  border-color: #337ab7;
}

.services-thumb .caption {
  padding: 10px 0px 10px 0px;
}

.services-thumb .caption h6 {
  line-height: 2;
}

.services-thumb .caption p {
  line-height: 1.7;
    font-size: 13px;
    color: #999999;
}

.box-bottom{
    margin-bottom: 0px;
}

/* ================== 
	3.5. BLOG. 
   ================== */
/* ========== #BLOG CLASSIC ========== */
.span-posts {
  margin-bottom: 40px;
}

.span-posts p{
  margin: 10px 0px 20px 0px;
}

hr.post{
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 0px auto 5px auto;
    clear: both;
}

.post-picture img{
    width: 100%;
}

.span-details{
    margin: 20px 0px 10px 0px;
    height: 30px;
}

.post-date{
    float: left;
}

.post-date p{
    color: #591782;
}

.post-details{
    float: right;
}

.post-details-2{
    float: right;
}

.inner-details{
    display: inline-block;
    margin-right: 10px;
}

.post-title{
    clear: both;
    margin: 20px 0px 10px 0px;
}

.search-box{
    width: 100%;
}

.search-box .search-container .form-group .input-group .form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background: #f0f0f0;
  background-image: none;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
  font-family: 'Oswald', sans-serif;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.search-box{
    width: 100%;
    height: 40px;
    background: #ddd;
    padding: 0px;
    margin: 0px;
}

.search-box .search-container .form-group .input-group .input-group-addon{
    background: #f0f0f0;
    border: none;
    border-radius: 0px;
    height: 40px;
}

.search-box .search-container .form-group .input-group .input-group-addon .fa{
    font-size: 18px;
    color: #591782;
}

.categorie{
    margin: 40px 0px 20px 0px;
}

.span-list{
    margin-top: 0px;

}

.list-group{
    margin-bottom: 0px;
}

.list-group .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  background-color: transparent;
  border: none;
  border-bottom: solid 1px #ddd;
  border-radius: 0px;
    font-size: 14px;
}

.span-list .badge {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #808080;
  background-color: transparent;
  border-radius: 0px;
}

.categorie a:link {
    text-decoration: none;
    color: #808080;
}

.categorie a:visited {
    text-decoration: none;
    color: #808080;
}

.categorie a:hover {
    text-decoration: none;
    color: #591782;
}

.categorie a:active {
    text-decoration: none;
    color: #808080;
}

.badge .fa:hover{
    color: #591782;
}

.recent-news{
    margin-top: 30px;
}

.media-object{
    width: 80px;
}

.media-object img{
    width: 100%;
}

h6.media-heading{
    font-size: 16px;
    line-height: 1.3;
}

hr.recent-news{
    width: 100%;
    border-top: 1px solid #f2f2f2;
    margin: 15px auto 10px auto;
    clear: both;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 10px 18px;
    text-decoration: none;
    border: 1px solid #DDD;
    margin: 0px 5px 0px 5px;
    font-family: 'Roboto', sans-serif;
    color: #591782;
    transition: 0.3s;
}

.pagination a.active {
    background-color: #591782;
    color: white;
    border: 1px solid #591782;
}

.pagination a:hover:not(.active) {
    background-color: #591782;
    color: #FFF;
    border: solid 1px #591782;
}

.pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* ========== #BLOG GRID ========== */
.blog-post {
  display: block;
  line-height: 1.42857143;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.blog-post > img,
.blog-post a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.blog-post:hover,
a.blog-post:focus,
a.blog-post.active {
  border-color: #337ab7;
}
.blog-post .caption {
  padding: 10px 0px 10px 0px;
}

.blog-post .caption h5{
    color: #333;
    margin-bottom: 10px;
}

.blog-post .caption h6{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-post .caption p{
    margin-bottom: 15px;
}

/* ========== #BLOG SINGLE ========== */
.post-image img{
    width: 100%;
}

.blog-content p{
    line-height: 1.6;
    margin:10px 0px 20px 0px;
}

blockquote{
  display:block;
  background: #fff;
  padding: 20px 20px 20px 45px;
  margin: 20px 10px 20px 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  border-left: 5px solid #591782;
  border-right: 2px solid #591782;
  font-style: italic;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #7ad02f;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

.comments{
    margin-top: 30px;
}

/* ==========================================================================
    3.6. 404 ERROR PAGE
============================================================================= */
/* ========== #404 ERROR PAGE 1 ========== */
.error-page-container .pages-header{
    background: transparent;
}

.error-page-container{
    background-image: url("../img/images/img1.jpg");
    min-height: 900px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.error-page-container .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.error-page-container .middle h1 {
    font-size: 200px;
    line-height: 1;
    margin-bottom: 20px;
}

.error-page-container .middle h2 {
    margin-bottom: 10px;
}

.error-page-container .middle p {
    color: #FFF;
}

/* ==========================================================================
    3.7. SHOP
============================================================================= */
.shop-banner-img img{
    width: 100%;
}

.shop-front-thumbs{
    background: #FFF;
    padding: 20px;
    height: 490px;
    margin: 20px 0px 20px 0px;
}

.shop-front-thumbs:hover{
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
}

hr.shop{
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 25px auto 15px auto;
}

.shop-thumb-img{
    width: 200px;
    margin: auto;
}

.top-caption{
    margin-bottom: 10px;
    width: 200px;
    height: 60px;
}

.top-caption h6{
    color: #F05295;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
}

.bottom-caption{
    margin: 20px 0px 20px 0px;
    clear: both;
}

.bottom-caption h6{
    color: #333;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
}

old-price{
    text-decoration: line-through;
}

.rating-box .ratingp-stars{
    display: inline-block;
    margin-right: 2px;
    font-size: 13px;
}

.bottom-caption-left{
    float: left;
}

.bottom-caption-right{
    float: right;
}

hr.more-product{
	width: 100%;
    border-top: 1px solid #e6e6e6;
    margin: 20px 0px 20px 0px;
}

/* ========== #RELATED PRODUCT SLIDER. ========== */

.item-info h6{
    text-align: center;
    color: #666;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.3s;
}

.item-info h5{
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.item-info p{
    text-align: center;
    margin-top: 10px;
}

.item-box:hover .item-info h6{
    color: #999;
}

.item-box:hover .item-info h5{
    color: #999;
}

.slick-dots {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
    display: none;
}
.slick-dots li.slick-active button {
  background-color: #cc0023;
}
.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #cc0023;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li :hover {
  background-color: #cc0023;
}

.navigation-arrows{
    float: right;
    margin-top: -35px;
}

/* Custom Arrow */
.navigation-arrows .prev {
  color: #666;
  display: inline-block;
  padding: 5px 12px 5px 12px;
  transition: 0.3s;
}

.navigation-arrows .prev:hover {
  color: #333;
}

.navigation-arrows .prev .fa {
  font-size: 25px;
}

.prev :hover {
  cursor: pointer;
}

.navigation-arrows .next {
  color: #666;
  display: inline-block;

  transition: 0.3s;
}

.navigation-arrows .next:hover {
  color: #333;
}

.navigation-arrows .next .fa {
  font-size: 25px;
}

.next :hover {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

#carousel-example-generic {
  display: inline-block;
}
/*****************************/

/* Plugin styles */
ul.thumbnails-carousel {
	padding: 5px 0 0 0;
	margin: 0;
	list-style-type: none;
	text-align: center;
}
ul.thumbnails-carousel .center {
	display: inline-block;
}
ul.thumbnails-carousel li {
	margin: 0px 1px 0px 1px;
	float: left;
	cursor: pointer;
    max-width: 104px;
}

ul.thumbnails-carousel li img {
	width: 100%;
}
.controls-background-reset {
	background: none !important;
}
.active-thumbnail {
	opacity: 0.4;
}
.indicators-fix {
	bottom: 70px;
}

.carousel .item {
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.carousel-inner{
    height: 100%;
}

@media (max-width:768px) {
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
} 
    
.middle h1{
    font-size: 50px;
    text-align: center;
}

.middle h2{
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
}

.middle p{
    text-align: center;
    padding-top: 20px;
}
    
}

@media (max-width:440px) {   
.middle h1{
    font-size: 35px;
    text-align: center;
}

.middle h2{
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
}
    
}

.span-item img{
    width: 100%;
}

.horizontal-banner{
    width: 100%;
}

.product-box{
    padding: 2px 10px 2px 10px;
}

.product-box .item-img{
    float: left;
    margin-right: 20px;
}

.product-box .item-details{
    margin: 20px 0px 20px 0px;
    clear: both;
    height: 80px;
}

.product-box .item-details h6{
    font-size: 16px;
    margin-bottom: 10px;
    color: #591782;
}

/* ========== #SHOP CLASSIC LEFT SIDEBAR ========== */
.shop-left-sidebar{
    background: #fff;
    margin-top: 20px;
    padding: 30px 20px 30px 20px;
}

.shop-left-sidebar .search-box{
    width: 100%;
    background: #f2f2f2;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background: #f2f2f2;
  background-image: none;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
}

.shop-left-sidebar .search-box{
    width: 100%;
    height: 40px;
    background: #ddd;
    padding: 0px;
    margin: 0px;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon{
    background: #f2f2f2;
    border: none;
    border-radius: 0px;
    height: 40px;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon .fa{
    font-size: 18px;
    color: #F05295;
}

.sidebar-header{
    margin: 30px 0px 20px 0px;
}

.inner-categories .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: #fff;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

.inner-categories .list-group-item:hover {
  color: #cccccc;
    background: #FFF;
}

.inner-categories .list-group-item:hover .badge .fa {
  color: #cccccc;
}

.inner-categories .list-group-item.active > .badge,
.inner-categories .nav-pills > .active > a > .badge {
  color: #333;
  background-color: #fff;
}

.inner-categories .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.inner-categories .list-group-item .fa{
    font-size: 16px;
}

.divider-categories{
    border-top: 1px solid #e6e6e6;
    margin: 3px auto 3px auto;
}

p.media-heading{
    font-size: 15px;
    color: #F05295;
    line-height: 1.4;
}

.media-body h5{
    font-size: 15px;
    font-weight: 600;
}

.media-left{
    padding-right: 20px;
}

.promo-banner{
    margin-top: 30px;
}

.promo-banner img{
    width: 100%;
}

/* ==========================================================================
    3.8. PRODUCT DETAIL
============================================================================= */
.product-container{
    margin-bottom: 60px;
}

.product-photo-gallery{
    width: 430px;
    float: left;
    margin-right: 20px;
}

.product-leftside .carousel .carousel-inner .item{
    width: 430px;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}

.product-description{
    padding: 20px;
}

.product-description p{
    color: #666;
}

.product-description h6{
    margin-bottom: 15px;
}

.product-rating{
    margin: 10px 0px 10px 0px;
}

.inner-rating-star{
    display: inline-block;
    margin-right: 2px;
    color: #591782;
}

.bullet-descriptions{
    margin: 15px 0px 15px 0px;
    font-size: 14px;
}

.bullet-descriptions li{
    color: #999;
}

.inner-whistlist{
    display: inline-block;
    margin: 15px 10px 0px 0px;
}

.inner-stock{
    display: inline-block;
}

.order-box{
    margin-top: 30px;
}

.order-qty{
    display: inline-block;
    margin-right: 10px;
}

.btn-order{
   display: inline-block; 
}

.number{
	color: #F05295;
	border: 2px solid #F05295;
	border-radius: 5px;
	text-align: center;
	padding: 6px 12px;
}

.order-qty
.number:focus,
.number:active
{
	outline: none;
}

table {
   font-family: 'Open Sans', sans-serif;
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

td, th {
    border: 1px solid #f2f2f2;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th{
    font-weight: 600;
}

td.justified{
    text-align: left;
}

td.justified .fa{
    color: #666;
}

th.justified{
    text-align: left;
}

.reviews-container{
    margin-top: 10px;
    clear: both;
}

.inner-reviews{
    height: 150px;
}

.review-avatar{
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 20px;
}

.review-avatar img{
    width: 100%;
    border-radius: 50%;
}

.span-reveiw-star{
    color: #591782;
    height: 25px;
}

.span-reveiw-star .stars-fa{
    display: inline-block;
    margin-right: 2px;
}

.rating-title{
    display: inline-block;
    margin-left: 10px;
}

.review-description p{
    font-size: 13px;
}

.tab-pane{
    color: #666;
    padding: 20px 0px 20px 0px;
    text-align: left;
}

.tab-pane p{
    color: #666;
    text-align: left;
    margin-bottom: 15px;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: none;
  margin-bottom: -1px;
  display: inline-block;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: none;
  border-bottom: solid 1px transparent;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  text-align: center;
  font-family: 'Archivo Narrow', sans-serif;
  color: #333;
}

.nav-tabs > li > a:hover {
  border-color: transparent;
  background: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #00a4e6;
  cursor: default;
  background-color: #F9F9F9;
  border: none;
  border-bottom: solid 2px #00a4e6; 
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

/* ========== #PRODUCT LEFT SIDEBAR ========== */

.with-sidebar .product-photo-gallery{
    width: 320px;
    float: left;
    margin-right: 20px;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
    width: 320px;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}

.with-sidebar .product-description .bullet-descriptions P{
    font-size: 13px;
}



/* ==========================================================================
   	4. COMPONENTS MODULE.
   ========================================================================== */

/* ===================== 
	4.1. SCROLLING TOP. 
   ==================== */
@media only screen and (min-width: 1024px) {
  main p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(255, 64, 76, 1) url(../img/master/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  border-radius: 5px;  
  background-color: #F05295;    
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #CC0023;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  } 
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* ======================== 
	4.2 TESTIMONIAL SLIDER.
   ======================== */
.main-gallery{
    margin-bottom: 15px;
}

.gallery-cell {
  width: 100%;
    background: transparent;
}

.testimonial-section{
    min-height: 200px;
}

.avatar {
  width: 100px;
  height: 100px;
  margin: auto;
}

.avatar img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-quote{
    margin: 15px  100px 5px 100px;
}

.testimonial-quote p{
    text-align: center;
    font-size: 15px;
}

.autor h6{
    text-align: center;
    margin-bottom: 20px;
}

.testimonial {
  text-align: center;
  max-width: 850px;
  margin: 10px auto 10px auto;
}


.flickity-page-dots .dot.is-selected {
  background: #F05295;
}

.testimonials{
  padding: 20px 15px 20px 15px;
  margin-right: auto;
  margin-left: auto;
  clear: both;
}

.testimonials-services{
  margin: -50px auto 20px auto;
}

.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-prev-next-button{position:absolute;top:50%;width:44px;height:44px;border:none;border-radius:0%;background:#fff;background:hsla(0,0%,100%,.75);cursor:pointer;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.flickity-prev-next-button:hover{background:#fff}.flickity-prev-next-button:focus{outline:0;box-shadow:0 0 0 5px #09F}.flickity-prev-next-button:active{filter:alpha(opacity=60);opacity:.6}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button:disabled{filter:alpha(opacity=30);opacity:.3;cursor:auto}.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-prev-next-button .arrow{fill:#333}.flickity-prev-next-button.no-svg{color:#333;font-size:26px}.flickity-page-dots{position:absolute;width:100%;bottom:-5px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:30px;height:5px;margin:0 8px;background:#ddd;border-radius:0%;filter:alpha(opacity=25);opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{filter:alpha(opacity=100);opacity:1}


/* ======================== 
	4.3 IMAGE GALLERY.
   ======================== */

/* ========== #IMAGE GALLERY STYLE 1 ========== */
.magnific-img img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    border-radius: 0px;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.magnific-img .image-popup-vertical-fit img a:link {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:visited {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:hover {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:active {
    text-decoration: none;
    color: #000;
    border: solid 2px #000;
}

/* ======================== 
	4.4. VIDEO POPUP.
   ======================== */
/* ========== #IMAGE LIGHTBOX ========== */
.images-group {
  display: flex;
  flex-wrap: wrap;
}
.images-group .image {
    width: 100%;
  cursor: pointer;
}

.image img {
  width: 100%;
}

.lightbox {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox .mobile {
  width: 100%;
  height: auto;
}
.lightbox span {
  color: white;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.lightbox p {
  color: white;
  font-size: 20px;
  text-align: center;
  word-wrap: break-word;
  position: relative;
  margin: 0;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.placeholder {
  width: 100%;
  height: 1500px;
}

/* ========== #YOUTUBE POPUP ========== */

.popup-youtube .video-image {
    position: relative;
    margin: auto;
    width: 80px;
}

.popup-youtube .video-image img{
    width: 100%
}

.popup-youtube .video-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent url(../img/master/play-btn-2.png) center center no-repeat;
}

.popup-youtube .video-image img a:link {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:visited {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:hover {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:active {
    text-decoration: none;
    color: #FFF;
}

/* ========== #MODAL POPUP STYLE 1 ========== */

.modal-box{
    text-align: center;
}

.modal-box p{
    margin: 15px 0px 15px 0px;
}

.modal-sm .modal-content{
    background: #FFF;
    border: 1px solid #ddd;
   border: 1px solid rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    padding: 10px 20px 10px 20px;
}

.close{
    color: #000;
}

@media (min-width: 992px) {
  .modal-md {
    width: 600px;
  }
}

/* ======================== 
	4.5. CUSTOMERS CAROUSEL.
   ======================== */
.customers{
    padding: 0px;
}

.customers .row{
    padding-top: 10px;
    margin: 0px;
}

.slick-dots {
  text-align: center;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
  display: none;  

}
.slick-dots li.slick-active button {
  background-color: #999;
}
.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #fff;
  border: solid 1px #999;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li :hover {
  background-color: #999;
}

.responsive{
    clear: both;
}

.responsive div img{
    margin-left: auto;
    margin-right: auto;
}

.next, .prev {
display: none !important;
}

.span-item img{
    width: 100%;
}

/* ==========================================================================
   	5. MEDIA QUERIES MODULE.
   ========================================================================== */

/* ================================== 
	5.1. TYPOGRAPHY BREAKPOINTS VIEW. 
   ================================== */
@media (min-width:576px) {
h1 {
    font-size: 24px;
} 

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}
    
}

@media (min-width:768px) {
h1 {
    font-size: 26px;
  }  
    
h2 {
    font-size: 24px;
    line-height: 1.2;
  }
    
h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}
    
}

@media (min-width:992px) {
h1 {
    font-size: 32px;
  }  
    
h2 {
    font-size: 28px;
  }
    
h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}
    
}

/* ============================ 
	5.2 THEME BREAKPOINTS VIEW
   ============================ */

@media (max-width:1200px) { 
    
/* ========== #ABOUT ONE ========== */
.about-us{
margin-top: 20px;
} 

.about-us p{
    line-height: 1.6;
    margin: 10px 0px 10px 0px;
}
    
/* ========== #ABOUT TWO ========== */
.about-us-info h6{
    line-height: 1.4;
}
    
.about-us-info p{
    line-height: 1.6;
    margin: 5px 0px 10px 0px;
}
    
.inner-checklist p{
    line-height: 1.4;
    margin: 5px;
}
    
.about-us-info h1{
    line-height: 1.2;
    margin-bottom: 10px;
}
    
/* ========== #ABOUT THREE ========== */

    
.about-us-info-3 p{
    line-height: 1.5;
    margin: 10px 0px 10px 0px;
}
    
.slide-info{
    margin-top: 0px;
}

.slide-info h6{
	color: #0003c9;
}

.slide-info p{
    line-height: 1.5;
    margin: 10px 0px 10px 0px;
}

.signature{
    width: 150px;
}
    
/* ========== #CONTACT ========== */
    
.form-container{
    background: #F9F9F9;
    padding: 80px 40px 80px 40px;
}
    
/* ========== #ERROR PAGE ========== */
.error-page-container{
    min-height: 700px; 
}
    
}

@media (max-width:1100px) {  
.center-column{
    padding: 0px 20px 0px 20px;
}

.form-container{
    background: #F9F9F9;
    padding: 70px 40px 70px 40px;
}
    
.form-container p{
    font-size: 13px;
}
    
}


@media (max-width:992px) {  

/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */

.sidebar{
    margin-top: 30px;
}

    
.main-footer{
    background-color: #591782;
    padding: 40px 10px 60px 10px;
    color: #FFF;
}
    
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
/* ========== #THEME PAGES COMMON STYLES.  ========== */
.pages-header{
    height: 350px; 
}

.bottom-grid{
    border-bottom: solid 1px #ddd;
}  
    
/* ========== #ABOUT ONE ========== */
.staff {
  margin: 20px 0px 20px 0px;
}
  
/* ========== #ABOUT TWO ========== */
.about-us-info{
    margin-top: 30px;
}
    
/* ========== #ABOUT THREE ========== */  
.about-us-info-3{
    margin: -20px 0px 30px 0px;
}
    
.slide-info p{
    line-height: 1.5;
    margin: 5px 0px 5px 0px;
}

.signature{
    width: 100px;
}
    
.box-bottom{
    margin-bottom: 20px;
}
    
 /* ========== #BLOG ========== */   
.blog-post .caption h6{
    font-size: 13px;
    margin-bottom: 5px;
}
    
.pagination-container{
    margin-top: 20px;
}

/* ========== #SERVICES TWO ========== */
    
.bottom-grid{
    border-bottom: solid 1px #ddd;
} 
    
.grid-box{
    padding: 50px 20px 50px 20px;
    border-right: solid 1px transparent;
    height: 100%;
}
    
.bottom-grid-2{
    border-bottom: solid 1px #ddd;
}
    
.service-pic{
    margin-top: 30px;
}
    
/* ========== #BLOGS ========== */    
.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    margin: 0px 2px 0px 2px;
}
    
 /* ========== #ERROR PAGE ========== */  
.error-page-container .middle h1 {
    font-size: 150px;
}
    
 /* ========== #SHOP ========== */  
    
.product-photo-gallery{
    width:520px;
    float: none;
    margin: 0px auto 20px auto;
}
    
.product-leftside .carousel .carousel-inner .item{
    width: 520px;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}
    
.product-container{
    margin-bottom: 0px;
}
    
.with-sidebar .product-photo-gallery{
    width: 520px;
    float: none;
    margin: 0px auto 20px auto;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
   width: 520px;
}
    
.with-sidebar{
    margin-bottom: 30px;
}
    
 /* ========== #CONTACT ========== */  
.contact-box{
    margin: 20px 0px 20px 0px;
}
    
.form-container{
    padding: 50px;
    height: 100%;
}
    
.contact-left{
    height: 100%;
}
    
.map-container-2{
    margin-top: 30px;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}

@media (max-width:767px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
.main-nav{
    background-color: transparent;
    height: 100%;
    border-bottom:  none;
}
    
.carousel-caption h1{
    font-size: 35px;
}
    
.main-slider{
    height: 520px;
}
    
.carousel-caption{
    padding-bottom:120px;
}
    
.carousel-control.left, .carousel-control.right {
    background-image: none;
    margin-top: 60px;
}
    
.carousel-indicators {
  position: relative;
}
    
.front-section{
    margin-top: -350px;
}
    
.main-footer{
    padding: 40px 0px 40px 0px;
}
    
.bottom-footer{
	text-align: center;
}
	
.left-footer{
	float: none;
}

.right-footer{
	float: none;
	color: #595959;
}

.footer-logo{
	width: 80px;
	margin-bottom: 20px;
}
    
    hr.line-footer{
        margin: 40px 0px 20px 0px;
    }
 
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */


/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.section-title{
    padding: 0px 20px 0px 20px;
}
    
.service-grid{
    border-right: solid 1px transparent;
}
    
/* ========== #ABOUT TWO ========== */
    
.spa-parallax { 
    height: 550px; 
    padding-top: 210px;
}
    
.parallax-content h1{
    font-size: 30px;
    line-height: 1.4
}
    
.parallax-content{
    max-width: 100%;
}
    
.parallax-content p{
    font-size: 13px;
}
    
.center-box{
    margin: 20px 0px 20px 0px;
}

    
/* ========== #ABOUT THREE ========== */
    
.slide-info{
    margin-top: 20px;
}
    
.slide-info p{
    line-height: 1.6;
    margin: 10px 0px 10px 0px;
}

.signature{
    width: 150px;
}

/* ========== #SHOP ========== */
    
.inner-reviews{
    height: 100%;
}
    
.review-avatar{
    width: 100px;
    height: 100px;
    float: none;
    margin: 0px 0px 10px 0px;
}
    
.center-banner{
    margin: 20px 0px 20px 0px;
}
    
.center-address{
    margin: 20px 0px 20px 0px;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
.inner-counter{
    margin: 30px 0px 30px 0px;
}
    
.magnific-img {
    width: 49%;
}

}

@media (max-width:630px) {
.inner-careers{
    clear: both;
    height: 100%;
    padding: 30px 0px 30px 0px;
    border-bottom: solid 1px #f2f2f2;
}
    
.btn-apply{
    float: none;
    margin-top: 40px;
}
    
}

@media (max-width:576px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
.btn {
  padding: 4px 12px;
  font-size: 13px;
}
    
.carousel-caption h1{
    font-size: 25px;
   
}
  
.carousel-caption p{
    font-size: 14px;
}
    
.btn, .btn-large {
  padding: 4px 12px;
  font-size: 14px;
}
    
.icon-fa{
    font-size: 25px;
    line-height: 31px;
    width: 35px;
    height: 35px;

}

/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
    
.carousel-control.left, .carousel-control.right {
    margin-top: 30%;
}
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.pages-header{
    height: 250px; 
}
    
/* ========== #ABOUT TWO ========== */
.spa-parallax { 
    height: 550px; 
    padding-top: 80px;
}
    
.inner-facts{
    width: 200px;
    height: 70px;
    display: block;
    margin: 15px 0px 15px 0px;
}
    
.inner-facts .counter{
    font-size: 30px;
}
    
.inner-facts p{
    margin-top: 0px;
}
    
.section-center{
    width: 100%;
    padding: 0px 20px 0px 20px;
}
    
/* ========== #BLOG DETAILS ========== */
    
blockquote {
    font-size: 13px;
}
    
/* ========== #SHOP ========== */
    
.product-photo-gallery{
    width: 100%;
}
    
.product-leftside .carousel .carousel-inner .item{
    width: 100%;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}
    
.thumbnails-carousel li{
    width: 60px;
    display: inline-block;
}   
    
.thumbnails-carousel img{
    width: 100%;
}
    
.with-sidebar .product-photo-gallery{
     width: 100%;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
    width: 100%;
}
    
/* ========== #404 ERROR PAGE ========== */
    
.error-page-container{
    min-height: 600px; 
}
    
.error-page-container .middle {
    top: 40%;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
.testimonial-quote{
    margin: 15px  20px 5px 20px;
}
    
.testimonial-quote P{
    font-size: 13px;
}
    
.magnific-img {
    width: 100%;
}
    
}

@media (max-width:450px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
    
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
    
.post-date{
    float: none;
}  
    
.post-details{
    float: none;
    margin: -20px 0px 20px 0px;
}
      
.post-details-2{
    float: none;
    margin: 5px 0px 20px 0px;
}
    
hr.posts{
    display: none;
}
    
.post-title{
    margin-top: 40px;
}  
    
.post-title h2{
    line-height: 1.3;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}
/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 220px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 150px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}

.float2 {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 25px;
  background-color: #4789df;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 5px 5px 5px #999;
  z-index: 100;
  transition: background-color 0.5s;
  }
  
  .floaters{
  width: 100%;
  }
  .float2:hover {
  background-color: white;
  transition: background-color 0.5s;
  }
  
  .float2:hover .my-float2 {
  color: #FFBC13;
  }
  
  .my-float2 {
  margin-top: 14px;
  }
  
  @media (max-width: 575px) {
  
      .logo-image {
      width: 100%;
      height: 80px;
  }
  
  .float2 {
  width: 50px;
  height: 50px;
  bottom: 100px;
  left: 80vw;
  }
  
  .my-float2,
  .my-float {
  margin-top: 10px;
  }
  
  .float2 {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 60px;
  background-color: #4789df;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: background-color 0.5s;
  margin-left: 8px;
  }

 
  
  }

  .fa-location-dot{
      font-size: 22px;
      margin-top: 10px;
      }

      .logo-image {
          width: 100%;
          height: 45px;
      }
