
grey:#3f3f41;
red:#c58c37;
blue:#8b2c3a;
**/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Exo 2", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #8b2c3a;
}

a:hover {
  color: #c58c37;
  text-decoration: none;
}
p{
  font-family: "Exo 2", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alegreya Sans", sans-serif;
}

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

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

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: linear-gradient(60deg, rgba(139, 44, 58,1) 0%, rgba(139, 44, 58,1) 35%, rgba(197, 140, 55,1) 100%);
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #eee;
}

#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}

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

#header .logo a {
  color: #8b2c3a;
}

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

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  color: #3f3f41;
  font-weight: 500;
  font-family: "Alegreya Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #8b2c3a;
  font-weight: 700;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #fff;
  padding: 10px 10px;
  margin-left: 30px;
  border-radius: 0px;
  background: linear-gradient(60deg, rgba(139, 44, 58,1) 0%, rgba(139, 44, 58,1) 35%, rgba(197, 140, 55,1) 100%);
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #8b2c3a;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  text-transform: none;
}

.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: #8b2c3a;
}

.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: #3f3f41;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(9, 9, 9, 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 a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3f3f41;
}

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

.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: #8b2c3a;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: 100% 100%;
  background-position:center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 450px;
}


#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(197, 140, 55,1);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(139, 44, 58,1);
  color: rgba(255, 255, 255, 1);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(197, 140, 55,1);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: rgb(139, 44, 58);
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #8b2c3a;
}

#hero .btn-get-started:hover {
  background: #6ec083;
}

@media (max-width: 992px) {
  #hero {
    height: 180px;
  }
  #hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: 100% 100%;
  background-position:center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 180px;
}

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #8b2c3a;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #3f3f41;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: rgb(197, 140, 55);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
  margin-top: 50px;
}

.featured-services .icon-box {
  padding: 50px;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
border-radius:  50px 0px 50px 0px;
height: 330px;
background: #8b2c3a;
border: 6px double #fff;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #3f3f41 0%, #2f2f2f 50%, #3f3f41 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
  text-align: center;
}
.featured-services .icon img{
  height: 60px;
  width: 60px;
  margin: 0 auto;
}
.featured-services .icon i {
  color: #8b2c3a;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.featured-services .description {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8b2c3a;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .about-btn{
  color: #fff;
  padding: 10px 10px;
  border-radius: 0px;
  background: #8b2c3a;
  border: 2px solid #8b2c3a;
  transition: 0.3s;
  font-size: 14px;
}
.about img{
  width: 100%;
  height: 100%;
}
.about h2{
  color: #8b2c3a;
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #8b2c3a;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8b2c3a;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #3f3f41;
  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 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

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

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

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

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

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

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

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

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

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

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

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

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #8b2c3a;
  padding: 80px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #8b2c3a;
}

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

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

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

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

.portfolio #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 #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #8b2c3a;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 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 .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 1;
  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-info h4 {
  font-size: 20px;
  color: #c58c37;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
.portfolio .enquiry-btn{
  margin-top: 20px;
  text-align: center;
}
.portfolio .enquiry-btn a{
  color: #fff;
  padding: 10px 10px;
  margin-left: 30px;
  border-radius: 0px;
  background: linear-gradient(60deg, rgba(0,17,147,255) 0%, rgba(139, 44, 58,1) 35%, rgba(197, 140, 55,1) 100%);
  transition: 0.3s;
  font-size: 14px;
}
.portfolio .enquiry-btn a:hover{
  background-color: rgb(197, 140, 55);
  color: #fff;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 350px;
  height: 350px;
}

.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 #8b2c3a;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
}
.portfolio-details .portfolio-info i{
  margin-right: 10px;
  color: #8b2c3a;
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8b2c3a;
}

.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 .box{
  text-align: center;
}
.portfolio-details .icon img{
  height: 50px;
  width: 50px;
  text-align: center;
  margin: 10px auto;
}
.portfolio-details .text p{
  font-size: 12px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8b2c3a;
}

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


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 5px solid #c58c37;
  border-bottom: 5px solid #c58c37;
  padding: 60px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #8b2c3a;
  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: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3f3f41;
}

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

