@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Variables */
:root {
  --main-color: #156874;
  --main-color-light: #41848d;
  --secondary-color: #ea212a;
  --third-color: #aac04b;
  --gray-color: #f9f9f9;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Main Styling */
html,
body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  font-weight: 500;
}

img {
  max-width: 100%;
}

p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.7em;
}

a {
  text-decoration: none;
}

/* Utility Classes */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.display-1 {
  font-size: 3rem;
}

.display-2 {
  font-size: 2.2rem;
}

.display-1,
.display-2 {
  font-weight: 500;
}

.list {
  padding-left: 30px;
  line-height: 1.7em;
}

/* Padding */
.pt-1 {
  padding-top: 200px;
}
.pt-2 {
  padding-top: 80px;
}
.pt-3 {
  padding-top: 40px;
}
.pt-4 {
  padding-top: 20px;
}
.pt-5 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 200px;
}
.pb-2 {
  padding-bottom: 80px;
}
.pb-3 {
  padding-bottom: 40px;
}
.pb-4 {
  padding-bottom: 20px;
}
.pb-5 {
  padding-bottom: 10px;
}

.pr-1 {
  padding-right: 30px;
}

.pr-2 {
  padding-right: 10px;
}

.m-1 {
  margin: 20px;
}

.mt-1 {
  margin-top: 20px;
}

.mr-1 {
  margin-right: 20px;
}

/* Width */
.w-30 {
  width: 30%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-30,
.w-60 {
  margin: 0 auto;
}

/* Flex */
.flex {
  display: flex;
}

.flex-box-1 {
  flex: 1;
}

.flex-box-2 {
  flex: 2;
}

.flex-stack {
  display: flex;
}

/* Backgrounds */
.bk-showcase {
  background: url("/image/showcase.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bk-gray {
  background: #f9f9f9;
}
.bk-whatsapp {
  background: #65d072;
}
.bk-orange {
  background: #ea9940;
}
.bk-orange-light {
  background: #eca353;
}

.bk-secondary {
  background: var(--main-color);
}

.bk-secondary-light {
  background: var(--main-color-light);
}

.bk-green {
  background: #a0c760;
}

.bk-shadow {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Text */
.txt-large {
  font-size: 20px;
}
.txt-small {
  font-size: 12px;
}
.txt-quote {
  font-style: italic;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.txt-uppercase {
  text-transform: uppercase;
}
/* .txt-orange {
  color: #ea9940;
} */

.txt-secondary {
  color: var(--secondary-color);
}

.txt-third {
  color: var(--third-color);
}

.txt-white {
  color: #fff;
}
.txt-green {
  color: #a0c760;
}
.txt-brown {
  color: #8c8073;
}

/* Button */
.btn {
  display: inline-block;
  font-size: 15px;
  padding: 12px 25px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
}

/* .btn-orange {
  background: #ea9940;
  color: #fff;
} */
.btn-whatsapp {
  background: #fff;
  color: #65d072;
}

.btn-whatsapp:hover {
  background: #3c7c44;
  color: #fff;
}

.btn-cta {
  padding: 18px 12px;
}
.btn-green,
.btn-cta {
  background: var(--third-color);
  color: #fff !important;
}

.btn-light {
  background: #fff;
  color: var(--main-color) !important;
  font-weight: bold;
  padding: 12px 20px;
}

.btn-light:hover {
  background: #f9f9f9;
}

.btn-main {
  background: var(--secondary-color);
  color: #fff;
}

.btn-main:hover {
  background: #fff;
  color: var(--secondary-color);
}

.btn-dark {
  background: #4d4d4d;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

/* Form */
form label {
  display: inline-block;
  margin-bottom: 6px;
}

form .form-group {
  margin-bottom: 16px;
}

form .form-control {
  display: block;
  width: 100%;
  padding: 7px 12px;
  font-size: 1rem;
  line-height: 1.5;
  background: #eaeaea;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

/* Navbar */
.navbar {
  height: 10vh;
  background: var(--main-color);
}

.navbar .logo img {
  height: 30px;
}

.navbar a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar ul {
  display: flex;
}

.navbar ul li {
  list-style: none;
  padding: 20px 10px;
}

/* Showcase */
.showcase-review {
  display: flex;
  padding-top: 35px;
}

.showcase-review-img img {
  height: 45px;
}

.showcase-review-img {
  padding-right: 15px;
}

.showcase-review-text ul {
  text-decoration: none;
  display: flex;
}

.showcase-review-text ul li {
  list-style: none;
  padding-right: 5px;
}

.showcase-review-text ul li i {
  color: #fab12d;
}

.showcase-review-text p {
  color: #fff;
}

/* Testimonial */
.testimonial-flex {
  display: flex;
  padding-bottom: 40px;
}

.testimonial-flex-box {
  background: #fafafa;
  padding: 20px;
  margin: 10px;
}

.testimonial-flex-box-header {
  display: flex;
  background: #f2f2f2;
  padding: 20px 12px;
}

.testimonial-flex-box-header-img {
  padding-right: 15px;
}

.testimonial-flex-box-header-img img {
  height: 40px;
}

.testimonial-flex-box-header-text ul {
  display: flex;
  margin-top: -10px;
}

.testimonial-flex-box-header-text ul li {
  list-style: none;
}

.testimonial-flex-box-header-text ul li i {
  color: #fab12d;
}

.testimonial-flex-box-body p {
  font-size: 12px;
}

.testimonial-flex-box-body p:first-child {
  color: #848484;
}

.testimonial-flex-box-body-footer {
  display: flex;
  justify-content: space-between;
  /* padding: 10px 20px; */
}

.testimonial-flex-box-body-footer p.txt-small {
  font-weight: bold;
  color: #848484;
  font-size: 10px;
}

.testimonial-flex-box-body-footer-google {
  display: flex;
  font-size: 12px;
}

.testimonial-flex-box-body-footer-google img {
  height: 40px;
  padding-right: 2px;
}

/* Consultas */
#consultas {
  background: #fff;
}

#consultas .txt-small a {
  color: var(--main-color);
}

#consultas .flex-box-1 p {
  color: #666666;
  padding-bottom: 10px;
}

#consultas .flex-box-1 a {
  margin-top: 20px;
}

#consultas table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}

#consultas td,
th {
  border: 1px solid #ddd;
  padding: 8px;
  font-weight: 500;
}

#consultas tr:nth-child(even) {
  background-color: #fff;
}

#consultas tr:nth-child(3),
#consultas tr:nth-child(5),
#consultas tr:nth-child(7) {
  background-color: #fafafc;
}

