

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #343a40;
   
}

a {
  color: #e03a3c;
}

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

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



.p-font

{
    font-size: 15px;
   
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

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

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


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

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


}

#header.header-scrolled {
  padding: 12px 0;

}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #343a40;
}

#header .logo a span {
  color: #e03a3c;
}

.header-social-links {
    padding-left: 14px;
    
   
    padding-right: 10px;
}
.header-social-links a {
    color: #343a40;
    padding: 0 5px 0 0;
}


@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
    .header-social-links {
         padding-left: 0px;
    } 
}

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

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #343a40;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
 
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e03a3c;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  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: 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-size: 13px;
  text-transform: none;
}

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

.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";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 0px;
  background: #e03a3c;
  color: #fff;
  padding: 10px 25px;
 
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  display: inline-block;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}







.get-started-btn:hover {

  color: #ffff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 42px 0 0;
    padding: 6px 14px;
  }
   #intro {height: 100vh;
    }
}









/* Mobile Navigation */
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 25px;
  z-index: 99998;
  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: #343a40;
}

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

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #343a40;
  padding: 10px 20px;
  font-weight: 400;
  outline: none;
  font-family: "Poppins", sans-serif;
    font-size: 16px;
  
}



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

.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;
        border-bottom: none;
}

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

.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: 80vh;
  background: url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
    top: -16px;
}

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

#hero h1 {
  margin: 0;
  font-size: 44px;
       line-height: 46px; 
  padding-top: 70px;
 letter-spacing: -1px;
    font-weight: 300;
   text-align: left !important;
     color: #343a40; 
}   

#hero h1 span {
    
    font-weight: 700;
         font-family:  "Montserrat", sans-serif;  
  font-size: 48px;
 color: #e03a3c; 
    line-height: 55px;
    
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/


.cta-bg {
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .6)), url("../img/call.jpg") center center;
  background-size: cover;
    padding: 80px 0;
    margin: 50px 0;
 background-attachment: fixed;
}
  

.concrete {
    
    background: url("../img/concrete-background.png") center center;
}

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

}

.cta p {
  color: #fff;
}

.cta .cta-btn {
 
     font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: 0.5s;
  padding: 10px 40px;
  color: #fff;
background: #e03a3c;
   margin-top: 32px; 
 border-radius: 30px;
  position: relative;
  z-index: 4;
   text-transform: uppercase;
box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    font-family: "Roboto", sans-serif;
  margin-right: 5px;
    border: 2px solid #e03a3c;
    padding: 10px 25px;
 
    outline: 0 !important;
    border-radius: 0px;
    text-transform: uppercase;
    text-decoration: none;
}
 

.cta .cta-btn:hover {
 background: #343a40;

  border: 2px solid #343a40; 
}

@media (min-width: 1024px) {
  .cta {
   
  }
}


#hero h2 {
  
  margin: 10px 0 20px 0;
  font-size: 23px;
  font-weight: 500;
  text-align: left !important;
     color: #343a40; 
    
}



#hero .btn-get-started {
 
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  transition: 0.5s;
  padding: 10px 40px;
  color: #fff;
background: #e03a3c;
   margin-top: 10px; 
 border-radius: 30px;
  position: relative;
  z-index: 4;
  
box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    font-family: "Roboto", sans-serif;
  margin-right: 5px;
    border: 2px solid #e03a3c;
    padding: 10px 25px;
 
    outline: 0 !important;
    border-radius: 0px;
    text-transform: uppercase;
    text-decoration: none;
}
    
    



#hero .btn-get-started:hover {
 
  background: #343a40;
   
    border: 2px solid #343a40;
}



#hero .btn-get-started2 {
 
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  transition: 0.5s;
  padding: 10px 40px;
  color: #fff;
background: #343a40;
   margin-top: 10px; 
 border-radius: 30px;
  position: relative;
  z-index: 4;
   text-transform: uppercase;
box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    font-family: "Roboto", sans-serif;
  margin-right: 5px;
    border: 2px solid #343a40;
    padding: 10px 25px;
 
    outline: 0 !important;
    border-radius: 0px;
  
    text-decoration: none;
}
    
    
.left
{
   text-align: left !important; 
}


#hero .btn-get-started2:hover {
 
  background: #e03a3c;
   
    border: 2px solid #e03a3c;
}

