/***************************
Custom Etnyka
****************************/

/*** FUENTES ****/

/*@font-face {
font-family: 'Cormorant Garamond';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-Regular.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Italic';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-Italic.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Light';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-Light.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Light Italic';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-LightItalic.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Medium';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-Medium.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Medium Italic';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-MediumItalic.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond SemiBold';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-SemiBold.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond SemiBold Italic';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-SemiBoldItalic.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Bold';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-Bold.woff') format('woff');
}


@font-face {
font-family: 'Cormorant Garamond Bold Italic';
font-style: normal;
font-weight: normal;
src: url('../fonts/CormorantGaramond-BoldItalic.woff') format('woff');
} */

@font-face {
	font-family: 'avenir';
	src:url('../fonts/avenir-book.eot?#iefix-rdmvgc') format('embedded-opentype');
	src:url('../fonts/avenir-book.woff') format('woff'),
		url('../fonts/avenir-book.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'avenir-medium';
	src:url('../fonts/avenir-medium.eot?#iefix-rdmvgc') format('embedded-opentype');
	src:url('../fonts/avenir-medium.woff') format('woff'),
		url('../fonts/avenir-medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'avenir-bold';
	src:url('../fonts/avenir-bold.eot?#iefix-rdmvgc') format('embedded-opentype');
	src:url('../fonts/avenir-bold.woff') format('woff'),
		url('../fonts/avenir-bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'avenir-heavy';
	src:url('../fonts/avenir-heavy.eot?#iefix-rdmvgc') format('embedded-opentype');
	src:url('../fonts/avenir-heavy.woff') format('woff'),
		url('../fonts/avenir-heavy.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/*h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'avenir', serif;
} */

b, strong {
font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
}


h5, .h5, h6, .h6 {
  font-family: 'avenir-bold', serif;
  font-weight: 100;
}

body, p, span {
  font-family: 'Cormorant Garamond', serif;
  color: #005153;
}

p {
  font-size: 24px;
  line-height: 28.6px;
  font-weight: 600;
  text-rendering: optimizelegibility;
}

section:not(.page-title--animate) p:not(.text-center) {
  text-indent: 20px;
}

body {
  background:#fff;
  font-size: 22px;
  line-height: 28.6px;
  color:#005153;
  /*overflow: hidden !important;*/
}

/*** GENERAL ****/

::-webkit-scrollbar {
    display: none;
}

.nav-bar.nav--fixed:not(.no-animation) {
    -webkit-animation: fadein .5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein .5s; /* Firefox < 16 */
        -ms-animation: fadein .5s; /* Internet Explorer */
         -o-animation: fadein .5s; /* Opera < 12.1 */
            animation: fadein .5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/*** EFECTO BURNS ON HOVER ***/
.burnsTest {
  overflow: hidden;
  display: inline-block;
  width: 600px;
  min-height: 400px;
}

.burnsTest img {
  -webkit-transition-duration: 25s;
  transition-duration: 25s;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 25% 100%;
  transform-origin: 25% 100%;
   width: 100%;
  height: auto;
  -webkit-filter:  saturate(0.6) brightness(1.2);
  filter:  saturate(0.6) brightness(1.2);
  
}

.burnsTest img:hover {
  -webkit-transform: scale(1.3) rotate(3deg);
  transform: scale(1.3) rotate(3deg);
  -webkit-transform-origin: 25% 25%; 
  transform-origin: 25% 25%; 
  -webkit-filter:  saturate(1.4) brightness(1.2);
  filter:  saturate(1.4) brightness(1.2);
}

h5.title {
    text-transform: uppercase;
    font-weight: 600;
    color: #005153;
    font-size: 34px;
  line-height: 40px;
  margin-bottom: 28px;
  font-family: 'Cormorant Garamond', serif;
}
#home h5.title {
    font-weight: 400;
}
h6.title {
    text-transform: uppercase;
    font-weight: 900;
    color: #005153;
    font-size: 22px;
  line-height: 32px;
  font-family: 'Arial-medium', serif;
}

.accordion__title .h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
}
.accordion li.active .accordion__title {
    background: #005153;
    border-bottom: 1px solid #dfdfdf;
}
.accordion li .accordion__title{
    background: #f2f2ef;
}
.accordion li .accordion__content p{
    font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.accordion li .accordion__content :first-child {
    padding: 0.725em;
}

.bg--white .btn.btn--primary {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    border-radius: 0px;
    background: #005153;
    -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0);
  box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0);
  border: 1px solid #005153;
}

.bg--white .btn.btn--primary:hover, .bg--white .btn.btn--primary:active {
    background: #005153;
    
  -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.5);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.5);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.5);
  border: 0px solid #005153;
}
.bg--white .btn.btn--primary:hover .btn__text, .bg--white .btn.btn--primary:active .btn__text{
  color:#005153;
}
.bg--white p, .bg--white span, .bg--white ul, .bg--white a:not(.btn) {
    color: #005153;
}
.bg--white h1, .bg--white h2, .bg--white h3, .bg--white h4, .bg--white h5, .bg--white h6, .bg--white i {
    color: #005153;
}
.feature-1 p {
    color: #fff;
}
.testimonial-2 h5 {
    color: #005153;
}
.info_perfil p {
    color: #005153;
}

#negligencias h5 {
    color: #005153;
}
#caso_exito h5 {
    color: #005153;
}
.card-4 .card__body h6:first-child {
    color: #005153;
}
.card__lower span {
    color: #005153 !important;
}
.pagination li a {
    color: #005153 !important;
}
.cover .btn.btn--primary {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    border-radius: 0px;
    background: none;
  border: 1px solid #005153;
}
.cover .btn.btn--primary .btn__text{
   color: #005153;
   font-weight: 600;
}
.cover .btn.btn--primary:hover, .cover .btn.btn--primary:active{
    background: #fff;
    border: 1px solid #fff;
   -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
}
.cover .btn.btn--primary:hover .btn__text{
   color: #005153;
   font-weight: 600;
}
.bg--primary {
    background: #000A1A;
}
.bg--primary-1 {
    background: #005153 ;
}

.lead { 
  font-size: 1.3em;
}

#juanxiii p.lead.quote {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
font-size: 34px;
line-height: 36px;
font-weight: 700;
}

.bg--secondary-2 {
  background: #f2f2ef;
}

h4.title {
    font-family: 'avenir-bold', serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
  color: #005153;
}

.feature-1 p {
    min-height: inherit ;
}
.video-play-icon {
  width: 4.5em;
 height: 4.5em;
}
.video-play-icon:not(.video-play-icon--dark)::before {
    
}
.modal-trigger img.icon-videolawyer {
    opacity: 1;
    width: 100%;
   height:auto;
  -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}
.modal-trigger img.icon-videolawyer:hover {
    opacity: 0.75;
   width:90%;
}
#testimonios .modal-trigger img.icon-videolawyer, #info_testimonio .modal-trigger img.icon-videolawyer{
  max-width: 32px;
}
.background-image-holder img.icon-videolawyer {
    display: inherit;
}

.bg--primary-1 .btn.btn--primary {
  background: #fff;
  border: 1px solid #fff;
  color: #005153 ;
  border-radius: 0px;
  -moz-box-shadow:    0px 0px 0px 5px rgba(255,255,255,0.5);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.5);
  box-shadow:         0px 0px 0px 5px rgba(255,255,255,0.5);
  font-family: 'avenir-heavy', serif ;
}
.bg--primary-1 .btn.btn--primary:hover {
  background:#005153 ;
  color: #fff;
  -moz-box-shadow:    0px 0px 0px 0px rgba(255,255,255,0.5);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
  box-shadow:         0px 0px 0px 0px rgba(255,255,255,0.5);
}

