/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #eee;
}

a {
  color: #f19423;
  text-decoration: none;
}

a:hover {
  color: #c0272d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f19423;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c0272d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9);
  padding: 12px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 15px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f19423;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #493c3e;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f19423;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
      left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
      display: block;
  }

  .navbar ul {
      display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 37, 38, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #C0272D;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f7941d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f19423;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 100vh;
background: url("../img/hero-bg.jpg") top center;
background-size: cover;
position: relative;
}
#hero:before {
content: "";
background: rgba(0, 0, 0, 0.6);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#hero .hero-container {
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding: 0 15px;
}
#hero h3 {
background: rgba(255, 255, 255, 0.1);
color: #fff;
font-size: 26px;
padding: 10px 30px;
margin-bottom: 30px;
border-radius: 50px;
}
#hero h1 {
margin: 0 0 10px 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
text-transform: uppercase;
color: #fff;
}
#hero h2 {
color: #eee;
margin-bottom: 40px;
font-size: 24px;
}
#hero .btn-get-started {
font-family: "Poppins", sans-serif;
text-transform: uppercase;
font-weight: 400;
font-size: 13px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 30px 9px 30px;
border-radius: 50px;
transition: 0.5s;
border: 2px solid #fff;
color: #fff;
}
#hero .btn-get-started:hover {
background: #C0272D;
border: 2px solid #C0272D;
}
@media (min-width: 1024px) {
#hero {
  background-attachment: fixed;
}
}
@media (max-width: 768px) {
#hero h3 {
  font-size: 22px;
}
#hero h1 {
  font-size: 28px;
  line-height: 36px;
}
#hero h2 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}
}
@media (max-height: 500px) {
#hero {
  height: 150vh;
}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #f8f9fa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6b7b8d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
      margin-top: 58px;
  }

  .breadcrumbs .d-flex {
      display: block !important;
  }

  .breadcrumbs h2 {
      margin-bottom: 10px;
  }

  .breadcrumbs ol {
      display: block;
  }

  .breadcrumbs ol li {
      display: inline-block;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  margin: 0;
  background: #fdeff2;
  color: #f19423;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #f19423;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
      width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f19423;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #f19423;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #C02B2E;
}

.about .content .btn-learn-more:hover {
  background: #f19423;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
      max-width: 40%;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #fdeff2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #f19423;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #f19423;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #493c3e;
  transition: ease-in-out 0.3s;
}

.features .icon-box:hover a {
  color: #f19423;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #f19423;
  border: 2px solid #f19423;
}

