/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #f58220;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", 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: 4px;
  background: #3aaa35;
  color: #fff;
  transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #191b1f;
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0px 20px;
  border-bottom: 0px solid #ccc;
}

#header.header-scrolled {
  background: #191b1f;
  border-bottom: 0px solid #313842;
  padding: 0px 0 10px;
}


#header .top-head {
  background: #1a191d;
  color: #bbb;
  transition: 0.3s;
  margin-bottom: 10px;
  padding: 10px 0px;
  font-size: 13px;
  letter-spacing: .5px;
  border-bottom: 1px solid #333;
}

#header.header-scrolled .top-head {
  /* display: none; */
}

#header .top-head .office-top {
  float:left;
  border-right: 1px solid #333;
  padding-right: 10px;
}

#header .top-head .adress-top {
  float:right;
  padding: 0px 0px 0px 20px;
}

#header .top-head .phone-top {
  float:right;
  padding: 0px 20px;
  border-right: 1px solid #555;
}

#header .top-head .mail-top {
  float:right;
  padding: 0px 20px;
  border-right: 1px solid #555;
}




#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

#header .logo img {
  max-height: 80px;
  transition: 0.3s;
  margin-top:10px;
}

@media (max-width: 576px) {
  #header .logo img {
  max-height: 30px;
  transition: 0.3s;
  margin-top: 5px;
  }
}

@media (max-width: 576px) {
  #header.header-scrolled .logo img {
  max-height: 30px;
  transition: 0.3s;
  margin-top: 10px;
  margin-bottom: 5px;
  }
}

#header.header-scrolled img {
  max-height: 45px;
  transition: 0.3s;
  margin-top:5px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

#header .nav-menu {
  margin-top: 25px;
  transition: 0.3s;
}

#header.header-scrolled .nav-menu {
  margin-top: 0px;
  transition: 0.3s;
}

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

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

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

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #f5f5f5;
  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: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #556270;
}

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

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

.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: 25px;
  background: #3aaa35;
  color: #fff;
  border-radius: 4px;
  padding: 8px 30px 9px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

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

@media (max-width: 991px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* 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: #fff;
}

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

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
font-size: 14px;
font-weight: 600;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #f58220;
  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;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(63, 73, 83, 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: 70vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(30, 35, 40, 0.4);
}

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

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

@media (min-width: 992px) {
  #hero .hero-text {
    width: 100%;
  }
}

#hero h5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  color: #6dbf07;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Open Sans';
  text-transform: uppercase;
  letter-spacing: .5px;
}

#hero h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Open Sans';
  text-transform: uppercase;
}

#hero h2 {
  color: #000;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 400;
  font-family: 'Open Sans';
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  letter-spacing: .3px;
  padding: 10px 25px;
  border-radius: 5px;
}

#hero p {

  margin: 0 auto 15px auto;
  color: #fff;
  font-size: 18px;
  font-family: 'Open Sans';
  font-weight: 500;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (min-width: 768px) {

  #hero {
    margin-top: 130px;
  }
}


@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #f58220;
}

#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 15px 25px;
  transition: 0.1s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: transparent;
  border-radius: 5px;
  border: 2px solid #fff;
  margin: 0px 0px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

#hero .btn-get-started:hover {
background: #fff;
border: 2px solid #fff;
color: #000;
}

#hero .btn-get-started-2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 17px 25px;
  transition: 0.1s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: linear-gradient(287.85deg, #FF0766 0%, #FF7E5D 95.32%);
  border-radius: 5px;
  border: 0px solid #313842;
  margin: 0px 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

#hero .btn-get-started-2:hover {
color: #333;
border: 0px solid #5eaa00;
}

@media only screen and (max-width: 570px) {

#hero .btn-get-started-2 {

  margin: 20px 0px 0px 0px;
}

}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 8px;
  }
}

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

/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #f58220 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  color: #fff;
}