a.btn {
  -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
  padding-top: 0.85em;
  padding-bottom: 0.65em;
  padding-right: 3.25em;
  padding-left: 3.25em;
  font-family: 'avenir-heavy', serif ;
}
a.btn.btn--small {
  padding-top: 0.65em;
  padding-bottom: 0.45em;
  padding-right: 1.25em;
  padding-left: 1.25em;
}
.btn.btn--small .btn__text{
  font-family: 'avenir-heavy', serif ;
  font-size: 12px;
  color: #fff;
}
.btn .btn__text {
  font-size: 16px;
  font-family: 'avenir-heavy', serif ;
  color: #fff;
}
.blog-snippet-1 a.btn {
  background: #fff;
  border: 1px solid #fff;
  color: #005153 ;
  border-radius: 0px;
  -moz-box-shadow:    0px 0px 0px 5px rgba(0, 109, 124,0.5);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.5);
  box-shadow:         0px 0px 0px 5px rgba(0, 109, 124,0.5);
}
.blog-snippet-1 a.btn:hover {
  background:#005153 ;
  -moz-box-shadow:    0px 0px 0px 0px rgba(255,255,255,0.5);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
  box-shadow:         0px 0px 0px 0px rgba(255,255,255,0.5);
  border: 1px solid #005153 ;
}
.blog-snippet-1 a.btn .btn__text:hover {
   color: #ffffff;
}
.blog-snippet-1  {
   background: #f8f8f8;
}
.blog-snippet-1 .card__body h6.text-right {
  font-size: 12px;
}
.blog-snippet-1 .card__body h5 {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif ;
  line-height: 28.6px;
}
.blog-snippet-1 .card__body .card__title {
  margin-bottom: 8px;
}


.pos-vertical-center {
    top: 55%;
}
.blog {
  background: #f8f8f8;
}
.sidebar__widget.bg--white{
  background: #f8f8f8;
}



/*** BOTON SMOOTH SCROLL DOWN ****/
.link_scroll {
  background: none;
  width: 100px;
  position: absolute;
  right: -6%;
  top: 198%;
}
.link_scroll span {
    font-size: 20px;
}



@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

[data-overlay]::before {background: #000A1A;}
section.page-title .pos-vertical-center p {font-size: 26px; line-height: 36px; margin-bottom: 0px;}
.bg--grey {background-color: #f8f8f8;}
.color-primary {color:#005153;}
#cta-telefono-1 p {line-height:2.25em; font-size: 18px;color: #000;}
.feature h5.title {margin-bottom: 8px;}

.uppercase {text-transform: uppercase;}
.resume {color: #333; font-weight: 100; font-family: 'avenir-medium', serif; font-size: 18px;}
section#cta--telefono {
  background-color: #f2f2ef;
  padding:90px;
}
section#cta--telefono a{
color: #005153;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}
section#cta--telefono p.lead{
font-size: 22px;
line-height: 28.6px;
font-variant-numeric: lining-nums;
color: #005153;
font-weight: 600;
  
}
ul.listado {
  margin-left: 32px;
  list-style-type: square;
}
p.quote-servicios {
  text-align: center; font-style: italic; font-size: 17px;color: #000;
}

/*** NAVEGACIÓN ****/
.notification[class*="col-"]{
background: rgba(0, 0, 0, 0.5);
width:100%;
height: 100%;
}

.nav-slide.notification--reveal:not(.notification--dismissed) .nav-slide__content {
    animation: slidein 1s ease .5s forwards;
    -webkit-animation: slidein 1s ease .5s forwards;
}

.notification.notification--reveal[data-animation="from-right"] {
    animation: fadeIn .5s ease-in-out .10s forwards;
  -webkit-animation: fadeIn .5s ease-in-out .10s forwards;
  -moz-animation: fadeIn .5s ease-in-out .10s forwards;
  -o-animation: fadeIn .5s ease-in-out .10s forwards;
  -ms-animation: fadeIn .5s ease-in-out .10s forwards;
}

@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}


/*.notification:before {
background: rgba(0, 0, 0, 0.85);
content: '';
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
} */
.nav-slide__content {
   float:right;
    max-width: 600px;
	padding: 42px;
    background: rgba(255, 255, 255, 1);
}
.nav-slide .nav-slide__content {
  right: 0px;
  left: inherit;
}
.nav-slide__content ul.menu span.h3{
	font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: rgb(0, 81, 83, 1);
  
}
.nav-slide__content ul.menu span.h3.active::before{
  position: absolute;
  top: 14px;
  right: -15%;
  content: "";
  width: 15px;
  height: 3.5px;
  background: #fff;
}
.notification .notification-close-cross {
    width: 70px;
    height: 30px;
    background: none;
   right: 1.5em;
}
.notification .notification-close-cross::before {
    content: 'Cerrar \2715';
    font-size: 10px;
    font-family: 'avenir', serif;
    font-weight: 100;
    text-transform: uppercase;
    color: rgb(0, 81, 83, 1);
}
.menu-footer p{
    font-family: 'avenir', serif ;
    font-weight: 100;
    font-size: 32px;
    text-align: right;
    padding-bottom: 0px;
    margin-bottom: 24px;
}

.menu-footer a {
   color: rgb(0, 81, 83, 1) !important;
}
.menu-footer{
    padding: 42px;
}
.nav-slide .pos-bottom.menu-footer {
  bottom: 1.625em;
}
.nav-slide .menu li a span {
    text-transform: none;
}
.nav-bar .logo {
    max-height: 70%;
}
.nav-bar .phone, .nav-bar .email {
  font-size: 16px;
  padding:0px 8px;
} 
.nav-bar .phone a, .nav-bar .email a{
  text-decoration: none;
} 
.nav-bar .phone a, .nav-bar .email a {
  color: #fff;
  opacity: 1;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  font-family: 'avenir', serif ;
} 
.nav-bar .phone a:hover, #home  .nav-bar .email a:hover{
  opacity: 0.5;
} 
.nav-bar .email a{
  margin-right: 12px;
} 
.nav-bar.nav--absolute {
    border-bottom: 0px solid rgba(255, 255, 255, 0.1);
}
.nav-bar {
    box-shadow: none;
  margin-top: 16px;
}
.nav-bar.nav--fixed {
    box-shadow: inherit;
  margin-top: 0px
}

.nav-bar.nav--fixed {
    padding-left:0px;
}

.nav-bar .btn--menu .nombre{
  font-family: 'avenir-bold', serif ;
  font-weight: 100;
  font-size: 12px;
  text-transform: uppercase !important;
  padding-right: 6px;
  padding-left:3px;
  color: #fff;
  opacity: 1;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  margin-bottom: 0px;
  text-transform: none;
}
.nav-bar .btn--menu {
  border: 1px solid #fff; 
  padding: 0px 11px;
  min-width:110px;
}

.nav-bar.nav--fixed .btn--menu .h6.nombre{
  font-size: 10px;
}
.nav-mobile-toggle {
    opacity: 1;
}
.nav-mobile-toggle:hover {
    opacity: 0.5;
}
.bg--dark {background: #000313}
[data-overlay]::before {background: #000A1A;}

.nav-mobile-toggle {
  position: relative;
  right: 0;
}

.nav--fixed .nav-mobile-toggle {
  top: 0;
}

.nav--fixed .nav-mobile-toggle {
    line-height: 40px;
}

.nav--fixed .btn--menu{
    min-width: 96px !important;
}

.nav--fixed .nav-mobile-toggle i {
    margin-top: 4px;
right: 29px;
}
.nav--fixed.nav-bar .h6.nombre {
 vertical-align: text-bottom;
}

.nav--fixed .menu {
  padding-top: 0;
}

.nav-mobile-toggle i {
  display: inline-block;
  margin-top: 19px;
  position: absolute;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-right: 3px; 
  padding-left: 6px;
    
  font-size: 30px;
}

.nav-mobile-toggle div{
  display: inline-block;
}
.nav-bar.nav--fixed phone a, .nav-bar.nav--fixed email a {
  opacity:1;
}

.nav-bar.nav--fixed .phone a:hover, #home .nav-bar.nav--fixed .email a:hover{
  opacity:0.5;
}
.nav-bar.nav--fixed .h6.nombre {
  color: #fff;
}
.loader::before {
    background-color: #005153;
}

.icon-Align-Right:before {
    color: #fff;
}
.nav-bar.nav--fixed:not(.bg--dark):not(.bg--primary):not(.bg--white) {
    background: #005153;
}

.btn_conocenos {
  margin-left: 0 !important;
}

.custom_nav > div {
    display: inline-flex;
    align-items: center;
}

 .menu-module .menu > li a { 
    color: #fff;  
}

.nav-slide .menu li a{
  color: rgb(0, 81, 83, 1);
}


section.space-top--sm, footer.space-top--sm {
    padding-top: 4.33333333em;
}

.page-title--animate h1 {
  font-weight: 100;
  font-family: 'avenir', serif ;
  font-size: 3.5em;
  letter-spacing: -4px;
}

/****  HOME *****/
/*#home .height-30 h1.hero {
  line-height:36px;
  color: #fff;
   font-weight: 900;
   font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
} */

.sc_quote { height: 113px; }

 #home .page-title h2.lead {
    font-size: 55px;
 }
 #home .page-title p.lead {
     font-size: 26px;
     line-height: 32.6px;
     font-variant-numeric: lining-nums;
     color: #005153;
     font-weight: 600;
 }
 #home .page-title.bg--white, #home .testimonios--video.bg--white  {
    background: #f2f2ef;
 }
 #home section.page-title.bg--white {
     padding-bottom: 3em;
 }
 #home .page-title.bg--white .btn.btn--primary, #home #entrevista .btn.btn--primary {
     background: none;
     border: 1px solid #005153;
 }
 #home .page-title.bg--white .btn.btn--primary .btn__text, #home #entrevista .btn.btn--primary .btn__text{
     color: #005153;
 }
 #home .page-title.bg--white .btn.btn--primary:hover, #home #entrevista .btn.btn--primary:hover{
     background: #005153;
 }
 #home .page-title.bg--white .btn.btn--primary:hover .btn__text, #home #entrevista .btn.btn--primary:hover .btn__text{
    color: #f2f2ef;
 }

