/* Button */
.button_all {
  font: 400 28px/56px "Raleway";
  width: 330px;
  text-align: center;
  background: #343434;
  display: block;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  padding: 0;
}
.button_all2 {
  font: 400 18px/56px "Raleway";
  width: 200px;
  text-align: center;
  background: #2883c5;
  display: block;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  padding: 0;
}
.button_all2:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #d93900;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.button_all:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #272724;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.button_all:hover,
.button_all:focus {
  color: #fff !important;
}
.button_all2:hover,
.button_all2:focus {
  color: #fff !important;
}
.button_all:hover:before,
.button_all:focus:before {
  transform: scaleY(1);
}
.button_all2:hover:before,
.button_all2:focus:before {
  transform: scaleY(1);
}
.button {
  font: 400 18px/56px "Raleway";
  position: relative;
  background: #492410;
  display: inline-block;
  color: #fff;
  padding: 4px 15px;
}
.button:hover {
  color: #fff;
  background: #753902;
}
/* Section Title*/
.tittle {
  text-align: center;
  text-transform: capitalize;
}
.tittle h2 {
  font: 600 40px/59px "Raleway";
  color: #262132;
  padding-top: 90px;
  position: relative;
}
.tittle h2:after {
  content: "";
  position: absolute;
  background: #2883c5;
  height: 5px;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}
.tittle h4 {
  font: 500 19px/26px "Poppins";
  color: #555555;
  padding-top: 55px;
}
/* Subtittle */
.subtittle h2 {
  font: 600 25px/59px "Raleway";
  color: #262132;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}
.subtittle h2:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 80px;
  background: #2883c5;
  left: 0;
  bottom: -22px;
}
.subtittle h5 {
  font: 600 25px/59px "Raleway";
  color: #555555;
  padding-top: 22px;
}
/* Preloader */
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #1c1c1c;
  background-position: center center;
  background-repeat: no-repeat;
}
.preloader .loader {
  position: absolute;
  left: 50%;
  width: 80px;
  height: 80px;
  top: 50%;
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 50%;
}
.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}
/*--------------------------------------------------*/
/*PRELOADER DE SALON DE BELLEZA*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2883c5;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2883c5;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*Prefix Styles*/
.m0 {
  margin: 0;
}
.p0 {
  padding-top: 22px;
}

body {
  font-family: "Poppins";
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}
body p {
  font-family: "Poppins";
  line-height: 26px;
  color: #000;
  margin: 0;
  font-size: 16px;
}
body section.row,
body header.row,
body footer.row {
  margin: 0;
}

/*Ancore*/
a,
.btn,
button {
  outline: none;
  transition: all 300ms linear 0s;
}
a:before,
a:after,
.btn:before,
.btn:after,
button:before,
button:after {
  transition: all 300ms linear 0s;
}
a:focus,
a:hover,
.btn:focus,
.btn:hover,
button:focus,
button:hover {
  outline: none;
  text-decoration: none;
  transition: all 300ms linear 0s;
}
a:hover {
  color: #3c3c3c;
}
.h6 {
  font-size: 16px !important;
}
.media-body a h1 {
  color: #000;
  text-shadow: none;
}
.text-black {
  color: #000;
  text-shadow: none;
}
.text-white {
  color: #fff !important;
}
.bgcolor {
  background: #fff !important;
}
.py-2 {
  padding: 15% 0;
}
.py-3 {
  padding: 20% 0;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #262626;
}
/*-----------------Top header---------------------------------*/
.paddheader {
}
.top_header_area {
  background: #2883c5;
  background-position: bottom;
  background-size: contain;
}
.top_header_area .top_nav li a {
  font: 400 14px/50px "Poppins";
  color: #fff;
  padding: 0;
  padding-left: 30px;
}
.top_header_area .top_nav li a i {
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}
.top_header_area .top_nav li a:hover,
.top_header_area .top_nav li a:focus {
  background-color: transparent;
  color: #fff;
}
.top_header_area .top_nav li:first-child a {
  padding: 0;
}
.top_header_area .social_nav {
  margin: 0;
  padding-top: 12px;
}
.top_header_area .social_nav li a {
  font-size: 14px;
  color: #000;
  background: #fff;
  padding: 0;
  text-align: center;
  height: 27px;
  width: 27px;
  /*border-radius: 50%;*/
  margin-left: 10px;
}
.top_header_area .social_nav li a i {
  line-height: 24px;
}
.top_header_area .social_nav li a:hover,
.top_header_area .social_nav li a:focus {
  background: #363535;
  color: #fff;
}
/* End Top header */
/*menu*/
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #2883c5;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #262626;
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 0px;
  margin-bottom: 8px;
  background-color: #262626;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* Header Aera */
