@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;
  scrollbar-width: thin;
  overflow-x: hidden;
  background-image: url("../images/bg-awards.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 768px) {
  body {
    background-position: right 0 bottom 0;
  }
}

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

#button {
  display: inline-block;
  background-color: #baa15b;
  width: 50px;
  text-decoration: none;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 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;
  background-color: #6a6a6a;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.btn {
  text-decoration: none;
  background-color: #baa15b;
  padding: 10px 30px;
  border-radius: 0.5rem;
  -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: #272219;
}
.btn:focus {
  box-shadow: none;
}

video {
  width: 100%;
  max-width: 100%;
  display: block;
  vertical-align: middle;
  height: 100%;
  position: relative;
  z-index: 111;
}

.modal {
  background-color: rgba(39, 34, 25, 0.6039215686);
  padding: 1rem;
}
.modal img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1rem auto;
  display: flex;
}

.wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  max-width: 365px;
  border-radius: 15px;
  text-align: center;
  padding: 25px 25px 30px 25px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 111;
}

.wrapper.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

::selection {
  color: #fff;
  background: #baa15b;
}

.wrapper img {
  max-width: 250px;
}

.wrapper .content h1 {
  font-size: 25px;
  margin: 0;
}

.wrapper header {
  font-size: 25px;
  font-weight: 600;
}

.content p {
  color: #858585;
  margin: 5px 0 20px 0;
  font-size: 14px;
}

.content .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons .item {
  margin: 0 10px;
}

.buttons button {
  padding: 10px 20px;
  background: #baa15b;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.buttons button:hover {
  transform: scale(0.97);
}

.buttons a {
  color: #baa15b;
}

header {
  background-image: url("../images/bg-awards.webp");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 111;
}
header .navbar-brand img {
  width: 100%;
  max-width: 380px;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-collapse {
  justify-content: space-between;
}
header .navbar-collapse .container {
  width: 100%;
}
header .navbar-collapse ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}
header .navbar-collapse ul li a i {
  font-size: 25px;
  margin-right: 10px;
}
header .navbar-collapse ul li a p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}
header .navbar-collapse ul li a:hover {
  color: #baa15b;
}
header .aside {
  background-color: #baa15b;
  list-style: none;
  padding: 0.5vmax 10px;
  display: flex;
  align-items: center;
  margin: 0;
  width: 100%;
}
header .aside ul li {
  margin: 0 1.5vmax;
}
header .aside ul li a {
  color: #272219;
  text-transform: uppercase;
  -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;
  font-weight: 400;
}
header .aside ul li a:hover {
  color: #ffffff;
}

.banner-carousel .item {
  height: 600px;
  position: relative;
}
.banner-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.banner-carousel .item-text {
  position: absolute;
  left: 10%;
  top: 45%;
  transform: translateY(-50%);
}
.banner-carousel .item-text h1, .banner-carousel .item-text p {
  color: #ffffff;
  margin: 0;
}
.banner-carousel .item-text h1 {
  font-weight: 300;
  font-size: 55px;
}
.banner-carousel .item-text p {
  font-weight: 300;
  margin: 1rem 0 2rem 0;
  font-size: 18px;
}
.banner-carousel .item-text a {
  text-decoration: none;
  color: #ffffff;
  border: 2px solid #ffffff;
  height: 40px;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
}
.banner-carousel .item-text a:hover {
  color: #272219;
  border-color: #baa15b;
  background-color: #baa15b;
  -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;
}
.banner-carousel .owl-nav {
  position: absolute;
  display: flex;
  align-items: center;
  left: 10%;
  bottom: 20%;
  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;
}

.about {
  background-color: transparent;
  position: relative;
  z-index: 111;
}
.about-display-mobile {
  position: relative;
}
.about-display-mobile img {
  object-fit: cover;
}
.about-display-text {
  padding-top: 3vmax;
  padding-bottom: 3vmax;
}
.about-display-text h1 {
  color: #baa15b;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-display-text p {
  color: #ffffff;
  font-weight: 300;
}
.about-display-text .flag {
  padding: 1vmax 0;
}
.about-display-text .flag i {
  margin-right: 8px;
}
.about-display-text .flag i, .about-display-text .flag p {
  color: #baa15b;
  font-size: 22px;
  font-weight: 400;
}