.testimonios--video p.quote {
     font-weight: 600;
     line-height: 24px;
     font-size: 20px;
 }
.testimonios--video .testimonio--texto p.subtitle {
      font-size: 16px;
     font-weight: 400;
     line-height:12px
 }
 #home .page-title-2 h1.hero {
     font-size: 65px;
     font-family: 'Cormorant Garamond', serif;
     font-weight: 900;
 }
 #home #eldespacho.bg--white  {
    background: #f2f2ef;
 }
 #home #.bg--white  {
    background: #f2f2ef;
 }
 #home.body {
     background: #f2f2ef;
 }
 #home section.space--md.testimonios--video {
    padding-bottom: 7.75em;
}
 #home .balanza p.lead.quote {
    color: #fff;
    font-size: 34px;
    line-height: 36px;
    font-weight: 700;
 }

#home .slider .btn.btn--primary {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    border-radius: 0px;
    background: none;
  border: 1px solid #fff;
}
#home .slider .btn.btn--primary .btn__text{
   color: #fff;
   font-weight: 100;
  font-family: 'avenir-heavy', serif ;
}

#home .slider .btn.btn--primary:hover, .cover .btn.btn--primary:active{
    background: #fff;
    border: 1px solid #fff;
   -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
}
#home .slider .btn.btn--primary:hover .btn__text{
   color: #005153;
}


#home  h2.lead {
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
}
#home .slider [data-overlay]::before{
  color:#005153;
}
#home .slider h1.hero {
  font-size: 65px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  color: #fff;
}
#home .space--sm.bg--primary-1 {
  padding-top: 2.33333333em;
padding-bottom: 2.33333333em;
}
/*#home p.lead.quote {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
} */
.testimonios--video .video-cover {
  height: 280px;
}
.testimonio--texto {
  padding: 24px;
  text-align: center;
}
.testimonio--texto p.quote {
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: .625em;
}
.testimonio--texto p.name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #005153;
  font-family: 'avenir-medium', serif ;
}
.testimonio--texto p.subtitle {
  font-size: 18px;
  font-weight: 100;
}
.quote span.name {
  font-size: 22px;
  font-weight: 100;
  margin-bottom: 0px;
  color: #fff;
  font-family:'avenir-medium', serif ;
}
#home .quienes-somos .video-cover {
  height: 614px;
}
#home .quienes-somos .video-cover .modal-instance {
  top: 50%;
}
#home .testimonios--video .video-cover .modal-instance {
  top: 45%;
  left:50%;
}
.header_quote {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0px;
    font-size: 24px;
    color: #fff ;
    font-weight: 400;
    line-height: 1.2;
}
#home .height-40 {
  min-height: 500px;
}

.texto_char a.btn { padding-bottom: 0.85em !important; }




/*** ESTILOS HOME - TRANSICIONES ***/


#main_carousel { padding: 0; background:#005153; }

.areas_home h5.text-center {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.areas_home a img{
    transition: 0.5s linear;
    -webkit-transition: all 0.8s ease-in-out;
     -moz-transition: all 0.8s ease-in-out; 
     -ms-transition: all 0.8s ease-in-out;
     -o-transition: all 0.8s ease-in-out;
     transition: all 0.8s ease-in-out;
     margin-bottom: 0.8em;
}
.areas_home a:hover img{
    filter:grayscale(40%);
}
.sticky img {
    padding: 40px;
    padding-top:0px;
}

.area_thumb { height:305px; }

/* loading screen background color */
    #bonfire-pageloader {
        background: #005153;
    }


/***********************************************************
*** THE NITTY-GRITTY
************************************************************/
/* the pageloader */
#bonfire-pageloader {
    position:absolute;
    z-index:99999999999999;
    width:100%;
    height:100vh;
    left:0;
    right:0;
    top:0;
    bottom:0;
    overflow: hidden;
}
.bonfire-pageloader-fade {
    opacity:0 !important;

    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -o-transition: all .7s ease;
    -ms-transition: all .7s ease;
    transition: all .7s ease;
}
.bonfire-pageloader-hide {
    display:none;
}

/* the loading icon */
.bonfire-pageloader-icon {
    width:78%;
    height: auto;
    position:absolute;
    margin:0 auto;
    opacity:1;
    top:60%;
    text-align: center;
    margin-top: -85px;
}
.bonfire-pageloader-icon-hide {
    opacity:0 !important;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
}

.hideme{ display:none; }
.btn {  }

/* lets give the page body that subtle slide-in animation */

#text2 { text-transform: uppercase; font-weight: 600; }
#text2 span{ 
    color: #fff;;
}

.no-indent { text-indent: 0 !important; }
.pr12 { padding-right: 12px !important; }

.char{
    /*font-size: 40px;*/
    height: auto;
    animation: an 1s ease-out 1 both;
    display: inline-block;
    font-weight: 400;
    /*text-shadow: 1px 0 0 #fff, 0 -1px 0 #fff, 0 1px 0 #FFF, -1px 0 0 #fff;*/
}

.char_p {
    position: relative;
    animation: an 1s ease-out 1 both;
    display: inline-block;
    text-indent: 0;
}
.char_p1 {
    animation: an 1s ease-out 1 both;
    display: inline-block;
    text-indent: 0;
}



@keyframes an{
    from{
        opacity: 0;
        
    }
    to{
        opacity: 1;
        
    }
}
#loader {
    display: none;
    font-size: 3rem;
    line-height: 1.1em;
    color: #fff;
}

 #loader span{
    color: #fff;
}
.pt24 { padding-top: 24px !important; }

.btn_fade { display: none; }

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #000A1A;
    opacity: .2;
}

.areas_home .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 150px !important;
    
}
.areas_home {
    background-color: #005153;
}

.areas_home h5{
    color: #fff !important;
}

.areas_home a:hover {
    opacity: 0.9;
}







.img_parallax .background-image-holder { top: 0 !important; }