.header_aera {
  background: #000;
  border-radius: 0;
  border: 0;
  margin: 0;
  width: 100%;
  z-index: 9999;
  top: 0;
  box-shadow: 0px 0px 20px 0px rgba(21, 47, 95, 0.2);
}
.header_aera .show {
  height: 80px;
  border-bottom: 1px solid transparent;
}
.navbar-header{
  margin-top: 30px;
}
.header_aera .navbar-header .navbar-brand {
  padding-top: 39px;
}
.header_aera .navbar-header .navbar-brand img {
  max-width: 100%;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li a {
  font: 800 21px/173px "Raleway";
  color: #fff;
  /* background: linear-gradient(45deg, #f2f183, #d59100, #ab7500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  text-transform: uppercase;
  padding: 0;
  padding-left: 25px;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li a:hover,
.header_aera .navbar-collapse .navbar-nav.navbar-right li a:focus {
  color: #2883c5;
}
li .header_aera .navbar-collapse .navbar-nav.navbar-right {
  width: 100px;
  background: #f6b60b;
  color: #fff;
  padding: 0;
  text-align: center;
  margin-left: 15px;
}
.header_aera .navbar-collapse li .navbar-nav.navbar-right:hover,
.header_aera .navbar-collapse li .navbar-nav.navbar-right:focus {
  color: #222222;
}
@media (max-width:768px){
  .navbar-header{
    margin-top: 0;
  }
  .navbar-header a img{
    width: 200px;
  }
}
@media (min-width: 768px) {
  .header_aera
    .navbar-collapse
    .navbar-nav.navbar-right
    li.submenu
    .other_dropdwn {
    margin-right: -122px;
  }
  
  .header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
    margin-right: -150px;
    display: block;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li:hover.submenu ul {
    transform: rotateX(0deg);
  }
  .header_aera
    .navbar-collapse
    .navbar-nav.navbar-right
    li:hover.submenu
    ul:before {
    transform: scaleX(1);
  }
  .header_aera
    .navbar-collapse
    .navbar-nav.navbar-right
    li:hover.submenu
    ul:after {
    transform: scaleX(1);
  }
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
  border: none;
  box-shadow: none;
  border-radius: 0px;
  min-width: 190px;
  transition: all 500ms ease-in-out;
  background: #f6b60b;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul li {
  display: block;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul li a {
  line-height: normal;
  font: 700 14px / normal "Poppins";
  padding: 12px 8px;
  display: block;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #222222;
  position: absolute;
  top: 0px;
  transform: translateZ(0);
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 800ms ease-in-out;
}
.header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul:after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0px;
  background: #222222;
  transform: translateZ(0);
  backface-visibility: hidden;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: all 800ms ease-in-out;
}

/* End Header Aera */
/*------------------slider_area--------------------------------*/
.slider_area .slider_inner{
  height: 80vh !important;
}
@media (max-width:1440px){
  .slider_area .slider_inner{
    height: 500px !important;
  }
}
.slider_area .slider_inner .camera_caption {
  height: 100%;
}
.slider_area .slider_inner .camera_caption div {
  background: transparent;
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
  text-shadow: none;
  left: 0;
}
.slider_area .slider_inner .camera_caption div h1 {
  color: #fff;
  font: 800 60px/60px "Poppins";
  text-shadow: -1px -1px 3px #000000;
}
.slider_area .slider_inner .camera_caption div h3 {
  color: #fff;
  font: 600 20px/60px "Raleway";
  padding-top: 27px;
}
.slider_area .slider_inner .camera_caption div a {
  font: 700 18px/59px "Raleway";
  width: 180px;
  text-align: center;
  background: #2883c5;
  display: block;
  text-shadow: none;
  margin: 0 auto;
  outline: none !important;
  box-shadow: none;
  border: 0;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 0;
}
.slider_area .slider_inner .camera_caption div a:hover {
  color: #fff;
}
.slider_area .slider_inner .camera_caption div a:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #343434;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  right: 0;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.slider_area .slider_inner .camera_caption div a:hover:before,
.slider_area .slider_inner .camera_caption div a:focus:before {
  transform: scaleY(1);
}
.slider_area .slider_inner .camera_prev,
.slider_area .slider_inner .camera_next {
  opacity: 1 !important;
  background-color: transparent;
}
.slider_area .slider_inner .camera_prev span,
.slider_area .slider_inner .camera_next span {
  display: none;
}
.slider_area .slider_inner .camera_prev {
  position: relative;
}
.slider_area .slider_inner .camera_prev:after {
  content: "";
  position: absolute;
  top: -20px;
  background: url("../images/camera_slider/prev.png") no-repeat;
  left: 382px;
  height: 50px;
  width: 50px;
}
.slider_area .slider_inner .camera_next:after {
  content: "";
  position: absolute !important;
  top: 0;
  background: url("../images/camera_slider/next.png") no-repeat;
  right: 382px;
  height: 50px;
  width: 50px;
}
.slider_area .slider_inner .camera_fakehover {
  top: 20px;
}

/* End slider_area */

/*--------------------CALL-ACTION------------------------------*/
.call_min_area {
  background: #2883c5;
  background-position: bottom;
  background-size: inherit;
  text-align: center;
  padding: 70px 0;
  background-repeat: no-repeat;
}
.call_min_area h2 {
  font: 700 40px "Raleway";
  color: #fff;
}
.call_min_area p {
  font: 400 30px/36px "Poppins";
  color: #fefefe;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 8px;
  padding-bottom: 20px;
}
.call_min_area .call_btn a {
  display: inline-block;
  font: 400 30px/65px "Raleway";
  color: #fff;
  margin-left: 20px;
}
.call_min_area .call_btn a:first-child {
  margin-left: 0;
}
/* End call-action*/

/*--------------------------------------------------*/
/* about_us_area */
.about_us_area {
  background-repeat: no-repeat !important;
  background: url(../images/bg/bg3.png);
  background-size: contain;
}
.about_us_area .about_row {
  padding-top: 70px;
  padding-bottom: 70px;
}
.about_us_area .about_row p {
  font: 400 17px/26px "Poppins";
  color: #555555;
  padding-top: 28px;
  padding-bottom: 54px;
}
.about_us_area .about_row {
  padding-top: 7px;
}
.about_us_area .about_row img {
  max-width: 100%;
}
.about_us_area .about_row .our_skill_inner h3 {
  font: 700 18px "Poppins";
  color: #222222;
  padding-bottom: 8px;
}
.about_us_area .about_row .our_skill_inner {
  background: #f6b60b;
  box-shadow: none;
  font: 700 18px "Poppins";
  color: #222222;
  position: absolute;
  right: 0;
  top: -30px;
}
.about_us_area {
  padding-bottom: 270px;
}
/*about.php*/
.abouttop {
  padding-top: 70px !important;
  padding-bottom: 100px !important;
}
/* End about_us_area */

/********************************NEW ABOUT*****************************/
/*bannerservices*/
.bannerservices {
  position: relative;
  padding: 100px 0 37%;
  letter-spacing: 0.6px;
  text-align: center;
  clear: both;
  background: #fff;
}
.iconp {
  margin-top: 50px;
  margin-right: 10px;
}
.iconp2 {
  margin: -35px 1px 0 0;
}
/*img sobre el recuadro left*/
#imcuadroleft:before {
  content: "";
  border: 10px solid #2883c5 !important;
  height: 99%;
  width: 67%;
  position: absolute;
  right: 1px;
  top: 103px;
  bottom: 0;
  left: 152px;
  z-index: 0;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
#imgpositionleft {
  position: relative;
  transition: all 0.5s ease 0s;
  transform: translateY(65px);
}
#imgpositionleft:hover {
  transform: translate(70px, 101px);
}
#txtoneleft {
  position: absolute;
  color: #2883c5;
  top: 687px;
  border: 2px solid;
  left: 87px;
  width: 78%;
}
.txtpdright {
  float: right;
  width: 50%;
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #000;
}
.txtpdleft {
  text-align: center;
  float: left;
  width: 50%;
  position: relative;
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #000;
}
.txtpdleft:before {
  content: "";
  border-right: 1px solid #000;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/*img sobre el recuadro right*/
#imcuadroright:before {
  content: "";
  border: 10px solid #2883c5 !important;
  height: 99%;
  width: 67%;
  position: absolute;
  right: 1px;
  top: 80%;
  bottom: 0;
  left: 73px;
  z-index: 0;
  -webkit-transition: all 500ms ease 0s;
  -moz-transition: all 500ms ease 0s;
  -o-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
#imgpositionright {
  position: relative;
  transition: all 0.5s ease 0s;
  transform: translateY(373px);
  top: 43%;
  left: 34px;
}
#imgpositionright:hover {
  transform: translate(-43px, 407px) !important;
}
#txtoneright {
  position: absolute;
  color: #2883c5;
  top: 100px;
  border: 2px solid;
  left: 60px;
  width: 81%;
  height: 30%;
}
.txtctright,
.txtctleft {
  font-size: 34px;
  line-height: initial;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding-top: 8px;
}
.txtpdright1 {
  float: right;
  width: 50%;
  font-size: 18px;
  margin: 17px 0 0 0;
}
.txtpdleft1 {
  text-align: center;
  float: left;
  width: 48%;
  position: relative;
  font-size: 18px;
  margin: 17px 0 0 0;
}
.txtpdright1:before {
  content: "";
  border-right: 1px solid #fff;
  position: absolute;
  top: 70px;
  right: 237px;
  height: 30%;
}

/* Banner Area */
.banner_area {
  background: url("../images/bg/banner-bg.jpg") no-repeat;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}