@media (min-width: 1024px) {
  .cta {
      background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 7px 17px 9px 17px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #ede9e9;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #f19423;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #f19423;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: white;
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #f7c2cc;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f19423;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f19423;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(73, 60, 62, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #493c3e;
}

.pricing .box h4 {
  font-size: 42px;
  color: #f19423;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #493c3e;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #f19423;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 2px solid #f19423;
  color: #f19423;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #f19423;
  color: #fff;
}

.pricing .recommended {
  border-color: #f19423;
}

.pricing .recommended .btn-buy {
  background: #f19423;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #d91e42;
  border-color: #d91e42;
}

.pricing .recommended-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #fce6ea;
  color: #f19423;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #f1eeef;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #f19423;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #c0272d;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #f19423;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (min-width: 1280px) {
  .faq .container {
      padding: 0 120px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
background: #fff;
padding: 60px 0;
}
.team .member {
margin-bottom: 20px;
overflow: hidden;
text-align: center;
border-radius: 5px;
background: #fff;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member .member-img {
position: relative;
overflow: hidden;
}
.team .member .social {
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: 40px;
opacity: 0;
transition: ease-in-out 0.3s;
background: rgba(255, 255, 255, 0.85);
display: flex;
align-items: center;
justify-content: center;
}
.team .member .social a {
transition: color 0.3s;
color: #493c3e;
margin: 0 10px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.team .member .social a i {
line-height: 0;
}
.team .member .social a:hover {
color: #e43c5c;
}
.team .member .social i {
font-size: 18px;
margin: 0 2px;
}
.team .member .member-info {
padding: 25px 15px;
}
.team .member .member-info h4 {
font-weight: 700;
margin-bottom: 5px;
font-size: 18px;
color: #493c3e;
}
.team .member .member-info span {
display: block;
font-size: 13px;
font-weight: 400;
color: #aaaaaa;
}
.team .member .member-info p {
font-style: italic;
font-size: 14px;
line-height: 26px;
color: #777777;
}
.team .member:hover .social {
opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #f19423;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #493c3e;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #816a6e;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f19423;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #f19423;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f19423;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #c0272d;
}

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

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

@keyframes animate-loading {
  0% {
      transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f4f4;
  margin-top: 67px;
}

@media (max-width: 992px) {
  .breadcrumbs {
      margin-top: 50px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #655356;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f6f4f4;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c0272d;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f19423;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #f7c2cc;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 15px;
  padding: 0 22px;
  background: #f19423;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #c0272d;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f19423;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #c0272d;
  color: #fff;
  text-decoration: none;
}

.phone-call {
    width: 50px;
    height: 50px;
    left: 20px;
    bottom: 20px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.phone-call:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);

.c2a1 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 300;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

.c2a1 h1,
.c2a1 h2,
.c2a1 h3,
.c2a1 h4,
.c2a1 h5,
.c2a1 h6 {
    color: #3e4555;
}

.c2a1 .op-8 {
    opacity: 0.8;
}

.c2a1 .font-weight-medium {
    font-weight: 500;
}

.c2a1 .btn-danger-gradiant {
    background: #0e3659;
    background: -webkit-linear-gradient(legacy-direction(to right), #0e3659 0%, #0e3659 100%);
    background: -webkit-gradient(linear, left top, right top, from(#0e3659), to(#0e3659));
    background: -webkit-linear-gradient(left, #0e3659 0%, #0e3659 100%);
    background: -o-linear-gradient(left, #0e3659 0%, #0e3659 100%);
    background: linear-gradient(to right, #0e3659 0%, #0e3659 100%);
}

.c2a1 .btn-danger-gradiant:hover {
    background: #0e3659;
    background: -webkit-linear-gradient(legacy-direction(to right), #0e3659 0%, #0e3659 100%);
    background: -webkit-gradient(linear, left top, right top, from(#0e3659), to(#0e3659));
    background: -webkit-linear-gradient(left, #0e3659 0%, #0e3659 100%);
    background: -o-linear-gradient(left, #0e3659 0%, #0e3659 100%);
    background: linear-gradient(to right, #0e3659 0%, #0e3659 100%);
}

.c2a1 .btn-md {
    padding: 15px 45px;
    font-size: 16px;
}


.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    bottom: 8rem;
    background: #ec8b00;
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 2.2rem;
}

.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

span.num {
    position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
}

/*==================================
=            common css            =
==================================*/
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', sans-serif;
}

.btn.btn-primary {
  background-color: #fb5b21;
  border: medium none;
  border-radius: 40px;
  box-shadow: none;
  color: #ffffff;
  font-weight: bold;
  padding: 0.8rem 2.6rem;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  overflow: hidden;
  z-index: 1;
}
.btn.btn-primary:after {
  background-color: #ffffff;
  border-radius: 4px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  top: 0;
  visibility: hidden;
  z-index: -1;
}
.btn.btn-primary:focus, .btn.btn-primary:hover {
  box-shadow: none !important;
  outline: 0 !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a:hover {
  text-decoration: none;
}

/*=====  End of common css  ======*/




.product-slider-section-4 {
  padding: 60px 0;
}
.product-slider-section-4 .carousel-control-prev, .product-slider-section-4 .carousel-control-next {
  color: #000000;
}
.product-slider-section-4 .carousel-control-prev-icon, .product-slider-section-4 .carousel-control-next-icon {
  background-image: none;
}
.product-slider-section-4 .carousel-inner {
  cursor: move;
  position: absolute;
  top: 100px;
  width: 260px;
  right: 0;
  height: 490px;
  text-align: center;
  margin: 0 auto;
  left: 0;
}
.product-slider-section-4 .carousel-inner .carousel-item-content {
  display: table;
  width: 100%;
  height: 510px;
  padding: 15px;
  font-size: 14px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon {
  background-color: #EAADD4;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-two {
  background-color: #00F8FF;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-three {
  background-color: #474555;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-four {
  background-color: #CE887E;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-five {
  background-color: #86A472;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-six {
  background-color: #F45019;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .contact-button-one {
  background-color: #d65db1;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-two {
  background-color: #00bfc6;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-three {
  background-color: #474555;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-four {
  background-color: #CE887E;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-five {
  background-color: #86A472;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-six {
  background-color: #F45019;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button:hover {
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li {
  cursor: pointer;
  float: left;
  height: auto;
  margin: 10px 0 0 0;
  padding: 10px;
  text-align: center;
  text-indent: unset;
  width: 33.333%;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content {
  background-color: #ffffff;
  border-color: #fb5b21;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content h6 {
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-gift {
  background-color: #EAADD4;
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-heart {
  background-color: #00F8FF;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-flag {
  background-color:#474555;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-envelope {
  background-color: #CE887E;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-shopping-cart {
  background-color: #86A472;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-star {
  background-color: #00F8FF;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.one .data-slide-content {
  background-color: #D65DB1;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.one .data-slide-content {
  background-color: #D65DB1;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.two .data-slide-content {
  background-color: #00BFC6;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.three .data-slide-content {
  background-color: #8385EB;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.four .data-slide-content {
  background-color: #CF0822;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.five .data-slide-content {
  background-color: #2D7700;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.six .data-slide-content {
  background-color: #F45019;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-gift {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #d65db1;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-heart {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #00f8ff;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-envelope {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #CF0822;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-star {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #F45019;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-flag {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #8385EB;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-shopping-cart {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #2D7700;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content h6 {
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.product-slider-section-4 {
  padding: 60px 0;
}
.product-slider-section-4 .carousel-control-prev, .product-slider-section-4 .carousel-control-next {
  color: #000000;
}
.product-slider-section-4 .carousel-control-prev-icon, .product-slider-section-4 .carousel-control-next-icon {
  background-image: none;
}
.product-slider-section-4 .carousel-inner {
  cursor: move;
  position: absolute;
  top: 100px;
  width: 260px;
  right: 0;
  height: 490px;
  text-align: center;
  margin: 0 auto;
  left: 0;
}
.product-slider-section-4 .carousel-inner .carousel-item-content {
  display: table;
  width: 100%;
  height: 510px;
  padding: 15px;
  font-size: 14px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon {
  background-color: #EAADD4;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-two {
  background-color: #00F8FF;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-three {
  background-color: #474555;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-four {
  background-color: #CE887E;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-five {
  background-color: #86A472;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .carousel-item-icon-six {
  background-color: #ffc107;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 10px;
  text-align: center;
  width: 60px;
}
.product-slider-section-4 .carousel-inner .contact-button-one {
  background-color: #d65db1;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-two {
  background-color: #00bfc6;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-three {
  background-color: #474555;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-four {
  background-color: #CE887E;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-five {
  background-color: #86A472;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button-six {
  background-color: #ffc107;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  margin-top: 11px;
  padding: 8px 10px;
}
.product-slider-section-4 .carousel-inner .contact-button:hover {
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li {
  cursor: pointer;
  float: left;
  height: auto;
  margin: 10px 0 0 0;
  padding: 10px;
  text-align: center;
  text-indent: unset;
  width: 33.333%;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content {
  background-color: #ffffff;
  border-color: #fb5b21;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content h6 {
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-gift {
  background-color: #EAADD4;
  color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-heart {
  background-color: #00F8FF;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-flag {
  background-color:#474555;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-envelope {
  background-color: #CE887E;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-shopping-cart {
  background-color: #86A472;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.active .data-slide-content .fa-star {
  background-color: #ffc107;
color: #ffffff;
}
.product-slider-section-4 .carousel-indicators li.one .data-slide-content {
  background-color: #D65DB1;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.one .data-slide-content {
  background-color: #D65DB1;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.two .data-slide-content {
  background-color: #00bfc6;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.three .data-slide-content {
  background-color: #8385EB;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.four .data-slide-content {
  background-color: #CF0822;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.five .data-slide-content {
  background-color: #2D7700;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li.six .data-slide-content {
  background-color: #F45019;
  padding: 20px 10px;
  border: 2px solid transparent;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-gift {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #d65db1;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-heart {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #00f8ff;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-envelope {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #CF0822;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-star {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #F45019;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-flag {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #8385EB;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content .fa-shopping-cart {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #2D7700;
  font-size: 25px;
  line-height: 50px;
  border-radius: 50%;
}
.product-slider-section-4 .carousel-indicators li .data-slide-content h6 {
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.title{
  padding:0px 10px;
}


@media screen and (max-width: 576px) {
  .thumbs-slider-1 .carousel-inner .carousel-item h2, .thumbs-slider-2 .carousel-inner .carousel-item h2, .thumbs-slider-3 .carousel-inner .carousel-item h2, .full-slider-1 .carousel-inner .carousel-item h2, .full-slider-2 .carousel-inner .carousel-item h2, .full-slider-3 .carousel-inner .carousel-item h2 {
    font-size: 2.3rem;
  }

  .slider-5 .carousel-control-next, .slider-5 .carousel-control-prev {
    display: none;
  }

  .full-slider-4 .subscribe-content h1 {
    font-size: 2.7rem;
  }

  .header-demo-top-row .header-demo-content h1 {
    font-size: 2.3rem;
  }
  .header-demo-top-row .header-demo-content p {
    font-size: 1.2rem;
  }

  .thumbs-slider-2 .carousel-indicators {
    bottom: 0;
    display: flex;
    left: 0;
    margin: 0;
    top: auto;
    right: 0;
  }
  .thumbs-slider-2 .carousel-indicators li.active .text {
    left: 0;
  }

  .thumbs-slider-3 .carousel-inner .carousel-item .carousel-caption {
    left: 0;
  }

  .full-slider-2 .carousel-control-next, .full-slider-2 .carousel-control-prev {
    display: none;
  }
  .full-slider-2 .carousel-inner .carousel-item .carousel-caption {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .testinomials-2 .carousel-indicators li, .testinomials-3 .carousel-indicators li {
    height: 40px;
    width: 40px;
  }

  .testinomials-1 figure {
    height: 100px;
    width: 100px;
  }

  .product-slider-section-1 .carousel-indicators {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow-y: auto;
    height: auto;
  }
  .product-slider-section-1 .carousel-indicators li {
    width: 43px;
  }
  .product-slider-section-1 .data-slide-content {
    display: none;
  }

  .product-slider-section-4 .carousel-inner {
    width: 240px;
  }
  .product-slider-section-4 .carousel-control-prev, .product-slider-section-4 .carousel-control-next {
    display: none;
  }
  .product-slider-section-4 .carousel-indicators {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    overflow-y: hidden;
    margin: 0 0 20px 0 !important;
  }
  .product-slider-section-4 .carousel-indicators li {
    float: none;
    margin: 0 10px 0 0;
    padding: 0 0 20px 0;
    width: 140px;
    display: inline-block;
  }

  .testinomials-5 .carousel {
    padding: 10px;
  }
  .testinomials-5 .arrow {
    font-size: 40px;
  }

  .testinomials-6 .arrow {
    font-size: 40px;
  }
}