.hvr-bubble-bottom {
    margin: .4em;
    padding: 1.1em 2em;
    cursor: pointer;
    background: #f58220;
    text-decoration: none;
    color: #fff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.hvr-bubble-bottom a:hover,
.hvr-bubble-bottom a:focus {
  color: #fff!important;
  text-decoration: none;
}

.hvr-bubble-bottom:hover a,
.hvr-bubble-bottom:focus a {
  color: #fff;
  text-decoration: none;
}

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

.section-bg, .services .icon-box {
  background-color: #191b1f;
}

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

.section-title-i h2 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #313842;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 500px) {

  .section-title-i h2 {
    font-size: 16px;
    display: inline;
  }

}

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

.section-title h2 {
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #313842;
  font-family: "Montserrat", sans-serif;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #333;
}

.section-title small {
  margin: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  text-transform: none;
  color: #444;
  line-height: 1.6!important;
  display: block;
}

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

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

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

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 0px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs 2
--------------------------------------------------------------*/
.breadcrumbs2 {
  padding: 30px 0px 0px 0px;
  min-height: 70px;
  margin-top: 0px;
}

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

.breadcrumbs2 .bar-options {
  float: right;
  margin: 0px;
  padding: 0px;
  width: 650px;
  height: 40px;
  border: 0px solid #333;
}

.breadcrumbs2 .item-lista {
  float:right;
  margin: 0px;
  padding: 0px;
  width: 50px;
  height: 40px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 22px;
  color:#bbb;
  border: 0px solid red;
  text-align: center;
}

.breadcrumbs2 .item-galleria {
  float:right;
  margin: 0px;
  padding: 0px;
  width: 50px;
  height: 40px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 22px;
  color:#bbb;
  border: 0px solid red;
  text-align: center;
}

.breadcrumbs2 .item-lista a,
.breadcrumbs2 .item-galleria a {
  text-decoration: none;
  color:#ccc;
}

.breadcrumbs2 .item-selector-m {
  float:right;
  margin: 0px 20px 0px 0px;
  padding: 0px;
  height: 40px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  color:#555;
  border: 0px solid red;
  text-align: right;
}

.breadcrumbs2 .item-selector-v {
  float:right;
  margin: 0px;
  padding: 0px;
  height: 40px;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  color:#555;
  border: 0px solid red;
  text-align: right;
}

.breadcrumbs2 select {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 14px;
  color:#555;
  border-radius: 0px; 
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color:#556270;
}

.about .content h3 {
  font-weight: 600;
  line-height: 36px;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.about .content ul {
  
  padding: 0;
}

.about .content ul li {
padding: 10px 0 0 0px;
position: relative;
margin-left: 15px;
}

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

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

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



/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/

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

.services .icon-box-log .icon {
  margin: 0 auto 0px auto;
  padding-top: 2px;
  display: inline-block;
  text-align: left;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease-in-out;
  float: left;
  padding: 3px 0px 0px 0px;
}
.services .icon-box-log .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .icon-box-log .title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: 'Poppins';
  line-height: 22px;
  color:#fff;
  text-align: left;
}

.services .icon-box-log .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  letter-spacing: 0;
  color:#fff;
  text-align: left;
}

.services .btn-log-mat {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: transparent;
  border: 2px solid #fff;
  margin: 15px 0px 0px 0px;
  display: inline-block;
}

.services .btn-log-mat:hover {
  background: #fff;
  color: #92ca00;
}


.services .icon-box {
  padding: 20px 0px 20px 0px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  border: 1px solid #dedede;
  min-height: 300px;
  text-align: left;
  border-radius: 5px;
  position: relative;
  margin-top: 30px;
  width: 100%;
}

.services .icon-box:hover {
  box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.1);
}

.services .icon-box i {
  color:#5eaa00;
  margin-right: 5px;
}

.services .icon-box-space {
  margin: 0;
  padding: 0px 30px 20px;
  min-height: 300px;
  text-align: center;
}

.services .title {
  font-weight: 700;
  margin: 10px 0px 15px;
  font-size: 20px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #f37936;
  text-transform: uppercase;
}