/* Carousel */
.owl-carousel .owl-stage{ width: 100%; height: 100%;}
#slider_home { height: 100%; }
#slider_home1 { height: 370px; }
#slider_home2 { height: 370px; }
#slider_home3 { height: 570px; }
.owl-carousel .owl-stage-outer { height: 100%; }
.owl-carousel .owl-item { height: 100%; }
.slider_text { position: absolute;top: 45%; margin: 0 auto; z-index: 9; width: 100%; }
.slider_text h1.hero { font-size: 65px; font-family: 'Cormorant Garamond', serif; color: #fff; font-weight: 600; }
.slider_text .btn { 
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    border-radius: 0px;
    background: none;
    border: 1px solid #fff !important;}
.slider_text .btn span { color: #fff !important; font-weight: 100 !important; font-family: 'avenir-heavy', serif; font-size: 16px;}
.slider_text .btn:hover {
    background: #fff !important;
    border: 1px solid #fff !important;
    -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124,0.1);
}
 .slider_text .btn span:hover { color: #005153 !important; }

/* RESPONSIVO - TRANSICIONES HOME */
@media all and (max-width: 1200px) { 
    .bonfire-pageloader-icon { width:85%;}  
    #text2 {font-size: 65px;} 
    .titulo_char { font-size: 54px !important; }
    .char_p { font-size: 18px; } 
    .texto_char p { font-size: 18px; }
    .img_parallax .background-image-holder { top: 0 !important; }

}

@media all and (max-width: 990px) { 
    .bonfire-pageloader-icon {width:85%;} 
    #loader {display: none;font-size: 1.9rem;}
    #text2 {font-size: 60px;}
    .slider_text h1.hero { font-size: 64px; } 
    .titulo_char { font-size: 41px !important; }
    .texto_char p  span{ font-size: 13px !important; }
    .img_parallax .background-image-holder { top: 0 !important; }
}  

@media all and (max-width: 767px) { 
    .bonfire-pageloader-icon {width:90%;} 
    #loader {display: none;font-size: 1.5rem;}
    #text2 {font-size: 45px;}
    .texto_char p { text-align: center; }   
    .texto_char p span { font-size: 16px !important; }
    #main_carousel { height: 90vh; }
    .slider_text h1.hero { font-size: 45px; }
    .img_parallax .background-image-holder { top: 0 !important; }
}

@media all and (max-width: 564px) { 
    .bonfire-pageloader-icon {width:95%;} 
    #loader {display: none;font-size: 1.0rem;line-height: 1em !important;} 
    .char {height: 25px;}
    #text2 span {font-size: 27px;} 
    .movil .titulo_char { font-size: 34px !important; }
    .texto_char p span { font-size: 13px !important; }
    #home .page-title-2 h1.hero { font-size: 50px !important; }
    .img_parallax .background-image-holder { top: 0 !important; }      
}
        


/****  NUESTRA FIRMA *****/
.txt_right_firma { 
    padding-top: 5em !important;
    padding-bottom: 5em !important;
}

.txt_left_firma {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
}
.inter_firma {
  background: #005153 !important;
  color: #fff;
}





/****  QUIENES SOMOS *****/
/*.imageblock h4 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #005153;
} */

#quienes-somos h3.nombre {
  font-family: 'Cormorant Garamond', serif;
  color: #005153;
  font-weight: 600;
}

#quienes-somos .page-title p.lead {
    font-size: 22px;
    line-height: 28.6px;
    font-variant-numeric: lining-nums;
    color: #005153;
    font-weight: 600;
}
#quienes-somos .page-title.bg--white {
    background: #f2f2ef;
}

.imageblock .btn--primary {
  background:#005153 ;
  border: 1px solid #005153 ;
  color: #fff;
  border-radius: 0px;
  -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
  box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
  margin-top: 10px;
  letter-spacing: 1px;
}

.imageblock .btn--primary:hover {
  background: #fff;
  color: #005153 ;
  border: 1px solid #005153 ;
  -moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
  box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
}

/*.imageblock > .container, .imageblock > div[class*='col-']:not(.imageblock__content) {
    padding-top: 13.5em;
    padding-bottom: 12.125em;
    float: none;
    overflow: hidden;
}*/

.txt_right {
    margin-left: 10%;
}

.btn_video {
    font-size: 13px;
    font-weight: 600;
    bottom: 15px !important;
}
.full_height {
  height: 100vh;
}

.middle_text {
    padding-top: 16% !important;
}

#video_info {
    background-color: #f8f8f8;
    padding:90px;
}

.intro_video {
  font-size: 22px;
  line-height: 28.6px;
  font-variant-numeric: lining-nums;
  color: #005153;
  font-weight: 600;
}

#intro_somos {
  background: #f2f2ef;
  padding-top: 4em;
  padding-bottom: 4em;
}

#btn_video {
  font-family: 'avenir-medium', serif;
  font-weight: 100; margin-toop: -10px;
  bottom:22px !important;
}

#title_equipo {
  padding-top: 30px !important; padding-bottom: 0 !important;
}

#historia {
  padding-top: 104px;
  background: #f2f2ef;
}



/***** FICHA PERSONAL *****/
#contacta {
  background-color: #f2f2ef;
  color: #005153;
  padding-bottom: 4.5em;
  padding-top: 4.5em;
}

#contacta h5 { 
  font-weight: 900; 
  font-size: 24px;
}

#contacta .lead { 
  color: #005153; 
  line-height: 32px;
}

.data_cv {
  padding-left: 24px;
}

#fichas h6.title {
  margin-bottom: 0px;
  font-weight: 700;
}

.btn_phone {
    background:#005153 ;
    border: 1px solid #005153  !important;
    color: #fff;
    border-radius: 0px;
    -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    margin-top: 10px;
    width: 200px;
}

.btn_phone:hover {
    background: #fff;
    color: #005153 ;
    border: 1px solid#005153 ;
    -moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
}

.btn_email {
    background:#fff !important;
    color: #005153  !important;
    border: none !important;
    border-radius: 0px;
    -moz-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    box-shadow: 0px 0px 0px 5px rgba(0, 109, 124, 0.5);
    font-family: 'Cormorant Garamond', serif;
    margin-top: 10px;
    width: 200px;
    margin-left: 50px !important;
}

.btn_email:hover {
    background: #005153;
    color: #fff;
   border: 1px solid #005153;
    -moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
}

#contacta .row > div {
  vertical-align: middle;
}

.btn_single:hover{
     border: 1px solid #005153 !important;
}

.btn_more {
  color: #fff;
}
.cv_modal { 
  max-width: 100% !important;
  max-height: 70% !important;
}
.cv_modal .card-1 {
  margin-bottom: 0;
}
.cv_modal .card__body p {
    min-height: 0;
}

#ficha .strong {
    font-weight: 900;
    text-indent:0px;
}
#ficha .sub {
    font-weight: 400;
    font-size: 85%;
    text-indent:0px;
}
.data_cv .btn.modal-trigger {
    border-radius: 0px;
    max-width:100%;
    font-size: 14px;
    border-color: rgba(0,81,83, 0.3);
}
.data_cv .btn.modal-trigger:hover {
    background: rgb(0,81,83);
    border-color: rgba(0,81,83,1);
    color: #fff;
}
.btn_ficha { 
    padding-left:1.25em !important;
    padding-right:1.25em !important; 
}
.video_ficha .modal-instance {
    top: 35%;
    left: 45%;
}
.cv_modal h3,.cv_modal h4 {
  opacity: 1 !important;
}




/***** ÁREAS DE PRÁCTICA *****/

.grid_areas img {
   margin-bottom: 15px;
}
.grid_areas h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #005153 ;
    font-weight: 400;
}
#pg_areas .section--overlap {
  padding-bottom: 2.3em;
}
#pg_areas section:not(.blog-snippet-1) h5:not(.title) {
  text-transform: uppercase;
  font-weight: 400;
  color: #005153;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
  font-family: 'Cormorant Garamond', serif;
}
#pg_areas a img {
  margin-bottom: 8px;
}

#pg_areas a img{
  transition: 0.5s linear;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
            
#pg_areas a:hover img{
    
    filter:grayscale(40%);
}


/***** ÁREA - SINGLE *****/
body#derecho  {
  background: #f2f2ef;
}

#derecho h5 {
  color:#005153;
  margin-bottom:16px;
}

#derecho .col-md-7 h5, #derecho .col-md-8 h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  font-size: 30px;
}

#derecho h5.uppercase {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 30px;
  margin-top: 56px;
}

#derecho .feature__body h5 {
  margin-bottom: 0px;
}
#derecho .feature__body p {
  margin-bottom: 16px;
}

.cta-8 { padding-bottom: 50px; }

.box_form h4 { 
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    font-size:42px;
    text-align:center;
    margin-bottom: 0;
    padding: 32px 0px 0px 0px;
    color: #fff;
    background-color: #005153 ;
}
.box_form .boxed {
  padding: 1.4375em; 
}
.box_form form {
  margin-top: 8px !important; 
}
.box_form input[type]::placeholder, textarea::placeholder, select::placeholder {
    color: #666;
    font-size: 14px;
    font-weight: 600;
  font-style: inherit;
}
.input-checkbox.checked .inner {
    background: #000a1a;
}
.box_form  label {
    margin-left: 0;
    color: #fff;
}
.box_form .boxed {
    padding-top: 0 !important;
  margin-top: -1px;
}

