/*
Theme Name: Lima Abogados
Theme URI: https://limaabogados.com.ar/
Version: 1.0
Author: @marugarcia
Author URI: maru.garciam@gmail.com
*/


html{
	scroll-behavior: smooth;
}

body {
	font-family: 'Fira Sans', sans-serif;
	font-size: 15px;
	color: #333;
	background: #fff;
	font-weight: 400;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

.overh{
	overflow: hidden;
}

*:focus{
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}


h1, h2, h3, h4, h5, h6{		
	font-family: 'Playfair Display', serif;
	line-height: 1.1em;	
	font-weight: 300;
	/*font-weight: 700;*/
}

h1 { font-size: 38px; }
h2 { font-size: 28px; }
h3 { font-size: 26px; }
h4 { font-size: 18px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 48px; }
	h2 { font-size: 42px; }
	h3 { font-size: 38px; }
	h4 { font-size: 18px; }
	h5 { font-size: 24px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}



/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
	background: #fff;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container {
		max-width: 1440px;
		padding: 0 70px;
	}
}

@media screen and (min-width: 1200px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
/* */

.section{
	position: relative;
	padding: 60px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 120px 0;
	}
}

*::selection {
  background: #eadbaf;
  color: #333;
}
*::-moz-selection {
  background: #eadbaf;
  color: #333;
}

/*scrollbar*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background: #4e4b4b; 
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333; 
}


/* Backgrounds */

.bg-light {
	background-color: #efefef !important;
}
.bg-primary{
	background-color:  #CBB63D !important;
}
.bg-secondary {
	background-color: #1D1D1B !important;
}
.bg-dark {
	background-color:  #282828 !important;
}


/* Text */

.text-primary {
	color:  #CBB63D !important;
}

.text-secondary {
	color: #1D1D1B !important;
}

.text-light {
	color: #fff !important;
}


/* Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 60px;
	background: #fff;
	transition: 0.3s all;
	z-index: 999;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
.header .logo{
	position: absolute;
	background: #282828;
	display: inline-block;
	max-width: 150px;
	top: 0;
	left: 0;
}

.header.fixed{
	position: fixed;
	background: var(--bs-white);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

.header.fixed .logo{
	width: 230px;
	max-width: 230px;
	background: #282828 url(assets/img/logo-fixed.png) no-repeat center;
	background-size: 90%;
	padding: 35px;
}

.header.fixed .logo img{
	opacity: 0;
	display: none;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-dark);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	text-transform: uppercase;
}

.header .navigation ul li a:before{
	content: '';
	width: 0%;
	height: 2px;
	background: #282828;
	position: absolute;
	top: 0;
	left: 20%;
	transition: all 0.3s;
}

.header .navigation ul li a:hover:before{
	width: 100%;
	left: 0;
}

@media screen and (min-width: 1200px) {

	.header {
		min-height: 86px;
	}
	.header .logo {
		max-width: 160px;
		padding: 10px;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
		margin-top: 30px;
	}

	.header.fixed .navigation{
		margin-top: 8px;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
        display: inline-flex;
        vertical-align: middle;
        gap: 40px;
	}
	.header .navigation ul{
		margin: 0;
	}
	.header .navigation .menu > li a {
		padding: 8px 8px;
		font-size: 15px;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}

	.header .socialmedia {
		gap: 12px;
	}
	.header .socialmedia li a{
		font-size: 20px;
	}


	/* Fixed */

	.header.fixed{
		min-height: 56px;
	}


}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
}



/* Pages > Page 404 */

.page.page-404 .content{
	text-align: center;
	margin-top: 80px;
	min-height: calc(100vh - 80px);
}
.page.page-404 .content .title p{
	margin: 0 auto;
	max-width: 100%;
}



/* Templates */

.errors {
	text-align: center;
	padding: 50px 0;
}
.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #DAB782;
}

.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

@media screen and (min-width: 992px) {
	.errors.error-404 h3 {
		font-size: 40px;
	}
	.errors .smile {
		font-size: 80px;
	}
}


/* Title */

.title {
	position: relative;
	margin-bottom: 20px;
}
.title h2 {
	font-size: 38px;
}

