/*===========================
    1.COMMON css 
===========================*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800');

body {
  font-family: 'Poppins', sans-serif; font-weight: normal; font-style: normal; color: #777;
}

* {
  -webkit-box-sizing: border-box;     -moz-box-sizing: border-box;          box-sizing: border-box; margin: 0; padding: 0;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none; outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif; font-weight: 600; margin: 0; color: #333;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0; padding: 0; list-style-type: none;
}

p {
  font-size: 16px; font-weight: 400; line-height: 24px; margin: 0; color: #777;
}

.bg_cover {
  width: 100%; height: 100%; background-repeat: no-repeat; background-position: center center; background-size: cover;
}

.tlinks {
  font-size: 0; line-height: 0; overflow: hidden; height: 0; text-indent: -9999px;
}

/*===== All Button Style =====*/
.main-btn {
  font-size: 16px; font-weight: 400; line-height: 48px; z-index: 5; display: inline-block; padding: 0 35px; cursor: pointer; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; vertical-align: middle; white-space: nowrap; color: #fff; border: 1px solid #fe7865; background-color: #fe7865;

  @inlude user-select(none);
}

@media (max-width: 767px) {
  .main-btn {
    font-size: 14px; line-height: 43px; padding: 0 25px;
  }
}

.main-btn i {
  font-size: 12px; margin-left: 5px;
}

.main-btn:hover {
  color: #fe7865; border-color: #fe7865; background-color: #fff;
}

.main-btn.main-btn-2 {
  color: #fe7865; border-color: #fe7865; background-color: #fff;
}

.main-btn.main-btn-2:hover {
  color: #fff; border-color: #fe7865; background-color: #fe7865;
}

/*===== All Section Title Style =====*/
.section-title h5 {
  font-size: 18px; font-weight: 500; position: relative; padding-left: 110px; color: #fe7865;
}

.section-title h5::before {
  position: absolute; top: 50%; left: 0; width: 100px; height: 1px; content: ''; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); background-color: #fe7865;
}

.section-title .title {
  font-size: 32px;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 26px;
  }
}

/*===== All Preloader Title Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed; z-index: 9999; top: 0; left: 0; display: table; width: 100%; height: 100%;

/* Change Background Color */

  background: #fdfdfd;
}

.preloader .spin {
  position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; -webkit-transform: translate(-50%, -50%);    -moz-transform: translate(-50%, -50%);     -ms-transform: translate(-50%, -50%);      -o-transform: translate(-50%, -50%);         transform: translate(-50%, -50%);
}

.preloader .spin .cube1,
.preloader .spin .cube2 {
  position: absolute; top: 0; left: 0; width: 15px; height: 15px; -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;    -moz-animation: sk-cubemove 1.8s infinite ease-in-out;      -o-animation: sk-cubemove 1.8s infinite ease-in-out;         animation: sk-cubemove 1.8s infinite ease-in-out; background-color: #fe7865;
}

.preloader .spin .cube2 {
  -webkit-animation-delay: -.9s;     -moz-animation-delay: -.9s;       -o-animation-delay: -.9s;          animation-delay: -.9s;
}

/* CSS Keyframe Animation */
@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(.5);       -moz-transform: translateX(42px) rotate(-90deg) scale(.5);        -ms-transform: translateX(42px) rotate(-90deg) scale(.5);         -o-transform: translateX(42px) rotate(-90deg) scale(.5);            transform: translateX(42px) rotate(-90deg) scale(.5);
  }

  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);       -moz-transform: translateX(42px) translateY(42px) rotate(-180deg);        -ms-transform: translateX(42px) translateY(42px) rotate(-180deg);         -o-transform: translateX(42px) translateY(42px) rotate(-180deg);            transform: translateX(42px) translateY(42px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);       -moz-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);        -ms-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);         -o-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);            transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);
  }

  100% {
    -webkit-transform: rotate(-360deg);       -moz-transform: rotate(-360deg);        -ms-transform: rotate(-360deg);         -o-transform: rotate(-360deg);            transform: rotate(-360deg);
  }
}

@keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(.5);       -moz-transform: translateX(42px) rotate(-90deg) scale(.5);        -ms-transform: translateX(42px) rotate(-90deg) scale(.5);         -o-transform: translateX(42px) rotate(-90deg) scale(.5);            transform: translateX(42px) rotate(-90deg) scale(.5);
  }

  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);       -moz-transform: translateX(42px) translateY(42px) rotate(-180deg);        -ms-transform: translateX(42px) translateY(42px) rotate(-180deg);         -o-transform: translateX(42px) translateY(42px) rotate(-180deg);            transform: translateX(42px) translateY(42px) rotate(-180deg);
  }

  50.1% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);       -moz-transform: translateX(42px) translateY(42px) rotate(-180deg);        -ms-transform: translateX(42px) translateY(42px) rotate(-180deg);         -o-transform: translateX(42px) translateY(42px) rotate(-180deg);            transform: translateX(42px) translateY(42px) rotate(-180deg);
  }

  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);       -moz-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);        -ms-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);         -o-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);            transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);
  }

  100% {
    -webkit-transform: rotate(-360deg);       -moz-transform: rotate(-360deg);        -ms-transform: rotate(-360deg);         -o-transform: rotate(-360deg);            transform: rotate(-360deg);
  }
}

/*===========================
    2.HEADER css 
===========================*/
.header-area {
  position: absolute; z-index: 9; top: 0; left: 0; width: 100%; padding: 20px 0; background-color: #fff; background-color: #fff;
}

.header-area.sticky {
  position: fixed; z-index: 999; top: 0; left: 0; width: 100%; padding: 10px 0; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; background-color: #fff; -webkit-box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);    -moz-box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);         box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);
}

.header-area .navbar {
  padding: 0;
}

.header-area .navbar .navbar-brand {
  padding-bottom: 10px;
}

.header-area .navbar .navbar-toggler .bar-icon {
  position: relative; display: block; width: 30px; height: 2px; margin: 5px 0; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; background-color: #333;
}

.header-area .navbar .navbar-toggler.active .bar-icon:nth-child(1) {
  top: 7px; -webkit-transform: rotate(45deg);    -moz-transform: rotate(45deg);     -ms-transform: rotate(45deg);      -o-transform: rotate(45deg);         transform: rotate(45deg);
}

.header-area .navbar .navbar-toggler.active .bar-icon:nth-child(2) {
  opacity: 0;
}

.header-area .navbar .navbar-toggler.active .bar-icon:nth-child(3) {
  top: -7px; -webkit-transform: rotate(135deg);    -moz-transform: rotate(135deg);     -ms-transform: rotate(135deg);      -o-transform: rotate(135deg);         transform: rotate(135deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .navbar .navbar-collapse {
    position: absolute; z-index: 999; top: 100%; left: 0; width: 100%; padding: 10px; background-color: #fff;
  }
}

@media (max-width: 767px) {
  .header-area .navbar .navbar-collapse {
    position: absolute; z-index: 999; top: 100%; left: 0; width: 100%; padding: 10px; background-color: #fff;
  }
}

.header-area .navbar .navbar-nav .nav-item {
  margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .navbar .navbar-nav .nav-item {
    margin: 5px 0;
  }
}

@media (max-width: 767px) {
  .header-area .navbar .navbar-nav .nav-item {
    margin: 5px 0;
  }
}

.header-area .navbar .navbar-nav .nav-item a {
  font-size: 16px; font-weight: 600; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #777;
}

.header-area .navbar .navbar-nav .nav-item.active a,
.header-area .navbar .navbar-nav .nav-item:hover a {
  color: #e60012;
}

/*===========================
    3.SLIDER css 
===========================*/
.slider-active .slick-dots {
  position: absolute; top: 50%; left: 0; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); text-align: center;
}

@media only screen and (min-width: 1400px) {
  .slider-active .slick-dots {
    left: 30px;
  }
}

.slider-active .slick-dots li {
  line-height: 0; margin: 15px 0;
}

.slider-active .slick-dots li button {
  font-size: 0; width: 10px; height: 10px; cursor: pointer; border: 0; border-radius: 50%; background-color: #fbb0a5;
}

.slider-active .slick-dots li.slick-active button {
  width: 15px; height: 15px; background-color: #fe7865;
}

.single-slider {
  position: relative;
}

