/**
 * @file
 * Headquarters component style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
.c-headquarters .headquarters-card .card__content-top {
  height: 100%;
  overflow: hidden;
}
.c-headquarters .headquarters-card .card__content-top img {
  width: 100%;
  max-width: inherit;
  height: 100%;
  object-fit: cover;
}

/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
/* HEADING */
/* TEXT & CONTENT */
.c-headquarters .headquarters-list-view .headquarters-list-item__content, .c-headquarters .headquarters-card .card__content-bottom {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.c-headquarters .headquarters-card .card__name {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.c-headquarters .headquarters-list-view .headquarters-list-item__content, .c-headquarters .headquarters-card .card__content-bottom {
  font-size: 0.875rem;
  line-height: 1.14;
}

.c-headquarters .headquarters-list-view .headquarters-list-item__content, .c-headquarters .headquarters-card .card__content-bottom {
  font-weight: 700;
}

.c-headquarters .headquarters-list-view .headquarter__name {
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5rem;
  letter-spacing: normal;
}

.c-headquarters .headquarter__contacts {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.c-headquarters .section-title {
  padding-top: 2rem;
  color: #008444;
}
.c-headquarters .headquarter__address {
  display: flex;
  margin-bottom: 0.5rem;
}
.c-headquarters .headquarter__address::before {
  margin-right: 0.5rem;
  content: url("../../../images/icons/icon-address.svg");
}
.c-headquarters .headquarter__contacts li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.c-headquarters .headquarter__contacts .icon-phone::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: url("../../../images/icons/icon-phone.svg");
}
.c-headquarters .headquarter__contacts .icon-mail::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: url("../../../images/icons/icon-mail.svg");
}
.c-headquarters .headquarter__contacts .icon-fax::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: url("../../../images/icons/icon-fax.svg");
}
.c-headquarters .headquarters-card .card {
  position: relative;
}
.c-headquarters .headquarters-card .card__content-top {
  position: relative;
}
.c-headquarters .headquarters-card .card__name {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
  color: #fff;
}
.c-headquarters .headquarters-card .card__content-bottom {
  margin-top: 1.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
  color: #767676;
}
.c-headquarters .headquarters-list-view {
  background-color: #f5f5f5;
  border-top: solid 1px #a5a5a5;
}
.c-headquarters .headquarters-list-view .headquarters-list-item__content {
  padding-top: 2rem;
  padding-bottom: 1rem;
  color: #767676;
  border-bottom: solid 1px #a5a5a5;
}
@media (max-width: 375.98px) {
  .c-headquarters .headquarters-list-view .headquarters-list-item__content {
    padding-top: 1.5rem;
  }
}
.c-headquarters .headquarters-list-view .headquarter__name {
  margin-bottom: 1rem;
  color: #1c1c1c;
}

.headquarter-grid {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  padding-bottom: 2rem;
}
.headquarter-grid .views-row {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .headquarter-grid .views-row {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .headquarter-grid .views-row {
    flex: 0 0 auto;
    width: 25%;
  }
}

/*# sourceMappingURL=components.c-headquarters.css.map */