@media (max-width: 768px) {
  #hero {
   
    padding-top: 58px;
  }
  #hero h1, #hero h1 span {
    font-size: 38px;
      line-height: 38px
  }
    
  #hero h2 {
    font-size: 23px;
    line-height: 24px;
  }
}

@media (max-width: 740px) {
  #hero {
    height: 100vh;
  }
}

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

section p {
    font-size: 15px;
    line-height: 23px;
    padding-bottom: 10px;
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e03a3c;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  color: #343a40;
  line-height: 35px;
} 




.section-bg {
  padding: 120px 0;
  color: #fff;
    
}

.section-bg:before {
  content: "";
   background: linear-gradient(rgba(224, 58, 60, .95), rgba(224, 58, 60, .82)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
 
}

@media (max-width: 1200px) {
.section-title p {
    font-size: calc(1.375rem + 1.5vw);
}
}



.color {background: #f2f2f2;}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
 
  background: #fff;
  min-height: 30px;
  margin-top: 52px;
    padding-bottom: 20px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 500;
    color: #343a40;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 1px 0;
  margin: 0;
  font-size: 18px;
    color: #343a40;
    text-transform: uppercase;
    font-weight: 700;
    
}

.breadcrumbs ol a {
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 16px;
}

.breadcrumbs ol a:hover {
  color: #e03a3c;
  transition: 0.3s;
}

.breadcrumbs ol a::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e03a3c;
    margin: 4px 10px;
}


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

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



@media (max-width: 1200px) {
.breadcrumbs h2 {
    font-size: calc(1.125rem + 1.5vw);
}
}

    







.featured-services .content {
  padding: 30px;

  border-radius: 4px;
  color: #e03a3c;
}

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

.featured-services .content p {
  margin-bottom: 30px;
}


.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
}

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

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

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

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

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


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

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

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

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


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 90%;
  opacity: 0.5;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.clients .owl-item img:hover {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

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

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

.clients .owl-dot.active {
  background-color: #e03a3c !important;
}






















/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

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

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

.about .content .about-btn {
   font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  padding: 10px 40px;
  color: #fff;
background: #e03a3c;
   margin-top: 16px; 
 border-radius: 30px;
  position: relative;
  z-index: 4;
   text-transform: uppercase;
box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    font-family: "Roboto", sans-serif;
  margin-right: 5px;
    border: 2px solid #e03a3c;
    padding: 10px 25px;
 
    outline: 0 !important;
    border-radius: 0px;
    text-transform: uppercase;
    text-decoration: none;
  
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #343a40;

  border: 2px solid #343a40; 
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 45px;
  color: #fff;
  margin-bottom: 15px;
    
}

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

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #fff;
   
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Firm
--------------------------------------------------------------*/
.firm {
    
     border: 0;
}


.firm .firma-content {
  margin-top: 30px;
}

.firm h3 {
  font-weight: 600;
  font-size: 18px;
   line-height: 24px;
   
    font-family: "Montserrat", sans-serif;
    padding-bottom: 15px;
     
    
color: #343a40;
    
}



/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/




.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #343a40;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #e03a3c;
}

.tabs .nav-link.active {
  background: #e03a3c;
  color: #fff;
  border-color: #e03a3c;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 35px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 20px;
    
   
    font-family: "Montserrat", sans-serif;
    padding-bottom: 15px;
        text-transform: uppercase;
    
color: #343a40;
    
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #343a40;
  transition: 0.3s;
}


.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
    display: block;
}

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

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

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

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



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

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  
  font-weight: 500;
  line-height: 1;
  color: #acacac;
  transition: all 0.3s ease-in-out;
  font-family: "Montserrat",sans-serif;
  border: 1px solid #acacac;
    margin-bottom: 4px;
   
    padding: 8px 20px;
    font-size: .875rem;
    line-height: 1.5;
 
  
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  color: #fff;
  border: 1px solid #e03a3c;
    background: #e03a3c;
}

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




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

.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: #18d26e !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;

  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;
}

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


.portfolio .portfolio-itemm {

 background: #fff;
  
    margin-bottom: 30px;
            
    
}