.box_form input, .box_form textarea  {
  margin-top: 0;
  border-radius: 0;
  font-style: normal;
  font-size: 16px;
}

input[type]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    font-style: normal;
}

textarea { 
    background: #f8f8f8;
    border-radius: 0;
    padding-left: 1.625em;
    padding-right: 1.625em;
}

 .box_form .input-checkbox + span {
    font-size: 16px;
   bottom: 6px;
}

.box_form .input-checkbox .inner {
    width: 1em;
    height: 1em;
}
.box_form .btn.btn_form {
  font-family: 'avenir-heavy', serif;
  font-size: 20px !important;
  text-transform: uppercase;
  background: #fff;
  border-radius: 0 !important;
  margin-top: 16px;
  padding-top: 10px;
  color: #005153;
  border: 1px solid #fff;
  text-align: center;
}

.box_form btn.btn_form:hover {
  border-color: #fff !important;
  color: #fff;
}
button:active, button:hover, button:focus {
    border-color: #fff !important;
}

#derecho .box_feature {
  background: #fff;
  padding: 20px;
}

#derecho .tease p.lead a {text-decoration: none; font-weight: 900;}
#derecho ul.listado li {font-weight: 700;}
#derecho .phonebold {font-weight: 700;text-decoration: none;}

.box_feature h5 {
  margin-bottom: 5px;
}

.box_feature p {
  margin-bottom: 0;
}

.feature__body p {text-indent: 0px !important;}
.ti0{text-indent: 0px !important;}

#caso_exito {
    background: #f2f2ef;
    padding-top: 80px;
    padding-bottom: 30px;
}
#derecho #caso_exito {
    background: #fff;
}


#caso_exito .caso--video .video-cover .modal-instance {
    top: 50% !important;
    left: 50% !important;
}
.caso--video .video-cover {
    height: 280px;
}
#caso_exito.caso--video .col-sm-6 .video-cover {
    height: 340px;
}

.caso--video .modal-instance {
      top: 42%;
      left: 50%;
}

.caso--video.big .modal-instance {
      top: 35%;
      left: 47%;
}

.img_stars { margin-top: -2px; padding-left: 6px; margin-bottom:0; }
.link_underlined { text-decoration: underline; }
.text_quote { font-size: 26px; font-weight:900;line-height:1.25em;}
.title_question { font-weight: 900; font-size: 110%; }




/**** EL DESPACHO ****/
#nuestra_firma #entrada p.lead {
  font-size: 26px;
  line-height: 32.6px;
  font-variant-numeric: lining-nums;
  color: #005153;
  font-weight: 600;
}
  
  #nuestra_firma #entrada { 
      background: #f2f2ef;
}
  
  #nuestra_firma .inter_firma { 
      font-size: 24px;
      line-height: 32.6px;
      font-variant-numeric: lining-nums;
      color: #fff;
      font-weight: 900;
}
  #nuestra_firma .inter_firma p{ 
      color: #fff;
}

.btn_video {font-weight: 100;}



/***** QUE NOS DIFERENCIA  *****/
#entrada h2 {
     color: #005153;
     font-family: 'Cormorant Garamond', serif;
     font-size: 55px;
     font-weight:400;
 }
 #entrada p {
     color: #005153;
     font-family: 'Cormorant Garamond', serif;
     font-size: 26px;
     font-weight:600;
     line-height: 32.6px;
 }
 #entrada.primero, #motivos {
     background: #f2f2ef;
 }
 #motivos h4 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 32px;
     font-weight:600;
     line-height: 32.6px;
 }
 #motivos .card-2 .card__body p {
    min-height: 0.125em;
}




/***** LO QUE OPINAN  *****/
#ct_contratarnos { background-color: #f2f2ef; }

.txt_contratarnos p, .txt_contratarnos h6 {
      color: #005153;
  }
 #contratarnos2, #contratarnos1  {
     height: 492px;
 }
 #contratarnos3, #contratarnos4  {
     height: 435px;
 }
 
 .elements-testimonials blockquote {
     font-size: 24px;
     line-height: 28px;
     font-weight: 600;
     min-height: 85px;
 }
 .elements-testimonials h5 {
     font-size: 18px;
 }
 #box_testimonios {
    padding-top: 6.5em;
    padding-bottom: 8.125em;
}



/***** CONTACTO *****/
.contacto {
    background: #000a1a;
}

#info_contacto .member-1 {
    padding: 3.5em 0;
    background: #f8f8f8;
    padding-bottom: 0;
}

#info_contacto h4 {
  margin-top: 25px;

}
#form_contacto{
    padding-bottom: 150px;
}
#form_contacto h4 {
  color: #fff;
}
#form_contacto label {
    color: #fff;
    margin-left: 0;
}
#form_contacto input {
  margin-bottom: 30px;
  border-radius: 0;
  margin-top: 0;
}
#form_contacto textarea {
  border-radius: 0;
}
#form_contacto .input-checkbox + span {
    color: #fff;
}

#form_contacto .input-checkbox + span a {
    color: #fff;
}
#form_contacto .input-checkbox .inner {
    border-radius: 0 !important;
}

#cta-telefono-1 {
  background: #f8f8f8;
}
    
#info_equipo h5.title {
  color: #fff;
}

#info_equipo  a.btn {
  font-weight: 900;
  text-transform: uppercase;
  background: #fff;
  border-radius: 0 !important;
  margin-top: 0px;
  padding-top: 17px;
  color: #005153;
  border: 1px solid #fff;
  text-align: center;
  -moz-box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.5);

-webkit-box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.5);

box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.5);
}

#info_equipo  a.btn .btn__text{
   color: #005153;
  font-size: 18px;
}

#info_equipo a.btn:hover {
    background: #005153;
    -moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    box-shadow: 0px 0px 0px 0px rgba(255,255,255,0.5);
    border: 1px solid #fff;
}

#info_equipo  a.btn:hover .btn__text{
   color: #fff;
} 

#info_equipo ul li {
  font-size: 22px;
  font-weight: 900;
  line-height: 24px;
  padding-bottom: 16px;
}

.member h4 {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    color: #005153;
    font-weight: 900;
} 

#form_contacto h5.title {
    color: #fff;
}

.btn_enviar, .form--square button {
    border-radius: 0px;
    box-shadow: none;
}
.btn_enviar:hover {
    color: #005153 !important;
}


#form_contacto span {
    font-size: 85%;
    padding-left:15px;
}
#form_contacto input[type]::placeholder, textarea::placeholder, select::placeholder {
    color: #c3c3c3;
    font-size: 1em;
}
#form_contacto .input-checkbox .inner {
    width: 0.825em;
    height: 0.825em;
}






/***** LO QUE OPINAN *****/
.info_testimonio .video-cover {
  height: 280px !important;
}
 
#info_testimonio .modal-instance {
    top: 42%;
    left: 50%;
}
.ct_tabs {
    padding-top: 100px;
}
.ct_tabs h5 {
  margin-bottom: 40px;
}

#info_testimonio i {
      color:#005153 !important;
}

.ct_tabs { 
  background-color: #f4f4f4;
}
.ct_tabs h6 {
  font-size: 0.75em;
}

#info_testimonio .video-cover {
  height: 280px;
}



/***** BLOG *****/
.sidebar hr {margin-top: 0px; margin-bottom: 16px;}
.sidebar h6 {color:#005153;}
.sidebar ul.link-list li a{
  opacity: 1;
  color:#005153;
  font-style: inherit;
  font-weight:800;
}
.sidebar ul.link-list li a.active{
  font-weight:300;
}
.sidebar ul.link-list li{
  line-height: 1.34375em;
}
.sidebar .bg--white .btn.btn--primary:hover .btn__text {
    color: #fff;
  font-weight: inherit;
}

sidebar .bg--white .btn.btn--primary:hover  {
   border: 1px solid #005153;
  padding-top: 0.65em;

padding-bottom: 0.45em;

padding-right: 1.25em;

padding-left: 1.25em;
  
}



.darken-pseudo {
  position: relative;
}

.darken-pseudo:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.darken-pseudoTitle {
  position: relative;
}

.darken-pseudoTitle:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
}

