@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --color-gray: #EBEBE9;
  --color-dark-blue: #7ca0bd;
  --color-dark-gray: #596263;
  --color-light-dark-gray: #a2a7a6;
  --color-light-gray: #AEAEAE;
}

html {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

main {
  background-color: #596263;
  margin-bottom: -35px;
  padding-bottom: 65px;
}

a {
  color: white;
  text-decoration: none;
}

p {
  margin: 0;
}

* {
  scrollbar-color: white transparent;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #596263;
  color: white;
  z-index: -2;
  position: relative;
}

.row {
  margin-right: auto;
  margin-left: auto;
}

input.form-control::-moz-placeholder {
  color: #AEAEAE;
  opacity: 1;
}

input.form-control::placeholder {
  color: #AEAEAE;
  opacity: 1;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding-right: 0;
  padding-left: 0;
}

.triangle-right-rounded {
  border: none;
}

.triangle-right-rounded::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: inherit;
  right: -15px;
  top: 68%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 4px;
  border-bottom-left-radius: 12px;
  z-index: 2;
}

.triangle-right-rounded::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #596263;
  right: -25px;
  top: 68%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 4px;
  border-bottom-left-radius: 12px;
  z-index: 1;
}

.triangle-right-rounded {
  border: none;
}

.triangle-center-rounded::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: inherit;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 4px;
  border-bottom-left-radius: 12px;
  z-index: 2;
}

.triangle-center-rounded::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #596263;
  right: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 4px;
  border-bottom-left-radius: 12px;
  z-index: 1;
}

.btn {
  border-radius: 100px;
  font-size: 1.5rem;
  padding: 8px 50px;
}
.btn.dark-gray {
  background-color: #596263;
  color: #EBEBE9;
}
.btn.dark-gray:hover {
  background-color: #7ca0bd;
}
.btn.white {
  background-color: #EBEBE9;
  color: #596263;
}
.btn.white:hover {
  border: 1px solid white;
  background-color: #7ca0bd;
  color: white;
}
.btn.white.white--hover_blue {
  border: 1px solid #596263;
  text-transform: uppercase;
}
.btn.white.white--hover_blue:hover {
  background-color: #7ca0bd;
  color: white;
  border: 1px solid white;
}

.partnership-tab-button--active {
  background-color: #7ca0bd !important;
  color: white !important;
  border: 1px solid white !important;
}

.button-container .btn {
  flex: 1 1 0;
  min-width: 0;
}

.card.gray {
  background-color: #EBEBE9;
  border-radius: 20px;
  color: #596263;
  height: 100% !important;
}
.card.gray a {
  color: inherit;
  outline: none;
  text-decoration: none;
}
.card.gray a.dark-gray {
  color: white;
}
.card.gray .card__title {
  font-size: 1rem;
  font-weight: 500;
}
.card.gray svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card.gray:hover {
  background-color: #273275;
}
.card.gray.nohover:hover {
  background-color: #EBEBE9;
}

.square {
  aspect-ratio: 1/1;
}

.card.transparent {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
}
.card.transparent .title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.card.dark-blue {
  background-color: #7ca0bd;
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
}

.cards {
  padding-bottom: 50px;
}
.cards .row:not(:last-child) {
  margin-bottom: 30px;
}
.cards .card {
  height: 200px;
  border-radius: 10px;
  z-index: 0;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  padding: 0 20px;
  /* word-wrap: break-word; */
  word-break: break-word;
}
.cards .card a {
  text-decoration: none;
  color: white;
}
.cards .card p {
  margin: 0;
}
.cards .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #7ca0bd;
  mix-blend-mode: hard-light;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}
.cards .card:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #7ca0bd;
  mix-blend-mode: hard-light;
  opacity: 1;
}

.cards.dark-gray-background .card.background-container .background-image {
  filter: brightness(80%);
}
.cards.dark-gray-background .card-title {
  font-size: 1rem;
}

.card.nohover.gray .card__title {
  text-transform: uppercase;
}
.card.nohover.gray small {
  font-size: 0.8rem;
}

.card.nohover.gray .card__title {
  line-height: 1.2;
  min-height: 3.6em;
}

.card .text-div > br {
  display: none;
}

.table-sort .card .text-div {
  overflow-y: auto;
  color: #596263;
}