.services img {
  margin: 10px 0px 20px;
  text-align: center;
  padding: 0px;
  width: 100px;
}

.services .item {
  margin: 10px 0px 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color:#444;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin: 0px 0px;
  letter-spacing: 0;
  color:#333;
}

.services .contenido {
  font-size: 16px;
  line-height: 28px;
  margin: 20px 0px;
  letter-spacing: 0;
  color:#555;
}

@media only screen and (min-width: 576px) {

}


@media only screen and (min-width: 992px) { 

}


.btn-get-hosting {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 15px 25px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #5eaa00;
  border-radius: 5px;
  border: 2px solid #5eaa00;
  margin: 0px 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-get-hosting:hover {
background: #6dbf07;
border: 2px solid #6dbf07;
}

.theme-btn {
 display:inline-block;
 -webkit-transition:all .3s ease;
 -moz-transition:all .3s ease;
 -ms-transition:all .3s ease;
 -o-transition:all .3s ease;
 transition:all .3s ease
}
.theme-btn i {
 position:relative;
 display:inline-block;
 font-size:14px;
 margin-left:3px
}
.centered {
 text-align:center!important
}

.btn-style-one {
 position:relative;
 display:inline-block;
 font-size:16px;
 line-height:30px;
 color:#fff;
 font-weight:600;
 text-transform:capitalize;
 font-family:'Open Sans';
 border-radius:0;
 overflow:hidden
}
.btn-style-one:hover {
 color:#fff
}
.btn-style-one .btn-title {
 position:relative;
 display:block;
 z-index:1;
 padding:10px 80px 10px 30px;
 letter-spacing:.05em;
 border-radius:0;
 transition:all .3s ease;
 -moz-transition:all .3s ease;
 -webkit-transition:all .3s ease;
 -ms-transition:all .3s ease;
 -o-transition:all .3s ease;
 background: #5eaa00;
 border-radius: 4px;
}
.btn-style-one:hover .btn-title {
 color:#fff
}
.btn-style-one .btn-title .btn-icon {
 position:absolute;
 right:0;
 top:0;
 width:51px;
 height:100%;
 font-size:16px;
 padding:15px 10px;
 text-align:center;
 border-left:1px solid rgba(255,255,255,.2)
}

.btn-style-one .btn-title .btn-icon i {
  color:#fff;
  font-size: 20px;
}

.btn-style-one .btn-title .btn-icon .icon {
 position:relative;
 font-weight:700;
 display:block;
 line-height:30px
}
.btn-style-one .btn-title:before {
 content:"";
 position:absolute;
 left:0;
 top:0;
 z-index:-1;
 height:100%;
 width:100%;
 background:#313842;
 -webkit-transform:scale(0,1);
 -ms-transform:scale(0,1);
 transform:scale(0,1);
 -webkit-transform-origin:bottom right;
 -ms-transform-origin:bottom right;
 transform-origin:bottom right;
 -webkit-transition:transform 500ms cubic-bezier(.86,0,.07,1);
 -moz-transition:transform 500ms cubic-bezier(.86,0,.07,1);
 -o-transition:transform 500ms cubic-bezier(.86,0,.07,1);
 transition:transform 500ms cubic-bezier(.86,0,.07,1);
 -webkit-transition-timing-function:cubic-bezier(.86,0,.07,1);
 -moz-transition-timing-function:cubic-bezier(.86,0,.07,1);
 -o-transition-timing-function:cubic-bezier(.86,0,.07,1);
 transition-timing-function:cubic-bezier(.86,0,.07,1);
 border-radius: 4px;
}
.btn-style-one:hover .btn-title:before {
 -webkit-transform:scale(1,1);
 -ms-transform:scale(1,1);
 transform:scale(1,1);
 -webkit-transform-origin:top left;
 -ms-transform-origin:top left;
 transform-origin:top left;
 border-radius: 4px;
}

@media only screen and (min-width: 576px) {


}


@media only screen and (min-width: 768px) {

  .btn-style-one {
     font-size:14px;
     line-height:26px;
  }

}


@media only screen and (min-width: 992px) { 



}


@media only screen and (min-width: 1400px) { 

  .btn-style-one {
     font-size:16px;
     line-height:30px;
  }

}

/*--------------------------------------------------------------
# Our caracteristicas
--------------------------------------------------------------*/

.caracteristicas .icon-box {
  padding: 0px 0px 0px 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  min-height: 200px;
  text-align: center;
  position: relative;
  margin-top: 30px;
  border: 0px solid #ccc;
  width: 100%;
  border-radius: 0px;
}

.caracteristicas .icon-box:hover {
  box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.12);
}

