/**
* Template Name: Bethany - v2.2.1
* Template URL: https://bootstrapmade.com/bethany-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

a {
  color: #ff5733;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ff5733;
  color: #fff;
  transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

#header .header-container {
  background: #fff;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 5px 30px 5px 30px;
  
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color:#FF5733;
}

#header .logo h1 a, #header .logo h1 a:hover {

  text-decoration: none;
  color:#FF5733;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  width:110px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background:#fff;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #36343a;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ff5733;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #ff5733;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
  border: 1px solid #fff;
}

.nav-menu .get-started a:hover {
  background:#fff;
  color: #ff5733;
  border: 1px solid #ff5733;
}

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

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-weight: 500;
  text-transform: none;
  color: black;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ff5733;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #ff5733;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #36343a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ff5733;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
}

.mobile-nav .get-started a {
  background: #ff5733;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 25px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #fff;
  color: #ff5733;
  border:1px solid #ff5733;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(29, 28, 31, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 87vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
}

#hero .container-fluid {
  padding-top: 85px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-banner
{
	padding: 64px 70px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 1px 1px 1px black;
  text-transform: uppercase;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  
  
}

#hero p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
 
  
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 25px!important;
  border-radius: 8px;
  transition: 0.5s;
  color: #fff;
  background:#ff5733;
  margin-top:15px;
}

#hero .btn-get-started:hover {
  background: #ff5733;
 background:#fff;
  color: #ff5733;
  
}

 .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 25px!important;
  border-radius: 8px;
  transition: 0.5s;
  color: #fff;
  background:#ff5733;
  margin-top:15px;
   border:1px solid #ff5733;
}

.btn-get-started:hover {
  background: #ff5733;
 background:#fff;
  color: #ff5733;
  border:1px solid #ff5733;
  
}

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

@media (max-width: 768px) {
  #hero {
    height: 60vh;
  }
  #hero .container {
    padding-top: 60px;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero .hero-banner
{
	padding: 0px 0px;
}
    #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

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

.section-bg {
  background-color: #f6f6f7;
}

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

.section-title h1 {
  font-size: 32px;
  font-weight: bold;
  
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h1::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff5733;
  bottom: 0;
  left: 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff5733;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
 font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
 
 
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

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

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #ff5733;
}

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


.wse-box {
  padding: 10px 0;
  width: 100%;
  border-right: 1px solid #ccc;
}

.wse-box i {
  display: block;
  font-size: 30px;
  color: #fff;
  float: left;
}




 .wse-box span {
  font-size: 16px;
  line-height: 1px;
  display: block;
  font-weight: 700;
  color: #FF5733;
   margin-left:10px;
 
 
}

 .wse-box p {
  padding: 5px 0 0 0;
  
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #444444;
  margin-left:10px;
 
  
}

@media (max-width: 767px) {
.wse-mob-view-border {
      border-right: 0px !important;
  }
.wse-box span {
	text-align:center;
}
.wse-box p {
	 text-align:center;
}
  
}
.wse-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

 .wse-box a:hover {
  color: #477392;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #ff5733;
  padding: 40px 0 20px 0;
  color: #fff;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #ff5733;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #ff5733;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  transition: 0.3s;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ff5733;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

.why-us .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed 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: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  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: #ff5733;
  border: 2px solid #ff5733;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #ff5733;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #ff5733;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: #ff5733;
}

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

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-wrap img {
  border-radius:5px;
  margin-bottom:08px;
  margin-top:08px;
}
.portfolio .portfolio-wrap span {
 
width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3e3e3e;
    font-size: 14px;
	
}


.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
  font-weight: bold;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}



.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}


.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* product-deatils */

.portfolio .product-deatils
{
	 
	border-radius:25px;
	padding-top:30px;
}