.title .subtitle{
	color: #CBB63D;
	text-transform: uppercase;
	font-size: 13px;
    line-height: 0.1em;
    letter-spacing: 1.3px;
}

.title.lined {
	padding-bottom: 20px;
}

.title.lined:before{
	content:'';
	height: 2px;
	background: #CBB63D;
    width: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
}


@media screen and (min-width: 992px) {
	.title {
		margin-bottom: 30px;
	}
	.title h2 {
		font-size: 48px;
	}
}

/* Page > Home */

.presentation {
	height: calc(100vh - 82px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px;
}
.page.home .about .description {
	font-weight: 300;
	text-align: justify;
}


.page.home .module-services{
	 background: url('assets/img/bg-lines.png') no-repeat center;
}
.page.home .module-services .services .data {
  max-width: 600px;
  padding: 30px 15px;
  margin: 0 auto;
}


.page.home .module-services .services .data p {
  text-align: justify;
  margin-top: 2rem;
}

.page.home .module-services .services .image img{
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

@media screen and (min-width: 992px) {
  .page.home .module-services .services .data {
    padding: 50px 50px;
  }
}


@media screen and (min-width: 992px){
  .page.home .module-clients .slider:before,
  .page.home .module-clients .slider:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 380px;
    background-image: -webkit-linear-gradient(left, #FFFFFF 0%, rgba(255,255,255,0.00) 100%);
    background-image: -o-linear-gradient(left, #FFFFFF 0%, rgba(255,255,255,0.00) 100%);
    background-image: linear-gradient(to right, #FFFFFF 0%, rgba(255,255,255,0.00) 100%);
    z-index: 5;
  }
  .page.home .module-clients .slider:after{
    right: 0;
    left: auto;
    transform: rotate(-180deg);
  }
}

.page.home .contact .vias li {
	padding: 10px 0;
}

.page.home .contact .vias li i {
	padding-right: 5px;
}

@media screen and (min-width: 992px){
	.page.home .contact .title h3{
		font-size: 64px;
	}
}

/* Footer */





/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
	bottom: -20px;
}
.slider .dots .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .dots .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 5px; }
.slider .dots .slick-dots li button{
	display: block;
	width: 10px;
	height: 3px;
	padding: 0;
	text-indent: -9999px;
	 background: #DBDBDB;
	border: none;
	border-radius: 0px;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
	opacity: 0.5;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.3s;
    
}
.slider .dots .slick-dots li.slick-active button { 
	opacity: 1;
	background: #CBB63D; 
}

@media screen and (min-width: 992px){
  .slider .dots .slick-dots li button{
	    width: 20px;
	    height: 5px;
	  }
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	width: 20px;
	height: 25px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
	opacity: 1;
	z-index: 9;
}
.slider .arrows button:hover {
	opacity: 1;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/arrow-prev.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 0;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/arrow-next.svg');
}


/* Form */

input,  textarea{
  width: 100%;
  margin: 5px 0;
  border-radius: 0px;
  /*font-family: 'Open Sans';*/
  font-size: 14px;
  font-weight: 400;
  color: #000;
  padding: 5px 10px;
  background: rgba(255,255,255,.0);
  border: none;
  border-bottom: solid 2px #000;
  outline: none;

}

input:focus, textarea:focus{
  background: rgba(255,255,255,.1);
}

textarea{
  height: 150px;
  min-height: 150px;
  max-height: 150px;
}

input[type="text"], input[type="email"] {
  border: none;
  border-radius: 0px;
  border-bottom: solid 2px #000;
  padding-bottom: 10px;
}

input[type="text"], input[type="email"], textarea {
  color: #000;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  color: #000;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  color: #000;
  border-color: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #000;
  border-color: #46b450;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
  border: 2px solid;
  border-color: #000;
  border-radius: 0px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.4em;
  padding: 0.6em 1em 0.4em;
}

/* Wahtsapp  */

.button-whatsapp{
	display: flex;
	align-items: center;
	justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 40px;
    text-align: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
    z-index: 9999;
}
.button-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width: 992px) {
	.button-whatsapp{
		right: 30px;
		bottom: 30px;
	}
}