
/* fonts */
@import url(http://fonts.googleapis.com/css?family=Rokkitt:400,700);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,700,500,400italic,500italic,700italic,300,300italic);
/* body */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
/* no-gutter */
@media (min-width: 768px){
  .no-gutter {
    margin-left: 0;
    margin-right: 0;
  }
  .no-gutter > div {
    padding-left: 0;
    padding-right: 0;
  }
}
/* navbar */
@media (min-width: 768px){
  .navbar-nav {
    float:none;
    margin: 0 auto;
    display: table;
    table-layout: fixed;
  }
  .navbar-nav > li:last-child {
    margin-left: 10px;
  }
}
.navbar {
  margin-bottom: 0;
}
.navbar .btn-circle {
  margin: 10px 0 10px 5px;
  padding: 0;
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #012d6b !important;
  text-align: center;
  background-color: #d0d4e5;
  border-radius: 100%;
  border: none;
}
.navbar .btn-circle:hover,
.navbar .btn-circle:focus {
  background-color: #fff !important;
}
.navbar-brand {
  padding: 10px 15px;
}
.navbar-brand > img {
  max-height: 30px;
}
.navbar-inverse {
  border-color: #012d6b;
  background-color: #012d6b;
}
.navbar-inverse .navbar-nav > li > a {
  color: #d0d4e5;
}

.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:focus, .navbar-inverse .navbar-nav>.open>a:hover{
  background-color: #d0d4e5;
  border: 0;
  border-color: #d0d4e5;
  color: #012d6b;
}

.dropdown-menu{
  background-color: #d0d4e5;
  border-radius: 0 !important;
}

/* header */
.header {
  margin-top: 65px;
  margin-bottom: 15px;
  text-align: center;
}
.header .brand {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 50px;
  color: #666;
}
.header .brand:hover,
.header .brand:focus {
  color: #666;
  text-decoration: none;
}
.header .brand > img {
  display: block;
}
.header h2 {
  margin-top: 0;
  margin-bottom: 0;
  color: #012d6b;
  font-family: 'Rokkitt',serif;
  font-weight: 700;
  font-size: 40px;
}
.header .lead {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 16px;
  color: #666;
}
/* home-carousel */
#home-carousel {
  margin-top: 0;
  margin-bottom: 0;
}
#home-carousel .item {
  height: 400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home-carousel .carousel-control {
  font-size: 150px;
  line-height: 400px;
}
/* section */
section {
  padding-top: 50px;
  padding-bottom: 50px;
}
section.gray {
  background-color: #f1f2f2;
}
section .section-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Rokkitt',serif;
  font-weight: 700;
  font-size: 40px;
  color: #012d6b;
  text-align: center;
}
section .btn {
  box-shadow: 0 3px rgba(0,0,0,0.2);
}
section .btn-info {
  background-color: #055A82;
  border-color: #055A82;
}
section .btn-info:hover,
section .btn-info:focus {
  background-color: #1e6b8f;
  border-color: #1e6b8f;
}
/* general */
.container.narrow {
  max-width: 970px;
}
.img-responsive {
  display: inline-block;
}
h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: #222;
}
/* articles */
.article-thumbnail {
  display: block;
  color: inherit;
}
.article-thumbnail:hover,
.article-thumbnail:focus {
  text-decoration: none;
}
.article-thumbnail h4 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
}
.article-thumbnail:hover h4,
.article-thumbnail:focus h4 {
  color: #23527c;
}
.article-thumbnail p {
  line-height: 1.2;
  color: #666;
}
.article-thumbnail .cover {
  position: relative;
}
.article-thumbnail .cover > .fadder {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0);
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
.article-thumbnail:hover .cover > .fadder, 
.article-thumbnail:focus .cover > .fadder {
  background: rgba(255,255,255,0.35);
}
.article-thumbnail .cover > .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  opacity: 0;
  text-align: center;
  color: #012d6b;
  z-index: 20;
  transform: scale(2, 2);
  -webkit-transform: scale(2, 2);
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
.article-thumbnail:hover .cover > .icon, 
.article-thumbnail:focus .cover > .icon {
  opacity: 1;
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}
@media (max-width: 768px) {
  .article-thumbnail {
    margin-bottom: 30px;
  }
}
.articles .article-thumbnail {
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #9d9d9d;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
}
.articles .article-thumbnail:hover,
.articles .article-thumbnail:focus {
  border-color: #23527c;
}
.articles .article-thumbnail h4 {
  height: 34px;
  overflow: hidden;
}
.articles .article-thumbnail p {
  height: 64px;
  overflow: hidden;
}
.article-body {
  margin-top: 15px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
/* home */
.btn-socios {
  display: block;
  color: #666;
  text-align: center;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
}
.btn-socios:hover,
.btn-socios:focus {
  color: #23527c;
  text-decoration: none;
}
.btn-socios .picture {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  border: 5px solid #fff;
  z-index: 1;
  border-radius: 100%;
  max-width: 200px;
  overflow: hidden;
}
.btn-socios .picture > img {
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
.btn-socios:hover .picture > img,
.btn-socios:focus .picture > img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
}
.btn-socios p {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .btn-socios {
    margin-bottom: 30px;
  }
}
/* nosotros */
.nav-socios {
  margin-top: 20px;
  margin-bottom: -50px;
}
.nav-socios.nav-tabs > li > a {
  border: none;
  border-radius: 0;
  color: inherit;
  height: auto;
  font-size:20px;
}
@media (min-width: 992px) {
  .nav-socios.nav-tabs > li > a {
    height: auto;
  }
}
.nav-socios.nav-tabs > li > a:hover,
.nav-socios.nav-tabs > li > a:focus {
  background-color: #f1f2f2;
  border-bottom: 2px solid #f1f2f2;
}
.nav-socios.nav-tabs > .active > a,
.nav-socios.nav-tabs > .active > a:hover,
.nav-socios.nav-tabs > .active > a:focus {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #012d6b;
  background-color: transparent;
}
.nav-socios.nav-tabs .img-circle {
  margin: 0 auto 15px;
  display: block;
  max-width: 75px;
}
.tab-socios .read-more {
  text-transform: uppercase;
  font-size: 12px;
}
.tab-socios .read-more:hover,
.tab-socios .read-more:focus {
  text-decoration: none;
}
.socio-fundador-container{
  margin-top: 30px;
}
.socio-fundador{
  background-color: #f1f2f2;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 300px;
  margin: 0 auto;
}
.socio-fundador img{
  max-width: 75px;
  margin-bottom: 2px;
}
.socio-fundador span{
  display: block;
}
.socio-fundador h4{
  margin-bottom: 5px;
  font-size: 14px;
}
.socio-fundador h3{
  margin-bottom: 25px;
  font-size: 18px;
}
.socio-fundador a{
  color: #012d6b;
  text-decoration: none;
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.socio-fundador a:hover{
  text-decoration: underline;
}
.socio-fundador .nombre, .socio-fundador .imagen{
  display: inline-block;
  vertical-align: middle;
}
.socio-fundador .nombre{
  padding-right: 20px;
}
.trayectoria-j{
  padding-top: 25px;
  padding-bottom: 15px;

}
.btn-inline{
  display: block;
  margin: 0 auto;
  max-width: 200px;
}
.btn-inline .picture{
}
/* apariciones-mediaticas */
.btn-medios {
  position: relative;
  display: block;
  height: 300px;
  background-color: #1f2329;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
}
.btn-medios > span {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.btn-medios:hover,
.btn-medios:focus,
.active .btn-medios {
  background-color: #055A82 !important;
}
/* nuestro-trabajo */
ul.areas-list{
  text-align: center;
	max-width: 720px;
	margin: 0 auto !important;
}
ul.areas-list, ul.areas-list li{
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.areas-list li i{
  background: none no-repeat scroll center center / 50% auto #012d6b;
  border-radius: 50%;
  height: 120px;
  margin: 10px;
  width: 120px;
  display: inline-block;
}
ul.areas-list li{
  display: inline-table;
  margin: 10px 38px;
  width: 140px;
}
ul.areas-list li p {
  text-align: center;
}
.icon-penal{
  background-image: url(../images/derecho-penal.png) !important;
}
.icon-familia{
  background-image: url(../images/derecho-familia.png) !important;
}
.icon-danos{
  background-image: url(../images/derecho-danos.png) !important;
}
.icon-comercial{
  background-image: url(../images/derecho-comercial.png) !important;
}
.icon-empresarial{
  background-image: url(../images/derecho-empresarial.png) !important;
}
.icon-laboral{
  background-image: url(../images/derecho-laboral.png) !important;
}
.icon-ejecuciones{
  background-image: url(../images/ejecuciones-fiscales.png) !important;
}
.icon-contencioso{
  background-image: url(../images/reclamos-administrativos.png) !important;
}
.icon-presentaciones{
  background-image: url(../images/peticiones.png) !important;
}
.icon-negocios{
  background-image: url(../images/area-negocios.png) !important;
}
/* list-contact */
.contact-data {
  padding: 15px;
  background-color: #f1f2f2;
}
.list-contact li+li {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .contact-data {
    margin-top: 30px;
  } 
}
/* footer */
footer {
  background-color: #1f2329;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #9d9d9d;
  font-size: 12px;
  border-bottom: 5px solid #0e1723;
}
footer .brand {
  display: block;
}
footer ul {
  padding-left: 10px !important;
  padding-bottom: 10px;
  border-left: 1px solid #444;
}
footer .title {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
}
footer a {
  color: #9d9d9d;
}
footer a:hover,
footer a:focus {
  color: #fff;
  text-decoration: none;
}
footer .btn-circle {
  margin: 0 0 0 5px;
  padding: 0;
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #1f2329 !important;
  text-align: center;
  background-color: #9d9d9d;
  border-radius: 100%;
  border: none;
}
footer .btn-circle:hover,
footer .btn-circle:focus {
  background-color: #fff !important;
}
@media (max-width: 768px) {
  footer .row > div {
    margin-bottom: 30px;
  } 
}
/* language-link */
.language-link a {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #d0d4e5;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 20px;
}
.language-link a:hover {
  color: #fff;
  text-decoration: none;
}
/* video-player */
.video-player {
  max-width: 750px;
  margin: 30px auto;
}