/*################### 
FUENTES
#####################*/

@font-face {
  font-family: "K2D-Bold";
  src: url("../fonts/K2D/K2D-Bold.ttf");
}

@font-face {
  font-family: "K2D-Regular";
  src: url("../fonts/K2D/K2D-Regular.ttf");
}

@font-face {
  font-family: "K2D-Light";
  src: url("../fonts/K2D/K2D-Light.ttf");
}

@font-face {
  font-family: "K2D-LightItalic";
  src: url("../fonts/K2D/K2D-LightItalic.ttf");
}

@font-face {
  font-family: "Lato-Light";
  src: url("../fonts/Lato/Lato-Light.ttf");
}

@font-face {
  font-family: "K2D-Thin";
  src: url("../fonts/K2D/K2D-Thin.ttf");
}

/*################### 
GENERAL
#####################*/

.header_section_titulo {
  font-family: "K2D-Bold";
}

.header_section_titulo::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 7px;
  background: #af252b;
  bottom: 0;
  left: calc(50% - 25px);
  border-radius: 0 50% / 0 100%;
}

/* #es {
  display: none;
} */

#en {
  display: none;
}

/*################### 
SECCIÓN PORTADA
#####################*/

#portada {
  height: 100vh !important;
  padding-top: 82px !important;
  background: #000000;
}

#portada .portada_titulo_estudio {
  font-size: 100px;
  font-family: "K2D-Bold";
  color: #FFFFFF;
}

#portada .portada_subtitulo_estudio {
  font-size: 50px;
  font-family: "Lato-Light";
  color: #FFFFFF;
}

#portada .portada_titulo {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: #FFFFFF !important;
  font-family: "K2D-Bold";
}

#portada .portada_texto {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: #FFFFFF !important;
  /* font-family: "K2D-Thin"; */
  font-family: "Lato-Light";
}

#portada .boton_portada {
  font-family: "Lato-Light";
  width: 25%;
}

#portada .boton_portada:hover {
  background: #af252c81 !important;
  border: 1px solid #af252b !important;
}

#portada a:focus, #portada a:active {
  outline: none !important;
  box-shadow: none;
}

#portada .carousel-indicators {
  bottom: 20px !important;
}

#portada .carousel, #portada .carousel-inner, #portada .carousel-item, #portada .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#portada .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#portada .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
}

#portada .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#portada .carousel-fade {
  overflow: hidden !important;
}

#portada .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity !important;
}

#portada .carousel-fade .carousel-inner .carousel-item, #portada .carousel-fade .carousel-inner .active.carousel-item-left, #portada .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0 !important;
}

#portada .carousel-fade .carousel-inner .active, #portada .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left, #portada .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1 !important;
  transition: 0.3s !important;
}

#portada .carousel-fade .carousel-inner .carousel-item-next, #portada .carousel-fade .carousel-inner .carousel-item-prev, #portada .carousel-fade .carousel-inner .active.carousel-item-left, #portada .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0 !important;
  transform: translate3d(0, 0, 0) !important;
}

#portada .carousel-control-prev, #portada .carousel-control-next {
  width: 10% !important;
}

#portada .carousel-indicators li {
  cursor: pointer !important;
}

/*################### 
SECCIÓN IMAGEN EFECTO
#####################*/

#imagen_efecto {
  margin-top: -30px !important;
  z-index: 20;
}

.hero-waves {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*################### 
SECCIÓN NOSOTROS
#####################*/

#nosotros {
  background: #FFFFFF;
}

#nosotros p {
  font-family: "K2D-Light";
}

/*################### 
SECCIÓN SERVICIOS INDEX
#####################*/

#servicios_index {
  /* background: url("../img/12.jpg") fixed center center no-repeat;
  background-size: cover; */
}

#servicios_index .service-item {
  background: transparent !important;
  border-radius: 0 !important;
  -webkit-transition: 0.4s !important;
  -o-transition: 0.4s !important;
  transition: 0.4s !important;
}

.service-item i {
  /* color: #FFFFFF !important; */
}

.service-title {
  /* color: #FFFFFF !important; */
}