.portfolio .portfolio-wrap .product-deatils img
{
	
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	
}
.portfolio .portfolio-wrap .portfolio-name
{
   width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3e3e3e;
    font-size: 14px;
	 font-weight: 700;
	
	 
	
	
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #FF5733;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #ff5733 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a8a5ae;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #ff5733;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff5733;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #ff5733;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

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

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

.contact .info:hover i {
  background: #ff5733;
  color: #fff;
}

.contact .contact-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

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




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

.contact .contact-form input:focus, .contact .contact-form textarea:focus {
  border-color: #ff5733;
}

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

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

.contact .contact-form button[type="submit"] {
  background: #ff5733;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type="submit"]:hover {
  background: #fff;
  color:#ff5733;
  border: 2px solid #ff5733;
 
}

@-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: 10px 0;
  background: #333333;
  margin-top: 100px;
 
 
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

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

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #ff5733 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.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: 50px;
}

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

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

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 12px;
  background: #1E1E1E;
}

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

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  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: "Raleway", sans-serif;
 color: #fff;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ff5733;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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 #e4e3e6;
}

#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: 16px;
  padding: 0 20px;
  background: #ff5733;
  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: #00664b;
}

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

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff5733;
  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: #fff;
  color: #ff5733;
  text-decoration: none;
}

.copyright
{
	font-size:13px;
}

.interior-row{
                        margin-left: -15px;
                        margin-right: -15px;
                        text-align: center;
                        margin: 36px 0px;
                    }
                    .interiors{
                        width: 16.66%;
                        display: inline-block;
                        position: relative;
                        min-height: 1px;
                        padding-left: 15px;
                        padding-right: 15px;
                        padding-bottom: 25px;
                        vertical-align: top;
                    }
                    .home-interiors-subdiv .content{
                        font-size: 16px;
                        font-weight: 500;
                        color: #404040;
                        margin: 30px 0px;
                    }
                    .home-interiors-subdiv .content .icon-container svg {
                        width:100px;
                        height:65px;
                    }
                    .home-interiors-subdiv .content .icon-container {
                        display: inline-block;
                        width:100px;
                        height:65px;
                    }
                    .home-int-heading{
                        color: #222222;
                        font-size: 24px;
                        font-weight: bold;
                        letter-spacing: 0;
                        line-height: 29px;
                        text-align: center;
                    }
                    .interior-name{
                        color: #222222;
                        font-size: 14px;
                        letter-spacing: 0;
                        line-height: 17px;
                        text-align: center;
                        margin: 0px;
                        margin-top: 12px;
                    }
                    .bookfreeConsultation_btn{
                        text-align: center;
                    }
                    .bookfreeConsultation_btn button{
                        color: #FFFFFF;
                        font-size: 16px;
                        font-weight: bold;
                        letter-spacing: 0;
                        line-height: 19px;
                        text-align: center;
                        border-radius: 8px;
                        background-color: #E71C24;
                        padding: 15px 30px;
                        text-transform: uppercase;
                    }
                    .cityInteriror{
                        padding: 0px 5% 40px;
                    }
                    @media(max-width:345px){
                        .bookfreeConsultation_btn button{
                            font-size: 14px;
                        }
                    }
                    @media (max-width: 768px) {
                        
                        .home-interiors-div{
                            padding: 0;
                            background-color: white;
                        }
                    
                        .home-interiors-subdiv{
                            padding: 20px 15px 0px 15px;
                            background-color: white;
                            text-align: center;
                        }
                        .squarePartner_interiors{
                            padding: 0px 25px 0px 25px;
                        }
                        .home-int-heading {
                            margin: 15px 0px;
                            color: #222222;
                            font-size: 24px;
                            font-weight: bold;
                            letter-spacing: 0;
                            line-height: 29px;
                            text-align: center;
                        }
                        .interiors{
                            width: 33%;
                            display: inline-block;
                            position: relative;
                            min-height: 1px;
                            padding-left: 15px;
                            padding-right: 15px;
                        }
                        .home-interiors-subdiv .content {
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            align-items: center;
                            margin-bottom: 0px;
                        }
                        .interior-name{
                            padding: 5px;
                            line-height: 17px;
                        }
                        .home-interiors-div .btn{
                            padding: 15px 25px;
                            font-size: 14px;
                            font-weight: 500;
                        }
                        .home-interiors-div .home-interiors-subdiv .btn:hover{
                            color: white;
                        }
                        .btn-orange {
                            width: 100%;
                            padding: 14px;
                            background-color: #ff4713;
                            color: #fff;
                            border-radius: 3px;
                            font-size: 14px;
                            text-transform: uppercase;
                            line-height: 20px;
                        -webkit-font-smoothing: antialiased;
                        display: inline-block;
                        text-align: center;
                        white-space: nowrap;
                        vertical-align: middle;
                        user-select: none;
                        border: 1px solid transparent;
                        font-weight: 500;
                        }
                        .bookfreeConsultation_btn button{
                            padding: 15px 10px;
                        }
                        .popup-div{
                            margin: 5%;
                        }
                    }