.phones {
  padding: 1rem 0;
}
.phones-display {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .phones-display {
    gap: 0 !important;
  }
}
.phones-display-img img {
  width: 100%;
  max-width: 500px;
}
.phones-display-phones {
  width: 400px;
}
.phones-display-phones-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
.phones-display-phones-list-item {
  border: 1px solid #ffffff;
  padding: 1rem;
  border-radius: 5px;
}
.phones-display-phones-list-item:hover {
  background-color: #baa15b;
}
.phones-display-phones-list-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  justify-content: space-between;
}
.phones-display-phones-list-item a svg {
  max-width: 30px;
}
.phones-display-phones-list-item a p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}
.phones-display-phones-list-item a img {
  max-width: 80px;
}

.carousel-carousel .item {
  height: 700px;
  position: relative;
  z-index: 111;
}
.carousel-carousel .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 11;
}
.carousel-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel-carousel .item-text {
  width: 100%;
  position: absolute;
  text-align: left;
  top: 10%;
  z-index: 111;
}
.carousel-carousel .item-text h1 {
  font-size: 55px;
  margin-bottom: 1rem;
  font-weight: 400;
}
.carousel-carousel .item-text h1,
.carousel-carousel .item-text p {
  color: #ffffff;
}
.carousel-carousel .item-text p {
  font-weight: 300;
  margin: 0;
}
.carousel-carousel .owl-nav {
  display: flex;
  position: absolute;
  align-items: center;
  top: 10%;
  right: 5%;
}
.carousel-carousel .owl-nav .owl-prev,
.carousel-carousel .owl-nav .owl-next {
  background-color: #ffffff;
  border-radius: 3px;
}
.carousel-carousel .owl-nav .owl-prev img,
.carousel-carousel .owl-nav .owl-next img {
  width: 100%;
  max-width: 48px;
  padding: 3px;
}
.carousel-carousel .owl-nav .owl-next {
  margin-left: 10px;
}

.services {
  padding: 3vmax 0;
}
.services-title {
  text-align: center;
  font-weight: 400;
  color: #baa15b;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 1vmax;
}
.services .nav {
  margin-top: 2vmax;
}
.services .nav-item .nav-link {
  color: #baa15b;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  border: none;
}
.services .nav-item .nav-link.active {
  color: #272219;
  border-bottom: 5px solid #baa15b;
}
.services .tab-content .tab-pane-content {
  background-color: #ffffff;
  padding: 1rem 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: 700px;
}
.services .tab-content .tab-pane-content .btn:hover {
  box-shadow: 0.3px 0.3px 3px #000;
}

