@charset "utf-8";
/* CSS Document */
:root {
  --darkBlue: #00143c;
  --lightBlue: #0072ff;
	--gold: #d8bb78;
  --white: #fff;
  --red: #f00;
  --green: #228b22;
}

html, * {
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
  color: var(--darkBlue);
}
@media (max-width:400px) {
  body {
    font-size:0.9em;
  }
}
a,
a:visited,
a:hover,
a:active {
  cursor:pointer;
	color:var(--white);
	
}
div.row {
	width:1280px;
	margin:0 auto;
	display: flex;
	align-items: flex-start;
}
@media (max-width:800px) {
	div.row {
		width: 90%;
	}
}
.column {
}
.one-third {
	width: 33.33%
}
@media (max-width:800px) {
	.one-third {
		width: 100%;
	}
}
#hero {
	width:100%;
	min-height: 80vh;
	padding-top:50px;
	background-image: url(img/bg-hero.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	color:var(--white);
}
@media (max-width:800px) {
  #hero {
    padding-top:20px;
  }
}
#hero div.row {
	min-height: 80vh;
	align-items: stretch;
}
@media (max-width:800px) {
	#hero div.row {
		flex-direction: column;
	}
}
#hero .column {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#hero .column:nth-child(even) {
	justify-content: flex-end;
}
@media (max-width:800px) {
	#hero .column:nth-child(even) {
		order: 3;
	}
}
#hero .column:nth-child(odd) {
	justify-content: center;
	width: 30.33%;
	padding: 0 1.5%;
}
@media (max-width:800px) {
	#hero .column:nth-child(odd) {
		width: 100%;
	}
}
#hero h1 {
  font-size: 1.93em;
  text-transform: uppercase;
  color: var(--gold);
  margin:20px 0;
}
@media (max-width:800px) {
  #hero h1 {
    font-size: 1.85em;
  }
}
@media (max-width:400px) {
  #hero h1 {
    font-size: 1.85em;
  }
}
#hero h1::first-line {
  letter-spacing: 3.2px;
}
@media (max-width:800px) {
  #hero h1::first-line {
    letter-spacing: 0px;
  }
}
@media (max-width:400px) {
  #hero h1::first-line {
    letter-spacing: 1px;
  }
}
#hero h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
@media (max-width:800px) {
  #hero h2 {
    font-size: 1.45em;
  }
}
@media (max-width:400px) {
  #hero h2 {
    font-size: 1.4em;
  }
}

