.support-grid {
  padding: 2.5rem 0 5rem;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .support-grid {
    padding: 0 0 3rem;
  }
}
.support-grid__title {
  font-weight: 500;
}
.support-grid__subtitle {
  margin: 10px 0 0;
}
.support-grid__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .support-grid__grid {
    grid-template-columns: 1fr;
  }
}
.support-grid__item {
  background: var(--color-light-grey);
  padding: 30px;
  box-sizing: border-box;
  border-radius: 25px;
  transition: 0.2s;
  height: 100%;
}
.support-grid__item:hover {
  box-shadow: inset 0 0 0 4px var(--color-primary);
}
.support-grid__item:hover svg {
  transform: rotate(-45deg);
}
.support-grid__item a {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem 0;
}
.support-grid__item-image picture,
.support-grid__item-image img {
  max-width: 85%;
  max-height: 95px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.support-grid__item-title {
  display: flex;
  align-items: flex-end;
  gap: 0 10px;
  justify-content: space-between;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
}
.support-grid__item-title > span {
  flex: 1;
}
.support-grid__item-title svg {
  width: 25px;
  color: var(--color-primary);
  flex: 0 0 auto;
  position: relative;
  top: -3px;
  transition: 0.2s;
  flex: 0 0 25px;
}

.support-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.support-popup-content__inner, .support-popup__top {
  max-width: 90%;
  margin: 0 auto;
}
.support-popup-content__inner-title, .support-popup__top-title {
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
}
@media (max-width: 992px) {
  .support-popup-content__inner, .support-popup__top {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .support-popup-content__inner:has(:nth-child(3)) {
    padding-right: 25px;
    box-sizing: border-box;
  }
}
.support-popup-inner {
  background: var(--color-light);
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  gap: 3rem 0;
}
@media (max-width: 992px) {
  .support-popup-inner {
    gap: 2rem 0;
    padding: 2rem;
  }
}
.support-popup-close {
  color: var(--color-primary);
  flex: 0 0 auto;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.support-popup-close svg {
  width: 20px;
}
@media (max-width: 992px) {
  .support-popup-close svg {
    width: 15px;
  }
}
.support-popup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
  width: 100%;
}
.support-popup-content {
  flex: 1;
  overflow-y: auto;
}
.support-popup-content::-webkit-scrollbar {
  width: 8px;
}
.support-popup-content__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .support-popup-content__inner {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.support-extended {
  margin-top: 5rem;
}
@media (max-width: 992px) {
  .support-extended {
    margin-top: 2.5rem;
  }
}
.support-extended__inner {
  padding-bottom: 15%;
  box-sizing: border-box;
}
.support-extended .container--large {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.support-extended__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .support-extended__items {
    grid-template-columns: 1fr;
  }
}
.support-extended__item {
  padding: 2rem 2rem 18%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .support-extended__item {
    padding: 25px;
    border-radius: 25px;
  }
}
.support-extended__item a {
  text-decoration: none;
  color: inherit;
}
.support-extended__item a:hover svg {
  transform: rotate(0);
}
.support-extended__item-title {
  margin-top: 10px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
}
.support-extended__item-description {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin-top: 20px;
}
.support-extended__item-description > * {
  margin: 0;
}
.support-extended__item-icon {
  height: 50px;
  width: 50px;
}
@media (max-width: 992px) {
  .support-extended__item-icon {
    width: 35px;
    height: 35px;
  }
}
.support-extended__item-icon picture,
.support-extended__item-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.support-extended__item-icon-wrapper {
  display: flex;
  gap: 0 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.support-extended__item-icon-wrapper svg {
  width: 30px;
  color: var(--color-primary);
  transition: 0.2s;
  transform: rotate(45deg);
}
@media (max-width: 992px) {
  .support-extended__item-icon-wrapper svg {
    width: 20px;
  }
}
.support-extended__swirl {
  position: absolute;
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
}
@media (max-width: 992px) {
  .support-extended__swirl {
    display: none;
  }
}
.support-extended__swirl picture,
.support-extended__swirl img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: clip-path 3s;
  clip-path: inset(0 100% 0 0);
}
.support-extended__swirl picture.animated,
.support-extended__swirl img.animated {
  clip-path: inset(0 0 0 0);
}