#consultas th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #4d4d4d;
  color: white;
}

#consultas tr td {
  color: #6b6c6d;
}

/* About  */
#home-about img {
  padding-right: 80px;
}

/* Features */
#features img {
  height: 50px;
}

/* Prices */
#prices {
  background: #f8f8f8;
  padding: 80px 0;
}

#prices .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.prices-table {
  width: 100%;
  border-radius: 10px;
}

.prices-table p,
.prices-table ul li {
  color: #666666;
}

.prices-table img {
  height: 200px;
  border-radius: 50%;
}

.prices-table span {
  font-size: 1.7rem;
}

#prices ul {
  list-style: none;
  padding-left: 70px;
  text-align: left;
  line-height: 2.5em;
}

/* #prices .flex-stack {
  padding-right: 200px;
  padding-left: 200px;
} */

#prices span:nth-child(1) {
  padding-bottom: 10px;
}

/* FAQ */
#faq img {
  height: 50px;
}

#faq a {
  color: var(--main-color);
}

/* Form */
#form button {
  width: 100%;
}

/* Contact */
#contact img {
  height: 90px;
}

#contact h6 {
  font-weight: 400;
}

#contact a {
  color: var(--main-color);
}

/* Footer */
#mainfooter ul li {
  list-style: none;
  line-height: 2em;
}

#mainfooter a {
  color: #fff;
}

.mainfooter-menu img {
  height: 30px;
}

.mainfooter-menu .flex-box-2,
.mainfooter-menu .flex-box-1 {
  flex: 1;
}

.mainfooter-menu .flex-box-1 h6 {
  padding-bottom: 2px;
}

.flex-stack img {
  padding-right: 10px;
}