.sliderImg {
  padding: 3vmax 0;
  text-align: center;
}
.sliderImg h1 {
  text-align: center;
  color: #baa15b;
  font-weight: 300;
  text-transform: uppercase;
}
.sliderImg .card-group {
  margin: 3vmax 0;
}
.sliderImg .card-group .card {
  margin: 0 1vmax;
  height: 480px;
  border-radius: 5px !important;
  border: none;
  background-color: #3a3a3a;
}
@media (max-width: 1200px) {
  .sliderImg .card-group .card {
    margin-bottom: 2vmax;
  }
}
.sliderImg .card-group .card #comparison,
.sliderImg .card-group .card #comparisonTwo,
.sliderImg .card-group .card #comparisonTree {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.sliderImg .card-group .card figure {
  position: absolute;
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.sliderImg .card-group .card .figureOne {
  background-image: url("../images/cadeiraafter.jpeg");
}
.sliderImg .card-group .card .figureTwo {
  background-image: url("../images/cadeiraAAfter.jpeg");
}
.sliderImg .card-group .card .figureTree {
  background-image: url("../images/sofaafter.jpeg");
}
.sliderImg .card-group .card #divisor {
  background-image: url("../images/cadeirabefore.jpeg") !important;
}
.sliderImg .card-group .card #divisorTwo {
  background-image: url("../images/cadeiraBBefore.jpeg") !important;
}
.sliderImg .card-group .card #divisorTree {
  background-image: url("../images/sofabefore.jpeg") !important;
}
.sliderImg .card-group .card #divisor,
.sliderImg .card-group .card #divisorTwo,
.sliderImg .card-group .card #divisorTree {
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 100%;
  border-radius: 5px;
}
.sliderImg .card-group .card #divisor::before, .sliderImg .card-group .card #divisor::after,
.sliderImg .card-group .card #divisorTwo::before,
.sliderImg .card-group .card #divisorTwo::after,
.sliderImg .card-group .card #divisorTree::before,
.sliderImg .card-group .card #divisorTree::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}
.sliderImg .card-group .card #divisor::before,
.sliderImg .card-group .card #divisorTwo::before,
.sliderImg .card-group .card #divisorTree::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
.sliderImg .card-group .card #divisor::after,
.sliderImg .card-group .card #divisorTwo::after,
.sliderImg .card-group .card #divisorTree::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}
.sliderImg .card-group .card #handle,
.sliderImg .card-group .card #handleTwo,
.sliderImg .card-group .card #handleTree {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.sliderImg .card-group .card #handle::before, .sliderImg .card-group .card #handle::after,
.sliderImg .card-group .card #handleTwo::before,
.sliderImg .card-group .card #handleTwo::after,
.sliderImg .card-group .card #handleTree::before,
.sliderImg .card-group .card #handleTree::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
.sliderImg .card-group .card #handle::before,
.sliderImg .card-group .card #handleTwo::before,
.sliderImg .card-group .card #handleTree::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
.sliderImg .card-group .card #handle::after,
.sliderImg .card-group .card #handleTwo::after,
.sliderImg .card-group .card #handleTree::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}
.sliderImg .card-group .card input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
}
.sliderImg .card-group .card input[type=range]:focus, .sliderImg .card-group .card input[type=range]:active {
  border: none;
  outline: none;
}
.sliderImg .card-group .card input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}
.sliderImg .card-group .card input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}
.sliderImg .card-group .card-info {
  padding: 10px;
}
.sliderImg .card-group .card-info p {
  margin: 0;
  color: #baa15b;
  font-size: 17px;
}

.business {
  text-align: center;
  padding: 2vmax 0 4vmax 0;
  background-color: #3a3a3a;
}
.business img {
  max-width: 280px;
  width: 100%;
  display: flex;
  margin: 0 auto 0.5vmax auto;
}
.business h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 28px;
}
.business p {
  text-transform: uppercase;
  font-weight: 300;
  color: #baa15b;
  font-size: 20px;
}
.business span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
.business-awards {
  margin: 2vmax auto !important;
  max-width: 220px !important;
}

.cards {
  padding-top: 3vmax;
  text-align: center;
}
.cards .card-group {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vmax;
  margin-bottom: 4vmax;
}
.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;
}
.cards .card-group .card img {
  width: 100%;
  max-width: 150px;
}
.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;
}
.cards .card-group .card-info p {
  color: #3a3a3a;
  text-align: center;
  font-weight: 300;
  padding: 0 10px;
}
.cards .card-group .card:hover .card-info {
  top: 0;
}
.cards-depoiments {
  margin-top: 4vmax;
}
.cards-depoiments-carousel {
  width: 100%;
  max-width: 40%;
  margin: 3vmax auto;
  position: relative;
}
@media (max-width: 1200px) {
  .cards-depoiments-carousel {
    max-width: 100%;
  }
}
.cards-depoiments-carousel .item {
  position: relative;
  margin: 0 2vmax;
}
.cards-depoiments-carousel .item-text {
  background-color: #ffffff;
  padding: 1vmax;
  position: relative;
  border-radius: 5px;
  width: 100%;
  display: flex;
  margin: 0 auto 2vmax auto;
}
.cards-depoiments-carousel .item-text::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%) rotate(135deg);
  bottom: 0;
}
.cards-depoiments-carousel .item-text p {
  color: #272219;
  font-style: italic;
  font-size: 18px;
  margin: 0;
  font-weight: 300;
}
.cards-depoiments-carousel .item img {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  margin: 0 auto;
}
.cards-depoiments-carousel .item h6 {
  color: #ffffff;
  margin: 1vmax 0 0.5vmax 0;
  font-size: 16px;
}
.cards-depoiments-carousel .item .txt {
  font-size: 14px;
  color: #baa15b;
  margin: 0;
}
.cards-depoiments-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.cards-depoiments-carousel .owl-stage-outer {
  position: relative;
}
.cards-depoiments-carousel .owl-nav {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
}
.cards-depoiments-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -1%;
}
.cards-depoiments-carousel .owl-nav .owl-next {
  position: absolute;
  right: -1%;
}
.cards-depoiments-carousel .owl-nav img {
  max-width: 30px;
  width: 100%;
}
.cards-depoiments-carousel .owl-dots {
  width: 100%;
  height: 50px;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards-depoiments-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #baa15b;
  margin: 0 3px;
}
.cards-depoiments-carousel .owl-dots .owl-dot.active {
  background-color: #ffffff;
}