@media only screen and (min-width: 1400px) {
  .single-slider {
    padding: 0 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .single-slider {
    padding: 0 30px;
  }
}

.single-slider .slider-bg {
  background-color: white;
}

.single-slider .slider-product-image img {
  width: 100%;
}

.single-slider .slider-product-image .slider-discount-tag {
  position: absolute; top: 90px; right: -63px; display: table; width: 125px; height: 125px; text-align: center; border-radius: 50%; background-color: #fe7865;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-slider .slider-product-image .slider-discount-tag {
    top: 50px; right: -50px; width: 100px; height: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider .slider-product-image .slider-discount-tag {
    top: 50px; right: -50px; width: 100px; height: 100px;
  }
}

.single-slider .slider-product-image .slider-discount-tag p {
  font-size: 18px; font-weight: 600; line-height: 33px; display: table-cell; vertical-align: middle; color: #fff;
}

.single-slider .slider-product-content {
  max-width: 670px; margin-left: 125px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-slider .slider-product-content {
    margin-left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider .slider-product-content {
    margin-left: 70px;
  }
}

@media (max-width: 767px) {
  .single-slider .slider-product-content {
    margin-left: 0; padding: 40px 15px 50px;
  }
}

.single-slider .slider-product-content .slider-title {
  font-size: 38px; z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-slider .slider-product-content .slider-title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider .slider-product-content .slider-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .single-slider .slider-product-content .slider-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-slider .slider-product-content .slider-title {
    font-size: 29px;
  }
}

.single-slider .slider-product-content .slider-title span {
  position: relative;
}

.single-slider .slider-product-content .slider-title span::before {
  position: absolute; z-index: auto; bottom: 17px; left: 0; width: 100%; height: 10px; content: ''; background-color: rgba(254, 120, 101, .5);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider .slider-product-content .slider-title span::before {
    bottom: 7px;
  }
}

@media (max-width: 767px) {
  .single-slider .slider-product-content .slider-title span::before {
    bottom: 8px; height: 6px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-slider .slider-product-content p br {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider .slider-product-content p br {
    display: none;
  }
}

@media (max-width: 767px) {
  .single-slider .slider-product-content p br {
    display: none;
  }
}

.slider-social {
  position: absolute; right: 30px; bottom: 20px; width: 100%;
}

@media only screen and (min-width: 1400px) {
  .slider-social {
    padding: 0 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .slider-social {
    padding: 0 30px;
  }
}

.slider-social .social {
  position: relative;
}

.slider-social .social li {
  display: inline-block; margin: 0 5px;
}

.slider-social .social li a {
  font-size: 18px; line-height: 32px; width: 30px; height: 30px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; color: #ddd; border: 1px solid #ddd;
}

.slider-social .social li a:hover {
  color: #fe7865; border-color: #fe7865;
}

.slider-social .social::before {
  position: absolute; top: 50%; left: 0; width: 70%; height: 1px; content: ''; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); background-color: #fe7865;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-social .social::before {
    width: 63%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-social .social::before {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .slider-social .social::before {
    left: 60px; width: 35%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-social .social::before {
    width: 65%;
  }
}

/*===========================
    4.DESCOUNT PRODUCT css 
===========================*/
@media (max-width: 767px) {
  .discount-product {
    padding-top: 50px;
  }
}

.single-discount-product {
  position: relative;
}

.single-discount-product .product-image {
  overflow: hidden;
}

.single-discount-product .product-image img {
  width: 100%; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s;
}

.single-discount-product .product-content {
  position: absolute; top: 0; left: 0; padding: 45px 30px;
}

@media (max-width: 767px) {
  .single-discount-product .product-content {
    padding: 15px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-discount-product .product-content {
    padding: 25px 30px;
  }
}

.single-discount-product .product-content .content-title {
  font-size: 24px; line-height: 40px;
}

@media (max-width: 767px) {
  .single-discount-product .product-content .content-title {
    font-size: 18px; line-height: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-discount-product .product-content .content-title {
    font-size: 20px; line-height: 30px;
  }
}

.single-discount-product .product-content a {
  font-size: 16px; font-weight: 500; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #777;
}

.single-discount-product .product-content a i {
  font-size: 10px; margin-left: 5px;
}

.single-discount-product .product-content a:hover {
  color: #fe7865;
}

.single-discount-product:hover .product-image img {
  -webkit-transform: scale(1.2);     -moz-transform: scale(1.2);      -ms-transform: scale(1.2);       -o-transform: scale(1.2);          transform: scale(1.2);
}

/*===========================
     5.PRODUCT CARD css 
===========================*/
@media (max-width: 767px) {
  .product-area {
    padding-top: 50px; padding-bottom: 80px;
  }
}

.collection-menu .collection-tilte {
  font-size: 24px; font-weight: 600; padding: 30px 20px; background-color: #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .collection-menu .collection-tilte {
    font-size: 20px; padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  .collection-menu .collection-tilte {
    font-size: 20px; padding: 20px 15px;
  }
}

.collection-menu .nav a {
  font-size: 18px; font-weight: 600; line-height: 58px; margin-bottom: -1px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #777; border: 1px solid #ddd; background-color: #fff;
}

.collection-menu .nav a.active {
  color: #fff; border-color: #fe7865; background-color: #fe7865;
}

.single-product-items .product-item-image {
  position: relative; overflow: hidden;
}

.single-product-items .product-item-image a {
  display: block;
}

.single-product-items .product-item-image img {
  width: 100%; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s;
}

.single-product-items .product-item-image .product-discount-tag {
  position: absolute; top: 20px; right: 20px; width: 70px; height: 70px; text-align: center; border-radius: 50%; background-color: #fe7865;
}

.single-product-items .product-item-image .product-discount-tag p {
  font-size: 22px; font-weight: 600; line-height: 70px; color: #fff;
}

.single-product-items .product-item-content .product-title a {
  font-size: 20px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #333;
}

.single-product-items .product-item-content .product-title a:hover {
  color: #fe7865;
}

.single-product-items .product-item-content .rating li {
  font-size: 12px; display: inline-block; color: #fc924b;
}

.single-product-items .product-item-content span {
  font-size: 16px; font-weight: 600; position: relative; margin: 0 3px;
}

.single-product-items .product-item-content .regular-price {
  color: #fe7865;
}

.single-product-items .product-item-content .discount-price {
  color: #c4c4c4;
}

.single-product-items .product-item-content .discount-price::before {
  position: absolute; top: 50%; left: 0; width: 100%; height: 1px; content: ''; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); background-color: #222;
}

.single-product-items:hover .product-item-image img {
  -webkit-transform: scale(1.1);     -moz-transform: scale(1.1);      -ms-transform: scale(1.1);       -o-transform: scale(1.1);          transform: scale(1.1);
}

.product-items-active .slick-arrow {
  position: absolute; z-index: 9; right: -80px; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product-items-active .slick-arrow {
    right: -40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-items-active .slick-arrow {
    right: -20px;
  }
}

.product-items-active .slick-arrow.prev {
  bottom: 35%;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product-items-active .slick-arrow.prev {
    bottom: 38%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-items-active .slick-arrow.prev {
    bottom: 40%;
  }
}

.product-items-active .slick-arrow.next {
  top: 35%;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product-items-active .slick-arrow.next {
    top: 38%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-items-active .slick-arrow.next {
    top: 40%;
  }
}

.product-items-active .slick-arrow i {
  font-size: 18px; line-height: 48px; width: 50px; cursor: pointer; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; color: #fe7865; border: 1px solid #fe7865; border-radius: 50%; background-color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product-items-active .slick-arrow i {
    font-size: 16px; line-height: 38px; width: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-items-active .slick-arrow i {
    font-size: 16px; line-height: 28px; width: 30px;
  }
}

.product-items-active .slick-arrow i:hover {
  color: #fff; border-color: #fe7865; background-color: #fe7865;
}

.tab-content .tab-pane {
  display: block; visibility: hidden; overflow: hidden; max-width: 100%; height: 0; opacity: 0;
}

.tab-content .tab-pane.active {
  visibility: visible; overflow: visible; height: auto; opacity: 1;
}

/*===========================
     6.SERVICES css 
===========================*/
.services-area {
  background-color:white;
}

@media (max-width: 767px) {
  .services-area {
    padding-top: 75px; padding-bottom: 80px;
  }
}

.services-left {
  position: relative;
}

.services-left .services img {
  width: 100%;
}

.single-services {
  padding: 25px 15px; border: 1px solid #ddd; background: #fff;
}

.single-services .services-icon i {
  font-size: 50px; color: #fe7865;
}

.single-services .services-content .title {
  font-size: 20px; color: #fe7865;
}

/*===========================
     7.SHOWCASE css 
===========================*/
@media (max-width: 767px) {
  .showcase-area {
    padding-top: 50px; padding-bottom: 80px;
  }
}

.showcase-title .title {
  font-size: 35px;
}

@media (max-width: 767px) {
  .showcase-title .title {
    font-size: 30px;
  }
}

.single-showcase {
  text-align: center; margin-right: 50px; margin-bottom: 45px;
}

@media (max-width: 767px) {
  .single-showcase {
    margin: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-showcase {
    margin-right: 30px; margin-bottom: 20px;
  }
}

.single-showcase::before {
  position: absolute; z-index: -1; right: -50px; bottom: 0; bottom: -40px; width: 400px; height: 230px; content: ''; background-color: white;
}

.single-showcase .main-btn {
  font-size: 20px; font-weight: 600; line-height: 78px; position: absolute; bottom: -40px; left: 60px; padding: 0 70px;
}

@media (max-width: 767px) {
  .single-showcase .main-btn {
    font-size: 16px; line-height: 48px; bottom: 20px; left: 40px; padding: 0 40px;
  }
}

.showcase-active .slick-arrow {
  position: absolute; z-index: 9; top: 65px; right: 0;
}

.showcase-active .slick-arrow.prev {
  right: 70px;
}

.showcase-active .slick-arrow.prev::before {
  /* position: absolute; top: 50%; right: 0; width: 1px; height: 30px; content: ''; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); background-color: #fff; */
  position: absolute; top: 50%; right: 0; width: 1px; height: 30px; content: '';background-color:white;
}

.showcase-active .slick-arrow i {
  font-size: 20px; line-height: 50px; width: 70px; cursor: pointer; text-align: center; color: #fff; background-color: #fe7865;
}

/*===========================
     8.TEAM css 
===========================*/
.team-area {
  background-color:white;
}

@media (max-width: 767px) {
  .team-area {
    padding-top: 75px; padding-bottom: 80px;
  }
}

.single-temp {
  padding: 30px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; border: 1px solid transparent; background-color:white;
}

.single-temp .team-image img {
  border-radius: 50%;
}

.single-temp .team-content .title a {
  font-size: 20px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #333;
}

.single-temp .team-content .title a:hover {
  color: #fe7865;
}

.single-temp .team-content span {
  font-size: 14px; font-weight: 500; display: block; letter-spacing: 2px; text-transform: uppercase; color: #777;
}

.single-temp .team-content .social {
  line-height: 38px; display: inline-block; padding: 0 15px; border: 1px solid #fe7865; border-radius: 50px; background-color: #ffe8e5;
}

.single-temp .team-content .social li {
  display: inline-block; margin: 0 10px;
}

.single-temp .team-content .social li a {
  font-size: 16px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #777;
}

.single-temp .team-content .social li a:hover {
  color: #fe7865;
}

.single-temp:hover {
  border-color: #fe7865; -webkit-box-shadow: 0 0 7px 0 rgba(254, 119, 101, .55);    -moz-box-shadow: 0 0 7px 0 rgba(254, 119, 101, .55);         box-shadow: 0 0 7px 0 rgba(254, 119, 101, .55);
}

/*===========================
     9.TESTIMONIAL css 
===========================*/
.testimonial-area {
  position: relative;
}

.testimonial-area .testimonial-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 68%;
}

@media (max-width: 767px) {
  .testimonial-area {
    padding-top: 100px;
  }
}

.testimonial-content {
  background-color: rgba(254, 120, 101, .9);
}

.single-testimonial {
  padding: 40px 25px 50px;
}

.single-testimonial i {
  font-size: 80px; color:white;
}

.single-testimonial p {
  font-size: 29px; font-weight: 500; font-style: italic; line-height: 48px; color: #fff;
}

@media (max-width: 767px) {
  .single-testimonial p {
    font-size: 18px; line-height: 30px;
  }
}

.single-testimonial .title {
  font-size: 16px; color: #fff;
}

.single-testimonial span {
  font-size: 14px; color: #fff;
}

.testimonial-play a {
  font-size: 45px; line-height: 90px; width: 90px; height: 90px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; color: #fe7865; border-radius: 50%; background-color: #fff;
}

.testimonial-play a:hover {
  color: #fff; background-color: #fe7865;
}

.testimonial-play a i {
  line-height: 90px; margin-left: 10px;
}

/*===========================
     10.BLOG css 
===========================*/
@media (max-width: 767px) {
  .blog-area {
    padding-top: 75px;
  }
}

.single-blog {
  -webkit-box-shadow: 0 15px 21px 0 rgba(254, 119, 101, .06);     -moz-box-shadow: 0 15px 21px 0 rgba(254, 119, 101, .06);          box-shadow: 0 15px 21px 0 rgba(254, 119, 101, .06);
}

.single-blog .blog-image {
  overflow: hidden;
}

.single-blog .blog-image img {
  width: 100%; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s;
}

.single-blog .blog-content {
  border: 1px solid #ddd; border-top: 0; background-color: #fff;
}

.single-blog .blog-content .content {
  padding: 20px 30px 25px;
}

.single-blog .blog-content .content .title a {
  font-size: 20px; line-height: 36px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #333;
}

.single-blog .blog-content .content .title a:hover {
  color: #fe7865;
}

.single-blog .blog-content .content span {
  font-size: 16px; font-style: italic; color: #777;
}

.single-blog .blog-content .meta {
  padding: 20px 30px 25px; border-top: 1px solid #ddd;
}

.single-blog .blog-content .meta .meta-admin .image a img {
  border-radius: 50%;
}

.single-blog .blog-content .meta .meta-admin .admin-title {
  padding-left: 20px;
}

.single-blog .blog-content .meta .meta-admin .admin-title .title a {
  font-size: 16px; font-weight: 500; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #333;
}

.single-blog .blog-content .meta .meta-admin .admin-title .title a:hover {
  color: #fe7865;
}

.single-blog .blog-content .meta .meta-icon ul li {
  display: inline-block; margin-right: 15px;
}

.single-blog .blog-content .meta .meta-icon ul li:last-child {
  margin-right: 0;
}

.single-blog .blog-content .meta .meta-icon ul li a {
  font-size: 16px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #333;
}

.single-blog .blog-content .meta .meta-icon ul li a:hover {
  color: #fe7865;
}

.single-blog:hover .blog-image img {
  -webkit-transform: scale(1.1);     -moz-transform: scale(1.1);      -ms-transform: scale(1.1);       -o-transform: scale(1.1);          transform: scale(1.1);
}

/*===========================
       11.CONTACT css 
===========================*/
.contact-area .contact-title .title {
  font-size: 60px; color: #333;
}

@media (max-width: 767px) {
  .contact-area .contact-title .title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .contact-area {
    padding-top: 70px;
  }
}

.contact-box {
  padding: 10px 40px 40px; background-color: #fff; -webkit-box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);    -moz-box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);         box-shadow: 0 0 40px 0 rgba(156, 156, 156, .25);
}

@media (max-width: 767px) {
  .contact-box {
    padding: 0 20px  20px;
  }
}

.contact-info .info-title {
  font-size: 26px; padding-bottom: 5px;
}

.single-info {
  position: relative;
}

.single-info .info-icon {
  position: absolute; top: 0; left: 0;
}

.single-info .info-icon i {
  font-size: 20px; color: #fe7865;
}

.single-info .info-content {
  padding-left: 40px;
}

.single-info .info-content p {
  font-size: 18px; font-weight: 500;
}

@media (max-width: 767px) {
  .single-info .info-content p {
    font-size: 16px;
  }
}

.form-group {
  margin: 0;
}

.single-form {
  margin-top: 30px;
}

.single-form textarea,
.single-form input {
  width: 100%; height: 55px; padding: 0 20px; border: 1px solid #ddd; background-color: #f7f7ff;
}

.single-form textarea {
  height: 155px; padding-top: 15px; resize: none;
}

.single-form textarea::placeholder,
.single-form input::placeholder {
  opacity: 1; color: #777;
}

p.form-message.success,
p.form-message.error {
  font-size: 16px; margin-top: 15px; margin-left: 15px; padding: 10px 15px; color: #333; background: #ddd;
}

p.form-message.error {
  color: #f00;
}

.list-unstyled li {
  font-size: 13px; margin-top: 5px; margin-left: 2px; color: #f00;
}

/*===========================
       12.FOOTER css 
===========================*/
.footer-area {
  position: relative;
}

.footer-area::before {
  position: absolute; z-index: -1; bottom: 0; left: 0; width: 100%; height: 770px; content: ''; background-image: url(../images/footer-bg.png); background-repeat: no-repeat; background-position: top center; background-size: 100% 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area::before {
    height: 1450px;
  }
}

@media (max-width: 767px) {
  .footer-area::before {
    height: 1700px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding-top: 30px; padding-bottom: 80px;
  }
}

.footer-logo .footer-social li {
  display: inline-block; margin-left: 12px;
}

.footer-logo .footer-social li:first-child {
  margin-left: 0;
}

.footer-logo .footer-social li a {
  font-size: 16px; line-height: 38px; width: 35px; height: 35px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; color: #777; border-radius: 50%; background-color: #fff; -webkit-box-shadow: 0 5px 21px 0 rgba(254, 119, 101, .2);    -moz-box-shadow: 0 5px 21px 0 rgba(254, 119, 101, .2);         box-shadow: 0 5px 21px 0 rgba(254, 119, 101, .2);
}

.footer-logo .footer-social li a:hover {
  color: #fff; background-color: #fe7865;
}

.f-title {
  font-size: 20px; padding-bottom: 5px;
}

.footer-link ul li {
  margin-top: 15px;
}

.footer-link ul li a {
  font-size: 16px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; color: #777;
}

.footer-link ul li a:hover {
  color: #fe7865;
}

.footer-info {
  padding-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-info {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-info {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer-info {
    padding-left: 0;
  }
}

.single-footer-info {
  position: relative;
}

.single-footer-info span {
  font-size: 16px; position: absolute; top: 0; left: 0; color: #777;
}

.single-footer-info .footer-info-content {
  padding-left: 80px;
}

.footer-copyright {
  border-top: 1px solid #ddd;
}

.footer-copyright a {
  color: #fe7865;
}

.footer-copyright .copyright p {
  color: #333;
}

@media (max-width: 767px) {
  .footer-copyright .copyright p {
    font-size: 14px;
  }
}

.back-to-top {
  font-size: 18px; line-height: 40px; position: fixed; z-index: 99; right: 20px; bottom: 20px; display: none; width: 40px; -webkit-transition: all .4s ease-out 0s;    -moz-transition: all .4s ease-out 0s;     -ms-transition: all .4s ease-out 0s;      -o-transition: all .4s ease-out 0s;         transition: all .4s ease-out 0s; text-align: center; color: #fff; background-color: #fe7865; -webkit-box-shadow: 0 0 30px 0 rgba(156, 156, 156, .25);    -moz-box-shadow: 0 0 30px 0 rgba(156, 156, 156, .25);         box-shadow: 0 0 30px 0 rgba(156, 156, 156, .25);
}

.back-to-top:hover {
  color: #fe7865; background-color: #fff;
}

/*===========================
     13.PAGE BANNER css 
===========================*/
@media (max-width: 767px) {
  .page-banner-area {
    padding-top: 80px; padding-bottom: 80px;
  }
}

.page-banner {
  position: relative; z-index: 9;
}

.page-banner .page-title {
  font-size: 42px; color: #fff;
}

@media (max-width: 767px) {
  .page-banner .page-title {
    font-size: 30px;
  }
}

.page-banner .breadcrumb {
  padding: 0; background: none;
}

.page-banner .breadcrumb .breadcrumb-item a {
  font-size: 16px; font-weight: 600; color: #fff;
}

.page-banner .breadcrumb .breadcrumb-item.active {
  font-size: 16px; font-weight: 600; color: #fe7865;
}

.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/*===========================
 14.PRODUCT SINGLE PAGE css 
===========================*/
@media (max-width: 767px) {
  .product-single-page {
    padding-top: 50px;
  }
}

.product-image .slick-arrow {
  position: absolute; z-index: 5; top: 50%; left: 0; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%);
}

.product-image .slick-arrow i {
  font-size: 20px; line-height: 40px; width: 40px; height: 40px; cursor: pointer; text-align: center; color: #fff; background-color: rgba(0, 0, 0, .6);
}

.product-image .slick-arrow.next {
  right: 0; left: auto;
}

.single-product-image img {
  width: 100%;
}

@media (max-width: 767px) {
  .shop-review-area {
    margin-top: 100px;
  }
}

.product-description .description-title {
  font-size: 30px; padding-bottom: 5px;
}

.product-description .product-rating ul li {
  display: inline-block;
}

.product-description .product-rating ul li i {
  font-size: 15px; color: #fc924b;
}

.product-description .product-rating .review {
  font-size: 15px; padding-left: 20px; color: #777;
}

.product-description .product-price .regular-price {
  font-size: 24px; font-weight: 600; color: #fe7865;
}

.product-description .product-price .discount-price {
  font-size: 18px; position: relative; margin-left: 10px; color: #c4c4c4;
}

.product-description .product-price .discount-price::before {
  position: absolute; top: 50%; width: 100%; height: 1px; content: ''; -webkit-transform: translateY(-50%);    -moz-transform: translateY(-50%);     -ms-transform: translateY(-50%);      -o-transform: translateY(-50%);         transform: translateY(-50%); background-color: #222;
}

.product-description .available p {
  font-size: 16px; font-weight: 500; color: #333;
}

.product-description .available p span {
  color: #fc924b;
}

.product-description .product-add .product-add-count .nice-number {
  position: relative;
}

.product-description .product-add .product-add-count .nice-number button {
  font-size: 18px; position: absolute; top: 0; left: 0; width: 40px; height: 50px; cursor: pointer; border: 0; background: none;
}

@media (max-width: 767px) {
  .product-description .product-add .product-add-count .nice-number button {
    width: 30px; height: 45px;
  }
}

.product-description .product-add .product-add-count .nice-number button:last-child {
  right: 0; left: auto;
}

.product-description .product-add .product-add-count .nice-number input {
  width: 150px !important; height: 48px; border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .product-description .product-add .product-add-count .nice-number input {
    width: 110px !important; height: 43px;
  }
}

.product-description .product-add .product-add-btn {
  padding-left: 30px;
}

.shop-review-area {
  padding: 50px; background-color: #fff; -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);         box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767px) {
  .shop-review-area {
    padding: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-review-area {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .shop-reviews .nav .nav-item {
    -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; width: 50%; text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-reviews .nav .nav-item {
    -ms-flex-preferred-size: auto; flex-basis: auto; -ms-flex-positive: 0; flex-grow: 0; width: auto; text-align: left;
  }
}

.shop-reviews .nav .nav-item a {
  font-size: 18px; font-weight: 500; margin-right: -1px; padding: 10px 15px; -webkit-transition: all .3s ease-out 0s;    -moz-transition: all .3s ease-out 0s;     -ms-transition: all .3s ease-out 0s;      -o-transition: all .3s ease-out 0s;         transition: all .3s ease-out 0s; color: #333; border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .shop-reviews .nav .nav-item a {
    font-size: 16px; display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-reviews .nav .nav-item a {
    font-size: 18px; display: inline-block;
  }
}

.shop-reviews .nav .nav-item a.active {
  color: #fff; border-color: #fe7865; background-color: #fe7865;
}

.shop-reviews .tab-content {
  margin-top: -1px; border: 1px solid #ddd;
}

.shop-reviews .tab-content .tab-description {
  padding: 0 50px 50px;
}

@media (max-width: 767px) {
  .shop-reviews .tab-content .tab-description {
    padding: 0 20px 20px;
  }
}

.shop-reviews .tab-content .tab-description .title {
  font-size: 24px; font-weight: 500;
}

.shop-reviews .tab-content .tab-description ul li {
  font-size: 16px; position: relative; margin-top: 10px; padding-left: 20px; color: #777;
}

.shop-reviews .tab-content .tab-description ul li::before {
  position: absolute; top: 9px; left: 0; width: 8px; height: 8px; content: ''; border-radius: 50%; background-color: #fe7865;
}

.shop-reviews .tab-content .tab-review {
  padding: 20px 50px 50px;
}

@media (max-width: 767px) {
  .shop-reviews .tab-content .tab-review {
    padding: 0 20px 20px;
  }
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .shop-reviews .tab-content .tab-review .review-item ul li .single-review {
    margin-top: 20px;
  }
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-thumb img {
  border-radius: 50%;
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content {
    padding-top: 20px; padding-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content {
    padding-top: 0; padding-left: 20px;
  }
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content .review-name .review-rating li {
  font-size: 15px; display: inline-block; color: #fc924b;
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content .review-name .name {
  font-size: 18px; font-weight: 600; padding-bottom: 5px;
}

.shop-reviews .tab-content .tab-review .review-item ul li .single-review .review-content .review-name span {
  font-size: 15px; color: #777;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input {
  margin-top: 30px;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input textarea,
.shop-reviews .tab-content .tab-review .review-form .single-review-input input {
  width: 100%; height: 55px; padding: 0 20px; border: 1px solid #ddd; background-color: #f7f7ff;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input textarea {
  height: 155px; padding-top: 10px; resize: none;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input p {
  font-size: 15px;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input .star-rating {
  padding-left: 10px;
}

.shop-reviews .tab-content .tab-review .review-form .single-review-input .star-rating i {
  font-size: 15px; cursor: pointer; color: #fc924b;
}

/*# sourceMappingURL=style.css.map */