.darken-with-text h1 {
  margin: 0;
  font-size: 2em;
  text-align: center;
  color: white;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}


.titulo_post{
  padding: 0 5%;
}
.titulo_post h1{
    color: rgba(255, 255, 255, 1);
    font-size: 3em;
}

#post_single h2 {
    font-size: 1.8125em;
}

#post_single h3 {
    font-size: 1.5em;
}

.sc_tags {
    text-align: right;
}

.sc_tags li {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
}

.post_title {
    font-size: 22px;
    font-weight: 600 !important;
    font-family: 'Cormorant Garamond', serif;
    line-height: 28.6px;
}
.titulo_cat {
    text-align: right;
    font-size: 12px;
}




/***** FOOTER *****/
.menu__footer span.h3{
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 54px;
}
.footer__lower img {
  text-align: center;
  max-width: 100px;
}
.sep_left_right {
  padding: 0 16px;
}
.footer__lower img {
    text-align: center;
    max-width: 100%;
}



.slider_text { position: absolute !important; }

/******* CUSTOM FOOTER ********/
.ct_footer {
      height: 100vh;
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      opacity: 1;
    }
.ct_footer video {
      display: block;
      top: 50%;
      left: calc(50%);
      width: auto !important;
      height: auto;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      position: absolute;
      min-width: 100%;
      min-height: 100%;
      z-index: -100;
    }




/***** RESPONSIVE *****/




@media screen and (min-width: 990px) and (max-width: 1200px) {
  .sc_quote { height: 130px; }
  .nav-slide .pos-bottom.menu-footer { bottom: -2.2em; }
}

@media screen and (min-width: 767px) and (max-width: 990px) {
  .sc_quote { height: 140px; }
}

@media (min-width: 1024px) {
  .img_parallax .background-image-holder {
      top: -62vh !important; 
  }
}

@media all and (max-width: 991px) {

  .areas_home .sticky {
    display: none; 
  }
  div.sticky {
    position: relative;
    top: 0;
  }
  .areas_home .col-sm-6 {
    text-align: center;
  }

}


@media all and (max-width: 990px) {
  .nav-bar.nav--absolute {
      /*background: rgb(136, 136, 136) !important;*/
      background: #005153 !important;
      margin-top: 0;
  }
  .nav-bar .phone, .nav-bar .email {
      display: none;
  }
  .nav-mobile-toggle {
    position: absolute;
    right: 0;
    top: 3px;
    line-height: 40px;
  }
  .menu {
    display: none;
  }
  #home .nav-bar .btn--menu {
    min-width: 100px;
  }
  .nav-mobile-toggle i {
    margin-top: 8px;
    right: 26px;
  }
  #home .heroimage h1.hero {
    font-size: 55px;
  }
  #home .height-30 h1.hero {
    line-height: 45px;
  }
  #video_info {
    padding-right: 0;
    padding-left: 0;
  }
  .full_height {
    height: auto;
  }
  #contacta {
    padding-bottom: 2em;
    padding-top: 2em;
  }
  #contacta .row {
    display: block !important;
  }
  #contacta .col-md-2 {
    text-align: center;
  }
  .btn_email {
    margin-left: 0 !important;
  }

  
  
}


@media screen and (min-width: 767px) and (max-width: 1200px) {
    .menu-footer_laptop { padding: 0 !important; }
}


@media screen and (min-width: 767px) and (max-width: 990px) {
  #info_equipo { height: auto; }
  #info_equipo .imageblock > .container, .imageblock > div[class*='col-']:not(.imageblock__content) {
    padding-top: 4.875em;
    padding-bottom: 4.875em;
    float: none;
    overflow: hidden;
    top: 345px;
    width: 100%;
  }
  #info_equipo .imageblock__content {
    position: relative;
    min-height: 16.25em;
    width: 100%;
  }
}

@media all and (min-width: 767px) {
  .movil { display: none; }
}

@media all and (max-width: 767px) {
  #derecho h5 {
    line-height: 1;
  }

  section.page-title .pos-vertical-center p {
    line-height: 25px;
  }
  #derecho ul.listado li {
    line-height: 1.34375em;
    padding-bottom: 15px;
  }

  .nav-slide__content { padding: 25px; }

  /* Deshabilitar animacion navbar fixed*/
  .nav--fixed .nav-mobile-toggle {
      top: 3px;
  }
  .nav--fixed .btn--menu {
    min-width: 100px !important;
  }
  .nav-bar.nav--fixed .btn--menu .h6.nombre {
    font-size: 12px;
    vertical-align: middle;
}
  .nav--fixed .nav-mobile-toggle i {
    margin-top: 8px;
    right: 26px;
  }
  .nav-bar.nav--fixed {
    animation: none !important;
    padding-left: 15px;
  }
  /***********************************/
  

  #post_body .bgimage {
    padding: 2em 0;
  }

  #post_single .container { 
      padding: 25px !important;
   }

  .titulo_post h1 {
      font-size: 2em;
  }

  #post_body {
      margin-top: 1.5em;
  }

  .nav-slide__content ul.menu span.h3 { 
      font-size: 22px;
   }

  #historia {
    padding:10% 0;
  }

  .cv_modal {
    padding-top: 0 !important;
  }

  .middle_text {
    padding-top: 5% !important;
    padding-bottom: 15% !important;

  }

  .elements-testimonials blockquote {
    min-height: 60px;
    margin-bottom: 0;
  }

  #box_testimonios {
    padding-top: 2.5em;
    padding-bottom: 2.125em;
  }

  .pc {
      display: none;
   }

  .menu-footer-xs {
     display: none;
  }

    
    .ct_footer {
        padding: 1em 0;
    }

    .footer__lower {
        text-align: center;
    }
    .footer_legal { 
        text-align: center !important;
     }

    #home .quienes-somos .video-cover .modal-instance {
        top: 45%;
    }
    
    #slider_home3 {
        height: 370px;
    }
    #home .quienes-somos .video-cover {
        height: 450px;
    }
    #entrevista {
      padding-bottom: 0.333333em;
    }
    #entrevista h5 { 
        font-size: 22px;
        line-height: 30px;
    }

    #despacho_1 {
        padding-bottom: 1.333333em;
    }
    #despacho_2 {
        padding-top: 2.333333em;
        padding-bottom: 2.333333em;
    }
    #despacho_3 {
        padding-bottom: 0;
        padding-top: 1.333333em;
    }
    #home .height-40 {
      min-height: 300px;
    }

    #testimonios {
      padding-top: 0.333333em;
      padding-bottom: 1.333333em;
    }

   
   .slider_text {
    top: 32%;
   }
   .full_height .background-image-holder {
      height: 350px;
   }
   .full_height .txt_left {
      margin-left: 10%;
   } 
   #info_testimonio {
    margin-top: 2.5em;
  }
   .titulo_section {
      top: 13px;
   }
   .mt-sm-60 {
    margin-top: 60px !important;
   }
   .mb-sm-60 {
    margin-bottom: 60px !important;
   }
   .menu-footer {
    padding: 0;
   }

   .menu-footer p {
    text-align: center;
   }
   .page-title--animate h1 {
    font-size: 2em;
    }
  .txt_right {
      margin-left: 0;
    }
    #entrada h2 {
    font-size: 40px;
    }

  section#cta--telefono {
    padding: 25px;
  }
  #pg_areas {
    margin-top: 2.5em;
  }
  .nav-slide .pos-bottom.menu-footer {
    bottom: 0.6em;
  }
  .menu-footer p {
   font-size: 17px;
   margin-bottom: 0;
   line-height: 1;
  }

  #info_contacto {
    margin-top: 2.5em;
  }
  #info_contacto .member-1 {
    padding-bottom: 1.5em;
  }
  #contratarnos2, #contratarnos1  {
     height: auto;
  }
  #contratarnos3, #contratarnos4  {
     height: auto;
  }

  nav:not(.nav--fixed):not(.nav--absolute) {
    position: fixed;
    width: 100%;
  }

  


}


@media all and (max-width: 499px) {
    .sc_quote {
      height: 140px;
  }
}

/****** NAVEGADORES ********/