header {
  z-index: 1;
  font-size: 1.2rem;
  color: #596263;
}
header.position-absolute {
  left: 0;
  right: 0;
}
header .navbar .nav-item {
  margin-right: 10px;
}
header .navbar .dropdown-toggle::after {
  margin-left: 0;
}
header .navbar .container {
  background-color: #EBEBE9;
  border-radius: 100px;
  padding-left: 50px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .dropdown-menu[data-bs-popper] {
  background-color: rgba(235, 235, 233, 0.5);
  backdrop-filter: blur(30px);
  width: 400px;
  margin-top: 11px;
  border: 1px solid white;
  border-radius: 15px;
  padding: 15px 10px;
}
header .dropdown-menu[data-bs-popper] .dropdown-item {
  color: white;
  font-weight: 400;
  font-size: 1.5rem;
}
header .dropdown-menu[data-bs-popper] .dropdown-item:hover {
  background-color: #7ca0bd;
  border-radius: 3rem;
}
header form > div {
  background-color: #a2a7a6;
  border-radius: 100px;
  padding: 5px 15px;
}
header form > div input {
  background: transparent;
  box-shadow: none;
  border: none;
  caret-color: white;
  color: white;
  outline: none;
}
header form > div input [type=search]:focus {
  outline: none;
}
header form > div input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
header form > div input::-moz-placeholder {
  color: white;
  opacity: 1;
}
header form > div input::placeholder {
  color: white;
  opacity: 1;
}
header form button {
  background-color: #a2a7a6;
  border: none;
  aspect-ratio: 1/1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

footer {
  font-size: 1.2rem;
  color: #596263;
  z-index: 2;
  position: relative;
}
footer #title-search {
  width: 100%;
  max-width: 290px;
}
footer p {
  font-size: 1.2rem;
}
footer .footer__background {
  background-color: #EBEBE9;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  padding: 50px 0;
}
footer.footer--slided-up {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer p {
  margin: 0;
}
footer form {
  background-color: #AEAEAE;
  padding: 5px 20px;
  border-radius: 100px;
}
footer form input {
  border: none;
  outline: none;
  background: none;
  color: white;
}
footer form input::-moz-placeholder {
  color: #EBEBE9;
  opacity: 1;
}
footer form input::placeholder {
  color: #EBEBE9;
  opacity: 1;
}
footer form input [type=search]:focus {
  outline: none;
}
footer form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
footer form button {
  border: none;
  outline: none;
  background: none;
}

.breadcrumps ul {
  list-style-type: none;
  display: flex;
  padding: 0;
  gap: 5px;
  color: white;
}
.breadcrumps li:not(:last-child)::after {
  content: "/";
  margin-left: 5px;
  color: #7ca0bd;
}

#catalog {
  color: #596263;
}
#catalog p {
  color: #596263;
  font-size: 1.2rem;
}
#catalog .title {
  font-weight: 600;
  color: #596263;
  text-transform: uppercase;
}
#catalog .catalog-item.col-12 {
  padding: 0;
}
#catalog .catalog-item.col-12 .card {
  flex-direction: row;
  padding: 30px 20px;
}
#catalog .catalog-item.col-12 .image-div {
  border-right: 1px solid #596263;
  width: 200px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
#catalog .catalog-item.col-12 .image-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#catalog .catalog-item.col-12 .image-div > a {
  width: 100%;
  height: 100%;
}
#catalog .catalog-item.col-12 .image-div > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#catalog .catalog-item.col-12 .text-div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #596263;
}
#catalog .catalog-item.col-12 .button-div {
  display: flex;
  align-items: flex-end;
}
#catalog .catalog-item.col-12 .button-div .btn {
  border: 1px solid #EBEBE9;
}
#catalog .catalog-item.col-md-4 .title {
  margin-bottom: 20px;
}
#catalog .catalog-item.col-md-4 .card {
  padding: 10px;
}
#catalog .catalog-item.col-md-4 .card:hover {
  background-color: #7ca0bd;
}
#catalog .catalog-item.col-md-4:nth-of-type(3n) {
  padding-right: 0;
}
#catalog .catalog-item.col-md-4:nth-of-type(1n) {
  padding-left: 0;
}
#catalog .catalog-item.col-md-4 .button-div {
  margin-top: 10px;
}
#catalog .catalog-item.col-md-4 .button-div .btn {
  border: 1px transparent solid;
  width: 100%;
}
#catalog .catalog-item.col-md-4 .button-div .btn:hover {
  border: 1px white solid;
}