.caracteristicas .icon-svg-circulo {
  border: 0px solid #d5d5d5;
  -moz-border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  margin: 0px;
  padding: 0px;
  text-align: center;
  overflow: hidden;
  min-height: 350px;
}

.caracteristicas .icon-box-space {
  margin: 0;
  padding: 10px 0px;
  min-height: 50px;
  text-align: left;
}

.caracteristicas .title {
  font-weight: 400;
  margin: 10px 0px 10px;
  font-size: 15px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #fff;
}

.caracteristicas .icon-box:hover .title {
  color:#f58220;
}

.caracteristicas .item {
  margin: 10px 0px 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color:#444;
}

.caracteristicas .description {
  font-size: 15px;
  line-height: 24px;
  margin: 0px 0px;
  letter-spacing: 0;
  color:#333;
}

.caracteristicas .contenido {
  font-size: 14px;
  line-height: 24px;
  margin: 20px 0px;
  letter-spacing: 0;
  color:#555;
}

@media only screen and (max-width: 500px) {

  .caracteristicas .icon-box {
    min-height: 170px;
  }

  .caracteristicas .title {
    font-size: 18px;
    margin-top: 10px;
  }
}


/*--------------------------------------------------------------
# Our diferencias
--------------------------------------------------------------*/

.diferencias .icon-box {
  padding: 20px 0px 20px 0px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  min-height: 200px;
  text-align: center;
  position: relative;
  margin-top: 20px;
  border: 0px solid #ccc;
  width: 100%;
}

.diferencias .icon-svg-verdeb {
   width: 80px;
   height: 80px;
   margin: 0px auto 10px;
}

.diferencias .icon-box-space {
  margin: 0;
  padding: 0px 30px;
  min-height: 100px;
}

.diferencias .title {
  font-weight: 700;
  margin: 10px 0px 10px;
  font-size: 18px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.diferencias .item {
  margin: 10px 0px 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color:#444;
}

.diferencias .description {
  font-size: 15px;
  line-height: 24px;
  margin: 0px 0px;
  letter-spacing: 0;
  color:#333;
}

.diferencias .contenido {
  font-size: 14px;
  line-height: 24px;
  margin: 20px 0px;
  letter-spacing: 0;
  color:#555;
}

@media only screen and (max-width: 500px) {

  .diferencias .icon-box {
    min-height: 170px;
  }

  .diferencias .title {
    font-size: 18px;
    margin-top: 10px;
  }
}



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

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

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 60px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  
  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: 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: center;
  align-items: center;
  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;
}

.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 .portfolio-links a:hover {
  color: white;
}

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

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

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

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
  padding: 30px;
  border-radius: 4px;
  background: white;
}

.team .member .pic {
  overflow: hidden;
  width: 140px;
  border-radius: 4px;
}

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

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

.team .member .member-info {
  padding-left: 30px;
}

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

.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: #dee2e6;
  bottom: 0;
  left: 0;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #556270;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: white;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #6b7b8d;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

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

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #556270;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: #1e3464;
}

.features .crl2:hover {
  color: #3aaa35;
}

.features .crl3:hover {
  color: #e56e01;
}

.features .crl4:hover {
  color: #5eaa00;
}

.features .crl5:hover {
  color: #d6c400;
}

