:root {
  --bs-body-font-size: 1.1rem;
  --font-family: 'Outfit', sans-serif;
  --heading-font-family: "Outfit", serif;
  --text-color: #401E13;
  --link-color: #401E13;
  --link-hover-color: #000;
  --cta-background-color: #401E13;
  --cta-text-color: #fff;
  --footer-background-color: #401E13;
  --footer-text-color: #fff;
  --primary-color: #401E13;
}
html,
body {
  background-color: #FFFBF8;
  font-family: var(--font-family);
  color: var(--text-color);
  font-weight: 400;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}
.btn_cta {
  font-weight: 400;
  text-align: center;
  color: var(--cta-text-color);
  background-color: var(--cta-background-color);
  transition: all .5s;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
}
.btn_cta:hover {
  background: #3a3a3a;
  color: #fff;
}
a {
  text-decoration: none;
  color: var(--link-color);
  transition: color .3s;
}
a:hover {
  color: var(--link-hover-color);
}
p {
  font-weight: 400;
}
img {
  max-width: 100%;
}
.text-justify {
  text-align: justify;
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--heading-font-family);
}
.h1,
h1 {
  font-size: 2.2em;
}
.h2,
h2 {
  font-size: 1.8em;
}
.h3,
h3 {
  font-size: 1.4em;
}
.h4,
h4 {
  font-size: 1em;
}
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 3em;
  }
  .h2,
  h2 {
    font-size: 2.2em;
  }
  .h3,
  h3 {
    font-size: 1.8em;
  }
  .h4,
  h4 {
    font-size: 1.4em;
  }
}
.object-fit-cover {
  object-fit: cover;
}
/* scroll bar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: lightgrey;
}
::-webkit-scrollbar-thumb {
  background: var(--cta-background-color);
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}
/* selection */
::selection {
  background: var(--cta-background-color);
  color: var(--cta-text-color);
}
@media (max-width: 1199px) {
  .container {
    max-width: calc(100% - 30px);
  }
}
.color_primary {
  color: var(--primary-color);
}
section#oferta img,
section#offer img {
  aspect-ratio: 1;
  object-fit: cover;
}
/* header start */
header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: background 0.5s, box-shadow 0.5s;
  /* Hamburger menu */
}
header nav {
  position: relative;
}
@media (min-width: 992px) {
  header .navigation-toggler {
    display: none;
  }
}
header .navbar-nav .nav-item .nav-link {
  color: var(--link-color);
  transition: all .3s;
  font-weight: 400;
}
header .navbar-logo {
  max-height: 40px;
}
@media (min-width: 576px) {
  header .navbar-logo {
    max-height: 50px;
  }
}
@media (min-width: 576px) {
  header .navbar-logo {
    max-height: 70px;
  }
}
@media (min-width: 992px) {
  header .navbar-nav .nav-item {
    margin-right: 25px;
  }
  header .navbar-nav .nav-item:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  header .navigation-box {
    display: none;
  }
  header .navigation-box li.nav-item {
    padding: .5rem 1.5rem;
    border-bottom: 1px solid #D3DFE7;
  }
}
header.sticky {
  position: fixed;
  margin-top: 0;
  background-color: #FFFBF8;
  box-shadow: 0 0 5px #3f3f3f;
}
@media (min-width: 576px) {
  header.sticky .navbar-logo {
    max-height: 50px;
  }
}
section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
section.right_img_md_full {
  background-color: #EDD8C7;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  section.right_img_md_full .img_right {
    width: auto;
    max-width: none;
    float: left;
    height: 100%;
  }
}
section.full_screen_cta {
  background-color: var(--primary-color);
  color: #fff;
}
section.about_is .row {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 20px;
}
section.about_is .row .btn_cta {
  border: 1px solid #fff;
}
@media (min-width: 768px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
}
footer .footer_top {
  padding: 80px 0;
}
footer .footer_top ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer .footer_bottom {
  font-size: 0.9rem;
  border-top: 1px solid #fff;
  padding: 10px 0;
}
footer a {
  color: var(--footer-text-color);
}
footer .footer_logo {
  max-width: 300px;
}
footer .footer_logo.img-invert {
  filter: invert(1);
}
.contact_form_box {
  background-color: #EDD8C7;
}
form.standard_form .form-control {
  border-color: #000;
  border-radius: 0;
}
form.standard_form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 10px #000;
}
form.standard_form .form-check-input[type=checkbox] {
  border-color: #000;
  border-width: 2px;
  border-radius: 0;
}
form.standard_form .form-check-input[type=checkbox]:checked {
  background-color: #000;
  border-color: #000;
  background-size: 200%;
}
form.standard_form .rodo_text a {
  font-weight: 600;
}
form.standard_form.registration_form {
  max-width: 800px;
  margin: 0 auto;
}
.faq_item {
  padding: 10px 20px;
}
.faq_item:not(:last-of-type) {
  border-bottom: 1px solid var(--primary-color);
}
.faq_item .question {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}
.faq_item .question:after {
  content: "";
  display: block;
  aspect-ratio: 1;
  height: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  border: 2px solid #000;
  border-top-width: 0;
  border-left-width: 0;
  transform: rotate(45deg);
}
.faq_item .answer {
  display: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.faq_item.open .question:after {
  transform: rotate(-135deg);
}
.faq_item.open .answer {
  display: block;
}
ul.contact_icons {
  padding: 0;
}
ul.contact_icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-links img {
  width: 30px;
}