.portfolio .portfolio-content {
  padding: 15px;
  background: #fff;
    border-radius: 5px;
    
    

} 
.portfolio .portfolio-content h3 {
  font-weight: 600;
  font-size: 17px;
   text-transform: uppercase;
     font-family: "Montserrat", sans-serif;
    letter-spacing: -1px;
}

.portfolio .portfolio-content  a {
  color: #343a40;
  transition: 0.3s;
}

.portfolio .portfolio-content  a:hover {
  color: #e03a3c;
}

.portfolio .portfolio-content p {
  font-size: 14px;
  color: #343a40;
}

.portfolio .portfolio-content h4 {
  font-size: 14px;
 font-weight: 400;
 font-family: "Montserrat", sans-serif;
  color: #343a40;
  margin: 0;
}

.portfolio .portfolio-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  color: #e03a3c;
}

.portfolio .trainer {
  padding-top: 15px;
  
}

.portfolio .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.portfolio .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.portfolio .trainer .trainer-rank a{
  font-size: 14px;
  color: #e03a3c;
    border: 1px solid #e03a3c;
    padding: 3px 20px;
        border-radius: 3px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}





/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq{
	padding: 80px 0px 50px;
}
.faq-accordion{
	margin-bottom: 30px;
}
.collapse-btn i{
	position: absolute;
    right: 20px;
    top: 2px;
    color: #fff;
}
.collapse-btn button[aria-expanded="true"] i:before{
	content: "\f374";
	color: #fff;
}
.collapse-head{
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}
.collapse-head:last-child{
	margin-bottom: 0px;
}
.collapse-head p{
	margin-bottom: 0;
	padding: 15px 20px;
}
.collapse-head button{
	color: #fff;
	background-color: #343a40;
    width: 100%;
    padding: 10px 25px;
    position: relative;
    text-align: left;
}
.collapse-head button:hover{
	cursor: pointer;
}
.faq-accordion button[aria-expanded="true"]{
	background-color: #dc3545;
	color: #fff;
}
#faq .faq-img img{
	width: 100%;
}
#faq .faq-item{
	margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #e03a3c;
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

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

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111111;
}

.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;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

#team #team-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
}

#team #team-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #666666;
  transition: all 0.3s ease-in-out;
  
}

#team #team-flters li:hover, #team #team-flters li.filter-active {
  color: #e03a3c;
}

#team #team-flters li:last-child {
  margin-right: 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;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #3498db;
}

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

.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;
}


.counts {
  padding-top: 80px;
  background: #fff;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  background: #fff;
  position: relative;
  text-align: center;
 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
  
}

.counts .count-box i {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  background: #fff;
  padding: 12px;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.counts .count-box span {
  font-size: 30px;
  display: block;
  font-weight: 700;
  color: #343a40;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
}






/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact
{
    padding: 60px 0 5px 0 !important;
}


.contact .info-box {
  color: #444444;
  text-align: center;
 box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  border-radius: 4px;
 
}



#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #e03a3c;

}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #e03a3c;

}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .php-email-form .validate {
  display: none;
  color: #e03a3c;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #e03a3c;
  text-align: center;
  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: #e03a3c;
  background: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 600;
    border: 2px solid #e03a3c;
}