.features .nav-link.active {
  color: #fff;
  border-color: #fff;
  background: #1e3464;
  padding-left: 10px;
}

.features .crl2.active {
  color: #fff;
  border-color: #fff;
  background: #3aaa35;
  padding-left: 10px;
}

.features .crl3.active {
  color: #fff;
  border-color: #fff;
  background: #e56e01;
  padding-left: 10px;
}

.features .crl4.active {
  color: #fff;
  border-color: #fff;
  background: #5eaa00;
  padding-left: 10px;
}

.features .crl5.active {
  color: #fff;
  border-color: #fff;
  background: #d6c400;
  padding-left: 10px;
}

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #556270;
}

.features .details p {
  color: #777777;
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }
  .features .nav-link.active {
    color: #fff;
    background: #3aaa35;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #3aaa35;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

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

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

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

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

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

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

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #3aaa35;
  display: inline-block;
  padding: 8px 35px 9px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #e1444d;
}

.pricing .featured h3 {
  color: #fff;
  background: #3aaa35;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3aaa35;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid white;
}

.faq .faq-item i {
  color: #dee2e6;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.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: #f8d1d3;
  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: 15px 0 0 0;
  padding: 0;
}

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

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

.contact .info h3 {
  font-weight: bold;
  font-size: 22px;
  color: #313842;
  text-align: center;
  margin: 0px 0px 10px;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #777;
}

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

.contact .info .email, .contact .info .phone {
  margin-top: 20px;
  border-top: 1px solid #ced4da;
  padding-top: 15px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #5eaa00;
  color: #fff;
  border: 1px solid #5eaa00;
}

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

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

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

.contact .php-email-form button[type="submit"] {
  background: #f58220;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-family: 'Open Sans';
  font-weight: 600;
  letter-spacing: .05em;
}

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

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

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

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

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.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-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 30px 0 40px 0;
}

.blog .entry {
  padding: 20px;
  margin-bottom: 60px;
  overflow: hidden;
  background: #fff;
}

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

.blog .entry .entry-img2 {
  margin: -20px -20px 20px -20px;
  overflow: hidden;
}

@media (min-width: 768px) {

  .blog .entry .entry-img img {
    height: 240px;
    min-width: 100%;

  }
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {

  .blog .entry .entry-img2 img {
    
    min-width: 100%;

  }
}


.blog .entry .entry-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #556270;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #3aaa35;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c1c8d0;
}

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

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

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

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

.blog .entry .entry-content p {
  line-height: 24px;
  font-size: 15px;
}

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

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #3aaa35;
  color: #fff;
  padding: 6px 20px 7px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
  border:0px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #5eaa00;
  border:0px;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #556270;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 0px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #8795a4;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #a4afba;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #3aaa35;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .entry-single .entry-title {
  font-size: 34px;
  line-height: 38px;
  font-weight: bold;
  color:#313842;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
}

.blog .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
  color: #c1c8d0;
}

.blog .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 65px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #3aaa35;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #556270;
}

.blog .blog-comments .comment time {
  margin-left: 65px;
  display: block;
  font-size: 14px;
  color: #c1c8d0;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 40px 30px;
  border: 1px solid #ccc;
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
  color: #313842;
  text-align: center;
  margin: 0px 0px 10px;
}

.blog .blog-comments .reply-form p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}

.fomular input {
  border-radius: 0;
  padding: 20px 10px;
  font-size: 14px;
}

.fomular select {
    height: 42px;
}

.fomular select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
    color:#6c757d;
}

.fomular select:focus {
  border-color: #1977cc;
}

.fomular option {
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}

.blog .blog-comments .reply-form select {
    height: 42px;
}

.blog .blog-comments .reply-form select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px !important;
    color:#6c757d;
}

.blog .blog-comments .reply-form select:focus {
  border-color: #1977cc;
}

.blog .blog-comments .reply-form option {
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}

.blog .blog-comments .reply-form input {
  border-radius: 0;
  padding: 20px 10px;
  font-size: 14px;
}

