@import "bootstrap-5.0.2-dist/css/bootstrap.css";
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBOLF.woff2") format("woff2"), url("../fonts/CLBOLF.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBKSC.woff2") format("woff2"), url("../fonts/CLBKSC.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Clbd";
  src: url("../fonts/CLBD.woff2") format("woff2"), url("../fonts/CLBD.woff") format("woff");
  font-weight: bolder;
  font-style: normal;
}
@keyframes blink {
  from {
    opacity: 0;
    -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 5px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 5px rgba(255, 255, 255, 0);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0);
  }
  to {
    opacity: 1;
    -webkit-box-shadow: 0 0 5px rgb(235, 65, 65);
    -moz-box-shadow: 0 0 5px rgb(235, 65, 65);
    -ms-box-shadow: 0 0 5px rgb(235, 65, 65);
    -o-box-shadow: 0 0 5px rgb(235, 65, 65);
    box-shadow: 0 0 5px rgb(235, 65, 65);
  }
}
@keyframes motor {
  from {
    top: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    top: -2px;
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}
.anim-motor {
  animation: motor 0.15s infinite;
}

@keyframes zoop {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@keyframes slide {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -400px center;
  }
}
.anim-slide {
  animation: slide 4s linear infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 29, 156, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 29, 156, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 29, 156, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 29, 156, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 29, 156, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(0, 29, 156, 0);
    box-shadow: 0 0 0 10px rgba(0, 29, 156, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 29, 156, 0);
    box-shadow: 0 0 0 0 rgba(0, 29, 156, 0);
  }
}
a:hover, a:active, a:focus, button:hover, button:active, button:focus {
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.wow {
  visibility: hidden;
}

.background-light {
  background-color: #DCDCDC;
}

.background-secondary {
  background-color: #baa15b;
}

.right-wing {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 992px) {
  .right-wing:before {
    content: "";
    display: block;
    width: 80px;
    background-color: #baa15b;
    position: absolute;
    right: -40px;
    top: 0px;
    bottom: 1px;
    z-index: -1;
    -webkit-transform: skewX(-14deg);
    -moz-transform: skewX(-14deg);
    -ms-transform: skewX(-14deg);
    -o-transform: skewX(-14deg);
    transform: skewX(-14deg);
  }
}

.text-justify-center {
  text-align: justify;
  text-align-last: center;
}

.nice-input-label {
  position: absolute;
  left: 7px;
  bottom: 7px;
  color: #2e2e2e;
  margin-bottom: 0;
  font-size: 0.8rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.nice-input-wrapper {
  position: relative;
}
.nice-input-wrapper button {
  border: none;
  background-color: transparent;
  color: #1C1C1C;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-input-wrapper button img {
  height: 15px;
  width: 15px;
}
.nice-input-wrapper .nice-input {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #1C1C1C;
  height: 45px;
  width: 100%;
}
.nice-input-wrapper .nice-input:focus, .nice-input-wrapper .nice-input.filled {
  outline: none;
  border-color: #001d9c;
}
.nice-input-wrapper .nice-input:focus button, .nice-input-wrapper .nice-input.filled button {
  color: #001d9c;
}
.nice-input-wrapper .nice-input:focus ~ .nice-input-label, .nice-input-wrapper .nice-input.filled ~ .nice-input-label {
  left: 0;
  bottom: 100%;
  color: #001d9c;
  margin-bottom: none;
  -webkit-transform: scale(1.04, 1.04);
  -moz-transform: scale(1.04, 1.04);
  -ms-transform: scale(1.04, 1.04);
  -o-transform: scale(1.04, 1.04);
  transform: scale(1.04, 1.04);
}

.scroller {
  display: none;
  position: fixed;
  bottom: 2px;
  right: 15px;
  height: 50px;
  width: 50px;
  background-color: #001d9c;
  text-align: center;
  line-height: 45px;
  border: none;
  z-index: 19999;
}

.breadcrumb {
  background-color: #eeeeee;
  border: 3px solid #e9e9e9;
  margin-top: 75px;
}
.breadcrumb .breadcrumb-item {
  font-size: 14px;
}

@media (min-width: 992px) {
  .padding-x-md-105 {
    padding-left: 105px;
    padding-right: 105px;
  }
}
@media (max-width: 992px) {
  .max-width-md-65vw {
    display: block;
    margin: 0 auto;
    max-width: 65vw;
  }
}
body {
  font-family: "Clbd", Arial, sans-serif;
  font-size: 1rem;
  background-size: cover;
  scrollbar-width: thin;
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

input:focus,
a:focus {
  outline: none;
}

.btn {
  text-decoration: none;
  background-color: #cfb792;
  padding: 10px 30px;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: fit-content;
  color: #ffffff;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 1vmax;
  margin-top: 2vmax;
}
.btn-play {
  max-width: 25px !important;
}
.btn:hover {
  color: #ffffff;
}
.btn:focus {
  box-shadow: none;
}

#button {
  display: inline-block;
  background-color: #d9c5a4;
  width: 50px;
  text-decoration: none;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.video-custom {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  height: 910px;
}

.video-custom .poster-img {
  display: block;
  width: 100%;
  height: 100%;
}

.video-custom video {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  opacity: 0;
}

.video-custom .play-btn, .video-custom .pause-btn {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: rgba(217, 197, 164, 0.8352941176);
  z-index: 3;
  cursor: pointer;
  transition: 0.5s all;
  overflow: hidden;
}

.video-custom .pause-btn {
  display: none;
}

.video-custom .play-btn i {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 18px solid #000;
  border-right: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
}

.pause-btn i {
  position: absolute;
  left: -3px;
  right: 0px;
  bottom: 0px;
  top: 2px;
  margin: auto;
  width: 16px;
  height: 24px;
  flex-flow: row wrap;
}

.pause-btn i:before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #000;
  display: inline-block;
}

.pause-btn i:after {
  content: "";
  width: 4px;
  height: 100%;
  margin-left: 8px;
  background-color: #000;
  display: inline-block;
}

.playvideo .video-custom img {
  opacity: 0;
}

.playvideo .video-custom video {
  opacity: 1;
}

.video-custom .vplay {
  display: none;
}

.video-custom:hover .vplay + .pause-btn {
  display: block;
}

/***Volume Control***/
html:not(.playvideo) .sound-ctrl {
  display: none;
}

.sound-ctrl {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 5px;
  cursor: pointer;
}

.sound-ctrl .on-button {
  display: none;
}

.sound-ctrl img {
  opacity: 0;
}

.sound-ctrl .off-button, .sound-ctrl .on-button {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 0px;
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  cursor: pointer;
}

.soundctrlshow .on-button {
  display: block;
}

.soundctrlshow .off-button {
  display: none;
}

.playvideo .video-custom .sound-ctrl img {
  opacity: 1;
}

.soundctrlshow .on-button:before {
  content: "";
  position: absolute;
  left: 12px;
  top: -5px;
  z-index: 10;
  width: 3px;
  height: 32px;
  background-color: #fff;
  transform: rotate(45deg);
}

.modal {
  background-color: rgba(39, 34, 25, 0.6705882353);
  padding: 1rem;
}
.modal-body {
  background-color: rgba(217, 197, 164, 0.6666666667);
  border: 2px solid #baa15b;
  border-radius: 5px;
  background-image: url(../images/lines.webp);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 1.5rem;
}

.header {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 11111111;
  background-image: url("../images/bg-about.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.header .container-fluid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.header .logo img {
  max-width: 350px;
  margin-top: 1rem;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: transparent;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 20px;
  cursor: pointer;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #baa15b;
  color: #ffffff;
  transition: all 0.6s ease-in-out;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 0;
  text-decoration: none;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #baa15b;
  display: block;
  height: 2px;
  position: relative;
  transition: 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #baa15b;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 120%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */
@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
.whats-float {
  position: fixed;
  transform: translate(108px, 0px);
  bottom: 10%;
  right: 0;
  width: 150px;
  overflow: hidden;
  background-color: #25d366;
  color: #FFF;
  border-radius: 2px 0 0 2px;
  z-index: 11111111;
  transition: all 0.5s ease-in-out;
  vertical-align: middle;
}

.whats-float a span {
  color: white;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 10px;
  position: absolute;
  line-height: 16px;
  font-weight: 200;
}

.whats-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 10px;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.whats-float:hover {
  color: #FFFFFF;
  transform: translate(0px, 0px);
}

.whats-float:hover i {
  transform: rotate(360deg);
}

.menu {
  padding: 2vmax 2vmax 0 2vmax;
}
.menu .navbar-brand img {
  display: flex;
  margin: 1rem auto;
  width: 100%;
  max-width: 100px;
}
.menu-logo img {
  max-width: 280px;
  display: flex;
  margin: 0 auto;
}
.menu-links {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}
.menu-links-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}
.menu-links-left-store a {
  display: flex;
  text-decoration: none;
  align-items: end;
  gap: 7px;
  color: #baa15b;
}
.menu-links-left-store a img {
  max-width: 20px;
}
.menu-links-left-store a p {
  margin: 0;
  padding: 0;
  font-weight: 200;
  margin-bottom: -3.5px;
}
.menu-links-right-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1vmax;
  margin: 0;
}
.menu-links-right-list li a {
  text-decoration: none;
  border-radius: 50%;
}
.menu-links-right-list li a img {
  max-width: 33px;
}
.menu .submenu {
  margin-top: 2vmax;
}
.menu .submenu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.menu .submenu-list li {
  padding: 1vmax 0 1.2vmax 0;
}
.menu .submenu-list li a {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  color: #352c1e;
  font-weight: 100;
  width: 100%;
  height: 100%;
  padding: 1vmax;
  text-align: center;
}
.menu .submenu-list li:hover {
  background-color: #d9c5a4;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  color: #baa15b;
}
.menu .tel p {
  margin: 0;
  font-weight: 200;
}
.menu .tel:hover {
  color: #352c1e;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menu .tel:hover p {
  text-decoration: underline;
}
.menu-contacts {
  align-items: center;
  gap: 5rem;
}
@media (max-width: 1000px) {
  .menu-contacts {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.banner-carousel .item {
  height: 600px;
  position: relative;
}
.banner-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-carousel .mobile {
  display: none;
}
.banner-carousel .owl-nav {
  position: absolute;
  display: flex;
  align-items: center;
  right: 2%;
  top: 7%;
  width: 70px;
}
.banner-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.banner-carousel .owl-nav .owl-next {
  margin-left: 10px;
  position: absolute;
  right: 0;
}
.banner-carousel .owl-nav .owl-prev,
.banner-carousel .owl-nav .owl-next {
  border: 1px solid #ffffff;
  border-radius: 3px;
}
.banner-carousel .owl-nav .owl-prev img,
.banner-carousel .owl-nav .owl-next img {
  max-width: 30px;
  width: 100%;
  padding: 2px;
}

.mobile {
  display: none;
}

.about {
  padding: 10vmax 0 5vmax 0;
  background-color: #efebe6;
  position: relative;
}
.about::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/franchisees.webp");
  background-repeat: no-repeat;
  background-size: 780px;
  position: absolute;
  background-position: right 8vmax top 5vmax;
  left: 0;
  top: 0;
  z-index: 111;
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/lines.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.about-display {
  display: flex;
  position: relative;
  align-items: inherit;
  flex-direction: column;
}
.about-display-img {
  display: none;
  width: 100%;
  position: relative;
  z-index: 111;
}
.about-display-info {
  width: 50%;
  background-color: #d9c5a4;
  padding: 5vmax 4vmax;
  position: relative;
  z-index: 111;
}
.about-display-info-title {
  font-weight: 200;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 1vmax;
}
.about-display-info-text {
  font-weight: 200;
}
.about-display-image {
  width: 65%;
  margin-top: -6%;
  margin-left: -6%;
  margin-bottom: 5%;
}
.about-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-display-cards {
  margin-top: 4rem;
}
.about-display-cards .card-group {
  flex-wrap: wrap;
  gap: 1rem;
}
.about-display-cards .card-group .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  background-color: transparent;
  border: none;
}
.about-display-cards .card-group .card img {
  max-width: 70px;
}
.about-display-cards .card-group .card h6 {
  margin: 1.5rem 0;
  font-size: 22px;
  font-weight: 200;
  color: #baa15b;
}
.about-display-cards .card-group .card p {
  font-size: 15px;
  margin: 0;
  font-weight: 200;
}
.about-display-cards .card-group .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-display-cards .card-group .card-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.about-display-cards .card-group .card-list li svg {
  max-width: 25px;
  max-height: 25px;
}

.services {
  padding: 8vmax 0;
  background-image: url("../images/bg-about.png");
  background-size: cover;
  background-repeat: left top;
  position: relative;
}
.services::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/lines-investment.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 1000px;
  position: absolute;
  bottom: -5%;
  left: 0;
  z-index: 11;
}
.services .container {
  position: relative;
  z-index: 111;
}
.services-title {
  text-align: center;
  font-weight: 200;
  color: #000;
  font-size: 35px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 3vmax;
}
.services .nav {
  margin-top: 2vmax;
}
.services .nav-item .nav-link {
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 17px;
  border: none;
  padding: 1vmax 2vmax;
  border-radius: 0;
}
.services .nav-item .nav-link.active {
  background-color: #d9c5a4;
}
.services .tab-content .tab-pane-content {
  background-color: #e2ddd2;
  padding: 3rem 0;
}
.services .tab-content .tab-pane-content-txt {
  padding-right: 30px;
}
.services .tab-content .tab-pane-content p {
  font-weight: 300;
  font-size: 18px;
}
.services .tab-content .tab-pane-content img {
  width: 100%;
  max-width: 550px;
}
.services .tab-content .tab-pane-content .imgTwo {
  display: flex;
  margin: 1rem auto;
}
.services .tab-content .tab-pane-content .min {
  max-width: 400px;
}
.services-btn {
  display: flex;
  margin: 6vmax auto 0 auto;
  border-radius: 0;
  color: #4f3e25;
  text-transform: uppercase;
  font-size: 24px;
  background-color: #cfb792;
}
.services-foo {
  text-align: center;
  margin-top: 5vmax;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 32px;
}

.independence {
  background-image: url("../images/bg-independence.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  padding: 8vmax 0;
}
.independence-info-title {
  text-transform: uppercase;
  background-color: #ad8b5e;
  width: fit-content;
  padding: 5px 15px;
  color: #ffffff;
  font-weight: 100;
  font-size: 20px;
}
.independence-info-text {
  color: #000;
  font-weight: 100;
  width: 50%;
  margin: 2vmax 0;
  font-size: 15px;
}
.independence-btn {
  color: #000;
  text-transform: uppercase;
  font-weight: 100;
  background-color: #ebe3d6;
  border-radius: 0;
  font-size: 20px;
}
.independence-btn:hover {
  color: #ad8b5e;
}
.independence-title {
  width: 50%;
  font-size: 30px;
  font-weight: 200;
  margin-top: 2vmax;
  color: #ad8b5e;
}

.investment {
  padding: 8vmax 0;
  background-image: url("../images/bg-about.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.investment::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/lines-investment.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 1000px;
  position: absolute;
  bottom: -5%;
  left: 0;
  z-index: 11;
}
.investment-display {
  display: flex;
  align-items: flex-start;
  gap: 5vmax;
  position: relative;
  z-index: 111;
}
.investment-display-video {
  width: 40%;
}
.investment-display-info {
  width: 50%;
}
.investment-display-info-title {
  color: #ad8b5e;
  font-weight: 100;
  text-align: left;
  font-size: 40px;
}
.investment-display-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2vmax;
}
.investment-display-info-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5vmax;
}
.investment-display-info-list-item img {
  max-width: 30px;
}
.investment-display-info-list-item p {
  margin: 0;
  font-size: 22px;
  font-weight: 100;
  color: #6e6c69;
}
.investment .services-btn {
  margin: 5vmax 0 0 0;
  padding: 0.7vmax 5vmax;
}
.investment-stamp {
  display: flex;
  margin: 5vmax auto 0 auto;
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 111;
}

.depoiments {
  background-color: #ebe3d6;
  padding: 5vmax 0;
  position: relative;
}
.depoiments::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-depoiments(1).png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -7%;
  left: 0;
  z-index: 11;
}
.depoiments .container {
  position: relative;
  z-index: 111;
}
.depoiments-title {
  font-size: 50px;
  color: #352c1e;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 100%;
  margin: 0;
  left: 0;
  top: 50%;
  z-index: 111;
}
.depoiments .cards {
  text-align: center;
}
.depoiments .cards .card-group {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vmax;
  margin-bottom: 4vmax;
}
.depoiments .cards .card-group .card {
  min-width: 30%;
  background-color: #3a3a3a;
  border: 1.5px solid #baa15b;
  border-radius: 5px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1vmax;
  overflow: hidden;
}
.depoiments .cards .card-group .card img {
  width: 100%;
  max-width: 150px;
}
.depoiments .cards .card-group .card-info {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #baa15b;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 200%;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.depoiments .cards .card-group .card-info p {
  color: #3a3a3a;
  text-align: center;
  font-weight: 300;
  padding: 0 10px;
}
.depoiments .cards .card-group .card:hover .card-info {
  top: 0;
}
.depoiments .cards-depoiments {
  margin-top: 4vmax;
}
.depoiments .cards-depoiments-carousel {
  width: 100%;
  max-width: 40%;
  margin: 3vmax auto;
  position: relative;
}
@media (max-width: 1200px) {
  .depoiments .cards-depoiments-carousel {
    max-width: 100%;
  }
}
.depoiments .cards-depoiments-carousel .item {
  position: relative;
  margin: 0 2vmax;
}
.depoiments .cards-depoiments-carousel .item-text {
  padding: 1vmax;
  position: relative;
  border-radius: 5px;
  width: 100%;
  display: flex;
  margin: 0 auto 2vmax auto;
}
.depoiments .cards-depoiments-carousel .item-text p {
  color: #352c1e;
  font-style: italic;
  font-size: 18px;
  margin: 0;
  font-weight: 100;
}
.depoiments .cards-depoiments-carousel .item img {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  margin: 0 auto;
}
.depoiments .cards-depoiments-carousel .item h6 {
  color: #baa15b;
  font-weight: 100;
  margin: 1vmax 0 0.5vmax 0;
  font-size: 20px;
}
.depoiments .cards-depoiments-carousel .item .txt {
  font-size: 14px;
  font-weight: 100;
  color: #352c1e;
  margin: 0;
}
.depoiments .cards-depoiments-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.depoiments .cards-depoiments-carousel .owl-stage-outer {
  position: relative;
}
.depoiments .cards-depoiments-carousel .owl-nav {
  display: none;
}
.depoiments .cards-depoiments-carousel .owl-dots {
  width: 100%;
  height: 50px;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depoiments .cards-depoiments-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #baa15b;
  margin: 0 3px;
}
.depoiments .cards-depoiments-carousel .owl-dots .owl-dot.active {
  background-color: #352c1e;
}
.depoiments .media {
  margin-top: 10rem;
  text-align: center;
}
.depoiments .media-carousel {
  margin: 6vmax 0 0 0;
}
.depoiments .media-carousel .owl-stage-outer {
  padding: 0 1.5vmax;
}
.depoiments .media-carousel .owl-stage {
  display: flex;
  align-items: inherit;
  gap: 4rem;
  justify-content: space-between;
}
.depoiments .media-carousel .card {
  background-color: transparent;
  border: none;
  text-align: left;
}
.depoiments .media-carousel .card img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
}
.depoiments .media-carousel .card-text {
  padding-top: 2vmax;
}
.depoiments .media-carousel .card-text h6 {
  color: #ad8b5e;
  margin-bottom: 1.5vmax;
  font-weight: 100;
  font-size: 25px;
}
.depoiments .media-carousel .card-text p {
  color: #352c1e;
  font-size: 16px;
  font-weight: 100;
}
.depoiments .media-carousel .card-text a {
  text-decoration: none;
  color: #baa15b;
  font-size: 14px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.depoiments .media-carousel .card-text a:hover {
  margin-left: 6px;
}
.depoiments-btn {
  background-color: #d9c5a4;
  color: #352c1e;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 100;
  text-decoration: none;
  padding: 1vmax 4vmax;
}
.depoiments-btn:hover {
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.foo {
  background-image: none;
  background-color: #efebe6;
}
.foo .menu-logo {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.foo .menu-logo .stick {
  max-width: 180px;
}
.foo .copy {
  padding: 2vmax 0 0.5vmax 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.foo .copy span {
  color: #352c1e;
  font-weight: 100;
}
.foo .copy a {
  color: #352c1e;
  font-weight: 100;
  font-size: 14px;
  text-decoration: none;
}
.foo .copy a:hover {
  text-decoration: underline;
}
.foo .submenu-list li {
  padding: 1vmax;
}

.lgpd {
  background-color: #e2ddd2;
  padding: 3vmax 0;
}
.lgpd .menu-logo {
  margin-bottom: 3rem;
}
.lgpd p {
  color: #352c1e;
  font-weight: 100;
}
.lgpd a {
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 0.5vmax;
}
.lgpd a p {
  margin: 0;
  color: #baa15b;
}

.medias {
  padding: 3vmax;
  background-color: #dbd8d3;
}
.medias .medias-img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 400px;
  display: flex;
  margin: 0 auto 3vmax auto;
  object-fit: cover;
}
.medias h6 {
  color: #baa15b;
  text-align: center;
  font-size: 25px;
  margin: 0 auto 2vmax auto;
  width: 50%;
  display: flex;
}
.medias p {
  color: #000;
  font-weight: 100;
  margin-bottom: 2vmax;
  font-size: 15px;
}
.medias a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #baa15b;
}
.medias a img {
  max-width: 20px;
  margin-right: 5px;
}
.medias a p {
  margin: 0;
  font-size: 18px;
  color: #baa15b;
}

.medias-page {
  padding: 4vmax 0;
  background-color: #dbd8d3;
}
.medias-page .reverse {
  flex-direction: row-reverse;
}
.medias-page .reverse-end {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: end;
}
.medias-page-display {
  align-items: center;
  padding: 1vmax 0;
  margin: 2rem 0;
}
@media (max-width: 1000px) {
  .medias-page-display {
    gap: 1.5rem;
  }
}
.medias-page-display-img {
  overflow: hidden;
}
.medias-page-display-img a {
  width: 100%;
  height: 100%;
}
.medias-page-display-img a img {
  width: 100%;
  display: flex;
  margin: 0 auto;
  object-fit: cover;
  height: 100%;
  max-height: 400px;
}
.medias-page-display-img:hover img {
  border: 1px solid #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.medias-page-display h5 {
  color: #baa15b;
  font-weight: 200;
  font-size: 24px;
  margin: 0;
}
.medias-page-display p {
  color: #000;
  font-weight: 100;
  margin: 1vmax 0 2vmax 0;
}
.medias-page-display a {
  font-weight: 100;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 900px;
  }
}
@media (max-width: 1200px) {
  .header {
    position: relative;
  }
  .header .container-fluid {
    justify-content: space-between;
    padding-bottom: 0.5rem;
  }
  .header .logo {
    padding: 10px 0 0 0;
  }
  .header .logo img {
    max-width: 250px;
    margin: 0;
  }
  .header .menu {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .header .menu a {
    font-size: 14px;
    padding: 0;
    margin: 10px;
  }
  .header .menu a:hover {
    background-color: transparent;
    color: #000;
  }
  .menu .submenu-list li a {
    font-size: 14px;
    padding: 0;
  }
  .menu .container-fluid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .menu-logo {
    margin-top: 0 !important;
  }
  .about {
    padding: 3vmax 0;
  }
  .about::after {
    background-size: 600px;
  }
  .about-display {
    flex-direction: column;
  }
  .about-display-img {
    display: block;
  }
  .about-display-info {
    width: 100%;
    padding: 3vmax 1.5vmax;
  }
  .about-display-info-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .about-display-info-text {
    font-size: 14px;
    text-align: justify;
  }
  .about::before {
    display: none;
  }
  .services {
    padding: 3vmax 0;
  }
  .services::after {
    background-size: 700px;
  }
  .services-title {
    font-size: 22px;
  }
  .services .nav {
    margin-top: 4vmax;
    flex-wrap: nowrap;
    align-items: center;
  }
  .services .nav-item .nav-link {
    font-size: 10px;
    text-align: center;
    padding: 1vmax;
  }
  .services .tab-pane-content button {
    display: flex;
    margin: 0 auto;
    font-size: 14px;
  }
  .services .tab-pane-content p {
    font-size: 14px !important;
    text-align: justify;
    margin-bottom: 1.5rem;
  }
  .services .tab-pane-content-txt {
    padding: 10px !important;
  }
  .services .tab-pane-content .imgTwo {
    max-width: 300px !important;
  }
  .services-btn {
    font-size: 16px;
  }
  .services-foo {
    font-size: 20px;
  }
  .independence {
    padding: 4vmax 0;
    background-position: bottom;
  }
  .independence-info-title {
    font-size: 14px;
    width: fit-content;
  }
  .independence-info-text {
    width: 100%;
    font-size: 14px;
    text-align: justify;
  }
  .independence-btn {
    font-size: 16px;
    margin: 2rem auto;
    display: flex;
  }
  .independence-title {
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #352c1e;
  }
  .investment {
    padding: 3vmax 0;
  }
  .investment-display {
    flex-direction: column;
    gap: 3vmax;
  }
  .investment-display-video {
    width: 100%;
  }
  .investment-display-video .video-custom {
    height: 680px;
  }
  .investment-display-info {
    width: 100%;
  }
  .investment-display-info-title {
    font-size: 20px;
  }
  .investment-display-info-list-item img {
    max-width: 20px;
  }
  .investment-display-info-list-item p {
    font-size: 14px;
  }
  .investment:after {
    background-size: 700px;
    bottom: 38%;
  }
  .investment-stamp {
    max-width: 150px;
  }
  .investment .services-btn {
    margin: 3rem auto 0 auto;
  }
  .depoiments {
    padding: 3vmax 0;
  }
  .depoiments-title {
    font-size: 20px;
  }
  .depoiments .cards-carousel .owl-stage {
    align-items: flex-start;
  }
  .depoiments .media {
    margin-top: 5vmax;
  }
  .depoiments .media-carousel .owl-stage {
    gap: 1rem;
  }
  .depoiments .media-carousel .item .card-text h6 {
    font-size: 20px;
  }
  .depoiments .media-carousel .item .card-text p {
    font-size: 14px;
  }
  .depoiments-btn {
    font-size: 16px;
  }
  .foo {
    padding: 3vmax 0 1vmax 0;
    background-image: url(../images/lines-investment.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
  }
  .foo .menu-logo {
    margin: 5vmax 0;
    gap: 1.5rem;
  }
  .foo .menu-logo img {
    max-width: 180px;
  }
  .foo .menu-logo .stick {
    max-width: 110px;
  }
  .foo .copy span,
  .foo .copy a {
    font-size: 12px !important;
  }
  .medias {
    padding: 2rem 0;
  }
  .medias h6 {
    width: 100%;
    font-size: 20px;
  }
  .modal-body {
    padding: 0.5rem;
  }
  #button {
    width: 40px;
    height: 40px;
    left: 11px;
  }
  #button::after {
    line-height: 38px;
    font-weight: 300;
  }
}
@media (max-width: 750px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .mobile .banner-carousel .item {
    height: 700px;
  }
  .mobile .banner-carousel .item img {
    width: 100%;
    height: 100%;
  }
  .mobile .banner-carousel .owl-nav {
    display: none;
  }
  .carousel-carousel .item {
    height: 300px;
  }
  .carousel-carousel .item-text h1 {
    font-size: 18px;
  }
  .carousel-carousel .item-text p {
    font-size: 11px;
    width: 100%;
  }
  .carousel-carousel .item::after {
    background: linear-gradient(to top, transparent 0%, rgb(5, 5, 5) 100%);
  }
  .carousel-carousel .owl-nav {
    bottom: 5%;
    left: 5%;
    top: auto;
  }
  .carousel-carousel .owl-nav img {
    max-width: 30px !important;
  }
}
@media (min-width: 1920px) {
  .banner-carousel .item {
    height: 1000px;
  }
  .carousel-carousel .item {
    height: 1200px;
  }
  .about::before {
    background-size: 1200px;
  }
}

/*# sourceMappingURL=styles.css.map */
