/* Theme Default CSS
==================================================*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-border: #dddddd;
  --font-lato: "Open Sans", sans-serif;
}
/* global classes */

.bg-Blue {
  background-color: #638bfc;
}

.carousel-inner img {
  border-radius: 8px; /* Ajusta el valor para mayor o menor redondeo */
}

.nav-link.active {
  color: #638bfc !important;
}

.nav-link:hover {
  color: #638bfc !important;
}

.blue-bg {
  background: #638bfc;
}

.imag-proceso {
  transition: opacity 0.3s ease;
  opacity: 0.4;
}

.imag-proceso:hover {
  opacity: 1;
}
.paso {
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  margin-top: 10px;
}

.paso.mostrar {
  max-height: 500px; /* ajusta según necesidad */
  opacity: 1;
}

a {
  text-decoration: none;
  color: #3e87c8;
}

a:hover {
  text-decoration: underline; /* Opcional: subrayado al pasar el mouse */
  color: #2b6ca1; /* Un tono más oscuro para hover, también opcional */
}
.margenMenor {
  margin-top: -50px;
}
.btn-rojo {
  background-color: #fc615f;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-rojo:hover {
  background-color: #638bfc;
  color: white;
}

.btn-azul {
  background-color: #638bfc;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-azul:hover {
  background-color: #fc615f;
  color: white;
}
.overflow-hidden img {
  object-fit: cover; /* Mantiene el recorte sin deformar la imagen */
  object-position: center top; /* Ajusta la parte visible de la imagen */
  height: 200px; /* Define la altura que quieres mostrar */
  width: 100%; /* Mantiene el ancho */
}

.card:hover {
  transform: translateY(-10px); /* Hace que suba 10px */
  transition: transform 0.3s ease-in-out; /* Suaviza la animación */
}

.social-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.social-btn {
  width: 48px;
  height: 48px;
  background-color: #fc615f;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.2rem;
}

.social-btn:hover {
  background-color: #fc615f;
  transform: scale(1.1);
  color: white;
}

.social-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.txt-Blue {
  color: #638bfc;
}

.txt-Red {
  color: #fc615f;
}

.footer-area {
  background-color: #000; /* o el color que desees */
  color: #fff;
}

.footer-menu,
.social-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li,
.social-links li {
  margin-bottom: 0.5rem;
}

.footer-menu a,
.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover,
.social-links a:hover {
  color: #fc615f;
  text-decoration: none !important;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  border: none;
}