.fomular input:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.fomular textarea {
  border-radius: 0;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 0;
  padding: 10px 10px;
  font-size: 14px;
}

.fomular textarea:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.fomular .form-group;
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4;
  padding: 10px 20px;
  border: 0;
  background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #3aaa35;
}

.blog .blog-pagination {
  color: #8795a4;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid #edeff1;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #aaaaaa;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #3aaa35;
  border: 1px solid #3aaa35;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f1f1f1;
  padding: 10px 16px;
  display: inline-block;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #556270;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #556270;
  padding: 3px 10px;
  position: relative;
  border-radius: 4px;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #556270;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
  background: #6b7b8d;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #6b7b8d;
}

.blog .sidebar .categories ul a:hover {
  color: #3aaa35;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #c1c8d0;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #292f36;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #3aaa35;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #c1c8d0;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #96a2af;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #dee2e6;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #3aaa35;
  background: #3aaa35;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #fbfbfc;
  font-size: 14px;
}

.serv-box-master {
  min-height: 120px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  background: #ffffff;
  bodrder: 0px solid #dedede;
  border-radius: 0px;
}

.serv-box-icon {
  width: 100px;
  min-height: 120px;
  float: left;
  margin: 0px 10px 0px 0px;
  padding: 10px 0 0px;
  display: block;
  text-align: center;
}

.serv-box-icon img {
  height: 60px;
  margin: 0px;
  padding: 0px;
}

.serv-box-icon i {
  color:#999;
  font-size: 60px
}

.serv-box-master:hover .serv-box-icon i {
  color:#f58220;
}

.serv-box-text {
  margin: 0px 0px 20px 0px;
  padding: 0px 15px;
  display: block;
}

.serv-box-text h5 {
  font-size: 24px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  line-height: 1;
  font-weight: 500;
  color:#f58220;

}

.serv-box-text p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
  margin: 10px 0px 0px 0px;
}


@media only screen and (min-width: 576px) {


}


@media only screen and (min-width: 768px) {


}


@media only screen and (min-width: 992px) { 


}