.banner_area:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgb(0 0 0 / 67%);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}
.banner_area h2 {
  color: #fff;
  font: 400 40px "Poppins";
  text-transform: uppercase;
  padding-top: 85px;
}
.banner_area .breadcrumb {
  background-color: transparent;
  padding-top: 15px;
}
.banner_area .breadcrumb li a {
  font: 400 14px "Poppins";
  color: #fff;
}
.banner_area .breadcrumb li a.active {
  color: #32e2fa;
}
.breadcrumb > li + li:before {
  color: #fff;
}
/*--------------------servicess_seccion------------------------------*/
.services_seccion {
  padding-bottom: 100px;
  background: #fefefe;
}
.services_seccion .services_row {
  padding-top: 70px;
}
.services_seccion .services_row .feature_img {
  padding-top: 10px;
}
.services_seccion .services_row .feature_img img {
  max-width: 100%;
  outline: 10px solid #eee6a7;
  outline-offset: -54px;
  border: 44px solid #172029;
  border-width: 25px;
  /*  border-width: 26px 38px 70px 67px;*/
  /*  border-width: 15px 10px 85px 85px;*/
}
.services_content {
  top: 20px;
}
.services_seccion .services_row .services_content .subtittle {
  padding-bottom: 40px;
}
.services_seccion .services_row .services_content .media {
  padding-bottom: 15px;
}
.services_seccion .services_row .services_content .media .media-left {
  padding-right: 30px;
}
.services_seccion .services_row .services_content .media .media-left a i {
  font-size: 24px;
  color: #f6b60b;
  line-height: 50px;
  width: 60px;
  text-align: center;
  background: #333333;
  border: 5px solid #f6b60b;
}
.services_seccion .services_row .services_content .media .media-body a {
  font: 600 20px/59px "Raleway";
  color: #222222;
  text-transform: uppercase;
}
.services_seccion .services_row .services_content .media .media-body a:hover,
.services_seccion .services_row .services_content .media .media-body a:focus {
  color: #a68e4e;
}
.services_seccion .services_row .services_content .media .media-body p {
  font: 400 14px/26px "Poppins";
  color: #555555;
  padding-top: 20px;
}
.video {
  width: 100%;
  height: 368px;
  background: #000;
}
/********************************NEW SERVICES img(440*440)*****************************/
figure.snip0078 {
  color: #fff;
  position: relative;
  /* margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 310px;
  width: 100%;*/
  text-align: center;
}
figure.snip0078 img {
  opacity: 1;
  max-width: 100%;
  border: 10px solid #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
figure.snip0078 figcaption {
  bottom: 0;
  width: 60%;
  right: 0;
  position: absolute;
  background: #000000;
  padding: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  box-shadow: 0 0px 10px -10px #000000;
}
figure.snip0078 figcaption h2,
figure.snip0078 figcaption p {
  margin: 0;
  color: #ffffff;
}
figure.snip0078 figcaption h2 {
  font-weight: 400;
  text-transform: uppercase;
}
figure.snip0078 figcaption h2 span {
  font-weight: 800;
}
figure.snip0078 figcaption p {
  font-size: 0.9em;
  font-weight: 400;
}
figure.snip0078 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
figure.snip0078.blue figcaption {
  background: #000;
}
figure.snip0078.blue img {
  border: 10px solid #ff6100;
}
figure.snip0078:hover figcaption,
figure.snip0078.hover figcaption {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 15px 15px -15px #000000;
}
figure.snip0078:hover.blue img,
figure.snip0078.hover.blue img {
  border: 10px solid #3d3d3d;
}
a.btn-servi {
  margin-top: 95%;
  position: relative;
  font-size: 15px;
  background: #ff6100;
  width: 42%;
  height: 14%;
  padding-top: 13px;
  color: #ffffff;
  margin-left: 50%;
}

/********************************NEW SERVICES img(440*440)*****************************/
.btn-servi {
  background: #000;
  padding: 20px;
  color: #fff !important;
}
figure.snip0042 {
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  box-shadow: 9px -4px 4px 0 #00000040;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 435px;
  width: 100%;
  background: #ffffff;
  color: #ffffff;
}
figure.snip0042 > img {
  width: 100%;
}
figure.snip0042 figcaption {
  padding: 20px 15px 20px 28%;
  position: relative;
}
figure.snip0042 figcaption h2,
figure.snip0042 figcaption p {
  margin: 0;
  text-align: right;
  padding: 10px 0;
  right: 0;
  width: 100%;
}
figure.snip0042 figcaption h2 {
  font-size: 1.8em;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px dotted rgb(255 255 255);
}
figure.snip0042 figcaption .icons {
  width: 68%;
  text-align: center;
  background: #8c4d1b;
  padding: 11px;
  float: right;
  margin-bottom: 20px;
}
figure.snip0042 figcaption .icons i {
  font-size: 26px;
  padding: 5px;
  color: #ffffff;
  top: 50%;
}
figure.snip0042 .position {
  width: 100%;
  text-align: right;
  padding: 8px 30px 13px;
  font-size: 0.8em;
  opacity: 0.8;
  font-style: italic;
}
figure.snip0042:after {
  position: absolute;
  top: 0;
  left: -16%;
  height: 110%;
  width: 30%;
  background-color: #fff;
  content: "";
  border-right: 4px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-transform: skewX(-7deg) translateX(0px);
  transform: skewX(-7deg) translateX(0px);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
figure.snip0042.yellow {
  background: #492410;
}
figure.snip0042.yellow:after {
  background: #8c4d1b;
}
figure.snip0042:hover:after,
figure.snip0042.hover:after {
  -webkit-transform: skewX(-4deg) translateX(10px);
  transform: skewX(-4deg) translateX(10px);
}
/********************************NEW SERVICES 3*****************************/
figure.snip1171 {
  position: relative;
  overflow: hidden;
  /* margin: 10px;
  min-width: 220px;*/
  max-width: 430px;
  width: 100%;
  background: #000000;
  color: #333;
  text-align: left;
  /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);*/
}
figure.snip1171 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1171 img {
  width: 100%;
  vertical-align: top;
}
figure.snip1171 figcaption {
  background: #439a22 url(../images/socialmedia/grass.png);
  background-position: bottom;
  background-size: cover;
  position: relative;
  padding: 48px 47px 92px;
}
figure.snip1171 h3 {
  position: absolute;
  bottom: 100%;
  text-transform: uppercase;
  padding: 0px 25px;
  line-height: 44px;
  margin: 0;
  left: 0;
  font-weight: 400;
  background: #b57e50;
  color: #fff;
}
figure.snip1171 h3 span {
  font-weight: 800;
}
figure.snip1171 h3:before {
  position: absolute;
  left: 100%;
  border-style: solid;
  border-width: 44px 0 0 12px;
  border-color: transparent transparent transparent #b57e50;
  content: "";
  top: 0;
}
figure.snip1171 p {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  margin: 0;
  color: #fff;
  line-height: 1.6em;
}
figure.snip1171 a {
  text-decoration: none;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #b57e50;
  line-height: 40px;
  padding: 0 10px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}
figure.snip1171 a:before {
  position: absolute;
  right: 100%;
  border-style: solid;
  border-width: 0 0 40px 12px;
  border-color: transparent transparent #b57e50;
  content: "";
  top: 0;
}
figure.snip1171:hover img,
figure.snip1171.hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*-------------------seccion-gallery3-------------------------------*/
.snip1520 {
  position: relative;
  overflow: hidden;
  /*margin: 10px;
  min-width: 230px;
  max-width: 315px;*/
  width: 100%;
  background: #040404;
}

.snip1520 img,
.snip1520:before,
.snip1520:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.snip1520 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1520:before,
.snip1520:after {
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.snip1520:before {
  width: 60px;
  height: 1px;
  left: 0;
}

.snip1520:after {
  height: 60px;
  width: 1px;
  top: 100%;
}

.snip1520 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1520:hover img,
.snip1520.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.snip1520:hover:before,
.snip1520.hover:before,
.snip1520:hover:after,
.snip1520.hover:after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

/*-------------------seccion-gallery-------------------------------*/
.gallery_area {
  background: #fff;
  padding-bottom: 100px;
}
.gallery_area .tittle h2 {
  color: #2883c5;
}
.gallery_area .tittle h4 {
  color: #000;
}
.gallery_area .portfolio_inner_area {
  padding-top: 60px;
}
.gallery_area .portfolio_inner_area {
  padding-bottom: 55px;
}
.gallery_area .portfolio_inner_area ul {
  text-align: center;
  margin: 0;
  padding: 0;
}
.gallery_area .portfolio_inner_area ul li {
  list-style: none;
  display: inline-block;
  padding-left: 30px;
}
.gallery_area .portfolio_inner_area ul li:first-child {
  padding: 0;
}
.gallery_area .portfolio_inner_area ul li a {
  font: 400 14px "Poppins";
  text-transform: uppercase;
  color: #f5f5f5;
}
.gallery_area .portfolio_inner_area ul li:hover a,
.gallery_area .portfolio_inner_area ul li:focus a,
.gallery_area .portfolio_inner_area ul li.active a {
  color: #f6b60b;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner {
  position: relative;
  color: #2883c5;
  border: 4px double;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  img {
  max-width: 100%;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover {
  background: linear-gradient(89deg, #927940, #deca76, #957c44);
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  display: block;
  text-align: center;
  padding-top: calc(50% - 70px);
  cursor: pointer;
  opacity: 0;
  transition: all 300ms linear 0s;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  h4 {
  color: #fff;
  font: 400 23px "Poppins";
  padding-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  left: -65%;
  transition: all 300ms linear 0s;
  margin: 0 3px;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul {
  padding: 0;
  margin: 0;
  position: relative;
  right: -67%;
  transition: all 300ms linear 0s;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul
  li {
  list-style: none;
  display: inline-block;
  padding-left: 17px;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul
  li:first-child {
  padding: 0;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul
  li
  a {
  font-size: 14px;
  color: #fff;
  line-height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: block;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul
  li
  a:hover,
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner
  .gallery_hover
  ul
  li
  a:focus {
  color: #606060;
  background: #fff;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:hover
  .gallery_hover,
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:focus
  .gallery_hover {
  opacity: 1;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:hover
  .gallery_hover
  h4,
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:focus
  .gallery_hover
  h4 {
  left: 0;
}
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:hover
  .gallery_hover
  ul,
.gallery_area
  .portfolio_inner_area
  .portfolio_item
  .single_facilities
  .single_facilities_inner:focus
  .gallery_hover
  ul {
  right: 12px;
}
/* new section gallery home*/
.snip1573 {
  background-color: #000;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  box-shadow: -5px 5px 8px 0px #00000091;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.snip1573 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1573:before,
.snip1573:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #000000e8;
  border-left: 3px solid #2883c5;
  border-right: 3px solid #2883c5;
  content: "";
  opacity: 0.9;
  z-index: 1;
}
.snip1573:before {
  -webkit-transform: skew(45deg) translateX(-155%);
  transform: skew(45deg) translateX(-155%);
}
.snip1573:after {
  -webkit-transform: skew(45deg) translateX(155%);
  transform: skew(45deg) translateX(155%);
}
.snip1573 img {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
}
.snip1573 figcaption {
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}
.snip1573 h3 {
  background-color: #fff;
  color: #fff;
  border-radius: 5px;
  font-size: 3em;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 31px 31px;
  text-transform: uppercase;
}
.snip1573 a {
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  color: #2883c5;
}
.snip1573:hover > img,
.snip1573.hover > img {
  opacity: 0.5;
}
.snip1573:hover:before,
.snip1573.hover:before {
  -webkit-transform: skew(45deg) translateX(-55%);
  transform: skew(45deg) translateX(-55%);
}
.snip1573:hover:after,
.snip1573.hover:after {
  -webkit-transform: skew(45deg) translateX(55%);
  transform: skew(45deg) translateX(55%);
}
.snip1573:hover figcaption,
.snip1573.hover figcaption {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/********************************NEW GALLERY img(440*440)*****************************/
.snip1500 {
  position: relative;
  overflow: hidden;
  /* margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;*/
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
}

.snip1500 *,
.snip1500 *:before,
.snip1500 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1500 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1500 figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px 10px 10px;
  opacity: 0;
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
  transform: rotate(0deg) translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.snip1500 figcaption:before,
.snip1500 figcaption:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1500 figcaption:before {
  top: 0;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.snip1500 figcaption:after {
  bottom: 0;
  right: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.snip1500 figcaption div:before,
.snip1500 figcaption div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1500 figcaption div:before {
  top: 10px;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.snip1500 figcaption div:after {
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.snip1500 h2,
.snip1500 h4 {
  margin: 0;
  text-transform: uppercase;
}

.snip1500 h2 {
  font-weight: 400;
}

.snip1500 h4 {
  background-color: #000000;
  padding: 5px;
  width: 30%;
  margin-left: 55px;
  color: #ffffff;
}

.snip1500 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.snip1500:hover img,
.snip1500.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.snip1500:hover figcaption,
.snip1500.hover figcaption {
  opacity: 1;
}

.snip1500:hover figcaption:before,
.snip1500.hover figcaption:before,
.snip1500:hover figcaption:after,
.snip1500.hover figcaption:after,
.snip1500:hover figcaption div:before,
.snip1500.hover figcaption div:before,
.snip1500:hover figcaption div:after,
.snip1500.hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.snip1500:hover figcaption:before,
.snip1500.hover figcaption:before,
.snip1500:hover figcaption:after,
.snip1500.hover figcaption:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.t-gold {
  color: #ffa500;
}
.breadcrumb>li{
  color: #fff !important;
}
.pagination{
  flex-wrap: wrap;
}
.pagination > li > a:hover {
  background-color: #4f1f07;
  border-color: #4f1f07;
}
.pad_testi {
  padding: 10px 0px 10px;
}
.pad_tes {
  padding: 0 0 75px 0;
}
.pad_te {
  padding: 72px 0 14px 0;
}
.pad_t {
  padding: 0 0 14px 0;
}
.smallbnt {
  width: 36%;
}
.pagination > li {
  display: contents;
}
.well2 {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background: linear-gradient(238deg, #000000, #3e3e3e, #000000);
  border-radius: 9px;
  max-height: 850px;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #040404;
  border: 1px solid #040404;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #2883c5;
  border-color: #2883c5;
}
/*services.php*/
.services {
  padding-top: 70px;
  padding-bottom: 100px;
  margin: 14px;
}
.infoservices {
  padding-top: 48px;
  margin: 0 20px;
}
.snip1543 {
  background-color: #fff;
  color: #ffffff;
  font-family: "Poppins";
  font-size: 16px;
  overflow: hidden;
  position: relative;
  text-align: left;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.snip1543 *,
.snip1543 *:before,
.snip1543 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.snip1543:before,
.snip1543:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #ff6507;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.snip1543:before {
  -webkit-transform: skew(30deg) translateX(-80%);
  transform: skew(30deg) translateX(-80%);
}
.snip1543:after {
  -webkit-transform: skew(-30deg) translateX(-70%);
  transform: skew(-30deg) translateX(-70%);
}
.snip1543 figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
  padding: 25px 40% 25px 20px;
}
.snip1543 figcaption:before,
.snip1543 figcaption:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ff6100;
  box-shadow: 0 0 20px 13px rgba(0, 0, 0, 0.7);
  content: "";
  opacity: 0.6;
  z-index: -1;
}
.snip1543 figcaption:before {
  -webkit-transform: skew(30deg) translateX(-100%);
  transform: skew(30deg) translateX(-100%);
}
.snip1543 figcaption:after {
  -webkit-transform: skew(-30deg) translateX(-90%);
  transform: skew(-30deg) translateX(-90%);
}
.snip1543:before,
.snip1543:before {
  transform: skew(30deg) translateX(-95%);
}
.snip1543:after,
.snip1543:after {
  transform: skew(-30deg) translateX(-90%);
}
.snip1543 figcaption:before,
.snip1543 figcaption:before {
  transform: skew(30deg) translateX(-78%);
}
.snip1543 figcaption:after,
.snip1543 figcaption:after {
  transform: skew(-30deg) translateX(-72%);
}
.shadow {
  box-shadow: 0px 0px 11px 4px #00000085;
}
/*--------------------SECCION-BG1------------------------------*/
.seccion-bg1 {
  background: url("../images/bg/bg1.jpg") no-repeat fixed;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
.seccion-bg1:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgb(0 0 0 / 60%);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}
.seccion-bg1 .tittle h2 {
  color: #fff;
}
.seccion-bg1 .tittle h4 {
  color: #fefefe;
}
.seccion-bg1 .seccion_bg1_row {
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seccion-bg1 .seccion_bg1_row .completed {
  text-align: center;
  border-right: 3px solid #fff;
}
.seccion-bg1 .seccion_bg1_row .completed2 {
  text-align: center;
  border-right: none;
}
.seccion-bg1 .seccion_bg1_row .completed:last-child {
  border: 0;
}
.seccion-bg1 .seccion_bg1_row .completed i {
  font-size: 30px;
  color: #fff;
  display: block;
  padding-top: 10px;
}
.seccion-bg1 .seccion_bg1_row .completed .counter {
  font: 700 40px "Poppins";
  color: #f6b60b;
  display: block;
  padding-top: 23px;
}
.seccion-bg1 .seccion_bg1_row .completed h6 {
  font: 400 14px "Poppins";
  color: #fff;
  padding-top: 20px;
  text-transform: uppercase;
  padding-bottom: 5px;
}
/*----------------------SECCION-BG2--------------------------------*/
.seccion-bg2 {
  background: url("../images/bg/bg2.jpg") no-repeat fixed;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
.seccion-bg2:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgb(0 0 0 / 57%);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}
.seccion-bg2 .tittle h2 {
  color: #fff;
}
.seccion-bg2 .tittle h4 {
  color: #fefefe;
}
.seccion-bg2 .seccion_bg2_row {
  padding-top: 60px;
}
.seccion-bg2 .seccion_bg2_row .completed {
  text-align: center;
  border-right: 3px solid #fff;
}
.seccion-bg2 .seccion_bg2_row .completed:last-child {
  border: 0;
}
.seccion-bg2 .seccion_bg2_row .completed i {
  font-size: 30px;
  color: #fff;
  display: block;
  padding-top: 10px;
}
.seccion-bg2 .seccion_bg2_row .completed .counter {
  font: 700 40px "Poppins";
  color: #f6b60b;
  display: block;
  padding-top: 23px;
}
.seccion-bg2 .seccion_bg2_row .completed h6 {
  font: 400 14px "Poppins";
  color: #fff;
  padding-top: 20px;
  text-transform: uppercase;
  padding-bottom: 5px;
}
/*----------------------SECCION-BG3--------------------------------*/
.seccion-bg3 {
  background: url("../images/bg/bg3.jpg") no-repeat fixed;
  background-position: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
.seccion-bg3:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgb(0 0 0 / 68%);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}
.seccion-bg3 .tittle h2 {
  color: #fff;
}
.seccion-bg3 .tittle h4 {
  color: #fefefe;
}
/*--------------------contact----------------------------------*/
.all_contact_info .contact_row {
  padding: 50px 0;
}
.all_contact_info .contact_row .contact_info h2 {
  font: 700 26px/1 "Raleway";
  color: #222222;
  padding-bottom: 30px;
  position: relative;
}
.all_contact_info .contact_row .contact_info h2:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 80px;
  background: #2883c5;
  left: 0;
  bottom: 0;
}
.all_contact_info .contact_row .contact_info p {
  font: 400 14px/26px "Poppins";
  color: #555555;
}
.all_contact_info .contact_row .contact_info .location {
  padding-top: 55px;
}
.all_contact_info .contact_row .contact_info .location p {
  font: 400 15px/28px "Poppins";
  color: #09090b;
  display: block;
  text-transform: uppercase;
}
.all_contact_info .contact_row .contact_info .location p:hover,
.all_contact_info .contact_row .contact_info .location p:focus {
  color: #000;
}
.all_contact_info .contact_row .contact_info .location .location_laft {
  float: left;
}
.all_contact_info .contact_row .contact_info .location .address p {
  text-transform: none;
}
.all_contact_info .contact_row .contact_box {
  padding-top: 30px;
}
.all_contact_info .contact_row .contact_box .input_box {
  border: 1px solid #dfe3e4;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  height: 50px;
  padding-left: 15px;
  width: 100%;
  color: #d3dadf;
  margin-bottom: 20px;
}
.all_contact_info .contact_row .contact_box .input_box.placeholder {
  color: #d3dadf;
}
.all_contact_info .contact_row .contact_box .input_box:-moz-placeholder {
  color: #d3dadf;
}
.all_contact_info
  .contact_row
  .contact_box
  .input_box::-webkit-input-placeholder {
  color: #d3dadf;
}
.all_contact_info .contact_row .contact_box textarea {
  height: 120px !important;
  resize: none;
}
.all_contact_info .contact_row .contact_box button {
  color: #fefefe;
  font: 400 14px/40px "Poppins";
  background: #f6b60b;
  width: 140px;
  color: #222222;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
}
.all_contact_info .contact_row .contact_box button:hover,
.all_contact_info .contact_row .contact_box button:focus {
  color: #f6b60b;
  background: #222222;
}
/*contact.php*/
.btn-right {
  float: right !important;
}
.bgform {
  background: #161613;
  padding: 26px 20px;
}
.contacttop {
  padding-top: 5px !important;
}
.iconform {
  position: absolute !important;
  bottom: 50% !important;
  width: 16px !important;
  left: 9% !important;
  margin-right: 1%;
}
.iconformphone {
  position: absolute !important;
  bottom: 2% !important;
  width: 14px !important;
  left: 6% !important;
  transform: rotateZ(45deg);
}
.iconformemail {
  position: absolute !important;
  bottom: 2% !important;
  width: 14px !important;
  left: 6% !important;
}
.iconformkeyboard {
  position: absolute !important;
  bottom: 2% !important;
  width: 14px !important;
  left: 6% !important;
}
.iconformcomment {
  position: absolute !important;
  bottom: 62% !important;
  width: 14px !important;
  left: 5% !important;
}
.widmap {
  width: 100%;
}
.pl-4,
.px-4 {
  padding-left: 2.5rem !important;
}
/* -------- Scroll To Top ---------- */
.btnup {
  display: none;
  background-repeat: no-repeat;
  font-size: 20px;
  color: #2883c5;
  cursor: pointer;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.btnup:hover {
  color: #363635;
}
/*--------------------------------------------------*/
.footer_area {
  background: none;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.footer_area .whatsapp__container{
  position: fixed;
  bottom: 2rem;
  left: 2rem;
}
.footer_area .whatsapp__container img{
  width: 80px;
}
.footer_area:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #000;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: -1;
}
.footer_area .footer_row {
  padding-top: 95px;
  padding-bottom: 50px;
}
.footer_area .footer_row .footer_about {
  padding-bottom: 50px;
}
.footer_area .footer_row .footer_about h2 {
  font: 400 22px "Raleway";
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 25px;
}
.footer_area .footer_row .footer_about img {
  max-width: 100%;
}
.footer_area .footer_row .footer_about p {
  font: 400 14px/26px "Poppins";
  color: #fff;
  padding-top: 22px;
}
.footer_area .footer_row .footer_about .socail_icon {
  padding: 0;
  margin: 0;
  padding-top: 25px;
  border-top: 2px solid #2883c5;
}
.footer_area .footer_row .footer_about .socail_icon li {
  display: inline-block;
  list-style: none;
  padding-left: 8px;
}
.footer_area .footer_row .footer_about .socail_icon li:first-child {
  padding: 0;
}
.footer_area .footer_row .footer_about .socail_icon li a {
  border: 2px solid #2883c5;
  background: #2883c5;
  display: block;
  line-height: 26px;
  width: 34px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 50%;
}
.footer_area .footer_row .footer_about .socail_icon li a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #1c1c1c00;
  border-radius: 50%;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.footer_area .footer_row .footer_about .socail_icon li a i {
  font-size: 19px;
  color: #fff;
  display: inline-block;
  padding-top: 7px;
}
.footer_area .footer_row .footer_about .socail_icon li a:hover:after,
.footer_area .footer_row .footer_about .socail_icon li a:focus:after {
  transform: scaleY(1);
}
.footer_area .footer_row .footer_about .quick_link {
  padding: 0;
  margin: 0;
}
.footer_area .footer_row .footer_about .quick_link li {
  list-style: none;
}
.footer_area .footer_row .footer_about .quick_link li a {
  font: 400 17px/32px "Poppins";
  color: #fff;
  position: relative;
  padding-left: 30px;
}
.footer_area .footer_row .footer_about .quick_link li a i {
  font-size: 14px;
  color: #2883c5;
  padding-right: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 300ms linear 0s;
}
.footer_area .footer_row .footer_about .quick_link li a:hover,
.footer_area .footer_row .footer_about .quick_link li a:focus {
  color: #2883c5;
}
.footer_area .footer_row .footer_about .quick_link li a:hover i,
.footer_area .footer_row .footer_about .quick_link li a:focus i {
  left: 8px;
}
.footer_area .footer_row .footer_about .twitter {
  font: 400 14px/28px "Poppins";
  color: #fefefe;
  display: block;
  padding-bottom: 15px;
}
.footer_area .footer_row .footer_about .twitter:hover,
.footer_area .footer_row .footer_about .twitter:focus {
  color: #f6b60b;
}
.footer_area .footer_row .footer_about address p {
  font: 400 14px/28px "Poppins";
  color: #fff;
  padding: 0;
}
.footer_area .footer_row .footer_about address .my_address {
  padding: 0;
  margin: 0;
  padding-top: 15px;
}
.footer_area .footer_row .footer_about address .my_address li {
  list-style: none;
}
.footer_area .footer_row .footer_about address .my_address li a {
  font: 400 14px/28px "Poppins";
  color: #fff;
}
.footer_area .footer_row .footer_about address .my_address li a i {
  color: #2883c5;
  padding-right: 20px;
  font-size: 14px;
  display: inline-block;
}
.footer_area .footer_row .footer_about address .my_address li a:hover,
.footer_area .footer_row .footer_about address .my_address li a:focus {
  color: #2883c5;
}
.footer_area .footer_row .footer_about address .my_address li span {
  display: inline-block;
  padding-left: 35px;
  margin-top: -30px;
}
.footer_area .copyright_area {
  background: #090909;
  font: 400 14px/100px "Poppins";
  color: #fefefe;
  text-align: center;
}
.footer_area .copyright_area a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #f6b60b;
}
.footer_area .copyright_area a:hover,
.footer_area .copyright_area a:focus {
  color: #fefefe;
}

/*-------------------------------border animate about-----------------------------------------------*/
.intro {
  width: 100%;
  background: #ffffff;
  padding-top: 86px;
  padding-bottom: 114px;
}
.intro_container {
  height: 100%;
}
.intro_text {
  margin-top: 27px;
}
.intro_link {
  margin-top: 38px;
}
.intro_link a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #5a2360;
}
.intro_link a::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #5a2360;
  content: "";
}
.intro_button {
  margin-top: 53px;
}
.intro_img {
  position: absolute;
}
.intro_img img {
  max-width: 100%;
}
.intro_1 {
  top: 0;
  right: 0;
  box-shadow: 0px 23px 35px rgba(4, 4, 4, 0.54);
}
.intro_2 {
  bottom: -560px;
  right: 98px;
  box-shadow: 0px 23px 35px rgba(4, 4, 4, 0.54);
}
.intro_22 {
  bottom: -625px;
  right: 112px;
  box-shadow: 0px 23px 35px rgba(4, 4, 4, 0.54);
}
.intro_3 {
  top: 51px;
  left: 0;
  box-shadow: 0px 23px 35px rgba(4, 4, 4, 0.54);
}

/*border animate*/
.box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 99%;
  height: 96%;
  background: #25262724;
  box-sizing: border-box;
  overflow: hidden;
  color: black;
}
.box:hover:before {
  left: -50%;
  transform: skewX(-5deg);
}
.box .content {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #f0a591;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(9, 0, 0, 0.5);
}
.box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
}
.box span:nth-child(1) {
  transform: rotate(0deg);
}
.box span:nth-child(2) {
  transform: rotate(90deg);
}
.box span:nth-child(3) {
  transform: rotate(180deg);
}
.box span:nth-child(4) {
  transform: rotate(270deg);
}
.box span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(89deg, #927940, #deca76, #957c44);
  animation: animateborder 4s linear infinite;
}

@keyframes animateborder {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.seccion-bg {
  background: #000;
  padding: 100px 0;
}
.v1 {
  background: #000;
  width: 100%;
  height: 550px;
}
/*new section services*/
figure.snip0051 {
  position: relative;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 0 0px 1px #da0a1d;
  border-style: double;
  color: #b7b7b7;
}
figure.snip0051 > img {
  margin-left: 50%;
  opacity: 1;
  width: 70%;
  filter: blur(0px);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
figure.snip0051 figcaption {
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #191917;
}
figure.snip0051 figcaption h2,
figure.snip0051 figcaption p {
  margin: 0;
  color: #000000;
  text-align: right;
  position: absolute;
  padding: 10px 0 10px 4px;
  margin: 0 40px 0 20px;
}
figure.snip0051 figcaption h2 {
  font-size: 2em;
  bottom: 66%;
  right: 0;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid #2883c5;
  color: #fff;
}
figure.snip0051 figcaption p {
  top: 36%;
}
figure figcaption span a {
  font-size: 18px;
  padding-left: 10%;
  margin-top: 90%;
  position: absolute;
  background: #2883c5;
  padding-top: 6%;
  height: 16%;
  width: 50%;
}
figure.snip0051 .icons {
  padding: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  padding-left: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
figure.snip0051 .icons i {
  font-size: 32px;
  padding: 10px;
  color: #ffffff;
  opacity: 0;
  top: 50%;
  display: inline-block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
figure.snip0051 .icons a:first-child i {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
figure.snip0051 .icons a:nth-child(2) i {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
figure.snip0051 .icons a:nth-child(3) i {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
figure.snip0051:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 35px;
  width: 35px;
  background-color: #2883c5;
  content: "";
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
figure.snip0051:hover > img,
figure.snip0051.hover > img {
  opacity: 0.5;
  filter: blur(5px);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
figure.snip0051:hover i,
figure.snip0051.hover i {
  opacity: 0.8;
  -webkit-transform: translate(0);
  transform: translate(0);
}
figure.snip0051:hover a:first-child i,
figure.snip0051.hover a:first-child i {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
figure.snip0051:hover a:nth-child(2) i,
figure.snip0051.hover a:nth-child(2) i {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
figure.snip0051:hover a:nth-child(3) i,
figure.snip0051.hover a:nth-child(3) i {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
/*----------------------MEDIA QUERYS----------------------------*/
@media (max-width: 2560px) {
  #imcuadroleft:before {
    left: 249px;
    width: 49%;
  }
  #imcuadroright:before {
    left: 139px;
    width: 49%;
  }
  .bannerservices {
    padding: 100px 0 20% 0;
  }
  .txtpdright1:before {
    right: 288px;
  }
}
@media (max-width: 1920px) {
  #imcuadroleft:before {
    content: "";
    height: 99%;
    width: 53%;
    top: 103px;
    left: 226px;
  }
  #imcuadroright:before {
    content: "";
    height: 99%;
    width: 53%;
    top: 80%;
    left: 139px;
  }
  .txtpdright1:before {
    right: 287px;
  }
  .bannerservices {
    position: relative;
    padding: 100px 0 30% 0;
    letter-spacing: 0.6px;
    text-align: center;
    clear: both;
    background:#fff
  }
}
@media (min-width: 1919px) {
  .slider_area .slider_inner .camera_caption div {
    left: 100px;
  }
  .slider_area .slider_inner .camera_prev:after {
    left: 111px;
  }
  .slider_area .slider_inner .camera_next:after {
    right: 111px;
  }
  .container {
    width: 1413px !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    padding-left: 22px;
    font: 800 22px/164px "Raleway";
  }
  .about_us_area {
    padding-bottom: 297px;
  }
  .intro_3 {
    left: 100px;
  }
}
/*desktop*/
@media (max-width: 1700px) {
  .slider_area_tow .slider_inner .camera_prev::after {
    left: 0px !important;
  }
  .slider_area_tow .slider_inner .camera_next::after {
    right: 0px !important;
  }
  .slider_area .slider_inner .camera_next::after {
    right: 105px;
  }
  .slider_area .slider_inner .camera_prev::after {
    left: 105px;
  }
  .about_us_area {
    padding-bottom: 260px;
  }
  .footer_area .footer_row .footer_about .quick_link li a {
    font: 400 14px/32px "Poppins";
  }
}
@media (max-width: 1440px) {
  .bannerservices {
    padding: 100px 0 37% 0;
  }
  #imcuadroright:before {
    left: 91px;
    width: 59%;
  }
  .txtpdright1:before {
    right: 250px;
  }
  figure figcaption span a {
    padding-top: 5%;
    font-size: 16px;
  }
  img.imgrespo {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .abouttop {
    padding-bottom: 100px !important;
  }
  .intro_22 {
    bottom: -541px;
    right: 117px !important;
  }
  .intro_2 {
    right: 108px !important;
    bottom: -460px !important;
  }
  .intro_img {
    width: 53% !important;
    right: 15px;
  }
  .intro_3 {
    margin-left: 16px !important;
  }
  .slider_area .slider_inner .camera_next::after {
    right: 0px;
  }
  .slider_area .slider_inner .camera_prev::after {
    left: 0;
  }
  .slider_area_tow .slider_inner .camera_caption div .container {
    max-width: 940px !important;
  }
  .about_us_area {
    padding-bottom: 100px;
  }
  .bannerservices {
    padding: 90px 0 49% !important;
    background: #fff
  }
  #imcuadroleft:before {
    height: 97% !important;
    left: 83px !important;
    width: 82% !important;
    top: 115px !important;
  }
  #imcuadroright:before {
    height: 87% !important;
    width: 76% !important;
    top: 91% !important;
    left: 36px !important;
  }
  #txtoneright {
    top: 65px !important;
    left: 50px !important;
    width: 89% !important;
  }
  .txtpdright1:before {
    top: 72px !important;
    right: 50% !important;
    height: 53% !important;
  }
  #txtoneleft {
    top: 667px !important;
    left: 25px !important;
    width: 89% !important;
  }
  .txtpdleft:before {
    right: -7px !important;
  }
  #imgpositionleft,
  #imgpositionright {
    width: 93% !important;
  }
  #imgpositionleft:hover {
    transform: translate(44px, 103px) !important;
  }
  #imgpositionright:hover {
    transform: translate(-32px, 414px) !important;
  }
  figure.snip0078 img {
    max-width: 120% !important;
  }
  figure.snip0078 figcaption {
    bottom: -33px !important;
    width: 85% !important;
    right: 11px !important;
    padding: 10px !important;
  }
  a.btn-servi {
    margin-top: 129% !important;
    width: 44% !important;
    height: 14% !important;
    font-size: 15px !important;
    padding-top: 15px !important;
    margin-left: 32% !important;
  }
  .services_seccion {
    padding-bottom: 100px !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    font: 800 21px/110px "Raleway" !important;
    padding-left: 15px;
  }
  .logo {
    width: 219px;
  }
  .txtpdright1:before {
    height: 33% !important;
    right: 52% !important;
  }

  /*figure.snip0042 figcaption h2{font-size: 17px}*/
}
/*tablet*/
@media (max-width: 991px) {
  .v1 {
    height: auto;
  }
  .intro_img {
    width: 47% !important;
  }
  .intro_1 {
    right: 40px !important;
  }
  .intro_2 {
    bottom: -568px !important;
    right: 137px !important;
  }
  .intro_3 {
    left: 20px !important;
  }
  /*.abouttop {padding-bottom: 666px!important;}*/
  /*.imgrespo{width: 300px!important;}*/
  .iconform {
    left: 6% !important;
    bottom: 27% !important;
  }
  .gallery_area
    .portfolio_inner_area
    .portfolio_item
    .single_facilities
    .single_facilities_inner
    .gallery_hover
    h4 {
    font: 400 15px "Poppins";
    margin: 0 0 !important;
  }
  .top_header_area .top_nav li a {
    padding-left: 9px;
  }
  .logo {
    max-width: 100% !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    padding-left: 12px;
    font: 800 14px/56px "Raleway" !important;
  }
  .slider_area .slider_inner .camera_caption div h1 {
    font: 800 45px/45px "Raleway";
  }
  .header_aera .navbar-collapse li .navbar-nav.navbar-right {
    height: 101px;
    margin-top: -1px;
  }
  .header_aera_tow .navbar-collapse .navbar-nav.navbar-right li a {
    padding-left: 16px;
  }
  .top_header .top_nav li a {
    padding-left: 10px;
  }
  .header_aera_tow .navbar_right_fulid::after {
    display: none;
  }
  .top_header_area.top_header {
    background: #111f29 !important;
  }
  .top_header_area.top_header .right_top_header::after {
    display: none;
  }
  .header_aera_tow {
    background: #fff !important;
  }
  .header_aera_tow .navbar_right_fulid {
    box-shadow: none;
  }
  .all_header {
    box-shadow: 0px 0px 40px 0px rgba(21, 47, 95, 0.2);
  }
  .slider_area .slider_inner .camera_caption div p {
    max-width: 600px;
  }
  .services_seccion .services_row .feature_img {
    padding-bottom: 20px;
  }
  .seccion-bg1 .seccion_bg1_row .completed {
    padding-bottom: 30px;
  }
  .seccion-bg1 .seccion_bg1_row .completed:nth-child(2) {
    border: 0;
  }
  .footer_about.quick {
    padding-bottom: 70px !important;
  }
  .slider_area_tow .slider_inner .camera_caption div .container a {
    margin-bottom: 50px;
  }
  .slider_area_tow .slider_inner .camera_caption div .container {
    max-width: 720px !important;
  }
  .slider_area_tow .slider_inner .camera_caption div {
    padding-top: 30px;
  }
  .slider_area_tow .slider_inner .camera_caption div p {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .our_skill_inner {
    padding-top: 30px;
  }
  .services_content {
    padding-bottom: 50px !important;
  }
  .about_us_area {
    padding-bottom: 620px;
  }
  .bannerservices {
    padding: 9% 0 36% !important;
    background: #fff
  }
  #txtoneright {
    top: 65px !important;
    left: 50px !important;
    width: 80% !important;
    padding-bottom: 192px !important;
  }
  .txtpdright1:before {
    top: 72px !important;
    right: 49% !important;
    height: 56% !important;
  }
  #txtoneleft {
    top: 382px !important;
    left: 425px !important;
    width: 80% !important;
  }
  .txtpdleft:before {
    right: -7px !important;
  }
  #imgpositionleft:hover {
    transform: translate(44px, 103px) !important;
  }
  #imgpositionleft {
    width: 100% !important;
  }
  figure.snip0078 img {
    max-width: 110% !important;
  }
  a.btn-servi {
    margin-top: 117% !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  a.btn-servi.btn-servi1 {
    margin-top: 147% !important;
    height: 11% !important;
  }
  figure.snip1171 {
    margin: 10px;
  }
}
@media (max-width: 800px) {
  .slider_area_tow .slider_inner .camera_caption div {
    right: 0;
    margin: 0 auto;
    width: 90%;
  }
  .services_content {
    padding-bottom: 50px !important;
  }
  figure.snip0051 > img {
    width: 100% !important;
  }
  figure figcaption span a {
    margin-top: 134% !important;
  }
  figure.snip0051 figcaption h2 {
    font-size: 17px;
    bottom: 71%;
  }
  figure.snip0051 figcaption p {
    font-size: 12px !important;
    top: 28% !important;
    line-height: 20px !important;
  }
}
@media (max-width: 767px) {
  .slider_area .slider_inner .camera_caption div h1 {
    color: #ffffff;
    font: 800 38px/50px "Raleway";
    text-shadow: 0px 0px 4px #2121218c;
  }
  .button_all {
    font: 400 18px/56px "Raleway";
    width: 188px;
  }
  .tittle h2 {
    font: 600 29px/59px "Raleway";
    padding-top: 35px;
  }
  .fz {
    font-size: 43px !important;
  }
  .py-1 {
    padding-top: 10% !important;
    padding-bottom: 10% !important;
  }
  .call_min_area .call_btn a {
    font: 400 18px/65px "Raleway";
  }
  .top_header_area .top_nav li {
    display: inline-block;
  }
  .top_header_area .top_nav li:first-child a {
    padding-left: 15px;
  }
  .top_header_area .top_nav li a {
    line-height: 28px;
  }
  .top_header_area .social_nav {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .top_header_area .social_nav li {
    display: inline-block;
  }
  .top_header_area .social_nav li:first-child a {
    margin-left: 0;
  }
  .navbar-toggle {
    top: 15px;
  }
  .header_aera .navbar-header .navbar-brand {
    padding-top: 30px;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    line-height: 45px;
    color: #000;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li.submenu ul {
    padding-left: 30px;
    background-color: transparent;
  }
  .header_aera
    .navbar-collapse
    .navbar-nav.navbar-right
    li.submenu
    ul
    li
    a:hover,
  .header_aera
    .navbar-collapse
    .navbar-nav.navbar-right
    li.submenu
    ul
    li
    a:focus {
    color: #f6b60b;
  }
  .slider_inner.camera_wrap {
    height: 500px !important;
  }
  .seccion-bg1 .seccion_bg1_row .completed {
    border: 0;
  }
  .footer_about.quick {
    padding-bottom: 50px !important;
  }
  .footer_area .footer_row {
    padding-bottom: 0;
  }
  .slider_area_tow .slider_inner .camera_caption div .container {
    max-width: 726px !important;
  }
  .header_aera_tow .navbar_right_fulid {
    height: 80px;
  }
  .top_header_area.top_header {
    display: none;
  }
  .header_aera .navbar-collapse li .navbar-nav.navbar-right {
    height: 45px;
  }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    background: #fff;
  }
  .footer_area .footer_row .footer_about address .my_address li span {
    padding-left: 0;
  }
  .contact_info.send_message {
    padding-top: 40px;
  }
  .services_content {
    padding-bottom: 50px !important;
  }
  .about_us_area {
    padding-bottom: 180px;
  }
  .gallery_area
    .portfolio_inner_area
    .portfolio_item
    .single_facilities
    .single_facilities_inner:hover
    .gallery_hover
    ul,
  .gallery_area
    .portfolio_inner_area
    .portfolio_item
    .single_facilities
    .single_facilities_inner:focus
    .gallery_hover
    ul {
    right: 8px;
    bottom: -24px;
  }
  .top_header_area {
    background-size: cover;
  }
}
@media (max-width: 689px) {
  .slider_area .slider_inner .camera_caption div {
    width: 100%;
    right: 0;
    margin: 0 auto;
  }
  .slider_area .slider_inner .camera_caption div p {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .slider_area_tow .slider_inner .camera_caption div .container {
    max-width: 100% !important;
  }
}
@media (max-width: 546px) {
  .call_min_area h2 {
    font-size: 40px;
  }
  .call_min_area p {
    font-size: 20px;
  }
  .bannerservices {
    padding: 15% 0 106% !important;
    background: #fff !important;
  }
  #txtoneright {
    left: 22px !important;
    width: 89% !important;
  }
  #txtoneleft {
    top: 314px !important;
    padding-bottom: 34% !important;
    height: 218px;
    position: relative !important;
    color: #fff !important;
    left: 9px !important;
    width: 96% !important;
  }
  .txtpdleft:before {
    border-right: 1px solid #fff !important;
    top: 1px !important;
    right: -5px !important;
    height: 135% !important;
  }
  .txtpdleft {
    width: 45% !important;
    margin: 0 1px 13px 5px !important;
  }
  .txtpdright {
    width: 53% !important;
  }
  #imcuadroleft:before {
    border: none !important;
    content: none;
  }
  .header_aera {
    padding: 10px 0;
  }
  figure.snip0078 img {
    max-width: 100% !important;
  }
  .pt-serv-100 {
    padding-top: 100px !important;
  }
  figure.snip0078 figcaption {
    width: 64% !important;
  }
  a.btn-servi {
    margin-top: 134% !important;
    width: 35% !important;
    height: 10% !important;
    padding-top: 10px !important;
    margin-left: 51% !important;
  }
  a.btn-servi.btn-servi1 {
    margin-top: 134% !important;
    height: 10% !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    color: #000;
    font: 800 17px/40px "Raleway" !important;
    background: #2883c5;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  figure.snip0042 {
    margin: 0 0 20px 0;
  }
  figure.snip1171 {
    max-width: 410px;
  }
  .p00 {
    padding-top: 90px;
  }
  figure.snip0051 figcaption p {
    font-size: 13px !important;
    top: 33% !important;
    line-height: 28px !important;
  }
  figure.snip0051 figcaption h2 {
    font-size: 20px !important;
  }
}
@media (max-width: 740px) and (min-width: 500px) {
  figure.snip0078 img {
    max-width: 107% !important;
  }
  a.btn-servi,
  a.btn-servi.btn-servi1 {
    margin-top: 136% !important;
    height: 8% !important;
  }
  .services_seccion {
    padding-bottom: 100px !important;
  }
  .txtpdright {
    width: 49% !important;
  }
  .txtpdleft {
    width: 48% !important;
  }
  .txtpdleft:before {
    height: 125% !important;
  }
  figure.snip0042 > img {
    width: 100%;
  }
}
@media (max-width: 499px) {
  .gallery_area .portfolio_inner_area ul li:first-child {
    padding-bottom: 10px;
  }
  .our_services_tow .architecture_area ul li {
    width: 50%;
  }
  .call_min_area .call_btn a {
    display: block;
    margin: 0 auto;
  }
  .call_min_area .call_btn a:first-child {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 446px) {
  .slider_area_tow .slider_inner .camera_caption div {
    padding-top: 40px;
  }
  .slider_area_tow .slider_inner .camera_caption div h5 {
    font-size: 18px;
  }
  .slider_area_tow .slider_inner .camera_caption div h3 {
    font-size: 20px;
    padding-top: 10px;
  }
  .services_content {
    padding-bottom: 5% !important;
  }
  .p00 {
    padding-top: 78px;
  }
  figure.snip1171 {
    margin: 0 0 40px 0;
  }
  figure.snip0051 figcaption p {
    font-size: 12px !important;
    top: 31% !important;
    line-height: 24px !important;
  }
  /*  .call_min_area {
    background: #492410 url(../images/socialmedia/grass.png)no-repeat;
    background-position: bottom;
    background-size: auto;}*/
}
@media (max-width: 360px) {
  .slider_area .slider_inner .camera_caption div h3 {
    font-size: 26px;
  }
  .footer_area .copyright_area {
    line-height: 26px;
    padding: 10px 0;
  }
  .call_min_area h2 {
    font-size: 30px;
  }
  .call_min_area p {
    font-size: 16px;
  }
  .footer_area .footer_row .footer_about address .my_address li span {
    padding-left: 30px;
  }
  .slider_area_tow .slider_inner .camera_caption div h3 {
    font-size: 19px;
    padding-top: 10px;
  }
  .services_content {
    padding-bottom: 5% !important;
  }
  .gallery_area
    .portfolio_inner_area
    .portfolio_item
    .single_facilities
    .single_facilities_inner:hover
    .gallery_hover
    ul,
  .gallery_area
    .portfolio_inner_area
    .portfolio_item
    .single_facilities
    .single_facilities_inner:focus
    .gallery_hover
    ul {
    right: 8px;
    bottom: -16px;
  }
}
@media (max-width: 320px) {
  .slider_area_tow .slider_inner .camera_caption div {
    padding-top: 95px;
  }
  .slider_area .slider_inner .camera_caption div h3 {
    font-size: 23px;
  }
  .building_construction_area .building_construction_row .constructing_laft a {
    font-size: 22px;
  }
  .slider_area_tow .slider_inner .camera_caption div {
    padding-top: 60px;
  }
  .slider_area_tow .slider_inner .camera_caption div h3 {
    font-size: 18px;
    padding-top: 10px;
  }
  .services_content {
    padding-bottom: 5% !important;
  }
  .intro_2 {
    right: 42px !important;
    bottom: -221px !important;
  }
  .intro_img {
    width: 46% !important;
    right: 15px;
  }
  .intro_3 {
    margin-left: 16px !important;
  }
  .about_us_area .about_row {
    padding-bottom: 70px;
  }
  .tittle h2 {
    font: 600 29px/59px "Raleway";
    padding-top: 50px;
  }
  .fz {
    font-size: 43px !important;
  }
  .subtittle h2 {
    font: 600 25px/30px "Raleway";
  }
  .bannerservices {
    padding: 15% 0 140% !important;
    background: #fff !important;
  }
  #txtoneright {
    left: 25px !important;
    width: 86% !important;
  }
  #txtoneleft {
    top: 314px !important;
    padding-bottom: 67% !important;
    height: 225px;
    position: relative !important;
    color: #fff !important;
    left: 9px !important;
    width: 96% !important;
  }
  .txtpdleft:before {
    border-right: 1px solid #fff !important;
    top: 11px !important;
    right: -3px !important;
    height: 123% !important;
  }
  .txtpdleft {
    width: 43% !important;
    margin: 0 1px 13px 5px !important;
  }
  .txtpdright {
    width: 53% !important;
  }
  #imcuadroleft:before {
    border: none !important;
    content: none;
  }
  figure.snip0078 img {
    max-width: 110% !important;
  }
  figure.snip0078 figcaption {
    width: 82% !important;
    right: 3px !important;
  }
  a.btn-servi,
  a.btn-servi.btn-servi1 {
    margin-top: 157% !important;
    margin-left: 37% !important;
    width: 40% !important;
  }
  .services_seccion {
    padding-bottom: 130px !important;
  }
  .withlogo {
    width: 83%;
  }
  .slider_area .slider_inner .camera_caption div h1 {
    font: 800 35px/40px "Raleway";
  }
  figure.snip0042 figcaption h2 {
    font-size: 1.5em;
  }
  .footer_area .footer_row .footer_about address .my_address li a i {
    padding-right: 8px;
  }
  .over {
    overflow: auto;
  }
  figure.snip0051 > img {
    width: 130% !important;
  }
  figure.snip0051 figcaption p {
    font-size: 11px !important;
    top: 30% !important;
    line-height: 20px !important;
  }
  figure.snip0051 figcaption h2 {
    right: -34px;
    font-size: 18px !important;
  }
  .respon {
    width: 100%;
  }
}
@media (max-width:500px){
  .logo{
    width: 120px !important;
  }
}
@media (max-width: 1024px) and (min-height: 648px) {
  .call_min_area h2 {
    font: 600 33px "Raleway" !important;
  }
  .header_aera .navbar-collapse .navbar-nav.navbar-right li a {
    padding-left: 13px;
  }
  figure figcaption span a {
    margin-top: 94%;
    width: 100%;
  }
  figure.snip0051 figcaption h2 {
    font-size: 20px;
    bottom: 70%;
  }
  figure.snip0051 figcaption p {
    font-size: 13px;
    top: 30%;
  }
  img.imgrespo {
    width: 90%;
  }
}
@media only screen and (max-width: 384px) {
  figure.snip0051 > img {
    width: 115% !important;
  }
  figure figcaption span a {
    margin-top: 161% !important;
  }
  figure.snip0051 figcaption h2 {
    right: -24px;
  }
}
/*mobiles*/
@media (min-width: 375px) and (max-width: 648px) {
  .widmap {
    width: 100%;
  }
  .imgrespo {
    width: 305px;
  } /*.abouttop{padding-bottom: 350px!important;} */
  .completed {
    border-right: none !important;
  }
  .intro_2 {
    right: 58px !important;
    bottom: 142px !important;
  }
  .intro_img {
    width: 60% !important;
  }
}
@media (min-width: 320px) and (max-width: 648px) {
  .widmap {
    width: 100%;
  }
  .imgrespo {
    width: 305px;
  }
  .iconform {
    left: 7% !important;
    bottom: 29% !important;
  }
  .services_seccion .services_row .feature_img img {
    border-width: 15px 20px 85px 73px !important;
  }
  .navbar-nav {
    margin: 6px 0 !important;
  }
  .top_header_area .social_nav {
    padding-left: 19px !important;
  }
  .slider_area .slider_inner .camera_prev,
  .slider_area .slider_inner .camera_next {
    opacity: 0 !important;
  }
  .completed {
    border-right: none !important;
  }
  .infoservices {
    padding-top: 0px !important;
  }
  .abouttop {
    padding-bottom: 140px !important;
  } /*.abouttop{padding-bottom:290px!important;}*/
  .bgform {
    margin: 0 16px !important;
  }
  .face {
    width: 100%;
  }
}
@media (min-width: 425px) and (max-width: 648px) {
  .widmap {
    width: 100%;
  }
  .imgrespo {
    width: 305px;
  } /*.abouttop {padding-bottom: 385px!important;}*/
  .margmap {
    width: 425px !important;
    margin-left: -19px !important;
  }
  .bgform {
    padding: 26px 20px !important;
    margin: 37px 18px 0 8px !important;
  }
  .iconform {
    bottom: 27% !important;
    left: 6% !important;
  }
  .completed {
    border-right: none !important;
  }
  .intro_2 {
    right: 58px !important;
    bottom: 120px !important;
  }
  .intro_img {
    width: 60% !important;
  }
}
@media (min-width: 375px) and (max-width: 667px) {
  .widmap {
    width: 100%;
  }
  .imgrespo {
    width: 305px;
  }
  .intro_2 {
    right: 58px !important;
    bottom: -317px !important;
  }
  .intro_img {
    width: 50% !important;
  }
}
@media (min-width: 414px) and (max-width: 736px) {
  .widmap {
    width: 100%;
  }
  .imgrespo {
    width: 305px;
  }
  .intro_2 {
    right: 58px !important;
    bottom: -297px !important;
  }
  .intro_img {
    width: 50% !important;
  }
  .intro_1 {
    right: 20px !important;
  }
}
/*tablet*/
@media (min-width: 648px) and (max-width: 768px) {
  .imgrespo {
    width: 305px;
  }
  .bgform {
    padding: 26px 13px;
    width: 360px;
  }
  .mt {
    margin-top: 28px !important;
  }
  .infoservices {
    padding-top: 0px !important;
  }
  .seccion-bg1 .seccion_bg1_row .completed {
    border-right: none !important;
  }
  .about_us_area .about_row img {
    max-width: 100% !important;
  }
}

.dimenvideo {
  width: 100%;
  height: 450px;
  background: #000;
}