.contact .info .social-links {
  padding-left: 0px;
}
.contact .info .social-links a i{
  margin-right: 10px;
}


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

.contact .php-email-form {
  width: 100%;
  border-top: 5px solid #8b2c3a;
  border-bottom: 5px solid #8b2c3a;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.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;
  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;
  border-radius: 4px;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #8b2c3a;
  min-height: 40px;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
}

.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{
  color: #fff;
}
.breadcrumbs ol li a{
  color: #c58c37;
}
.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;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #8b2c3a;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: url(../img/footer-bg.jpg);
  background-size: cover;
  background-position:center center;
  background-repeat: no-repeat;
  padding: 60px 0 30px 0;
  box-shadow: 0px -2px 3px -1px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px -2px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px -2px 3px -1px rgba(0,0,0,0.75);
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info img{
  height: 100px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #3f3f41;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #c58c37;
  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 .footer-top .social-links a:hover {
  background: #8b2c3a;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #8b2c3a;
  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: #8b2c3a;
  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: #3f3f41;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #8b2c3a;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.advertisement{
  background: url(../img/advt2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height:570px;
}
.advertisement marquee img{
    margin-top:0px;
}

.advertisement h3{
  font-weight: 700;
}
.bg-color{
  background: #c58c37;
}
.rounded-10px{
  border-radius: 5px;
}
.mt-2{
  margin-top: 20px;
}
.mb-2{
  margin-bottom: 20px;
}
.advance-features i{
  text-align: center;
}
.advance-features i img{
  text-align: center;
  margin: 0 auto;
}
.advance-features p{
  margin-bottom: 30px;
}
.advance-features h4{
  margin-top: 20px;
  color: #8b2c3a;
  font-weight: 700;
}
.advance-features .icofont-volume-mute, .icofont-road{
  background: #c58c37;
}

.advance-features .icofont-leaf, .advance-features .icofont-road{
  margin-left: 290px;
  margin-bottom: 20px;
  background: #c58c37;
}
.led-advance-features i{
  text-align: center;
}
.advance-features i img{
  text-align: center;
  margin: 0 auto;
}
.led-advance-features p{
  margin-bottom: 30px;
}
.led-advance-features h4{
  margin-top: 20px;
  color: #222;
  font-weight: 700;
}
.led-advance-features .icofont-volume-mute,  .led-advance-features .icofont-road, .led-advance-features .icofont-thunder-light{
  background: #8b2c3a;
}

.led-advance-features .icofont-leaf, .led-advance-features .icofont-road{
  margin-left: 290px;
  margin-bottom: 20px;
  background: #8b2c3a;
  
}
/*.led, .e-scooter{
  width:100%;
  height: 550px;
  background-size: 100% 100%;
  background-position:top center;
  background-repeat: no-repeat;
}
.led{
  background: url(../img/tv-bg.png);
}
.e-scooter{
  background: url(../img/evv-bg.png);
}*/
.led{
  margin-top: -70px;
}
.e-scooter{
  margin-top: -80px;
}
.move-text {
  /*background: linear-gradient(60deg, rgba(20,96,144,1) 0%, rgba(17,35,151,1) 35%, rgba(197, 140, 55,1) 100%);*/
  background: #8b2c3a;
  height: 30px;
}
.move-text h5{
  color: #fff;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 1px;
}
.move-text h5:nth-last-child()::after{
display: none;
}
.move-text marquee{
  margin-top: -10px;
}

.move-text h5::after {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: normal;
  color: #c58c37;
  content: "-";
}
.led-move-text {
  /*background: linear-gradient(60deg, rgba(20,96,144,1) 0%, rgba(17,35,151,1) 35%, rgba(197, 140, 55,1) 100%);*/
  background: #c58c37;
  height: 30px;
}
.led-move-text h5{
  color: #8b2c3a;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 1px;
}
.led-move-text h5:nth-last-child()::after{
display: none;
}
.led-move-text marquee{
  margin-top: -10px;
}

.led-move-text h5::after {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: normal;
  color: #8b2c3a;
  content: "-";
}
.values{
  background: url(../img/gradient-2.jpg);
  background-size: cover;
  background-position:top center;
  background-repeat: no-repeat;
  margin-top: 50px;
}

.values h2{
  color: #222;
  font-weight: 700;
  font-size: 48px;
  margin-top: 90px;
}
.values h6{
  color: #222;
  font-weight: 700;
  font-size: 22px;
}
.values .choose-us p span{
  padding: 10px 14px;
  background: #c58c37;
  color: #fff;
  border-radius: 50%;
}
.values .advantages p span{
  padding: 10px 14px;
  background: #8b2c3a;
  color: #fff;
  border-radius: 50%;
}
.values .choose-us p span,
.values .advantages p span{
  margin-left: -40px;
}
.values .advantages p,
.values .choose-us p{
  padding: 10px 20px;
}
.led-values{
  background: url(../img/blue-bg.jpg);
  background-size: cover;
  background-position:top center;
  background-repeat: no-repeat;
  margin-top: 50px;
}
.led-values h2{
  color: #8b2c3a;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 90px;
}
.led-values h6{
  color: #222;
  font-weight: 700;
  font-size: 22px;
}
.led-values .choose-us p span{
  padding: 10px 14px;
  background: #c58c37;
  color: #fff;
  border-radius: 50%;
}
.led-values .advantages p span{
  padding: 10px 14px;
  background: #8b2c3a;
  color: #fff;
  border-radius: 50%;
}
.led-values .choose-us p span,
.led-values .advantages p span{
  margin-left: -40px;
}
.led-values .advantages p,
.led-values .choose-us p{
  padding: 10px 20px;
}
@media (max-width: 786px){
  .values .choose-us p span {
    padding: 10px 15px;
    background: #c58c37;
    color: #fff;
    border-radius: 50%;
}
.values .choose-us p {
  padding: 10px 36px;
}
.values .advantages p {
  padding: 10px 36px;
}
.led-values .choose-us p span {
  padding: 10px 15px;
  background: #c58c37;
  color: #fff;
  border-radius: 50%;
}
.led-values .advantages p span{
  padding: 10px 14px;
  background: #8b2c3a;
  color: #fff;
  border-radius: 50%;
}
.led-values .advantages p,
.led-values .choose-us p{
  padding: 10px 36px;
}
}
.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  margin-right: 10px;
}
.mySwiper .swiper-slide img {
  height: 150px;
  width: 150px;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

/*.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

/* whatsapp btn  */
.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 110px;
  right: 10px;
  width:20px;
  height:20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  }
  
  @keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  }
  
  .btn-whatsapp-pulse-border {
  bottom: 160px;
    right:10px;
  animation-play-state: paused;
  }
  
  .btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 15px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  }
  
  @keyframes pulse-border {
  0% {
    padding: 15px;
    opacity: 0.75;
  }
  75% {
    padding: 40px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  }
  .btn-whatsapp-pulse:hover,
  .btn-call-pulse:hover{
    color: white;
  }

  /* call button css*/
  .btn-call-pulse {
  background: linear-gradient(45deg, rgba(139, 44, 58,1) 35%, rgba(197, 140, 55,1) 100%);
  color: white;
  position: fixed;
  bottom: 60px;
  right: 10px;
  width:20px;
  height:20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: callpulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  }
  
  @keyframes callpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237,124,4, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(237,124,4, 0);
  }
  }
  
  .btn-call-pulse-border {
  bottom: 180px;
    right: 10px;
  animation-play-state: paused;
  }
  
  .btn-call-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 15px;
  border: 5px solid #f46420;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  }
  
  @keyframes pulse-border {
  0% {
    padding: 15px;
    opacity: 0.75;
  }
  75% {
    padding: 40px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  }
  .btn-call-pulse .fa-phone{
  animation: shake s;
  animation-iteration-count: infinite;
  }
  @keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
  .advertisement{
    background: url(../img/advt1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height:470px;
  }
  .advertisement img{
    height:400px;
    width:400px;
    float: right;
    margin-top: -100px;
  }
  .advertisement h3{
    font-weight: 700;
    font-size: 34px;
    margin-top: 50px;
  }
  .thankyou{
    padding: 100px;
    text-align: center;
  }
  .thankyou h3{
    text-align: center;
  }