.service-content {
  background-color: #af252b;
  color: #FFFFFF;
  padding: 15px 30px;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  left: 0;
  bottom: -100%;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.service-item:hover .service-content {
  bottom: 0;
}

.service_titulo {
  font-family: "K2D-Light";
}

.service_texto {
  /* font-family: "K2D-Thin";
   */
  font-family: "Lato-Light";
}

#boton_servicios {
  background: transparent !important;
  font-family: "Lato-Light";
  border: 1px solid #af252b !important;
  color: #333;
}

#boton_servicios:hover {
  background: #af252bc2 !important;
}

/*################### 
SECCIÓN CONTACTO
#####################*/

#contacto input, textarea, select, .custom-file-label {
  /* font-family: "K2D-Thin" !important; */
  font-family: "Lato-Light" !important;
}

#contacto input::placeholder {
  color: #6c757d !important;
}

#contacto button {
  background: transparent !important;
  /* font-family: "K2D-Bold"; */
  font-family: "Lato-Light";
  border: 1px solid #af252b !important;
  color: black;
}

#contacto button:hover {
  background: #af252bc2 !important;
}

#contacto textarea {
  resize: none;
  color: #081d58 !important;
}

#contacto textarea::placeholder {
  color: #6c757d !important;
}

#contacto select {
  text-align-last: center !important;
  color: #6c757d !important;
}

#contacto .custom-file-label {
  color: #6c757d !important;
}

#contacto .form-control, .custom-file-label {
  border: 1px solid #081d58;
  border-style: none none solid none;
  border-radius: 0;
  border-color: #081d58;
  color: #081d58;
}

#contacto .form-control:focus {
  box-shadow: none;
  border-width: 0 0 2px 0;
  border-color: #081d58;
}

#contacto .custom-file-label::after {
  display: none !important;
}

/*################### 
FOOTER
#####################*/

footer {
  background: #000000;
  font-family: "K2D-Regular";
}

footer hr {
  background: #FFFFFF;
}

#logo_coredesign {
  max-width: 70px !important;
}

#logo_footer {
  max-width: 150px !important;
}

/*################### 
MENU
#####################*/

#menu {
  background: transparent;
  font-family: "K2D-Regular";
  color: #FFFFFF !important;
  transition: all 0.7s;
}

#menu_servicios {
  background: #FFFFFF;
  font-family: "K2D-Regular";
  color: #000000 !important;
  transition: all 0.7s;
  box-shadow: 10px 0 15px #081d58;
}

.logo-celular {
  height: 50px !important;
  display: inline-block !important;
}

.menu-scrolled {
  background: #FFFFFF !important;
  box-shadow: 10px 0 15px #081d58;
}

.logo-scroll {
  display: none !important;
}

.logo-scroll-servicios {
  height: 50px !important;
  display: inline-block !important;
}

.logo-scrolled {
  height: 50px !important;
  display: inline-block !important;
}

.item_menu {
  color: #FFFFFF !important;
}

.item_menu_servicios {
  color: rgba(0, 0, 0, .5) !important;
}

.item_menu_scrolled {
  color: rgba(0, 0, 0, .5) !important;
}

.item_menu_scrolled.active {
  color: #081d58 !important;
}

#menu li, #menu-servicios li, #menu-servicios ul li {
  text-decoration: none !important;
  list-style: none !important;
}

#menu ul li ul, #menu-servicios ul li ul {
  opacity: 0 !important;
  transition: all 0.5s ease !important;
}

#menu ul li:hover>ul, #menu ul li ul:hover, #menu-servicios ul li:hover>ul, #menu-servicios ul li ul:hover {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

#menu ul li ul li, #menu-servicios ul li ul li {
  width: 100%;
}

#menu .navbar-toggler, #menu-servicios .navbar-toggler {
  outline: none !important;
  border: 0 !important;
}

.features-dropdown {
  width: 100px !important;
  opacity: 0 !important;
  background-color: #081d58 !important;
  padding-right: 5px !important;
  padding-left: 5px !important;
  transition: .3s ease-in-out !important;
  border-radius: 2px !important;
}