/* Count Box */

.count-box {
  padding: 20px 0;
  width: 100%;
}

.count-box i {
  display: block;
  font-size: 48px;
  color: #fff;
  float: left;
}

 .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin-left: 60px;
}

 .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

 .count-box a:hover {
  color: #477392;
}



}

#mySidenav a {
 position: fixed;
  
 right:0px;
  padding: 15px;
  
  text-decoration: none;
  font-size: 20px;
  color: white;
  border-radius: 5px 0px 0px 5px;
}
/*sticky side icons*/

#mySidenav a {
 position: fixed;
  right:0px;
 
 
  padding: 15px;
  
  text-decoration: none;
  font-size: 20px;
  color: white;
 border-radius: 5px 0px 0px 5px;
}

#cb1 {
  top: 200px;
  background-color: #ff5733;
  z-index:1000;
}
#cb1:hover {
  top: 200px;
  background-color: #fff;
  color: #ff5733;
  z-index:1000;
  border: 1px solid #ff5733;
}

#cb2 {
  top: 270px;
  background-color: #ff5733;
  z-index:1000;
  
}

#cb2:hover {
  top: 270px;
  background-color: #fff;
  color: #ff5733;
  z-index:1000;
  border: 1px solid #ff5733;
}




/*sticky side icons end*/

/* Scroll bar */
::-webkit-scrollbar {
  width: 20px;
}


::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px black; 
  border-radius: 10px;
}
 

::-webkit-scrollbar-thumb {
  background: #ff5733; 
  border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
  background: #ff5733; 
}
/* Scroll bar end*/
/* product-details*/


#product-details .table-style1
{
	background:#FF5733;
	color:#fff;
	padding:10px;
	border:1px solid #fff;
	font-size:12px;
	font-weight:bold;
	
}

#product-details  .table-style2
{
	
background:#eaeaea;
padding:10px;
border:1px solid #fff;
font-size:12px;
font-weight:bold;

}

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

#product-details  .shareonsocial  a:hover {
  background: #fff;
  color: #ff5733;
  text-decoration: none;
  border:1px solid #ff5733;
}

#product-details  .shareonsocial h6
{
	font-weight: 700;
    font-size: 15px;
	color:#444;
	padding-top:10px;
	
}

 #product-details  .get-quote a {
  background: #ff5733;
  color: #fff;
  border-radius: 8px;
 text-transform: uppercase;
  padding: 10px 25px;
 
}

#product-details  .get-quote a:hover {
  background:#fff;
  color: #ff5733;
  border: 1px solid #ff5733;
}

#product-details  h1
{
	color: #222;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
	text-transform: uppercase;
}

.popup-form
{
	font-weight: 500;
    color: #474a50!important;
    height: 48px!important;
    border-color: #cacaca;
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 6px 12px;
    border-radius: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc!important;
    font-size: 13px;
}