#hero h2.cta {
  font-size: 2em;
  text-transform: uppercase;
  margin-bottom:0;
}
#hero img.logo {
  margin-bottom:50px;
  display:none;
}
@media (max-width:800px) {
  #hero img.logo {
    display:block;
    height:30px;
    margin-bottom:20px;
  }
}
#hero img.lawyer {
  width:93%;
}
@media (max-width:800px) {
  #hero img.lawyer {
    display: none;
    width:40%;
  }
}
@media (max-width:400px) {
  #hero img.lawyer {
    width:80%;
  }
}
#hero .column:nth-child(1) p,
#hero .column:nth-child(1) ul {
  font-size:1.1em;
  position: relative;
}
#hero .column:nth-child(1) ul {
  list-style: none;
  text-align: left;
  padding-left: 10px;
}
#hero .column:nth-child(1) ul li {
  margin:10px 0;
  position: relative;
  padding-left: 30px;
  min-height: 28px;
}
#hero .column:nth-child(1) ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: bold;
  color: #00cc00;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 28px;
}
form {
  background: linear-gradient(0deg, rgba(167, 144, 92, 1) 0%, rgba(216, 187, 120, 1) 100%);
  border-radius: 20px;
  background: rgb(167, 144, 92);
  padding: 10px;
  width: calc(100% - 20px);
}
@media (min-width: 1024px) {
  form {
    background: var(--white);
    color: var(--darkBlue);
  }
}
form ::placeholder {
  color:rgba(255,255,255,0.3);
}
@media (min-width: 1024px) {
  form ::placeholder {
    color:rgba(0,0,0,0.3);
  }
}
form input[type=text], 
form select,
form textarea {
  width: calc(100% - 18px);
  padding: 8px;
  outline: 0;
  background: transparent;
  border: 1px solid var(--darkBlue);
  color: var(--white);
  border-radius: 5px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
}
@media (min-width: 1024px) {
  form input[type=text], 
  form select,
  form textarea {
  color: var(--darkBlue);
  }
}
form select {
  width:100%;
  color:rgba(255,255,255,0.3);
}
@media (min-width: 1024px) {
  form select {
    color:rgba(0,0,0,0.3);
  }
}
form select.colored {
  color:#fff;
}
@media (min-width: 1024px) {
  form select.colored {
    color:var(--darkBlue);
  }
}
form option {
  color:rgba(255,255,255,0.3);
  background: var(--darkBlue);
}
form p.row { 
}
form p.privacy {
  font-size:0.8em;
  text-align: left;
}
form span.details {
  float: left;
  color: var(--white);
}
form input + label a,
form input + label a:hover {
  color:var(--white);
}
@media (min-width: 1024px) {
  form input + label a ,
  form input + label a:hover {
    color:var(--darkBlue);
  }
}
@media (min-width: 1024px) {
  #modulo a.button, 
  #modulo a.button:visited {
    background:var(--white);
    color:var(--darkBlue);
  }
  #modulo a.button:hover, 
  #modulo a.button:active {
    background:var(--gold);
    color:var(--white);
  }
}
p.but-line {
  margin:10px auto;
  width: 100%;
}
a.button,
a.button:visited {
  display: block;
  background: var(--lightBlue);
  color:var(--white);
  border-radius: 20px;
  padding: 10px;
  width: calc(100% - 20px);
  text-transform: uppercase;
  text-align: center;
}
@media (max-width:800px) {
  a.button {
    font-size: 1.45em;
  }
}
a.button.goform {
  width:250px;
  margin:auto;
}
@media (max-width:800px) {
  a.button.goform {
    width:90%;
  }
}
p.testimonials {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.3);
}
p.testimonials img {
  height: 50px;
  margin: 10px auto;
}
@media (max-width:800px) {
  p.testimonials img {
    height: 80px;
  }
}
@media (max-width:400px) {
  p.testimonials img {
    height: 65px;
  }
}
#wa-box,
#ph-box {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: var(--white);
  padding: 5px;
  border-radius: 30px;
  box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  justify-content: space-around;
  align-items: center;
  box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
  z-index:9;
}
#ph-box {
  bottom: 80px;
}
@media (max-width:700px) {
  #wa-box,
  #ph-box {
    display: flex;
    padding:5px;
  }
  #ph-box {
    bottom: 65px;
  }
  #wa-box p,
  #ph-box p {
    /*display: none;*/
  }
}
#wa-button,
#ph-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(img/wa-button1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#ph-button {
  background-image: url(img/ph-button1.png);
}
@media (max-width:700px) {
  #wa-button,
  #ph-button {
    width: 40px;
    height: 40px;
  }
}
#wa-button:hover {
  background-image: url(img/wa-button2.png);
}
#ph-button:hover {
  background-image: url(img/wa-button2.png);
}
section#description,
section#about,
section#faq,
section#call {
  padding:20px 0;
  width:60%;
  margin:0 auto;
}
@media (max-width:800px) {
  section#description,
  section#about,
  section#faq,
  section#call {
    width: 90%;
  }
}
section div.row,
section div.row .column.one-all {
  width:100%;
}
@media (min-width: 1024px) {
  section#description .half {
    float: left;
    width: calc(50% - 60px);
    padding: 20px;
    border-radius: 10px;
    background: #f7f6ef;
    margin: 20px 0;
  }
  section#description p.clear {
    clear: both;
  }
  section#description .half:last-of-type {
    margin-left: 20px;
  }
}
section ul.points {
  list-style: none;
  text-align: left;
  padding-left: 10px;
}
section ul.points li {
  margin:10px 0;
  position: relative;
  padding-left: 30px;
  min-height: 28px;
}
section ul.points li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: bold;
  color: var(--darkBlue);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
}
section ul.accordion {
  list-style-type: none;
}

section ul.accordion h3 {
  list-style-type: none;
  position: relative;
  cursor: pointer;
  border-bottom:1px solid rgba(0,0,0,0.3);
  padding:10px 20px 10px 0;
}

section ul.accordion h3::after {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  content: "\f067";
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 0;
  transition: all 0.5s;
}

section ul.accordion h3.close::after {
  content: "\f067";
}

section ul.accordion h3.open::after {
  content: "\f068";
}

section ul.accordion li .content {
  display: none;
  padding:10px;
}
section#faq a,
section#faq a:visited,
section#faq a:hover,
section#faq a:active {
  color:var(--darkBlue);
  text-decoration: underline;
}
section#about .review-item {
  margin: 0 auto;
  padding: 1em;
}

@media ( max-width:1200px) {
  section#about .review-item {
    flex: 1 1 50%;
  }
}

@media ( max-width:450px) {
  section#about .review-item {
    flex: 1 1 90%;
  }
}

section#about .review-item-long {
  margin: 0 auto;
  height:auto !important;
}

@media ( max-width:1200px) {
  section#about .review-item-long {
    flex: 1 1 90%;
  }
}

@media ( max-width:450px) {
  section#about .review-item-long {
    flex: 1 1 90%;
  }
}

section#about .review-header{
  display: flex;
  width:calc(100% - 20px);
}

section#about .review-picture{
  width: 5em;
  height: auto;
  align-self: center;
  margin-right: 1em;
}