.catalog .tabs-panel select {
  width: 200px;
}
.catalog .tabs-panel .btn {
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog .tabs-panel .btn svg rect {
  fill: #596263;
}
.catalog .tabs-panel .btn.active {
  background-color: #7ca0bd;
  border: none;
}
.catalog .tabs-panel .btn.active svg rect {
  fill: white;
}

.catalog__card {
  position: relative;
  border-radius: 15px;
  border: 1px solid white;
  padding: 20px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  justify-content: space-between;
}
.catalog__card .count {
  display: inline-block;
  color: #7ca0bd;
  background: white;
  border-radius: 50%;
  padding: 3px;
  font-size: 0.7rem;
  width: 21px;
  height: 21px;
}
.catalog__card .count div {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.aside .menu-list > li:hover .menu-dropdown {
  visibility: visible;
  opacity: 1;
  position: absolute;
  inset: -16px auto auto 28px !important;
  margin: 0px;
  transform: translate(400px, 0px);
  border-radius: 15px;
  background-color: #a9adad;
  border: 1px solid white;
  color: white;
}
.aside .menu-list > li:hover .menu-dropdown ul {
  padding: 0;
}
.aside .menu-list > li:hover .menu-dropdown ul li a {
  padding-bottom: 0;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  word-break: break-word;
  word-wrap: break-word;
  white-space: break-spaces;
}

.list-unstyled .menu-dropdown_list > li > a {
  text-transform: uppercase;
  font-weight: 600;
}

ul.catalog__ul li.dropend > .menu-dropdown {
  padding-bottom: 20px;
}
ul.catalog__ul li.dropend > .menu-dropdown > .menu-dropdown_list {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  -moz-column-gap: 30px;
       column-gap: 30px;
}
ul.catalog__ul li.dropend > .menu-dropdown > .menu-dropdown_list ul {
  margin-top: 5px;
}
ul.catalog__ul li.dropend > .menu-dropdown > .menu-dropdown_list li {
  margin-bottom: 0;
}
ul.catalog__ul li.dropend > .menu-dropdown > .menu-dropdown_list a {
  display: inline;
}
ul.catalog__ul li.dropend > .menu-dropdown > .menu-dropdown_list a:hover {
  background: none;
}

.catalog__card.type-2 {
  height: 220px;
  padding: 15px;
}
.catalog__card.type-2 .catalog__card-title {
  margin: 0;
  display: flex;
  width: 100%;
  color: #596263;
}
.catalog__card.type-2 .catalog__card-title h3 {
  font-weight: 500;
  color: #596263;
  text-align: start;
  font-size: 1.5rem;
}
.catalog__card.type-2 .catalog__card-list {
  font-weight: 300;
}
.catalog__card.type-2 .catalog__card-title,
.catalog__card.type-2 .catalog__card-list {
  z-index: 1;
}
.catalog__card.type-2 img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 120px;
  max-width: 120px;
}
.catalog__card.type-2 .catalog__card-item {
  display: block;
}
.catalog__card.type-2 .list-unstyled {
  height: 100%;
  overflow-y: scroll;
}
.catalog__card.type-2::after {
  background: none;
}
.catalog__card.type-2:hover .catalog__card-title h3 {
  color: white;
}

.catalog__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgb(89, 98, 99) 0%, rgba(89, 98, 99, 0.1) 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.catalog__card:hover::after {
  opacity: 1;
  background: linear-gradient(to top, rgb(1, 32, 58) 0%, rgb(124, 160, 189) 100%);
  mix-blend-mode: hard-light;
}

.catalog__card.type-2:hover::after {
  mix-blend-mode: normal;
  background: rgb(124, 160, 189);
}

.catalog__card.type-2:hover img {
  z-index: 1;
  opacity: 0.15;
}
.catalog__card.type-2:hover::after {
  mix-blend-mode: normal;
  background: rgb(124, 160, 189);
}

.catalog__card:hover {
  justify-content: space-between;
}

.catalog__card-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease 0.2s, opacity 0.2s ease;
}
.catalog__card-list ul {
  margin: 0;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.catalog__card:hover .catalog__card-list {
  max-height: 500px;
  opacity: 1;
  width: 100%;
  transition: max-height 0.3s ease, opacity 0.2s ease 0.15s;
}

.catalog__card-title {
  margin: auto;
}
.catalog__card-title h3 {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  word-break: break-word;
}

.catalog__card-list {
  margin: 0;
}

.catalog__ul {
  padding: 15px 10px;
}
.catalog__ul li {
  margin-bottom: 5px;
}
.catalog__ul > .dropend {
  margin-right: -35px;
  padding-right: 35px;
}
.catalog__ul .dropdown-toggle {
  width: 100%;
  text-align: start;
  padding: 10px 20px;
  color: white;
}
.catalog__ul .dropdown-toggle:hover {
  border: 1px solid white;
}
.catalog__ul .dropdown-toggle.active {
  background-color: #7ca0bd;
  border: none;
}
.catalog__ul .dropdown-toggle.show {
  background-color: #7ca0bd !important;
  border: 1px solid white;
}
.catalog__ul .dropend .dropdown-toggle::after {
  display: none;
}

.parallax {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: white;
  z-index: -1;
}

.parallax-content {
  font-size: 3rem;
  position: relative;
  background: white;
  color: black;
  margin-top: 100vh;
  z-index: 2;
}

#carouselPortfolio {
  color: #596263;
  font-size: 1.5rem;
}
#carouselPortfolio .carousel-item {
  height: 600px;
  padding-bottom: 60px;
  padding-right: 70px;
  padding-left: 70px;
}
#carouselPortfolio .item-container {
  background-color: #EBEBE9;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