.video {
  text-align: center;
}
.video .wrap {
  position: relative;
  max-width: 1000px;
  width: 90%;
  margin: 100px auto;
}
.video .box-video {
  position: relative;
  width: 100%;
  margin: 0 auto 20px auto;
  cursor: pointer;
  overflow: hidden;
  height: 700px;
}
@media (max-width: 600px) {
  .video .box-video {
    height: 350px !important;
  }
}
.video .box-video .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
  background-image: url("../images/bt-video.webp");
}
.video .box-video.open .bg-video {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s 0.8s;
  transition: all 0.6s 0.8s;
}
.video .box-video.open .video-container {
  opacity: 1;
  -webkit-transition: all 0.6s 0.8s;
  transition: all 0.6s 0.8s;
}
.video .video-container {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
  z-index: 1;
  padding-bottom: 56.27198%;
}
.video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.video h1 {
  font-size: 200px;
  color: #baa15b;
  font-family: cursive;
  margin: 0;
  line-height: 1%;
  margin-top: 14vmax;
}
.video p {
  font-size: 18px;
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
}
.video h6 {
  font-size: 20px;
  color: #baa15b;
  font-weight: 300;
}

.media {
  padding: 5vmax 0;
  text-align: center;
}
.media-carousel {
  margin: 2vmax 0 4vmax 0;
}
.media-carousel .owl-stage {
  display: flex;
  align-items: inherit;
}
.media-carousel .item {
  margin: 0 1vmax;
}
.media-carousel .card {
  background-color: #3a3a3a;
  border: none;
  border-radius: 5px !important;
  text-align: left;
}
.media-carousel .card img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.media-carousel .card-text {
  padding: 1vmax;
}
.media-carousel .card-text h6 {
  color: #baa15b;
  margin-bottom: 1.5vmax;
  font-size: 20px;
}
.media-carousel .card-text p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}
.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;
}
.media-carousel .card-text a:hover {
  margin-left: 6px;
}

.contacts {
  padding-bottom: 4vmax;
}
.contacts .card-group {
  gap: 2vmax;
}
.contacts .card-group .card {
  background-color: #3a3a3a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2vmax;
  border: none;
  border-radius: 5px !important;
}
.contacts .card-group .card img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.contacts .card-group .card h4 {
  color: #baa15b;
  margin: 2vmax 0;
}
.contacts .card-group .card p {
  color: #ffffff;
  margin-bottom: 2vmax;
  font-weight: 300;
}

.medias {
  padding: 3vmax;
}
.medias .medias-img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  display: flex;
  margin: 0 auto 3vmax auto;
  object-fit: cover;
  max-height: 400px;
}
.medias h6 {
  color: #baa15b;
  text-align: center;
  font-size: 25px;
  margin: 0 auto 2vmax auto;
  width: 50%;
  display: flex;
}
.medias p {
  color: #ffffff;
  font-weight: 300;
  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;
}