section#about .review-usergrade{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

section#about .review-meta, .review-stars {
  text-align: center;
  font-size: 115%;
}

section#about .review-author {
  text-transform: capitalize;
  font-weight: bold;
}

section#about .review-date {
  opacity: .6;
  display: block;
}

section#about .review-text {
  line-height: 1.55;
  text-align: left;
  width:calc(100% - 40px);
  text-align: justify;
}

section#about .review-text .more-text {
  display: none;
}

section#about .review-stars ul {
  display: inline-block;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

section#about .review-stars ul li {
  float: left;
  list-style: none !important;
  margin-right: 1px;
  line-height: 1;
}

section#about .review-stars ul li i {
  color: #eb6e00;
  /* Google's Star Orange in Nov 2017 */
  font-size: 1.4em;
  font-style: normal;
}

section#about .review-stars ul li i.inactive {
  color: #c6c6c6;
}

section#about .star:after {
  content: "\2605";
}

section#about .buttons {
  margin: 20px 0 0 0; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

section#about .more-reviews {
  text-align: center;
}

section#about .write-review {
  text-align: center;
}

section#about .more-reviews a,
section#about .write-review a {
  margin: 5px;
  border: 1px #eb6e00 solid;
  border-radius: 40px;
  padding: 10px;
  background-color: #eb6e00;
  color: #FFF;
  text-decoration: none;
}
section#call h3 {
  font-size: 1.5em;
}
@media (min-width: 1024px) {
  section#call {
    background: var(--darkBlue);
    font-size: 1.5em;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  section#call h3 {
    font-size: 1em;
  }
}
section .cta {
  color: var(--gold);
  text-align: center;
}
header {
  position: fixed;
  display: flex;
  width: calc(100% - 20px);
  color: #fff;
  justify-content: space-between;
  height:40px;
  padding:10px;
  z-index: 9;
}
header.fixed {
  background: var(--darkBlue);
}
@media (max-width:700px) {
  header {
    display:none;
  }
}
header div:nth-of-type(1),
header div:nth-of-type(3) {
  width:25%;
}
header div:nth-of-type(1) {
  text-align: left;
}
header div:nth-of-type(2) {
  text-align: center;
}
header div:nth-of-type(3) {
  text-align: right;
}
header img.logo {
  height:100%;
}
header span.box a {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border-radius: 20px;
  padding: 10px 10px 10px 40px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 5px 5px;
}
header span.box a:hover {
  background: var(--white);
  color: var(--darkBlue);
  text-decoration: none;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 5px 5px;
}
header span.box.whatsapp a {
  background-image: url(img/whatsapp1.png);
}
header span.box.whatsapp a:hover {
  background-image: url(img/whatsapp2.png);
}
header span.box.phone a {
  background-image: url(img/phone1.png);
}
header span.box.phone a:hover {
  background-image: url(img/phone2.png);
}
footer {
  padding:10px;
  text-align: center;
}
footer {
  border-top: 1px solid var(--darkBlue);
}
footer a,
footer a:visited,
footer a:hover,
footer a:active {
	color:var(--darkBlue)
}
footer p {
  font-size:0.85em;
}

footer span {
  display:block;
}
@media (min-width: 1024px) {
  footer span {
    display:inline;
  }
  footer span::after {
    content:' - ';
  }
  footer span:last-of-type::after {
    content:'';
  }
}
/*MESSAGE BOX*/
#message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(173, 255, 243 , 1);
  z-index: 9999;
}

#message-box {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90vh;
  margin-left: -45%;
  margin-top: -45vh;
  border-radius: 10px;
  border: 1px solid var(--colorRed1);
  background: var(--white);
  z-index: 99999;
  overflow: auto;
  scrollbar-color: #adfff3 var(--darkBlue);
}

#message-box a.item_close {
  cursor: pointer;
  position: absolute;
  width: 13.5px;
  height: 18px;
  text-decoration: none;
  right: 10px;
  top: 10px;
}

#message-box a.item_close::after {
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  content: "\f00d";
}

#message-box .content {
  padding: 10px;
  max-height: fit-content;
}

#message-box .content h1 {
  font-size: 1.5em;
  margin-bottom:20px;
}

#message-box h1 span.subtitle {
  display: block;
  font-size: 0.75em;
  font-style: italic;
}

#message-box .content h2 {
  font-size: 1.2em;
  margin-top:20px;
  margin-bottom:10px;
}

#message-box .content h2:first-of-type {
  margin-top:0;
}

#message-box .content p {
  line-height: 1.3em;
}

#message-box .content p.update {
  text-align:center;
  font-style:italic;
  margin-top:20px;
}

#message-box .content ul {
  padding-left: 0;
}

#message-box .content p.but-line {
  text-align:center;
  margin-top:20px;
}

.grecaptcha-badge { 
	visibility: hidden !important;
}