.popup-form-size
{
width: 80% !important;
border-radius: 8px; 
    top: 50%;left:10%;
}

.popup-form-submit-btn
{
    width: 100%;
    padding: 10px 20px;
    letter-spacing: -.12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    line-height: 22px;
    white-space: nowrap;
    vertical-align: middle;
    color: #fff;
    background-color: #FF5733!important;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    
    cursor: pointer;
    border: 1px solid;
    border-radius: 6px;
    text-transform: uppercase;
}
.carousel-wrap {
    width: 1000px;
    margin: auto;
    position: relative;
  }
  .owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
      background: #2caae1;
  }


  .owl-carousel .item {
      text-align: center;
  }
  .owl-carousel .nav-btn{
      height: 47px;
      position: absolute;
      width: 26px;
      cursor: pointer;
      top: 100px !important;
  }

  .owl-carousel .owl-prev.disabled,
  .owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
  }

  .carousel-control-prev-icon {
       background-image: url(../img/left-arrow.png) !important;
      left: 0px;
	  width: 30px;
    height: 30px;
  }
  .carousel-control-next-icon{
     background-image:url(../img/right-arrow.png) !important;
      right: 0px;
	  width: 30px;
    height: 30px;
  }
  .owl-carousel .prev-slide:hover{
     background-position: 0px -53px;
  }
  .owl-carousel .next-slide:hover{
    background-position: -24px -53px;
  }

  span.img-text {
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    font-size: 23px;
    display: block;
    text-transform: capitalize;
  }
  span.img-text:hover {
    color: #2caae1;
  }
  
  
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-2 .portfolio-item {
  margin-bottom: 30px;
}

..portfolio-2 #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio-2 #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

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

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

.portfolio-2 .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.portfolio-2 .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-2 .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio-2 .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio-2 .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #ff5733;
  font-weight: 600;
}

.portfolio-2 .portfolio-wrap .portfolio-info p {
  color: #ff5733;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio-2 .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio-2 .portfolio-wrap .portfolio-links a {
  color: #ff5733;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio-2 .portfolio-wrap .portfolio-links a:hover {
  color: #ff5733;
}

.portfolio-2.portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio-2 .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio-2 .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

#myBtn {color:#FF5733;}


/*--------------------------------------------------------------
#client-testimonial
--------------------------------------------------------------*/

.client .client-item {
  margin-bottom: 30px;
}

.client .client-wrap img {
  border-radius:5px;
  margin-bottom:08px;
  margin-top:08px;
}
.client .client-wrap span {
 
width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3e3e3e;
    font-size: 14px;
	
}

.client .client-wrap p {
 

    font-size: 15px;
   padding-top:10px;
	
}

.client .client-wrap .client-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.client .client-wrap .client-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.client .client-wrap .client-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
  font-weight: bold;
}

.client .client-wrap .client-links {
  text-align: center;
  z-index: 4;
}

.client .client-wrap .client-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}



.client .client-wrap:hover::before {
  opacity: 1;
}


.client .client-wrap:hover .client-info {
  opacity: 1;
}

/* product-deatils */

.client .product-deatils
{
	 
	border-radius:25px;
	padding-top:30px;
}

.client .client-wrap .product-deatils img
{
	
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	
}
.client .client-wrap .client-name
{
   width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3e3e3e;
    font-size: 14px;
	 font-weight: 700;
	
	 
	
	
}

.client .play-btn {
  width: 50px;
  height: 50px;
  background: radial-gradient(#ff5733 50%, rgba(255, 87, 51, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 80px);
  overflow: hidden;
}

.client .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.client .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 87, 51, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(255, 87, 51, 0);
}

.client .play-btn:hover::after {
  border-left: 15px solid #ff5733;
  transform: scale(20);
}

.client .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.grecaptcha-badge { 
    visibility: hidden;
}