#carouselPortfolio .carousel-indicators [data-bs-target] {
  height: 25px;
  width: 25px;
  border-radius: 100%;
  background-color: #EBEBE9;
  opacity: 1;
  border: 1px solid #7ca0bd;
  margin-top: 10px;
}
#carouselPortfolio .carousel-indicators [data-bs-target].active {
  background-color: #7ca0bd;
  border-color: #EBEBE9;
}
#carouselPortfolio .carousel-control-next,
#carouselPortfolio .carousel-control-prev {
  width: auto;
  opacity: 1;
}
#carouselPortfolio .carousel-control-next-icon,
#carouselPortfolio .carousel-control-prev-icon {
  width: 4rem;
  height: 4rem;
}

.carousel.main .carousel-content {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.carousel.main .carousel-content h1 {
  color: white;
  font-size: 5rem;
  font-weight: 600;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}
.carousel.main .carousel-inner {
  z-index: -1;
  height: 100%;
}
.carousel.main .carousel-item {
  height: 100%;
}
.carousel.main .carousel-item img {
  height: 100%;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel.main .carousel-item.active img {
  height: 100%;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel.main .carousel-indicators [data-bs-target] {
  height: 25px;
  width: 25px;
  border-radius: 100%;
  background-color: #EBEBE9;
  opacity: 1;
  margin-bottom: 20px;
  border: 1px solid #596263;
}
.carousel.main .carousel-indicators [data-bs-target].active {
  background-color: #596263;
  border-color: #EBEBE9;
}

.hero {
  position: relative;
  height: 1080px;
  overflow: hidden;
  color: #fff;
}
.hero .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero .hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  background: linear-gradient(to bottom, rgba(90, 99, 102, 0) 0%, rgba(90, 99, 102, 0.2) 50%, #596263 100%);
}
.hero .hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-top: 100px;
}
.hero .hero__content > .button-container {
  display: inline-grid !important;
  grid-template-columns: repeat(3, minmax(max-content, 1fr));
  max-width: 100%;
  width: auto;
}
.hero .hero__content > .button-container .btn {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
}
.hero .hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.hero #playBtn {
  padding: 0;
  border-radius: 100%;
  border: none;
  background: none;
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}

.blue-cards {
  display: flex;
  position: absolute;
  margin-top: -100px;
  align-content: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  flex-direction: row;
  padding: 0 20px;
}
.blue-cards p {
  text-align: center;
  margin: 0;
}
.blue-cards .card {
  background-color: #7ca0bd;
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 20px;
  padding: 50px 30px;
  z-index: 999;
  gap: 30px;
}
.blue-cards .icon {
  display: flex;
  justify-content: center;
}

.brand-slider-container {
  width: 100%;
}
.brand-slider-container .brand-slider-title {
  color: #EBEBE9;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.brand-slider-container .brand-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.brand-slider-container .brand-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  background-color: #596263;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, opacity 0.3s;
}
.brand-slider-container .brand-arrow-left {
  left: 0px;
  padding-right: 20px;
}
.brand-slider-container .brand-arrow-right {
  right: 0px;
  padding-left: 20px;
}
.brand-slider-container .brand-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 100px;
}
.brand-slider-container .brand-slider-track-container {
  width: 95%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.brand-slider-container .brand-slider-item {
  flex-shrink: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.brand-slider-container .brand-slider-item img {
  filter: grayscale(100%) brightness(4) contrast(0.9);
  transition: filter 0.3s ease;
}
.brand-slider-container .brand-slider-item:hover img {
  filter: grayscale(0%);
}

.where-to-buy .background-a9adad {
  padding: 20px;
  color: #EBEBE9;
}
.where-to-buy p {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
}
.where-to-buy .where-to-buy__card-meta {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}
.where-to-buy .nav-item.dropdown {
  background-color: #EBEBE9;
  color: #596263;
  border: 1px solid #596263;
  padding: 5px 15px;
  border-radius: 100px;
}
.where-to-buy .nav-item.dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 20px;
  vertical-align: 0.1em;
  content: "";
  border-top: 0.45em solid;
  border-right: 0.45em solid transparent;
  border-bottom: 0;
  border-left: 0.45em solid transparent;
}
.where-to-buy .nav-item.dropdown .dropdown-menu.show {
  transform: translate(0px, 35px) !important;
  background-color: #EBEBE9;
  color: #596263;
  border: 1px solid #596263;
}
.where-to-buy .nav-item.dropdown .dropdown-item {
  border-radius: 10px;
}
.where-to-buy .map {
  height: 100%;
  max-height: 600px;
  align-items: stretch;
}
.where-to-buy .map h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.where-to-buy .map b {
  font-weight: 500;
}
.where-to-buy__sidebar {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 380px;
  height: 600px;
  padding: 10px;
  overflow: hidden;
}
.where-to-buy__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  height: 100%;
  padding-right: 4px;
  scrollbar-color: currentColor transparent;
  scrollbar-gutter: stable;
}
.where-to-buy__card {
  position: relative;
  background-color: #9ea3a3;
  border: 1px solid white;
  border-radius: 20px;
  padding: 18px 18px 16px;
  color: #EBEBE9;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.where-to-buy__card:hover {
  transform: translateY(-1px);
  border-color: #dfe6ff;
}
.where-to-buy__card.is-active {
  background-color: #8f9797;
  border-color: #EBEBE9;
  box-shadow: 0 14px 30px rgba(39, 50, 117, 0.18);
}
.where-to-buy__card h3 {
  max-width: calc(100% - 48px);
  margin-bottom: 14px;
}
.where-to-buy__card-star {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(235, 235, 233, 0.92);
  color: #596263;
  font-size: 0.95rem;
  line-height: 1;
}
.where-to-buy__card-section + .where-to-buy__card-section {
  margin-top: 12px;
}
.where-to-buy__card-meta {
  margin-bottom: 4px;
}
.where-to-buy__card-city {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(235, 235, 233, 0.16);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.where-to-buy__map-shell {
  overflow: hidden;
  min-height: 600px;
}
.where-to-buy__map-canvas {
  width: 100%;
  min-height: 600px;
}
.where-to-buy__marker {
  width: 18px;
  height: 18px;
  background: #7d9bb8;
  border: 2px solid rgba(235, 235, 233, 0.95);
  transform: rotate(45deg);
  border-radius: 2px 8px 8px 8px;
  box-shadow: 0 4px 10px rgba(39, 50, 117, 0.28);
}
.where-to-buy__marker.is-active {
  background: #7ca0bd;
}
.where-to-buy__popup {
  color: #596263;
}
.where-to-buy__popup strong {
  display: block;
  margin-bottom: 4px;
}

.leaflet-container {
  background: #b9d9d0;
  font-family: "Inter", sans-serif;
}

.gallery-cell {
  width: 60%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-cell__container {
  background-color: white;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
}
.gallery-cell__container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-cell__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(89, 98, 99, 0.4);
  z-index: 1;
}

.gallery-cell svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-cell {
  width: 66%;
  height: 200px;
  margin-right: 10px;
  counter-increment: gallery-cell;
}

.gallery-cell.is-selected {
  padding: 0;
}

.gallery-cell.is-selected .gallery-cell__container::after {
  opacity: 0;
}

.gallery--cards {
  background-color: #596263;
}
.gallery--cards .gallery-cell {
  padding: 30px 20px;
  height: 250px;
  background-color: #596263;
}
.gallery--cards .gallery-cell__container {
  background-color: #7ca0bd;
  border: 1px solid white;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
}
.gallery--cards .gallery-cell__container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-mobile-card-carousel .gallery-cell {
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding: 0 0 10px;
}
.js-mobile-card-carousel .mobile-card-cell {
  padding: 0 8px;
  height: 100%;
}
.js-mobile-card-carousel .mobile-card-cell::after {
  display: none;
}
.js-mobile-card-carousel .mobile-card-cell .card {
  height: 100% !important;
}
.js-mobile-card-carousel .mobile-card-cell svg {
  width: 106px;
  height: 106px;
}
.js-mobile-card-carousel .mobile-card-cell .w-50 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.flickity-page-dots {
  position: static;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 8px;
  background: #EBEBE9;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  background: #596263;
  border: #EBEBE9 1px solid;
}

.section-404 h1 {
  font-weight: 600;
  font-size: 20rem;
  line-height: 17rem;
}
.section-404 h2 {
  font-weight: 400;
  font-size: 3.2rem;
  margin-bottom: 50px;
}
.section-404 .container {
  height: 100%;
  padding: 220px 0px;
}
.section-404 .btn {
  font-size: 2rem;
}

.section-search .search-container {
  background-color: #EBEBE9;
  border-radius: 20px;
  border: 1px solid #596263;
  padding: 5px 10px;
}
.section-search .search-container input, .section-search .search-container button {
  border: none;
  outline: none;
  background: none;
}
.section-search .search-container svg path {
  stroke: #596263;
}
.section-search .h-70vh {
  height: 70vh;
}
.section-search h2 {
  font-size: 3rem;
  font-weight: 400;
}

.dark-gray-background {
  background-color: #596263;
  color: white;
}

.background-gray {
  background-color: #EBEBE9;
}

.about-stats {
  --about-stats-copy-sm: 0.9rem;
  --about-stats-copy-md: 1.4rem;
  --about-stats-copy-lg: 2rem;
  font-weight: 500;
}
.about-stats .card p {
  margin-bottom: 0rem;
  line-height: 1;
}
.about-stats .about-stats__copy-sm,
.about-stats .about-stats__copy-sm p {
  font-size: var(--about-stats-copy-sm);
}
.about-stats .about-stats__copy-md,
.about-stats .about-stats__copy-md p {
  font-size: var(--about-stats-copy-md);
}
.about-stats .about-stats__copy-lg,
.about-stats .about-stats__copy-lg p {
  font-size: var(--about-stats-copy-lg);
}
.about-stats .about-stats__copy-sm p:last-child,
.about-stats .about-stats__copy-md p:last-child,
.about-stats .about-stats__copy-lg p:last-child {
  margin-bottom: 0;
}
.about-stats .background-container {
  min-height: 220px;
}
.about-stats .fw-10rem {
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.9;
}
.about-stats .fw-7rem {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
}
.about-stats .fw-15rem {
  font-size: clamp(5rem, 13vw, 15rem);
  line-height: 0.88;
}

.br-15px {
  border-radius: 15px;
}

.color-dark-blue {
  color: #7ca0bd;
}

.color-gray {
  color: #EBEBE9;
}

.left-0 {
  left: 0;
}

.fw-3rem {
  font-size: 3rem;
  font-weight: 500;
}

.fw-4rem {
  font-size: 4rem;
  line-height: 3.5rem;
}

.fw-2dot5rem {
  font-size: 2.5rem;
}

.fw-2rem {
  font-size: 2rem;
}

.fw-1rem {
  font-size: 1rem;
}

.fw-10rem {
  font-size: 10rem;
  line-height: 8.5rem;
}

.fw-7rem {
  font-size: 7rem;
  line-height: 6rem;
}

.fw-15rem {
  font-size: 15rem;
  line-height: 13rem;
}

.fw-09rem {
  font-size: 0.9rem;
}

.fw-08rem {
  font-size: 0.8rem;
}

.fw-1dot4rem {
  font-size: 1.4rem;
}

h2 {
  font-size: 4rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 400;
}

.pt-200px {
  padding-top: 200px;
}

.background-a9adad {
  background-color: #a6abaa;
  border: 1px solid white;
}

.background-7e8484 {
  background-color: #7e8484;
  border: 1px solid white;
}

.img-nocolor {
  filter: brightness(0) saturate(100%) invert(41%) sepia(8%) saturate(632%) hue-rotate(141deg) brightness(92%) contrast(88%);
}

.nowrap {
  white-space: nowrap;
}

.round {
  border-radius: 20px;
}

.button-group {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.button-group .btn {
  flex: 1;
}

.about-hero {
  overflow: visible;
}
.about-hero img {
  -o-object-position: center 25%;
     object-position: center 25%;
}
.about-hero p {
  font-weight: 300;
}

.button-group--sticky {
  padding: 12px 16px;
  border-radius: 20px;
  z-index: 99;
}

.about-hero > .container > .button-group--sticky {
  display: flex !important;
}

.button-group--sticky.is-sticky-fixed {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1030;
  width: min(100% - 24px, 1296px);
  transform: translateX(-50%);
}

.section--lowered {
  margin-bottom: -50px;
}

.background-container {
  position: relative;
  overflow: hidden;
}
.background-container .background-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.background-container .background-image ~ * {
  position: relative;
  z-index: 1;
}

.partnership-panel-builders__column {
  display: flex;
}

.partnership-panel-builders__stack {
  flex: 1 1 auto;
  width: 100%;
}

.partnership-panel-builders__image-col {
  display: flex;
  flex: 1 1 auto;
}

.partnership-panel-builders__image {
  min-height: 400px;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}

.blur {
  filter: blur(10px);
}

h1 {
  font-size: 5rem;
  font-weight: 600;
  color: white;
}

h3 {
  font-size: 3rem;
}

p {
  font-size: 1.5rem;
}

.flex-1 {
  flex: 1;
}

.fw-300 {
  font-weight: 300;
}

@media only screen and (max-width: 1399px) {
  .blue-cards .card {
    padding: 10px;
  }
  header .navbar .container {
    padding-left: 30px;
    font-size: 1rem;
  }
  footer .logo svg {
    width: 150px;
  }
  footer form input {
    width: 100%;
  }
  .fw-1dot4rem {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1199px) {
  html {
    font-size: 14px;
  }
  header form > div input {
    width: 100px;
  }
  header .navbar-brand svg {
    width: 80px;
  }
  header form button {
    width: 36px;
    height: 36px;
  }
  .blue-cards .card svg {
    width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .triangle-center-rounded::before {
    display: none;
  }
  .triangle-center-rounded::after {
    display: none;
  }
  .where-to-buy .map {
    flex-direction: column;
    max-height: none;
  }
  .where-to-buy__sidebar,
  .where-to-buy__map-shell,
  .where-to-buy__map-canvas {
    max-width: 100%;
    min-height: 420px;
    height: auto;
  }
  .where-to-buy__sidebar {
    min-width: 0;
    max-height: 380px;
  }
  .button-group {
    gap: 5px;
  }
  .button-group .btn {
    font-size: 1.3rem;
  }
  .pt-200px {
    padding-top: 130px;
  }
  .brand-slider-container .brand-slider-item svg {
    width: 200px;
  }
  .cards .row:not(:last-child) {
    margin-bottom: 0px;
  }
  .cards .row > .col-md {
    padding-right: 10px;
    padding-left: 0;
    padding-bottom: 10px;
  }
  .cards .card {
    height: 150px;
  }
  .cards .card p {
    font-size: 1rem;
  }
  html {
    font-size: 12px;
  }
  .hero {
    height: auto;
    padding: 30px 0;
  }
  #playBtn {
    width: 150px;
  }
  .hero .hero__content {
    margin-top: 0;
  }
  .hero .hero__content .btn.white {
    padding: 5px 15px;
  }
  .blue-cards {
    position: relative;
  }
  header .navbar .container {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  header .navbar-toggler {
    position: absolute;
    right: 20px;
    border: none;
  }
  .about-stats .row {
    margin-top: 1.5rem !important;
  }
  .about-stats .card {
    padding: 1rem !important;
  }
  .about-stats .background-container {
    min-height: 180px;
  }
  .about-stats {
    --about-stats-copy-sm: 1rem;
    --about-stats-copy-md: 1.2rem;
    --about-stats-copy-lg: 1.7rem;
  }
  .about-stats .row {
    margin-bottom: 0 !important;
  }
  .about-stats .position-relative {
    display: inline-block;
  }
  .about-stats .left-0 {
    left: -0.8rem;
  }
  .about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .about-stats__grid > .row {
    display: contents;
  }
  .about-stats__grid > .row > [class*=col-] {
    width: auto;
    max-width: none;
    flex: initial;
    padding-right: 0;
    padding-left: 0;
  }
  .about-stats__item-assortment {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .about-stats__item-image-top {
    grid-column: 3/span 2;
    grid-row: 1;
  }
  .about-stats__item-claims {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  .about-stats__item-claims > .d-flex {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem !important;
  }
  .about-stats__item-sales-stack {
    display: contents;
  }
  .about-stats__item-sales-stack > .d-flex {
    display: contents !important;
  }
  .about-stats__item-sold {
    grid-column: 3/span 2;
    grid-row: 2;
  }
  .about-stats__item-image-left-large {
    grid-column: 1/span 2;
    grid-row: 3/span 2;
  }
  .about-stats__item-founded {
    grid-column: 3/span 2;
    grid-row: 3;
  }
  .about-stats__item-image-right-bottom {
    grid-column: 3/span 2;
    grid-row: 4;
  }
  .about-stats__item-delivery {
    grid-column: 1/span 2;
    grid-row: 5;
  }
  .about-stats__item-contracts {
    grid-column: 3/span 2;
    grid-row: 5;
  }
  .about-stats__item-image-top .background-container {
    min-height: 230px;
  }
  .about-stats__item-image-left-large .background-container {
    min-height: 320px;
  }
  .about-stats__item-image-right-bottom .background-container {
    min-height: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .card--rounded-left.card {
    border-radius: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .card--rounded-right.card {
    border-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .where-to-buy .background-a9adad {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  .where-to-buy .background-a9adad .justify-content-end {
    justify-content: flex-start !important;
  }
  .where-to-buy__card {
    padding: 16px;
  }
  .where-to-buy__map-shell,
  .where-to-buy__map-canvas {
    min-height: 340px;
  }
  #carouselPortfolio .carousel-control-prev,
  #carouselPortfolio .carousel-control-next {
    display: none;
  }
  #carouselPortfolio .carousel-item {
    height: auto;
    min-height: 0;
    padding: 0;
    padding-bottom: 50px;
  }
  #carouselPortfolio .item-container {
    height: auto;
  }
  #carouselPortfolio .carousel-indicators [data-bs-target] {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    margin: 0 8px;
    background-color: #EBEBE9;
    opacity: 1;
    border: 1px solid #EBEBE9;
  }
  #carouselPortfolio .carousel-indicators [data-bs-target].active {
    background-color: #596263;
    border: 1px solid #EBEBE9;
  }
  #carouselPortfolio .item-container > .row {
    flex-direction: column;
    height: auto !important;
  }
  #carouselPortfolio .item-container > .row > .col-5,
  #carouselPortfolio .item-container > .row > .col-7 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  #carouselPortfolio .item-container > .row > .col-5 .background-container {
    height: 180px !important;
  }
  #carouselPortfolio .item-container > .row > .col-5 {
    order: 1;
  }
  #carouselPortfolio .item-container > .row > .col-7 {
    order: 2;
  }
  .pt-200px {
    padding-top: 50px;
  }
  .brand-slider-container .brand-slider-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .cards {
    padding-bottom: 50px;
  }
  .cards .card {
    padding: 20px;
  }
  .cards .card p {
    font-size: 1.5rem;
  }
  #playBtn {
    width: 100px;
    margin: 30px 0;
  }
  .hero {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding-top: 0;
  }
  .hero h2 {
    font-size: 3rem;
  }
  .hero h3 {
    font-size: 2rem;
  }
  .hero .hero__content {
    padding: 20px;
  }
  .hero .hero__content .button-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero .hero__content .button-container .btn {
    min-width: 0;
  }
  footer .logo {
    margin: 20px 0;
  }
  footer {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
  .carousel.main .carousel-content > .container {
    padding: 80px 10px;
  }
  .carousel.main .carousel-content > .container .btn.dark-gray {
    padding: 10px 20px;
    width: 100%;
  }
  .carousel.main .carousel-content {
    background: linear-gradient(to bottom, rgb(89, 98, 99) 0%, rgba(89, 98, 99, 0) 100%);
  }
  .carousel.main .carousel-content h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  html {
    font-size: 10px;
    overflow-wrap: break-word;
  }
  header {
    padding: 0 10px;
  }
  .gallery--cards .gallery-cell {
    padding: 30px 5px;
  }
  #carouselPortfolio .carousel-item {
    height: auto;
    min-height: 0;
    padding: 0 7px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
}