.features-dropdown.on {
  background-color: #081d58 !important;
  position: absolute !important;
  opacity: 1 !important;
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.features-dropdown li {
  margin-top: 10px;
}

.features-dropdown li a {
  color: #FFFFFF !important;
}

.features-dropdown li a:hover {
  color: #FFFFFF !important;
}

/*################### 
BOTONES
#####################*/

.back-to-top {
  position: fixed;
  display: none;
  background: #081d58 !important;
  color: #fff;
  width: 34px;
  height: 34px;
  right: 15px;
  bottom: 15px;
  transition: 0.5s;
  text-decoration: none !important;
  cursor: pointer !important;
  z-index: 11;
}

.back-to-top i, .boton-whatsapp i {
  display: block;
  line-height: 35px;
  color: #fff;
  text-align: center;
}

.boton-afip {
  position: fixed;
  display: none;
  background: #00ACEE !important;
  color: #fff;
  width: auto;
  height: 36px;
  right: 15px;
  bottom: 120px;
  transition: 0.5s;
  text-decoration: none !important;
  z-index: 11;
}

.boton-afip:hover {
  background: #FFFFFF !important;
  color: #00ACEE;
  border: 1px solid #00ACEE;
}

.boton-whatsapp {
  position: fixed;
  display: none;
  background: #4AB969 !important;
  color: #fff;
  width: 34px;
  height: 34px;
  right: 15px;
  bottom: 70px;
  transition: 0.5s;
  text-decoration: none !important;
  z-index: 11;
}

.boton-whatsapp:hover {
  background: #FFFFFF !important;
  color: #4AB969;
  border: 1px solid #4AB969;
}

.boton-whatsapp i:hover {
  color: #4AB969;
}

/*################### 
PRELOADER
#####################*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999;
}

.loader {
  top: 50%;
  width: 50px;
  height: 60px;
  position: relative;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0px 4px 4px #af252b !important;
}

.loader img {
  width: 45px !important;
  height: 73px !important;
}

.loader .spinner-grow {
  background: #ffffff !important;
  width: 3rem !important;
  height: 3rem !important;
}

/*################### 
SECCIONES
#####################*/

.sec-principal-servicios {
  height: 100%;
  padding-top: 82px !important;
}

/*################### 
CONTENEDORES
#####################*/

.cont-opcBtn-servicios {
  /* background-color: rgba(0, 46, 153, 0.7); */
  /* background-color: #3b2566; */
  /* background-color: #333; */
}

.cont-sliderInfo-servicios {
  /* background-color: #b32447; */
  overflow: hidden;
  color: white;
  height: auto !important;
  /* min-height: calc(100vh - 70px - 130px) !important; */
}

.cont-btn-consulta-servicios {
  /* background-color: #333; */
  background-color: #222;
}

.slider-servicios {
  width: 100% !important;
  height: auto !important;
  min-height: calc(100vh - 245px) !important;
}

.serv1 {
  display: flex;
}

.serv2, .serv3, .serv4, .serv5, .serv6, .serv7, .serv8, .serv9, .serv10 {
  display: none;
}

.banner-zoom {
  background-image: url("../img/bannerzoom.png");
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* #####################
SLIDER SERVICIOS 
########################*/

.bg-blur {
  width: 90%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  border-radius: 5px;
  padding: 20px 0;
}

.contenido-slider-servicios {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  background-color: #b32447;
  font-family: "lato-l";
}

.contenido-slider-servicios h2 {
  text-align: center;
  padding-bottom: 50px;
  font-family: 'lato-b';
}

.cont-sl1-auditoria {
  width: 70%;
  height: auto;
  padding: 0 50px;
}

.cont-sl1-auditoria h1 {
  text-align: center;
  padding-bottom: 50px;
  font-family: 'lato-b';
}

.cont-sl1-auditoria p {
  text-indent: 1em;
  font-size: 25px;
  padding: 0 15px;
  text-align: justify;
}

.cont-sl2-auditoria {
  width: 100%;
  height: auto;
}

.cont-sl2-auditoria p {
  font-size: 20px;
  text-indent: 1em;
  text-align: justify;
  width: 80%;
}

.cont-sl2-auditoria h3 {
  text-align: center;
  padding-bottom: 40px;
  font-family: 'lato-b';
}

.item1-sl2-auditoria {
  background-color: #555;
  height: 50%;
  border-radius: 5px;
  padding-top: 50px;
}

.item2-sl2-auditoria {
  height: 50%;
  background-color: #333;
  padding-top: 50px;
}

.cont-sl2-auditoria button {
  background-color: #333;
}

.cont-sl3-auditoria {
  /* width: 90%; */
  height: auto;
  padding: 0 50px;
}

.cont-sl3-auditoria p, .cont-sl3-auditoria ul {
  font-size: 20px;
}

.cont-sl3-auditoria button {
  background-color: #333;
}

.cont-sl4-auditoria {
  width: 90%;
}

.cont-sl1-admin {
  height: 100%;
  width: 50%;
}

.cont-sl1-admin p {
  width: 90%;
  text-indent: 1em;
  font-size: 25px;
  text-align: justify;
  margin: 0 auto 20px auto;
}

.cont-sl2-admin {
  width: 50%;
  height: 100%;
  font-size: 23px;
  text-align: justify;
}

.cont-sl2-admin h2 {
  text-align: left;
  text-indent: 1em;
}

.cont-sl1-contable {
  width: 50%;
  height: auto;
}

.cont-sl1-contable p {
  width: 80%;
  font-size: 25px;
  text-align: justify;
  margin: auto;
  text-indent: 1em;
}

.cont-sl2-contable {
  width: 50%;
  height: 100%;
  padding: 50px 0;
  background-color: #333;
  /* background-image: url("../img/contabilidad.jpg");
  background-size: cover;
  background-position: center; */
}

.cont-sl2-contable ul {
  list-style: none;
  width: 85%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cont-sl2-contable span {
  width: 15%;
  font-size: 50px;
  margin-left: 20px;
}

.cont-sl2-contable ul li i {
  padding-right: 1em;
}

.item1-sl2-contable {
  /* background-color: #1a1a1a; */
  padding: 10px 0;
}

.item2-sl2-contable {
  /* background-color: #333333; */
  padding: 10px 0;
}

.item3-sl2-contable {
  /* background-color: #595959; */
  padding: 25px 0;
}

.item4-sl2-contable {
  /* background-color: #b3b3b3; */
  padding: 25px 0;
}

.cont-sl1-impositivo {
  width: 50%;
  height: auto;
}

.cont-sl1-impositivo p {
  width: 80%;
  font-size: 22px;
  text-align: justify;
  margin: auto;
  text-indent: 1em;
}

.cont-sl2-impositivo {
  width: 50%;
  background-image: url("../img/servmono.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  /* background-color: #333; */
}

.cont-sl2-impositivo h3 i, .cont-sl3-impositivo h3 i, .cont-sl4-impositivo h3 i {
  margin-left: 10px;
}

.cont-sl4-impositivo ul {
  width: 100%;
  list-style: none;
  font-size: 19px;
}

.cont-sl2-impositivo ul li i, .cont-sl3-impositivo ul li i, .cont-sl4-impositivo ul li i {
  padding-right: 1em;
}

.cont-sl2-impositivo button {
  background-color: #333;
  width: 50% !important;
}

.cont-sl2-impositivo button:hover {
  background-color: #333;
  width: 50% !important;
  background-color: rgba(0, 46, 153, 0.9);
  font-weight: bold;
}

.cont-sl3-impositivo {
  width: 50%;
  background-image: url("../img/servmonosoc.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.cont-sl4-impositivo {
  width: 50%;
  /* background-image: url("../img/resp_insc.jpg");
  background-position: top center;
  background-size: cover; */
  background-color: #333;
  height: 100%;
}

.cont-sl3-impositivo ul, .cont-sl2-impositivo ul {
  width: 100%;
  list-style: none;
  font-size: 17px;
}

.cont-sl1-proyinv {
  width: 50%;
  font-size: 20px;
}

.cont-sl2-proyinv {
  width: 50%;
  height: 100%;
  font-size: 20px;
  background-image: url("../img/proyinv.jpg");
  background-size: cover;
  background-position: bottom center;
}

.cont-sl1-proyinv h2 {
  text-align: center;
  text-indent: 1em;
}

.cont-sl1-proyinv p {
  width: 80%;
  text-align: justify;
  margin: auto;
  text-indent: 1em;
}

.cont-sl1-laboral {
  /* margin: auto 0; */
}

.cont-sl2-proyinv ul li i {
  padding-right: 10px;
}

.cont-sl1-laboral ul {
  list-style: none;
}

.cont-sl1-laboral ul li i {
  padding-right: 1em;
}

.cont-sl1-asepy, .cont-sl2-asepy {
  padding: 0 30px;
  margin: 30px 0 10px 0;
  height: auto;
}

.cont-sl1-asepy p, .cont-sl2-asepy p {
  text-indent: 1em;
  width: 90%;
}

.cont-sl2-asepy {
  background-image: url("../img/servasepyme.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.cont-sl2-asepy ul {
  list-style: none;
  padding-inline-start: 0;
}

.cont-sl2-asepy ul li i {
  padding-right: 10px;
}

.cont-sl1-sociedad, .cont-sl2-sociedad {
  padding: 30px;
  /* margin: 30px 0 30px 0; */
  height: 100%;
}

.cont-sl1-coop, .cont-sl2-coop {
  height: 100%;
}

.cont-sl2-coop {
  background-color: #333;
}

.controlIzq-sld-servicios {
  position: absolute;
  left: 10px;
  font-size: 50px;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
}

.controlDer-sld-servicios {
  position: absolute;
  right: 10px;
  font-size: 50px;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
}

/* ################
BOTONES 
###################*/

.btn-servicios {
  font-size: 15px !important;
  background-color: rgba(0, 46, 153, 0.8);
  border: none;
  border-right: solid 1px #fff !important;
}

.btn-servicios:hover {
  background-color: #333;
  /* background-color: #b32447; */
}

.btn-contacto-servicios {
  width: 30% !important;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: transparent;
  border: 2px solid #b32447;
  text-transform: uppercase;
  color: white;
}

.btn-contacto-servicios:hover {
  background-color: #b32447;
  color: white;
}

.btn-verDescServ-servicios {
  width: 10% !important;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-verDescServ-servicios:hover {
  background-color: rgba(0, 46, 153, 0.9);
  font-weight: bold;
}

.padd-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.grecaptcha-badge {
  display: none !important;
}

/* MEDIA PROPIERTIES */

@media screen and (min-width: 1024px) {
  #portada .carousel-control-prev, #portada .carousel-control-next {
    width: 5%;
  }
  .contenido-slider-servicios p, .contenido-slider-servicios ul {
    font-size: 18px !important;
  }
  .cont-sl2-admin {
    margin: 40px 0;
  }
  .cont-sl1-contable {
    width: 50%;
  }
  .cont-sl2-contable {
    width: 50%;
  }
  .cont-sl1-auditoria {
    height: 100%;
    padding: 0;
  }
  .cont-sl1-auditoria p {
    font-size: 25px !important;
  }
  .cont-sl1-proyinv, .cont-sl2-proyinv {
    padding: 40px 0;
  }
}

@media screen and (max-width: 992px) {
  .menu {
    background-color: #FFFFFF !important;
    transition: all 0.5s !important;
  }
  .item_menu {
    color: rgba(0, 0, 0, .5) !important;
  }
  #portada p {
    width: 100% !important;
  }
  #portada .portada_titulo_estudio {
    font-size: 29px;
  }
  #portada .portada_subtitulo_estudio {
    font-size: 19px;
  }
  #portada .portada_titulo {
    font-size: 29px;
  }
  #portada .portada_texto {
    font-size: 15px;
  }
  #portada .boton_portada {
    font-size: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 840px) {
  .contenido-slider-servicios {
    overflow: scroll;
  }
  .contenido-slider-servicios h1, .contenido-slider-servicios h2, .contenido-slider-servicios h3 {
    font-size: 25px !important;
  }
  .contenido-slider-servicios p {
    font-size: 23px !important;
  }
  .contenido-slider-servicios ul {
    font-size: 20px !important;
  }
  .cont-sl1-admin p, .cont-sl2-admin ul {
    font-size: 18px !important;
  }
  .btn-verDescServ-servicios {
    width: 30% !important;
  }
  .cont-sl1-contable, .cont-sl2-contable {
    width: 100%;
    height: auto;
    background-image: none;
    background-color: #b32447;
  }
  .cont-sl1-contable {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .item1-sl2-contable, .item2-sl2-contable, .item3-sl2-contable, .item4-sl2-contable {
    padding-left: 90px !important;
  }
  .cont-sl1-auditoria {
    height: 100%;
    padding: 0;
  }
  #cont-sl4-serv {
    height: 900px !important;
  }
  .cont-sl1-impositivo, .cont-sl2-impositivo, .cont-sl3-impositivo, .cont-sl4-impositivo {
    font-size: 18px;
  }
  .cont-sl3-impositivo, .cont-sl2-impositivo {
    height: auto;
    overflow-y: scroll !important;
  }
  .cont-sl4-impositivo {
    background-image: none;
    background-color: #333;
  }
  .cont-sl3-impositivo {
    background-image: none;
    background-color: rgb(179, 36, 71);
  }
  .cont-sl1-proyinv, .cont-sl2-proyinv {
    width: 100% !important;
    font-size: 95%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cont-sl1-sociedad, .cont-sl2-sociedad {
    height: auto;
  }
  .cont-sl1-coop, .cont-sl2-coop {
    height: auto;
  }
  .cont-sl2-asepy {
    /* background-image: none;
    background-color: #333; */
  }
}

@media screen and (max-width: 575.98px) {
  #portada .portada_titulo {
    font-size: 20px;
  }
  #portada .portada_texto {
    font-size: 12px;
  }
  .contenido-slider-servicios p, .contenido-slider-servicios ul {
    font-size: 15.6px !important;
  }
  .btn-contacto-servicios {
    width: 50% !important;
  }
  .cont-sl1-admin, .cont-sl2-admin {
    width: 100%;
    height: auto;
    padding: 40px 20px !important;
  }
  .cont-sl2-admin ul {
    padding: 0 30px;
  }
  .item1-sl2-contable, .item2-sl2-contable, .item3-sl2-contable, .item4-sl2-contable {
    flex-wrap: wrap;
    padding-left: 0 !important;
  }
  .cont-sl2-contable span i {
    font-size: 90%;
    padding-bottom: 20px;
  }
  .cont-sl2-contable span {
    width: 100%;
    text-align: center;
  }
  .cont-sl2-auditoria p {
    text-align: left;
    width: 100%;
  }
  .cont-sl1-impositivo, .cont-sl2-impositivo, .cont-sl3-impositivo, .cont-sl4-impositivo {
    width: 100%;
    height: auto;
  }
  .item1-sl2-auditoria, .item2-sl2-auditoria {
    background-color: transparent;
  }
  .cont-sl3-auditoria {
    padding-top: 40px;
  }
  .cont-sl3-auditoria h2 {
    padding-top: 40px;
  }
  .cont-sl1-proyinv p, .cont-sl2-proyinv ul {
    text-indent: 1em !important;
    text-align: left;
  }
  .banner-zoom {
    background-image: url('../img/bannerzoom_resp.png');
    background-size: contain;
  }
}

/* FUENTES */

@font-face {
  font-family: 'lato-t';
  src: url("../fuentes/Lato-Thin.ttf");
}

@font-face {
  font-family: 'lato-ti';
  src: url("../fuentes/Lato-ThinItalic.ttf");
}

@font-face {
  font-family: 'lato-l';
  src: url("../fuentes/Lato-Light.ttf");
}

@font-face {
  font-family: 'lato-r';
  src: url("../fuentes/Lato-Regular.ttf");
}

@font-face {
  font-family: 'lato-b';
  src: url("../fuentes/Lato-Bold.ttf");
}