/* ONLY INTERNET EXPLORER BROWSERS */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     
    /*.js-is-sticky { width: 585px; }
    .js-is-sticky img { width: 100%; height: auto; }
    .js-stickybit-parent .no_sticky { float: right; }
    .sticky.js-is-sticky { top: 0;margin-top: 219px;}
    .sticky.js-is-stuck { bottom: 50px; }
    .js-is-sticky img { width: 475px; height: 580px; }
    .js-stickybit-parent .no_sticky { float: right; }*/
    .areas_home .sticky { top: 0 !important; }
    .nav--fixed.nav-bar .h6.nombre { vertical-align: middle; }
    .nav-slide .menu li a { color: #005153; }
    .nav-slide__content ul.menu span.h3 { color: #005153; }
    .notification .notification-close-cross::before { color: #005153; }
    .menu-footer a { color: #005153 !important; }

    .box_form input {margin-top: 0px; border-radius: 0; font-style: normal; font-size: 16px;}
    .box_form textarea {margin-top: 0px; border-radius: 0; font-style: normal; font-size: 16px;}
    #consultaForm .form-group { font-size: 16px; }
    #contactoForm .form-group { font-size: 16px; }
    

}



/* ONLY FIREFOX BROWSERS */
@-moz-document url-prefix() {
  
}


/* ONLY SAFARI BROWSERS */
/*@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0)
{ @media {
    .pos-vertical-center {
    top: 155px;
  }
}}*/
/* SAFARY 10+ */
@media not all and (min-resolution:.001dpcm) { @media {
        .titulo_section { top: 25%; }
        .nav-slide .menu li a { color: #005153; }
        .nav-slide__content ul.menu span.h3 { color: #005153; }
        .nav-slide .pos-bottom.menu-footer { bottom: -2.37em; }
        .nav-slide .pos-bottom.menu-footer p { font-size: 22px; }
        .notification .notification-close-cross::before { color: #005153; }
        .menu-footer a { color: #005153 !important; }
        .menu-footer_laptop { padding: 0 !important; }
        .quote3, .quote2 { top: 20%; }
        #pg_areas { margin-top: -2.5em; }
        .quote_raquel, .quote_maribel { top: 20%; }
        .quote_miriam { top: 20%; }
        .quote_maribel { top: 20%; }
        .quote4 { top: 20%; }
        .menu-footer a { color: #005153 !important; }
        @media all and (max-width: 767px) {
          body {overflow-y: scroll;-webkit-overflow-scrolling: touch;}
          .sc_quote { overflow-y: scroll;-webkit-overflow-scrolling: touch; }
          .btn_fade { overflow-y: scroll;-webkit-overflow-scrolling: touch; }
          .areas_home { overflow-y: scroll;-webkit-overflow-scrolling: touch; }
          .slider_text { position: relative !important; }
          .menu-footer_laptop { padding-top: 80px !important; }
          .caso--video.big .modal-instance { top: 120px; }
          .video-play-icon { top: 9px; }
          .caso--video .modal-instance {top: 115px; left: 150px;}
          #info_testimonio .modal-instance {top: 115px;left: 163px;}
          .nav-bar.nav--fixed .h6.nombre {color: #fff !important;}
        }

    }
}







/*!---------- SPACING ----------*/
.pl15 {padding-left: 15px;}
.pl10 {padding-left: 10px;}
.pl5 {padding-left: 5px;}
.ml10 {margin-left:10px;}
.ml50 {margin-left:50px;}
.mr0 {
  margin-right: 0;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb8 {
  margin-bottom: 8px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb26 {
  margin-bottom: 26px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb48 {
  margin-bottom: 48px;
}
.mb56 {
  margin-bottom: 56px;
}
.mb52 {
  margin-bottom: 52px;
}
.mb64 {
  margin-bottom: 64px;
}
.mb72 {
  margin-bottom: 72px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb88 {
  margin-bottom: 88px;
}
.mb96 {
  margin-bottom: 96px;
}
.mb104 {
  margin-bottom: 104px;
}
.mb112 {
  margin-bottom: 112px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb160 {
  margin-bottom: 160px;
}
.mt0 {
  margin-top: 0 !important;
}
.mt8 {
  margin-top: 8px;
}
.mt16 {
  margin-top: 16px;
}
.mt24 {
  margin-top: 24px;
}
.mt25 {
  margin-top: 25px;
}
.mt32 {
  margin-top: 32px;
}
.mt40 {
  margin-top: 40px;
}
.mt48 {
  margin-top: 48px;
}
.mt56 {
  margin-top: 56px;
}
.mt64 {
  margin-top: 64px;
}
.mt72 {
  margin-top: 72px;
}
.mt80 {
  margin-top: 80px;
}
.mt-80{ margin-top: -80px;}
.mt88 {
  margin-top: 88px;
}
.mt96 {
  margin-top: 96px;
}
.mt104 {
  margin-top: 104px;
}
.mt112 {
  margin-top: 112px!important;
}
.mt120 {
  margin-top: 120px;
}
.mt160 {
  margin-top: 160px;
}
.p32 {
  padding: 0 32px;
}
.p24 {
  padding: 24px;
}
.p0 {
  padding: 0;
}
.pt0 {
  padding-top: 0;
}
.pt8 {
  padding-top: 8px;
}
.pt16 {
  padding-top: 16px;
}
.pt24 {
  padding-top: 24px;
}
.pt30 {
  padding-top: 30px !important;
}
.pt32 {
  padding-top: 32px;
}
.pt40 {
  padding-top: 40px;
}
.pt48 {
  padding-top: 48px;
}
.pt56 {
  padding-top: 56px;
}
.pt64 {
  padding-top: 64px;
}
.pt72 {
  padding-top: 72px;
}
.pt80 {
  padding-top: 80px;
}
.pt88 {
  padding-top: 88px;
}
.pt96 {
  padding-top: 96px;
}
.pt104 {
  padding-top: 104px;
}
.pt112 {
  padding-top: 112px;
}
.pt120 {
  padding-top: 120px;
}
.pt130 {
  padding-top: 130px;
}
.pt160 {
  padding-top: 160px;
}
.pt180 {
  padding-top: 180px;
}
.pt200{
  padding-top: 200px;
}
.pt240 {
  padding-top: 240px;
}
.pb0 {
  padding-bottom: 0;
}
.pb8 {
  padding-bottom: 8px;
}
.pb16 {
  padding-bottom: 16px;
}
.pb24 {
  padding-bottom: 24px;
}
.pb32 {
  padding-bottom: 32px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb48 {
  padding-bottom: 48px;
}
.pb56 {
  padding-bottom: 56px;
}
.pb64 {
  padding-bottom: 64px;
}
.pb72 {
  padding-bottom: 72px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb88 {
  padding-bottom: 88px;
}
.pb96 {
  padding-bottom: 96px;
}
.pb104 {
  padding-bottom: 104px;
}
.pb112 {
  padding-bottom: 112px;
}
.pb120 {
  padding-bottom: 120px;
}
.pb160 {
  padding-bottom: 160px;
}
.pb180 {
  padding-bottom: 180px;
}
.pb200 {
  padding-bottom: 200px;
}
.pb240 {
  padding-bottom: 240px;
}
@media all and (max-width: 990px) {
  .mb-s-0 {
    margin-bottom: 0;
  }
  .mb-s-8 {
    margin-bottom: 8px;
  }
  .mb-s-16 {
    margin-bottom: 16px;
  }
  .mb-s-24 {
    margin-bottom: 24px;
  }
  .mb-s-32 {
    margin-bottom: 32px;
  }
  .mb-s-40 {
    margin-bottom: 40px;
  }
  .mb-s-48 {
    margin-bottom: 48px;
  }
  .mb-s-64 {
    margin-bottom: 64px;
  }
  .mb-s-72 {
    margin-bottom: 72px;
  }
  .mb-s-80 {
    margin-bottom: 80px;
  }
  .mb-s-88 {
    margin-bottom: 88px;
  }
  .mb-s-96 {
    margin-bottom: 96px;
  }
  .mb-s-104 {
    margin-bottom: 104px;
  }
  .mb-s-112 {
    margin-bottom: 112px;
  }
  .mb-s-120 {
    margin-bottom: 120px;
  }
  
}


@media all and (max-width: 990px) {
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .mb-sm-8 {
    margin-bottom: 8px;
  }
  .mb-sm-16 {
    margin-bottom: 16px;
  }
  .mb-sm-24 {
    margin-bottom: 24px;
  }
  .mb-sm-32 {
    margin-bottom: 32px;
  }
  .mb-sm-40 {
    margin-bottom: 40px;
  }
  .mb-sm-48 {
    margin-bottom: 48px;
  }
  .mb-sm-64 {
    margin-bottom: 64px;
  }
  .mb-sm-72 {
    margin-bottom: 72px;
  }
  .mb-sm-80 {
    margin-bottom: 80px;
  }
  .mb-sm-88 {
    margin-bottom: 88px;
  }
  .mb-sm-96 {
    margin-bottom: 96px;
  }
  .mb-sm-104 {
    margin-bottom: 104px;
  }
  .mb-sm-112 {
    margin-bottom: 112px;
  }
  .mb-sm-120 {
    margin-bottom: 120px;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-8 {
    margin-top: 8px;
  }
  .mt-sm-16 {
    margin-top: 16px;
  }
  .mt-sm-24 {
    margin-top: 24px;
  }
  .mt-sm-32 {
    margin-top: 32px;
  }
  .mt-sm-40 {
    margin-top: 40px;
  }
  .mt-sm-48 {
    margin-top: 48px;
  }
  .mt-sm-56 {
    margin-top: 56px;
  }
  .mt-sm-64 {
    margin-top: 64px;
  }
  .mt-sm-72 {
    margin-top: 72px;
  }
  .mt-sm-80 {
    margin-top: 80px;
  }
  .mt-sm-88 {
    margin-top: 88px;
  }
  .mt-sm-96 {
    margin-top: 96px;
  }
  .mt-sm-104 {
    margin-top: 104px;
  }
  .mt-sm-112 {
    margin-top: 112px;
  }
  .mt-sm-120 {
    margin-top: 120px;
  }
  .p0-sm {
    padding: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pt-sm-8 {
    padding-top: 8px;
  }
  .pt-sm-16 {
    padding-top: 16px;
  }
  .pt-sm-24 {
    padding-top: 24px;
  }
  .pt-sm-32 {
    padding-top: 32px;
  }
  .pt-sm-40 {
    padding-top: 40px;
  }
  .pt-sm-48 {
    padding-top: 48px;
  }
  .pt-sm-64 {
    padding-top: 64px;
  }
  .pt-sm-72 {
    padding-top: 72px;
  }
  .pt-sm-80 {
    padding-top: 80px;
  }
  .pt-sm-88 {
    padding-top: 88px;
  }
  .pt-sm-96 {
    padding-top: 96px;
  }
  .pt-sm-104 {
    padding-top: 104px;
  }
  .pt-sm-112 {
    padding-top: 112px;
  }
  .pt-sm-120 {
    padding-top: 120px;
  }
  .pt-sm-160 {
    padding-top: 160px;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pb-sm-8 {
    padding-bottom: 8px;
  }
  .pb-sm-16 {
    padding-bottom: 16px;
  }
  .pb-sm-24 {
    padding-bottom: 24px;
  }
  .pb-sm-32 {
    padding-bottom: 32px;
  }
  .pb-sm-40 {
    padding-bottom: 40px;
  }
  .pb-sm-48 {
    padding-bottom: 48px;
  }
  .pb-sm-64 {
    padding-bottom: 64px;
  }
  .pb-sm-72 {
    padding-bottom: 72px;
  }
  .pb-sm-80 {
    padding-bottom: 80px;
  }
  .pb-sm-88 {
    padding-bottom: 88px;
  }
  .pb-sm-96 {
    padding-bottom: 96px;
  }
  .pb-sm-104 {
    padding-bottom: 104px;
  }
  .pb-sm-112 {
    padding-bottom: 112px;
  }
  .pb-sm-120 {
    padding-bottom: 120px;
  }
}
@media all and (max-width: 767px) {
  .mb-xs-0 {
    margin-bottom: 0;
  }
  .mb-xs-8 {
    margin-bottom: 8px;
  }
  .mb-xs-16 {
    margin-bottom: 16px;
  }
  .mb-xs-24 {
    margin-bottom: 24px;
  }
  .mb-xs-32 {
    margin-bottom: 32px;
  }
  .mb-xs-40 {
    margin-bottom: 40px;
  }
  .mb-xs-48 {
    margin-bottom: 48px;
  }
  .mb-xs-64 {
    margin-bottom: 64px;
  }
  .mb-xs-72 {
    margin-bottom: 72px;
  }
  .mb-xs-80 {
    margin-bottom: 80px;
  }
  .mb-xs-88 {
    margin-bottom: 88px;
  }
  .mb-xs-96 {
    margin-bottom: 96px;
  }
  .mb-xs-104 {
    margin-bottom: 104px;
  }
  .mb-xs-112 {
    margin-bottom: 112px;
  }
  .mb-xs-120 {
    margin-bottom: 120px;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mt-xs-8 {
    margin-top: 8px;
  }
  .mt-xs-16 {
    margin-top: 16px;
  }
  .mt-xs-24 {
    margin-top: 24px;
  }
  .mt-xs-32 {
    margin-top: 32px;
  }
  .mt-xs-40 {
    margin-top: 40px;
  }
  .mt-xs-48 {
    margin-top: 48px;
  }
  .mt-xs-56 {
    margin-top: 56px;
  }
  .mt-xs-64 {
    margin-top: 64px;
  }
  .mt-xs-72 {
    margin-top: 72px;
  }
  .mt-xs-80 {
    margin-top: 80px;
  }
  .mt-xs-88 {
    margin-top: 88px;
  }
  .mt-xs-96 {
    margin-top: 96px;
  }
  .mt-xs-104 {
    margin-top: 104px;
  }
  .mt-xs-112 {
    margin-top: 112px;
  }
  .mt-xs-120 {
    margin-top: 120px;
  }
  .p0-xs {
    padding: 0;
  }
  .pt-xs-0 {
    padding-top: 0;
  }
   .pt-xs-3 {
    padding-top: 3px;
  }
  .pt-xs-8 {
    padding-top: 8px;
  }
  .pt-xs-16 {
    padding-top: 16px;
  }
  .pt-xs-24 {
    padding-top: 24px;
  }
  .pt-xs-32 {
    padding-top: 32px;
  }
  .pt-xs-40 {
    padding-top: 40px;
  }
  .pt-xs-48 {
    padding-top: 48px;
  }
  .pt-xs-64 {
    padding-top: 64px;
  }
  .pt-xs-72 {
    padding-top: 72px;
  }
  .pt-xs-80 {
    padding-top: 80px;
  }
  .pt-xs-88 {
    padding-top: 88px;
  }
  .pt-xs-96 {
    padding-top: 96px;
  }
  .pt-xs-104 {
    padding-top: 104px;
  }
  .pt-xs-112 {
    padding-top: 112px;
  }
  .pt-xs-120 {
    padding-top: 120px;
  }
  .pt-xs-160 {
    padding-top: 160px;
  }
  .pt-xs-180 {
    padding-top: 180px;
  }
  .pt-xs-240 {
    padding-top: 240px !important;
  }
  .pb-xs-0 {
    padding-bottom: 0;
  }
  .pb-xs-8 {
    padding-bottom: 8px;
  }
  .pb-xs-16 {
    padding-bottom: 16px;
  }
  .pb-xs-24 {
    padding-bottom: 24px;
  }
  .pb-xs-32 {
    padding-bottom: 32px;
  }
  .pb-xs-40 {
    padding-bottom: 40px;
  }
  .pb-xs-48 {
    padding-bottom: 48px;
  }
  .pb-xs-64 {
    padding-bottom: 64px;
  }
  .pb-xs-72 {
    padding-bottom: 72px;
  }
  .pb-xs-80 {
    padding-bottom: 80px;
  }
  .pb-xs-88 {
    padding-bottom: 88px;
  }
  .pb-xs-96 {
    padding-bottom: 96px;
  }
  .pb-xs-104 {
    padding-bottom: 104px;
  }
  .pb-xs-112 {
    padding-bottom: 112px;
  }
  .pb-xs-120 {
    padding-bottom: 120px;
  }
  .pb-xs-180 {
    padding-bottom: 180px;
  }
  .pb-xs-240 {
    padding-bottom: 240px !important;
  }