.foo {
  padding: 2vmax 0;
  background-color: #3a3a3a;
  text-align: center;
}
.foo ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.foo ul .last::after {
  display: none;
}
.foo ul li {
  padding: 0 1vmax;
  position: relative;
  display: flex;
  align-items: center;
}
.foo ul li::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #baa15b;
  position: absolute;
  right: 0;
}
.foo ul li a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  -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 ul li a:hover {
  color: #baa15b;
}
.foo span {
  font-weight: 300;
  color: #ffffff;
  font-size: 16px;
}
.foo span span {
  color: #baa15b;
  font-size: 18px;
}
.foo span span span {
  font-style: italic;
}
.foo-content {
  align-items: center;
  justify-content: center;
  padding: 2vmax;
  gap: 2vmax;
}
.foo-content img {
  width: 100%;
  max-width: 350px;
}
.foo-content-links {
  display: flex;
  flex-direction: column;
}
.foo-content-links-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.foo-content-links-link i, .foo-content-links-link p {
  color: #ffffff;
}
.foo-content-links-link i {
  font-size: 20px;
}
.foo-content-links-link p {
  margin: 0;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 300;
}
.foo-content-links-link:hover i, .foo-content-links-link:hover p {
  color: #baa15b;
  -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 {
  padding: 3vmax 0;
}
.medias-page .reverse {
  flex-direction: row-reverse;
}
.medias-page-display {
  align-items: center;
  padding: 1vmax 0;
}
.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;
  object-position: center;
}
.medias-page-display-img a:hover img {
  scale: 10px;
  transform: scale(1.02);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.medias-page-display h5 {
  color: #baa15b;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
}
.medias-page-display p {
  color: #ffffff;
  font-weight: 300;
  margin: 1vmax 0 2vmax 0;
}
.medias-page-display a {
  font-weight: 300;
}

@media (max-width: 1000px) {
  header {
    padding: 1vmax 0;
  }
  header .navbar-collapse .container {
    margin: 0;
  }
  header .navbar-nav li a i {
    font-size: 18px !important;
  }
  header .navbar-nav li a p {
    font-size: 16px !important;
  }
  header .navbar-nav li a:focus {
    color: #baa15b;
  }
  header .navbar-brand {
    padding: 0;
    margin: 0;
  }
  header .navbar-brand img {
    max-width: 240px;
  }
  header .navbar-toggler i {
    font-size: 26px;
    font-weight: 300;
    color: #baa15b !important;
  }
  header .aside {
    background-color: transparent;
    padding-top: 0;
  }
  header .aside .navbar-collapse ul li {
    margin-bottom: 1vmax;
  }
  header .aside .navbar-collapse ul li a {
    color: #ffffff;
    font-weight: 300;
    font-size: 14px;
  }
  header .aside .navbar-collapse ul li a:hover {
    color: #baa15b;
  }
  .wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner-carousel .item {
    height: 400px;
  }
  .banner-carousel .item-text {
    left: 5%;
  }
  .banner-carousel .item-text h1 {
    font-size: 20px;
  }
  .banner-carousel .item-text p {
    font-size: 14px;
    width: 80%;
  }
  .banner-carousel .item-text a {
    font-size: 14px;
  }
  .banner-carousel .owl-nav {
    left: 5%;
  }
  .about-display-mobile img {
    height: auto;
  }
  .about-display-text h1 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .about-display-text p {
    font-size: 14px;
  }
  .about-display-text .flag i, .about-display-text .flag p {
    font-size: 20px;
  }
  .carousel-carousel .item {
    height: 300px;
  }
  .carousel-carousel .item-text h1 {
    font-size: 18px;
  }
  .carousel-carousel .item-text p {
    font-size: 11px;
  }
  .carousel-carousel .owl-nav {
    bottom: 5%;
    left: 5%;
    top: auto;
  }
  .carousel-carousel .owl-nav img {
    max-width: 30px !important;
  }
  .services-title {
    font-size: 22px;
  }
  .services .nav {
    align-items: center;
    justify-content: center;
    margin-top: 4vmax;
  }
  .services .nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .services .nav-item .nav-link {
    font-size: 16px;
    width: 100%;
  }
  .services .tab-pane-content button {
    display: flex;
    margin: 0 auto;
  }
  .business img {
    max-width: 200px;
  }
  .business h2 {
    font-size: 22px;
  }
  .business p {
    font-size: 16px;
  }
  .business span {
    font-size: 14px;
  }
  .cards-depoiments-carousel .owl-nav {
    top: 60%;
  }
  .media-carousel .card {
    min-height: 720px;
  }
  .medias {
    padding: 1vmax 0;
  }
  .medias h6 {
    width: 100%;
  }
  .foo img {
    max-width: 200px;
    margin-right: 20px;
  }
  .foo-content {
    justify-content: center;
  }
  .foo-content-links {
    flex-direction: row;
    gap: 3vmax;
  }
  .foo-content-links-link p {
    display: none;
  }
  .foo span {
    font-size: 12px;
  }
  .foo span span {
    font-size: 14px;
  }
  #button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: 22%;
    right: 11px;
  }
  #button::after {
    line-height: 38px;
    font-weight: 300;
  }
}

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