.newsletter-btn {
  background-color: #fc615f;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}

.newsletter-btn:hover {
  background-color: #d44e51;
}

.newsletter-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.font-os {
  font: normal 400 15px var(--font-Os);
}
.font-pops {
  font: normal 900 18px var(--font-Pop);
}

html {
  scroll-behavior: smooth;
}

.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.fix {
  overflow: hidden;
}
.aligncenter {
  display: block;
  margin: 0 auto 15px;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover,
.main-menu li a:hover,
.footer-menu li a:hover {
  color: #638bfc;
}
a,
button {
  color: #666666;
  outline: medium none;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h6 {
  font-family: var(--font-lato);
  font-weight: 900;
  font-style: normal;
  margin: 0 0 15px;
  text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 14px;
  font-color: red;
}
h6 {
  font-size: 16px;
}
ul {
  margin: 0px;
  padding: 0px;
}
li {
  list-style: none;
}
p {
  font-weight: normal;
  margin-bottom: 15px;
}
hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}
label {
  color: #333333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
*::-webkit-input-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
*:-ms-input-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.theme-overlay {
  position: relative;
}
.theme-overlay:before {
  background: #638bfc none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  position: absolute;
  top: 0;
  width: 100%;
}
.separator {
  border-top: 1px solid #f2f2f2;
}
/* button style */

.recuadro-gris {
  background-color: lightgray;
  border-radius: 5px;
  padding: 12px;
}

.recuadro {
  background-color: #638bfc;
  border-radius: 5px;
  padding: 12px;
  color: white;
}

.btn {
  -moz-user-select: none;
  background: #638bfc none repeat scroll 0 0;
  border: 2px solid #638bfc;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 0;
  padding: 13px 25px;
  text-align: center;
  text-transform: uppercase;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}
.btn:hover {
  background: transparent;
  color: #638bfc;
}

.btnBlue {
  -moz-user-select: none;
  background: #638bfc none repeat scroll 0 0;
  border: 2px solid #638bfc;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding: 13px 25px;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}
.btnBlue:hover {
  background: transparent;
  color: #638bfc;
}

.btnRed {
  -moz-user-select: none;
  background: #eb5b5d none repeat scroll 0 0;
  border: 2px solid #eb5b5d;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding: 13px 25px;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
}
.btnRed:hover {
  background: transparent;
  color: #eb5b5d;
}

.btn.btn-lg {
  padding: 10px 25px;
}
.btn-xl {
  font-weight: 700;
  padding: 13px 31px;
}
.btn.btn-inline {
  background: transparent none repeat scroll 0 0;
  border: 0 none;
  color: #ffffff;
  padding: 0;
  text-decoration: none;
}
.btn.btn-inline:hover {
  color: #ffffff;
  text-decoration: underline;
}
.theme-bg {
  background: #638bfc;
}

.text-red {
  color: #eb5b5d;
}

.red-bg {
  background: #eb5b5d;
}
.gray-bg {
  background: #f0f0f0;
}
.black-bg {
  background: #171a21;
}
.bg-white {
  background-color: #ffffff;
}
.breadcrumb > .active {
  color: #888;
}
input:focus[type="url"],
input:focus[type="text"],
input:focus[type="email"],
input:focus[type="tel"],
input:focus[type="button"],
input:focus[type="submit"],
input:focus[type="search"],
button:focus[type="button"],
button:focus[role="button"],
button:focus,
input:focus {
  outline: none;
  text-decoration: none;
}
.btn:focus {
  box-shadow: 0 0 0 0;
}

/* start owl-carousel */
.owl-carousel .owl-nav button {
  position: absolute;
  background: #999 !important;
  color: #ffffff !important;
  border-radius: 2px;
  height: 30px;
  width: 30px;
  left: 50px;
  top: 50%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  overlay: black;
}
.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 50px;
}
.owl-carousel .owl-nav button:hover {
  background: #000 !important;
}

.owl-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  background: #666666;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}

.owl-carousel .owl-dots button.active {
  background: #638bfc;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider-inner h5 {
  font-size: 19px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* End Owl-Carousel */
/* End Default Css */

/* Start Header Area
==================================================*/
.main-menu li {
  display: inline-block;
  margin-left: 20px;
}

.main-menu li a {
  display: block;
  padding: 0px 10px;
}
.header-area {
  border-top: 5px solid #638bfc;
  padding: 8px 0;
}

.navbar img {
  width: 9%; /* Ajusta el tamaño del logo */
}

.main-menu li.search-trigger a {
  border-left: 1px solid #666666;
  padding-left: 30px;
}

.main-menu {
  margin-top: 5px;
}
.header-area.sticky {
  position: fixed;
  width: 100%;
  z-index: 9;
  background: rgba(255, 255, 255);
  padding: 20px 0;
}
.main-menu li.active a {
  color: #638bfc;
}

.search-popup-wrapper input[type="search"] {
  background: none;
  border: none;
  border-bottom: 2px solid rgba(221, 221, 221, 0.205);
  padding: 5px 0;
  padding-bottom: 10px;
  color: #fff;
  font-size: 40px;
  padding-right: 40px;
}

.search-popup-wrapper input::-webkit-input-placeholder {
  font-size: 40px;
}

.search-popup-wrapper input::-moz-placeholder {
  font-size: 40px;
}

.search-popup-wrapper input:-ms-input-placeholder {
  font-size: 40px;
}

.search-popup-wrapper input::placeholder {
  font-size: 40px;
}
.search-popup-wrapper {
  display: inline-block;
  position: relative;
}

.search-popup-wrapper i {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-popup-wrapper i:hover {
  color: #fff;
}

.fade.show {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  display: inherit;
}

#search-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#search-modal .modal-content {
  background: none;
  border: none;
}

#search-modal {
  background: transparent;
  height: 150px;
  width: 500px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 11;
}
.search-overlay.show {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.search-overlay {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 26, 33, 0.95);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
/* End Header Area */
/* Start Mobile Menu Area
==================================================*/
.show-mobile-menu .slicknav_menu .slicknav_menutxt {
  display: none;
}

.show-mobile-menu .slicknav_btn {
  background: none;
  margin: 0;
  text-shadow: 0 0 0;
  padding: 0;
}

.show-mobile-menu .slicknav_menu .slicknav_icon {
  font-size: 20px;
}
.show-mobile-menu .slicknav_menu {
  background: none;
}

.show-mobile-menu .slicknav_menu .slicknav_icon-bar {
  background: #222;
  border-radius: 0;
  box-shadow: 0 0 0;
}

.show-mobile-menu .slicknav_nav a {
  color: #333;
  text-align: left;
  padding: 5px;
  margin: 2px 0;
}

.show-mobile-menu .slicknav_nav {
  font-size: inherit;
  color: #333;
  position: absolute;
  left: 0;
  top: 50px;
  background: #fff;
  width: 100%;
  z-index: 99;
}

.show-mobile-menu .slicknav_nav li {
  border-bottom: 1px solid #ddd;
  padding: 5px;
}

.show-mobile-menu .slicknav_nav li:last-child {
  border: none;
}
.header-area .static {
  position: static;
}
.header-area .header-wrapper {
  position: relative;
  width: 100%;
}
/* End Mobile Menu Area */
/* Start Slider Area
==================================================*/
.slider-bg-1 {
  background: url(../img/slide_01_1.jpg);
}
.slider-bg-2 {
  background: url(../img/slide_02_2.jpg);
}
.slider-bg-3 {
  background: url(../img/slide_03_3.jpg);
}

.single-slider {
  position: relative;
  height: 515px;
  background-size: cover;
  background-position: center;
  background-color: white;
  display: table;
  width: 100%;
  overflow: hidden;
}

.single-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.4
  ); /* Oscuridad: ajusta el 0.5 según tu necesidad */
  z-index: 1;
}

.slider-inner {
  position: relative;
  z-index: 5; /* Esto asegura que el texto esté sobre la capa oscura */
  display: table-cell;
  vertical-align: middle;
  color: white; /* Blanco para que contraste con la capa oscura */
}

.slider-inner {
  display: table-cell;
  vertical-align: middle;
}

.slider-inner h3 {
  font-size: 30px;

  color: #fff;
  letter-spacing: 3px;
  font-weight: 400;
}

.slider-inner h1 {
  font-size: 70px;

  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
}

.slider-inner h2 {
  font-size: 38px;
  color: #fff;
  letter-spacing: 0px;
  line-height: 1;
}

.get-started-btn {
  margin-top: 40px;
  padding: 15px 35px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 5px;
}

.btn-red {
  margin-top: 40px;
  padding: 15px 35px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 5px;
  background-color: #eb5b5d;
}

.btn-red:hover {
  margin-top: 40px;
  padding: 15px 35px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 5px;
  background-color: yellow;
}

/* End Slider Area */
/* Start Hire Us Area
==================================================*/
.hire-us-content h6 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.hire-us-button {
  border-color: #fff !important;
  padding: 15px 40px;
  background: transparent !important;
}

.hire-us-button:hover {
  background: #333 !important;
  color: #fff !important;
}
.hire-us-area {
  padding: 30px 0;
}
.hire-us-content h6 span {
  font-size: 30px;
}
/* End HIre Us Area */
/* Start Iconbox Area
==================================================*/
.icon-box-img-1 {
  background-image: url(../img/iconbox_01.jpg);
}
.icon-box-img-2 {
  background-image: url(../img/iconbox_02.jpg);
}
.icon-box-img-3 {
  background-image: url(../img/iconbox_03.jpg);
}

.single-icon-box {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #cccc;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.icon-box-content {
  position: absolute;
  left: 0;
  top: 210px;
  width: 100%;
  height: 100%;
  background: #638bfc;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  color: #fff;
  z-index: -1;
  padding: 20px 30px 30px 30px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.icon-box-content:hover {
  top: 0;
}
.iconbox-content-heading {
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.iconbox-content-heading i {
  font-size: 30px;
  margin-right: 15px;
}

.iconbox-content-body p {
  color: #e5e5e5;
  font-size: 14px;
  text-align: justify;
  margin-bottom: 25px;
}
.read-more-btn {
  text-transform: capitalize;
  font-weight: 600;
}

.read-more-btn i {
  margin-right: 5px;
}
/* End Iconbox Area */
/* Start Bemax Area
==================================================*/
.section-title h4 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
}

.section-title h4:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  width: 50px;
  content: "";
  background: #adadad;
}

.collapse-content {
  font-size: 13px;
  padding: 10px;
  border-top: 2px solid #ddd; /* Línea para hacer conexión visual */
  border-radius: 0 0 5px 5px; /* Ajuste de bordes */
}

.single-bemax-item {
  padding: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.single-bemax {
  padding: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.single-bemax-item:hover {
  background-color: #638bfc; /* Color de fondo al pasar el cursor */
  color: white; /* Cambia el texto a blanco */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Efecto de sombra */
  cursor: pointer; /* Hace que el cursor se vea como interactivo */
}

.single-bemax-item:hover .item-icon i {
  color: white; /* Cambia el color del icono cuando se activa */
}

.item-icon i {
  width: 50px;
  height: 50px;
  background: #eb5b5d;
  color: #fff;
  font-size: 25px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  border: 1px solid #eb5b5d;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.item-content {
  padding-left: 20px;
  margin-top: -4px;
}

.item-content h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.item-contentWhite h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}
.single-bemax-item {
  margin-bottom: 40px;
}
/* End Bemax Area */
/* Start Latest Project Area
==================================================*/
.project-bg-1 {
  background-image: url(../img/project_01.jpg);
}
.project-bg-2 {
  background-image: url(../img/project_02.jpg);
}
.project-bg-3 {
  background-image: url(../img/project_03.jpg);
}
.project-bg-4 {
  background-image: url(../img/project_04.jpg);
}
.project-bg-5 {
  background-image: url(../img/project_05.jpg);
}
.project-bg-6 {
  background-image: url(../img/project_06.jpg);
}
.project-bg-7 {
  background-image: url(../img/project_07.jpg);
}

.latest-project-area .section-title h4 {
  color: #fff;
}

.single-project {
  height: 225px;
  display: table;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #cccc;
  position: relative;
  z-index: 1;
}

.project-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.project-inner:after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: #638bfc;
  color: #fff;
  z-index: -1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.project-inner h5 {
  font-size: 15px;
  color: #cccc;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.project-inner h5 a:hover {
  color: #fff;
}

.project-inner p {
  color: #cccccc;
  font-size: 13px;
  margin: 0;
  font-weight: 400;
}
.project-inner p a {
  color: #ccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.project-inner p a:hover {
  color: #fff;
}
.project-carousel.owl-carousel .owl-nav button {
  left: -15px;
}
.project-carousel.owl-carousel .owl-nav button.owl-next {
  right: -15px;
  left: auto;
}
.single-project:hover .project-inner:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  visibility: visible;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.single-project:hover .project-inner {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
/* End Latest Project Area */
/* Start Choose Us Area
==================================================*/
.video-img-thumbnail {
  background-image: url(../img/video_01.jpg);
}

.video-img-thumbnail {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: #cccc;
}

.video-img-thumbnail a {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 60px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.video-img-thumbnail a:hover {
  color: #638bfc;
}
.single-choose-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: #555555;
}

.single-choose-item h6 i {
  margin-right: 10px;
}

.single-choose-item p {
  margin: 0;
  font-size: 15px;
  color: #666666;
}

.single-choose-item {
  margin-bottom: 30px;
}
/* End Choose Us Area */
/* Start Working With Us Area
==================================================*/
.hire-us-content span {
  font-size: 20px;
}
/* End Working With Us Area */
/* Start Carousel Area
==================================================*/
.blog-carousel.owl-carousel .owl-item img {
  width: 200px;
  display: inline-block;
  height: auto;
}

.single-blog-img {
  position: relative;
  float: left;
}

.single-blog-img span {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #222;
  width: 100%;
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  padding: 0 10px;
}
.blog-content {
  padding-left: 220px;
}

.blog-btn {
  margin-top: 10px;
}

.post-heading {
  font-size: 18px;
  font-weight: 600;
  color: #555555;
}

.post-content-text {
  margin: 0;
  color: #666666;
  font-size: 15px;
  text-align: justify;
}

.blog-tags {
  display: inline-block;
  font-size: 13px;
}

.blog-tags i {
  font-size: 12px;
}

.blog-tags a {
  color: #555555;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-btn .read-more-btn {
  color: #555555;
  display: inline-block;
  margin-left: 20px;
}

.blog-btn .read-more-btn:hover {
  color: #638bfc;
}

.blog-tags a:hover {
  color: #638bfc;
}
.carousel-area .section-title h4 {
  margin-bottom: 30px;
}

.carousel-area .section-title h4:after {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.carousel-area .owl-carousel .owl-nav button {
  border: 1px solid #999999;
  border-radius: 50%;
  background: transparent !important;
  color: #999999 !important;
  position: relative;
  left: 0;
  height: 25px;
  width: 25px;
  margin-right: 7px;
  display: inline-block;
  line-height: 23px;
}

.carousel-area .owl-carousel .owl-nav {
  position: absolute;
  left: 240px;
  top: -51px;
}

.carousel-area .owl-carousel .owl-nav button:hover {
  background: #222222 !important;
  color: #fff !important;
}

.testimonial-content i {
  font-size: 20px;
  color: #666666;
  margin-right: 15px;
}

.testimonial-content p {
  font-size: 15px;
  color: #666666;
  text-align: justify;
  margin: 0;
}

.testimonial-content p {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.testimonial-carousel.owl-carousel .owl-item img {
  display: block;
  width: 55px;
  height: auto;
}
.author-img {
  padding-left: 30px;
}

.author-content a {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #555555;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.author-content span {
  display: block;
  line-height: 15px;
}

.author-content {
  padding-left: 15px;
}

.author-content a:hover {
  color: #638bfc;
}
/* End Carousel Area */
/* Start Brand Area
==================================================*/
.brand-carousel.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.brand-carousel.owl-carousel.owl-drag .owl-item {
  text-align: center;
}
.brand-item {
  display: table;
  width: 100%;
  position: relative;
  height: 50px;
}

.brand-item-inner {
  display: table-cell;
  vertical-align: middle;
}
/* End Brand Area */
/* Start Footer Area
==================================================*/
.footer-logo a {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  position: relative;
}

.footer-logo a img {
  position: absolute;
  top: 0;
  right: -21px;
}

.footer-logo {
  margin-bottom: 35px;
}

.footer-dec p {
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  text-align: justify;
  margin-bottom: 25px;
}

.social-links li {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(66, 114, 215, 0.1);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-right: 10px;
}

.social-links li a {
  color: #fff;
  display: block;
}

.social-links li:hover {
  background: #638bfc;
}
.widget-title h6 {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
}

.widget-title {
  margin-bottom: 35px;
}

.footer-menu li {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.footer-menu li a {
  color: #cccccc;
  font-size: 13px;
}

.footer-menu li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}
.widget-title h6 {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
}

.widget-title {
  margin-bottom: 35px;
}

.footer-menu li {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.footer-menu li a {
  color: #cccccc;
  font-size: 13px;
}

.footer-menu li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.address-line p {
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 13px;
}

.address-line p a {
  color: #cccccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.address-line p a:hover {
  color: #638bfc;
}
.newsletter-text p {
  font-size: 13px;
  color: #cccccc;
  margin: 0;
}

.newsletter-form {
  display: inline-block;
  margin-top: 25px;
}

.newsletter-form input[type="email"] {
  width: 60%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 8px;
  float: left;
  color: #ffffff;
}

.newsletter-form input[type="submit"] {
  width: 39%;
  float: right;
}

.newsletter-form .newsletter-btn {
  font-size: 11px;
  padding: 13px;
}
.footer-area {
  border-bottom: 1px solid #9999;
}

.copyright-area p {
  margin: 0;
}

.copyright-area {
  padding: 10px 0;
  display: block;
  color: #cccccc;
}
/* End Footer Area */

/* Start Color Nip */
.Switcher #colors li {
  border-radius: 5px;
}

.Switcher h5 {
  font-size: 15px;
  color: #666;
}
button#Switcher__control {
  width: 40px;
  height: 40px;
  margin-left: -40px;
}

#Switcher__control i:hover {
  color: #222;
}
.Switcher {
  top: 20% !important;
}
/* End Color NIp */
/* Start ScrollUp */
#scrollUp {
  background: #638bfc;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: center;
  /* End ScrollUp */
  line-height: 40px;
  border-radius: 50%;
  font-size: 25px;
  color: #fff;
}

#beneficios {
  scroll-margin-top: 120px;
}

#productos {
  scroll-margin-top: 120px;
}

#proceso {
  scroll-margin-top: 120px;
}

#quienes-somos {
  scroll-margin-top: 120px;
}

#faq {
  scroll-margin-top: 120px;
}

#licitacion {
  scroll-margin-top: 120px;
}

#contacto {
  scroll-margin-top: 130px;
}