#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 #e03a3c;
  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 {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

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

.contact .php-email-form button[type="submit"] {
  background: #e03a3c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
   font-weight: 500;
 font-size: 14px;
    
}

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

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

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

#contact .form control
{
    background: #cccccc;
}
/*--------------------------------------------------------------
# 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: #e03a3c !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0 10px 30px -5px 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 {

  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

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

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



.portfolio .entry {
  padding: 30px;
  margin-bottom: 40px;
box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
   
}




.portfolio .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.portfolio .entry .entry-title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.portfolio .entry .entry-title a {
  color: #343a40;
  transition: 0.3s;
}

.portfolio .entry .entry-title a:hover {
  color: #e03a3c;
}

.portfolio .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.portfolio .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.portfolio .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.portfolio.entry .entry-meta a {
  color: #5e5e5e;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.portfolio .entry .entry-content p {
  line-height: 24px;
}

.portfolio .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.portfolio .entry .entry-content .read-more a {
  display: inline-block;
  background: #e03a3c;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;

   
   
 
}

.portfolio .entry .entry-content .read-more a:hover {
  background: #e65d5f;
}










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









.gallery .gallery-wrap {
  transition:  opacity .15s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  z-index: 2;

  opacity: 0;
}

.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-wrap .gallery-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
transition: all 0.4s;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
   transition: all 0.4s ;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: #3b3b3b;
  font-weight: 600;
}



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

.gallery .gallery-wrap .gallery-links a {
  color: #3b3b3b;
  margin: 0 2px;
  font-size: 44px;
  display: inline-block;
  transition: 0.4s;
}

.gallery .gallery-wrap .gallery-links a:hover {
  color: #e03a3c;
}

.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.gallery .gallery-wrap:hover .gallery-info::before {
  top: 15px;
  left: 15px;
}

.gallery .gallery-wrap:hover .gallery-info::after {
  bottom: 15px;
  right: 15px;
}



.map {
    height: 200px;
    max-width: 100%;
}

#google-map {
     
    height: 400px;
    width: 100%;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #656262;
  font-size: 14px;
  background: #fff;
}

.font {
    
    font-family: "Poppins", sans-serif;
}

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

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-info h3 span {
  color: #e03a3c;
  font-family: "Poppins", sans-serif;
  letter-spacing: -1px;
  font-weight: 800;
    font-size: 26px;
}

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
    margin: 0 0 20px 0;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

#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: #e03a3c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

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

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

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

#footer .footer-newsletter {
  font-size: 14px;
  font-family: "Montserrat", sans-serif; 
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#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: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
    text-transform: uppercase;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .form-control {
    border: #f5f5f5;
    border-radius: 0px !important;
}

 #footer .form-group .form-control:focus, .form-group .form-control:after {
     border-color: #343a40;
}


#footer .php-email-form input, #footer .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #f2f2f2;
  font-size: 14px;
}

#footer .php-email-form input:focus, #footer .php-email-form textarea:focus {
  border-color: #1bb1dc;
}


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

#footer .credits {
  padding-top: 3px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}

#footer .social-links a {

    font-size: 18px;
    display: inline-block;
    background: #e03a3c;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-bottom: 25px;
box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#footer .social-links a:hover {
  
  background: #343a40;
  text-decoration: none;
}


#footer .php-email-form button[type="submit"] {
 font-weight: 400;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
  padding: 10px 40px;
  color: #fff;
background: #e03a3c;
 
 border-radius: 30px;
  position: relative;
  z-index: 4;

box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    font-family: "Roboto", sans-serif;
  margin-right: 5px;
    border: 2px solid #e03a3c;
    padding: 10px 25px;
 
    outline: 0 !important;
    border-radius: 0px;
 
text-transform: uppercase;
    text-decoration: none;

}

#footer .php-email-form button[type="submit"]:hover {
  background: #343a40;
    border: 2px solid #343a40;
  cursor: pointer;
}


.copyright

{font-family: "Poppins", sans-serif;
font-size: 12px;}


#send_form_status {
    font-size: 14px;
    display: none;
    text-align: center;
    padding-bottom: 0 !important;
}


 .status_ok {
color: #343a40;
font-weight: 500;
margin-top: 20px;
border: 1px solid #3bff3b;
    padding: 10px;
     background: #fff;
     
}

.status_err {
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    background: #e03a3c;
    padding: 10px;
    
}

 #google-map {
     height: 270px;
     width: 100%;
}




#etap{
	padding: 5px 0px 5px;
}

#etap  h2{
	margin-bottom: 40px;
    font-size:26px;
    font-weight: 700;
    
    
}
#etap .etap-item{
	text-align: center;
	padding-bottom: 30px;
}
#etap .etap-count-text{
	position: absolute;
	left: 30px;
	top: 80px;
    color: #000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#etap .etap-count-text span{
	opacity: .09;
	font-size: 100px;
	line-height: 0;
}
#etap .etap-item .etap-icon{
	margin-bottom: 10px;
}
#etap .etap-item i:before{
	color: #e03a3c;
	font-size: 80px;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
}
#etap .etap-item .card:hover i:before,
#etap .etap-item .card-active i:before,
#etap .etap-item .card:hover .btn,
#etap .etap-item .card-active .etap-count-text,
#etap .etap-item .card:hover .etap-count-text{
	color: #fff;
}
#etap .etap-item h4{
	margin-bottom: 15px;
	margin-top: 120px;
    font-size: 22px;
    font-weight: 600;
}
#etap .etap-item a{
	color: #dc3545;
}
#etap .etap-item .btn-active{
	color: #fff;
}
#etap .etap-item-single-item{
	margin-bottom: 30px;
}
#etap .etap-item-single{
	margin-bottom: 30px;
}
#etap .etap-item-single:last-child{
	margin-bottom: 0px;
}
#etap .etap-item-single img{
	width: 100%
}
#etap .etap-share-content{
	display: inline-block;
	margin-right: 10px;
}
#etap .etap-share-content:last-child{
	margin-right: 0px;
}




.card{
	width: 100%;
	border-radius: 0px;
	padding: 30px;
	border: 0;
	display: inline-block;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
}
.card.card-active,
.card:hover{
	background-color: #dc3545;
}
.card.card-active i,
.card.card-active i:before,
.card.card-active i:after,
.card.card-active p,
.card.card-active h1,
.card.card-active h2,
.card.card-active h3,
.card.card-active h4,
.card.card-active h5,
.card.card-active h6,
.card.card-active a,
.card.card-active a.btn,
.card.card-active li:after{
	color: #fff;
}
.card.card-active a.btn{
	color: #fff;
}
.card:hover i,
.card:hover i:before,
.card:hover i:after,
.card:hover p,
.card:hover h1,
.card:hover h2,
.card:hover h3,
.card:hover h4,
.card:hover h5,
.card:hover h6,
.card:hover a,
.card:hover li:after{
	color: #fff;
}
.card:hover .head-after:before{
	background-color: #fff;
}
.card:hover .head-after:after{
	border-bottom: 1px solid #fff;
}



 




* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    
}


 .checkbox-group p{
     font-size: 11px !important;
    font-family: "Poppins", sans-serif;
     color: #656262;
    
     padding: 15px ;
}




.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\2794';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


#services {
     padding: 80px 0;
}
 #services .box {
     padding: 40px;
     margin-bottom: 40px;
     box-shadow: 0 24px 36px -11px rgb(0 0 0 / 9%);
     box-shadow: 10px 10px 15px rgb(73 78 92 / 10%);
     background: #fff;
     transition: 0.4s;
}
 #services .box .icon {
     float: left;
}
 #services .box .icon i {
     color: #444;
     font-size: 74px;
     transition: 0.5s;
     line-height: 0;
     margin-top: 34px;
     display: inline-block;
}
 #services .box .icon i:before {
     background: #e03a3c;
     background-clip: border-box;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
 #services .box h4 {
     margin-left: 100px;
     font-weight: 600;
     margin-bottom: 15px;
     font-size: 18px;
     font-family: "Poppins", sans-serif;
     text-transform: uppercase;
}
 #services .box h4 a {
     color: #343a40;
}
 #services .box p {
     font-size: 14px;
     margin-left: 100px;
     margin-bottom: 0;
     line-height: 24px;
}
 @media (max-width: 767px) {
     #services .box .box {
         margin-bottom: 20px;
    }
     #services .box .icon {
         float: none;
         text-align: center;
         padding-bottom: 15px;
    }
     #services .box h4, #services .box p {
         margin-left: 0;
         text-align: center;
    }
}









*, ::after, ::before {
    box-sizing: border-box;
}

.faq {
  padding: 60px 0;
}

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

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
 padding-right: 25px;
  outline: none;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show, .faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #e03a3c;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}

.side

{
    
    text-align: left;
}



@media (max-width: 540px) {
  .side {
    padding:  0 15px 0 15px;
      text-align: center;
  }
}


.form-control {
    
    height: calc(1.5em + .75rem + 14px);
}


section2 {
    padding: 60px 0 80px 0;
    overflow: hidden;
    position: relative;
}

.down {
    
    padding-bottom: 40px;
    
    
}

.desc {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 15px;
    color: #343a40;
    
}


.foto {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 700;
}


.gallery .gallery-items {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin: 0 !important;
}

.gallery .gallery-items img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-items:hover img {
  transform: scale(1.1);
}





.links {
  margin-bottom: 30px;
    
}

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

.links i {

  color: #e03a3c;
  font-size: 18px;
  line-height: 1;
}

.links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
    font-size: 15px;

}
.pt-30 {
    padding-top: 30px !important;
}