.no-padding {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-get-started-26 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 17px 25px;
  transition: 0.1s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: linear-gradient(287.85deg, #FF0766 0%, #FF7E5D 95.32%);
  border-radius: 5px;
  border: 0px solid #313842;
  margin: 0px 0px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-get-started-26:hover {
  color: #333;
  border: 0px solid #5eaa00;
}

.bottom-dots {
 position:absolute;
 left:0;
 bottom:-30px;
 width:100%
}

.bottom-dots {
 left:50%;
 margin-left:-45px
}

.bottom-dots .dot {
 position:relative;
 display:block;
 float:left;
 width:3px;
 height:3px;
 border-right:3px solid;
 margin-right:3px
}

.bottom-dots .dot {
 border-right-color:#5eaa00
}

.bottom-dots .dot {
}

.bottom-dots .line-dot {
 border-right:80px solid;
 border-right-color:#5eaa00;
}

.dominios-name {
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  height: 45px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  margin: 0px 10px 0px 0px;
  width: 10%;
  display: inline-block;
  border: 1px solid #ced4da;
}

.dominios-name .title {
  font-weight: 700;
  margin: 0px;
  font-size: 18px;
  font-family: 'Open Sans';
  line-height: 1px;
  color: #FF0766;
}

@media only screen and (max-width: 570px) {
  .dominios-name {
    width: 29%;
  }
}


.dominios-name-t {
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  height: 45px;
  text-align: left;
  border-radius: 5px;
  position: relative;
  margin: 0px 10px 0px 0px;
  width: 61%;
  display: inline-block;
  border: 1px solid #ced4da;
}

.dominios-name-t .title {
  font-weight: 400;
  margin: 0px;
  font-size: 14px;
  font-family: 'Open Sans';
  line-height: 1px;
  color: #333;
}

@media only screen and (max-width: 570px) {

  .dominios-name-t {
    height: 80px;
    width: 100%;
    padding: 10px 15px;
  }

  .dominios-name-t .title {
    line-height: 28px;
  }

}

.dominios-name-alert {
  padding: 20px 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  height: 45px;
  text-align: left;
  border-radius: 5px;
  position: relative;
  margin: 10px 10px 0px 0px;
  width: 100%;
  display: inline-block;
  border: 0px solid #ced4da;
}

.dominios-name-alert .ok {
  font-weight: 600;
  margin: 0px;
  font-size: 16px;
  font-family: 'Open Sans';
  line-height: 1px;
  color: #5eaa00;
}

.dominios-name-alert .ok a {
  font-weight: 600;
  margin: 0px 10px;
  font-size: 14px;
  font-family: 'Open Sans';
  line-height: 1px;
  color: #fff;
  background: #5eaa00;
  border-radius: 4px;
  padding: 5px 15px;
}

.dominios-name-alert .ok a:hover {
  background: #313842;
}

.dominios-name-alert .bad {
  font-weight: 600;
  margin: 0px;
  font-size: 16px;
  font-family: 'Open Sans';
  line-height: 1px;
  color: #FF0766;
}

@media only screen and (max-width: 570px) {

  .dominios-name-alert {
    padding: 10px 0px;
    height: inherit;
  }

  .dominios-name-alert .ok {
    line-height: 30px;
  }

  .dominios-name-alert .bad {
    line-height: 30px;
  }

}

/*--------------------------------------------------------------
# Our clientes-o
--------------------------------------------------------------*/

.clientes-o .icon-box {
  padding: 30px 0px 20px 0px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  min-height: 200px;
  text-align: left;
  position: relative;
  margin-top: 30px;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
}

.clientes-o .icon-box:hover {
  box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.12);
}

.clientes-o .icon-svg-circulo {
  height: 120px;
  width: 120px;
  margin: 10px 30px;
  padding: 0px;
  background: #fff;
  border-radius: 100px;
  border: 3px solid #ccc;
  float: right;
  overflow: hidden;
}

.clientes-o .icon-box:hover .icon-svg-circulo {
  border: 3px solid #5eaa00;
}

.clientes-o .icon-box-space {
  margin: 0;
  padding: 0px 30px;
  min-height: 100px;
}

.clientes-o .title {
  font-weight: 700;
  margin: 20px 0px 0px;
  font-size: 16px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.clientes-o .cargo {
  font-size: 14px;
  line-height: 26px;
  margin: 0px 0px;
  letter-spacing: 0;
  color: #333;
}

.clientes-o .icon-box:hover .title {
  color:#5eaa00;
}

.clientes-o .item {
  margin: 10px 0px 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color:#444;
}

.clientes-o .description {
  font-size: 18px;
  line-height: 32px;
  margin: 0px 0px;
  letter-spacing: 0;
  color: #666;
  font-style: italic;
}

.clientes-o .contenido {
  font-size: 14px;
  line-height: 24px;
  margin: 20px 0px;
  letter-spacing: 0;
  color:#555;
}

@media only screen and (max-width: 500px) {

  .clientes-o .icon-box {
    min-height: 170px;
  }

  .clientes-o .title {
    font-size: 18px;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Our dominios
--------------------------------------------------------------*/

.dominios .icon-box {
  padding: 20px 0px 20px 0px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  border: 1px solid #dedede;
  min-height: 250px;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(68, 88, 144, 0.12);
  border-radius: 5px;
  position: relative;
  margin-top: 30px;
  width: 100%;
}

.dominios .icon-box:hover {
  box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.2);
}

.dominios .icon-box i {
  color:#5eaa00;
  margin-right: 5px;
}

.dominios .icon-box-space {
  margin: 0;
  padding: 0px 30px;
  min-height: 220px;
}

.dominios .title {
  font-weight: 700;
  margin: 20px 0px 30px;
  font-size: 40px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #5eaa00;

}

.dominios .price {
  font-weight: 600;
  margin: 20px 0px 20px;
  font-size: 28px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.dominios .price span {
  font-weight: 600;
  margin: 20px 0px 20px 10px;
  font-size: 16px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.dominios .description {
  font-size: 15px;
  line-height: 24px;
  margin: 0px 0px;
  letter-spacing: 0;
  color:#333;
  min-height: 50px;
}

@media only screen and (min-width: 576px) {


}


@media only screen and (min-width: 768px) {

  .dominios .price {
    font-size: 24px;
  }

}


@media only screen and (min-width: 992px) { 

}


@media only screen and (min-width: 1400px) { 
  .dominios .price {
    font-size: 28px;
  }
}

@media only screen and (max-width: 500px) {

  .dominios .icon-box {
    min-height: 170px;
  }

  .dominios .title {
    font-size: 18px;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Our mail
--------------------------------------------------------------*/

.mails .icon-box {
  padding: 20px 0px 20px 0px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  z-index: 1;
  border: 1px solid #dedede;
  min-height: 500px;
  text-align: left;
  box-shadow: 0 0 10px 0 rgba(68, 88, 144, 0.12);
  border-radius: 5px;
  position: relative;
  margin-top: 30px;
  width: 100%;
}

.mails .icon-box:hover {
  box-shadow: 0 0 20px 0 rgba(68, 88, 144, 0.2);
}

.mails .icon-box i {
  color:#5eaa00;
  margin-right: 5px;
}

.destacado {
  background: linear-gradient(287.85deg, #FF0766 0%, #FF7E5D 95.32%);
  margin: 0px;
  padding: 5px 10px;
  text-align: center;
  font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 35px;
  right: -50px;
  z-index: 99;
  text-transform: uppercase;
  transform: rotate(45deg);
  width: 200px;
}

.descuento {
  background: #ffe8ef;
  margin: 0px;
  padding: 5px 10px;
  text-align: center;
  font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #F16262;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
  text-transform: uppercase;
  width: 140px;
  border-radius: 4px;
}

.mails .icon-box-space {
  margin: 0;
  padding: 0px 30px;
  min-height: 450px;
}

.mails .title {
  font-weight: 700;
  margin: 10px 0px 20px;
  font-size: 22px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #5eaa00;
}

.mails .price {
  font-weight: 600;
  margin: 20px 0px 20px;
  font-size: 28px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.mails .price span {
  font-weight: 600;
  margin: 20px 0px 20px 10px;
  font-size: 16px;
  font-family: 'Open Sans';
  line-height: 22px;
  color: #313842;
}

.mails .item {
  margin: 10px 0px 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color:#444;
}

.mails .description {
  font-size: 15px;
  line-height: 24px;
  margin: 0px 0px;
  letter-spacing: 0;
  color:#333;
  min-height: 50px;
}

.mails .contenido {
  font-size: 14px;
  line-height: 24px;
  margin: 20px 0px;
  letter-spacing: 0;
  color:#555;
}

@media only screen and (max-width: 500px) {

  .mails .icon-box {
    min-height: 170px;
  }

  .mails .title {
    font-size: 18px;
    margin-top: 10px;
  }
}

.texto_central {
  margin-top:10px!important;
  margin-bottom:10px!important;
}

.texto_central h3 {
  font-family: 'Open Sans', arial;
  font-weight: 700;
  color: #f58220;
  font-size: 20px;
  margin-top: 0px !important;
  line-height: 30px;
  margin-bottom: 5px !important;
  border-bottom: 0px solid #002c42;
  letter-spacing: 0px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.texto_central h4 {
  font-family: 'Open Sans', arial;
  font-weight: 400;
  color: #333;
  font-size: 30px;
  margin-top: 0px !important;
  line-height: 40px;
  margin-bottom: 20px;
  letter-spacing: 0px;
}

.texto_central .line-header {
  height: 2px !important;
  background-color: #f58220;
  margin: 15px auto;
  text-align: left;
  width: 70px !important;
}