@font-face {
  font-family: "Proxima Nova";
  font-weight: 300;
  src: url(../fonts/Proxima-Nova-Light.otf);
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 400;
  src: url(../fonts/Proxima-Nova-Regular.otf);
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 500;
  src: url(../fonts/Proxima-Nova-Semibold.otf);
}
@font-face {
  font-family: "Proxima Nova";
  font-weight: 600;
  src: url(../fonts/Proxima-Nova-Bold.otf);
}
@font-face {
  font-family: "Mont";
  font-weight: 400;
  src: url(../fonts/Mont-Regular.otf);
}
@font-face {
  font-family: "Mont";
  font-weight: 500;
  src: url(../fonts/Mont-SemiBold.ttf);
}
@font-face {
  font-family: "Mont";
  font-weight: 600;
  src: url(../fonts/Mont-Bold.otf);
}
.response-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 8rem;
}
.response-error__photo {
  max-width: 300px;
}
.response-error__actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.ui-card {
  min-height: 480px;
  overflow: hidden;
  background-color: var(--background, #fff);
}
.ui-card__content {
  padding: 1rem;
}
.ui-card__title {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}
.ui-card__text {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
}
.ui-card__link {
  font-size: 1.2rem;
}
.ui-card__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ui-card--wide {
  padding-top: 5rem;
  text-align: center;
  display: flex;
  align-items: flex-end;
}
.ui-card--photo {
  padding-top: 3rem;
  padding-bottom: 385px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image: var(--photo);
  display: flex;
  justify-content: center;
  text-align: center;
}
.ui-card--photo h2 {
  font-size: 2.5rem;
}
.ui-card--photo p {
  font-size: 1.2rem;
}
.ui-card--photo a {
  font-size: 1.2rem;
  margin-right: 2rem;
}
.ui-card--photo a:last-child {
  margin: 0;
}
.ui-card--light {
  color: #fff;
}
.ui-card--light h2, .ui-card--light p, .ui-card--light a {
  color: #fff;
}
.ui-card--article {
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
  min-height: 400px;
  border-radius: 18px;
}
.ui-card--article .ui-card__content {
  text-align: center;
  padding-top: 0;
}
.ui-card--article .ui-card__photo {
  margin-top: auto;
}
.ui-card--article .ui-card__title {
  font-size: 1.4rem;
  margin: 0 0 0.6rem 0;
}
.ui-card--article .ui-card__text {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
}
.ui-card--article .ui-card__footer {
  text-align: center;
  font-size: 0.9rem;
  margin: 1rem 0;
}
.ui-card--lg {
  min-height: 530px;
}
.ui-card--xl {
  min-height: 600px;
}
.ui-card--flow {
  height: auto;
}
.ui-card--full {
  height: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  margin-bottom: 1rem;
  background-image: url(../images/hero-red.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__rail {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.hero__rail-second, .hero__rail-fourth {
  transform: translateX(100px);
}
.hero__rail-train {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero__rail-train span {
  margin-right: 40px;
}
.hero__rail-train span:last-child {
  margin: 0;
}
.hero__rail-wrapper {
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 500px;
  overflow: hidden;
  font-family: "Mont", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  font-style: italic;
  color: #151515;
  mix-blend-mode: difference;
  display: grid;
}
.hero__content {
  position: relative;
  width: 100%;
}
.hero__title {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -2px;
  color: #fff;
}
.hero__title span {
  display: block;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 1.25rem;
  }
  .hero__title span {
    font-size: 3.5rem;
  }
}
.hero__text {
  font-size: 1.8rem;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: transform 250ms linear, visibility 250ms linear, opacity 250ms linear;
  z-index: 99999;
}
.popup .btn-link {
  color: var(--bs-body-color);
  --bs-btn-hover-color: var(--bs-body-color);
  --bs-btn-active-color: var(--bs-body-color);
  padding: 0;
  text-decoration: none;
}
.popup .btn-link--red {
  color: red;
  --bs-btn-hover-color: red;
  --bs-btn-active-color: red;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.popup--visible {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.popup--visible .popup__navbar-photo, .popup--visible .popup__navbar-nav {
  transform: translate(0, 0);
}
@media (max-width: 767.98px) {
  .popup__column-left {
    display: none;
  }
  .popup__column-right {
    position: absolute;
    bottom: 0;
    height: 400px;
  }
}
.popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid #eee;
}
.popup__navbar .navbar-search {
  margin-block: 1.5rem 0;
  padding-inline: 30px;
}
.popup__footer {
  padding-block: 1.5rem;
  border-top: 1px solid #eee;
}
.popup__footer .profile__username {
  color: var(--bs-body-color);
}
.popup__footer .user__overview {
  margin-bottom: 2rem;
}
.popup__footer ul {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  gap: 2rem;
}
.popup__footer ul li:nth-child(2n) {
  text-align: right;
}
.popup__footer ul li:nth-child(2n) a {
  justify-content: flex-end;
}
.popup__footer ul a {
  display: flex;
  align-items: center;
  font-weight: 400;
  color: var(--bs-body-color);
}
.popup__footer ul a .count {
  font-family: monospace;
  font-size: 0.8rem;
  margin-left: 0.3rem;
  display: inline-flex;
  padding-inline: 0.6rem;
  padding-block: 0.3rem;
  border-radius: 4rem;
  line-height: 1;
  background: #eee;
}
.popup__bottom {
  display: flex;
  align-items: center;
  height: 80px;
  border-top: 1px solid #eee;
}
.popup__header, .popup__footer, .popup__bottom,
.popup .accordion {
  padding-inline: 30px;
}
.popup__navbar-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: translateX(-100%);
  transition: transform 250ms linear;
}
.popup__navbar-nav {
  background: #fff;
  height: inherit;
  overflow-y: auto;
}
.popup__navbar-nav .accordion {
  margin-block: 1rem;
  padding-inline: 30px;
}
.popup__navbar-nav .accordion-item {
  border: 0;
}
.popup__navbar-nav .accordion-button {
  font-family: "Proxima Nova", sans-serif;
  padding-inline: 0;
  background: #fff;
  box-shadow: unset !important;
}
.popup__navbar-nav .accordion-button.remove-arrow::after {
  content: unset !important;
}
.popup__navbar-nav .accordion-button:not(.collapsed) {
  color: #000;
}
.popup__navbar-nav .accordion-button:focus {
  box-shadow: unset;
}
.popup__navbar-nav .accordion-body {
  padding: 0;
}
.popup__navbar-nav .accordion-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-left: 1px solid #eee;
}
.popup__navbar-nav .accordion-body ul li a {
  font-size: 0.9rem;
  display: block;
  color: #000;
  padding-left: 30px;
  padding-block: 0.5rem;
}
.popup__navbar-nav .accordion-body ul li a:hover {
  background-color: #fafafa;
}
.popup__navbar-close {
  border: none;
  padding: 0;
}
.popup__navbar-close .icon {
  font-size: 20px !important;
  margin-right: 0 !important;
}
.popup__search {
  opacity: 1;
}
.popup__search .popup__overlay {
  opacity: 0;
  transition: opacity 150ms linear;
}
.popup__search-wrap {
  display: flex;
  align-items: center;
  min-height: 80px;
  background: #fff;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 150ms linear, opacity 150ms linear;
}
.popup__search.popup--visible .popup__overlay {
  opacity: 1;
}
.popup__search.popup--visible .popup__search-wrap {
  transform: translateY(0);
  opacity: 1;
}
.popup__search .navbar__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-30%);
}
@media (min-width: 992px) {
  .popup__search .navbar__close {
    transform: translateX(-100%);
  }
}

.banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 500px;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.banner--dark {
  color: #86868b;
  background: #1d1d1f;
}
.banner--disable-overlay::before {
  content: unset;
}
.banner--sm {
  height: 400px;
}
.banner--spacer {
  margin: 1rem 0;
}
.banner--light-overlay::before {
  background: rgba(255, 255, 255, 0.5);
}
.banner--light-overlay .banner__title, .banner--light-overlay .banner__text {
  color: #000;
}
.banner__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner__content {
  position: absolute;
  max-width: 800px;
  color: #fff;
  text-align: center;
}
.banner__title {
  font-size: 3rem;
}
.banner__text {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}
.banner__title, .banner__text {
  color: #fff;
}
.banner .btn {
  padding-left: 2rem;
  padding-right: 2rem;
}

.slider__section {
  overflow: hidden;
}
.slider__section .splide__track {
  overflow: unset;
}

.splide .splide__pagination {
  left: unset;
  right: unset;
  bottom: unset;
  z-index: unset;
  position: unset;
  margin-top: 1rem;
}
.splide .splide__pagination__page {
  margin: 0 7px;
  background: rgba(0, 0, 0, 0.24);
}
.splide .splide__pagination__page.is-active {
  transform: unset;
  background: rgba(0, 0, 0, 0.56);
}

.splide__full .splide__slide {
  position: relative;
  opacity: 0.3;
  transition: opacity 250ms linear;
}
.splide__full .splide__slide.is-active {
  opacity: 1;
}
.splide__full .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.splide__full-content {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  bottom: 1rem;
  width: 100%;
  padding: 1rem 3rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
  .splide__full-content {
    display: none;
  }
}
.splide__full-content a {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.4rem 1.2rem;
}
.splide__full-content span {
  font-size: 1.2rem;
}
.splide__full-content strong {
  font-weight: 600;
}

.poster {
  display: block;
  width: inherit;
  height: inherit;
  background-image: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
}

.masthead {
  position: relative;
  padding-block: 40px;
  background: #fff;
  margin-top: 80px;
}
.masthead__wrapper {
  padding-left: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1680px;
  margin-inline: auto;
}
@media (min-width: 1680px) {
  .masthead__wrapper {
    padding-right: 72px;
  }
}
.masthead__content {
  position: relative;
  align-self: center;
  margin-right: 60px;
}
@media (min-width: 992px) {
  .masthead__content {
    flex: 0 0 400px;
  }
}
.masthead__content .ix-logo {
  position: absolute;
  left: -72px;
  top: 50%;
  transform-origin: left;
  transform: translateY(-50%) scale(1.4);
  opacity: 0.6;
}
@media (max-width: 991.98px) {
  .masthead__content .ix-logo {
    display: none;
  }
}
.masthead__content > .icon {
  width: 84px;
  height: 84px;
  background: var(--background) no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}
.masthead__content h1 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 3rem;
}
.masthead__content p {
  font-size: 2.2rem;
  font-weight: 600;
}
.masthead__photo-wrapper {
  position: relative;
  flex-grow: 1;
  padding-right: 40px;
}
@media (min-width: 992px) {
  .masthead__photo-wrapper {
    max-width: 722px;
  }
}
.masthead__photo-frame {
  position: relative;
  z-index: 1;
  background: var(--background) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .masthead__photo-frame {
    max-width: 578px;
  }
}
.masthead__photo-frame:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.masthead__photo-frame #cover-upload-trigger {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 250ms ease-out;
  background: rgba(68, 68, 68, 0.2666666667);
  border: unset;
  padding: unset;
  font-size: 2rem;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.masthead__photo-frame #cover-upload-trigger svg {
  pointer-events: none;
}
.masthead__photo-frame:hover #cover-upload-trigger {
  opacity: 1;
  transform: translateY(0);
}
.masthead__photo-frame .social {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 15px 25px;
}
.masthead__photo-frame .social li {
  margin-right: 10px;
}
.masthead__photo-frame .social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masthead__photo-frame .social a:before {
  transform: scale(1);
  content: " ";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transition: all 265ms ease-out;
}
.masthead__photo-frame .social a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}
.masthead__photo-frame .social a svg {
  color: #fff;
  position: absolute;
  transition: all 265ms ease-out;
}
.masthead__photo-frame .social a:hover svg {
  transform: scale(1.5);
  color: #E63946;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 265ms ease-in;
}
.masthead__photo-frame .social svg {
  color: #fff;
}
.masthead__photo-shape {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40%;
  height: 95%;
  background: #5e8ac7;
}
@media (max-width: 991.98px) {
  .masthead__wrapper {
    flex-direction: column-reverse;
    align-self: stretch;
    padding-left: 30px;
  }
  .masthead__photo-wrapper {
    width: 100%;
    flex-grow: unset;
    margin-bottom: 30px;
  }
  .masthead__content {
    align-self: unset;
    margin-right: 30px;
  }
  .masthead__content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .masthead__content p {
    font-size: 1.4rem;
  }
}

.header__projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e9;
}
.header__projects--simple {
  padding-bottom: unset;
  border-bottom: unset;
  padding-block: 30px;
}
@media (max-width: 991.98px) {
  .header__projects--simple {
    flex-wrap: wrap;
  }
  .header__projects--simple .column:nth-child(2) {
    width: 100%;
    order: 2;
    margin-top: 1rem;
  }
}
.header__projects .form-select {
  width: auto;
}

.filter__grid {
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-template-columns: repeat(4, 1fr) 150px;
}
@media (max-width: 767.98px) {
  .filter__grid {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .filter__grid > .column {
    margin-bottom: 1rem;
  }
}
.filter__grid > .column:last-child {
  display: flex;
  align-items: flex-end;
}
.filter__grid .form-label {
  font-size: 0.8rem;
  font-weight: 500;
}
.filter__grid .form-control,
.filter__grid .form-select {
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-width: 1px;
}
.filter__grid .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  justify-content: center;
}

/*
$__width: 436px;
$__height: 882px;

#phone-viewer {
  height: 100vh;
  margin-top: -30vh;
}

--------

.phone-viewer {
  position: absolute;

  width: $__width;
  height: $__height;

  left: 0;

  transform: scale(0.5) perspective(10cm) rotateY(0);
  transform-style: preserve-3d;

  &__phone {
    position: absolute;

    width: 100%;
    height: 100%;

    background: url(../images/iphone.png) no-repeat;
    background-size: contain;

    z-index: 10;
  }


  &__featured {
    position: absolute;

    width: 100%;
    height: 100%;

    overflow: hidden;

    padding: 19px 24px 22px 24px;

    &-photo {
      width: 100%;
      height: 100%;

      background: var(--photo) no-repeat;
      background-size: 100%;
    }
  }
}


------

.phone-viewer {
  position: absolute;

  width: $__width;
  height: $__height;

  opacity: 0;

  transform: scale(0.5) rotate(-45deg);

  &__phone {
    position: absolute;

    width: 100%;
    height: 100%;

    background: url(../images/iphone.png) no-repeat;
    background-size: contain;

    z-index: 10;
  }


  &__featured {
    position: absolute;

    width: 100%;
    height: 100%;

    overflow: hidden;

    padding: 19px 24px 22px 24px;

    &-photo {
      width: 100%;
      height: 100%;

      // background: var(--photo) no-repeat;
      background-size: 100%;
    }
  }
}

.project {
  &, & div {
    height: inherit;
  }

  &__photo {
    @include image-cover;
  }

  &__content {
    height: unset !important;
  }
}

.horizontal-scroller {
  position: relative;
  // pointer-events: none;
  // opacity: 0;

  width: calc($__height - 120px);
  height: calc($__width - 120px);
  overflow: hidden;

  transform: rotate(90deg) translateX(58%) translateY(1%);
  transform-origin: top;
}
.horizontal-scroller-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  // z-index: 10;
}
.horizontal-scroller-item {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: inherit;
  height: inherit;
}

.text-highlighter {
  max-width: 800px;
  height: 350px;

  margin-right: 5rem;

  line-height: 70px;

  font-size: 3rem;
  font-weight: 500;

  color: rgba(#444, 0.8);

  overflow: hidden;
}

.nav-pills {
  justify-content: center;

  .nav-item {
    width: 100px;
    margin: 0;
  }

  .nav-link {
    text-transform: unset;

    @include text-font;
    font-weight: 300 !important;

    width: 100%;
    padding: 0.5rem 3rem;
    color: #000 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid #d2d2d7;

    &.active {
      border-color: #000;
    }
  }
}

.project__info {
  &-image {
    display: flex;
    justify-content: center;
  }

  &-detail {
    padding: 0 20px 20px 20px;
    margin-top: 2rem;
    text-align: center;
  }

  &-title {
    font-size: 1.2rem;
    margin: 0 0 0.4rem 0;
  }

  &-text {
    font-size: 0.9rem;
    color: #444;
    margin: 0 0 0.4rem 0;
  }

  .btn {
    color: #0a58ca;
    padding: 0.1rem 0.6rem;
  }
}

.projects {
  margin-top: 80px;

  &__content {
    max-width: 980px;
    margin-inline: auto;

    text-align: center;

    &-title {
      font-size: 4rem;
      font-weight: 600;
    }

    &-text {
      font-size: 1.5rem;
      font-weight: 400;

      max-width: 600px;
      margin: 0 auto;

      color: #444;
    }
  }
}
*/
@media (min-width: 768px) {
  .container__project {
    max-width: 1168px;
  }
}

.header__project {
  padding-block: 3rem;
}
.header__project-title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767.98px) {
  .header__project-title {
    font-size: 1.4rem;
  }
}

.category-list {
  overflow-x: auto;
}
@media (max-width: 991.98px) {
  .category-list {
    padding-bottom: 1rem;
  }
}
.category-list .list-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .category-list .list-inline {
    justify-content: unset;
  }
}
.category-list .btn {
  border: unset;
  color: #6e6d7a;
}
.category-list .btn:hover {
  color: #000;
}
.category-list .btn.active {
  color: #6e6d7a !important;
  font-weight: 500;
  background: #f3f3f4;
}

.project-previews {
  border-radius: 8px;
  overflow: hidden;
}

.project-thumbnails {
  margin-top: 1rem;
}
.project-thumbnails .splide__slide {
  position: relative;
  opacity: 0.6;
  border: 0 !important;
  border-radius: 8px;
  overflow: hidden;
}
.project-thumbnails .splide__slide.is-active {
  opacity: 1;
}
.project-thumbnails .splide__slide.is-active::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  border: 3px solid #5d8ac7;
  border-radius: 8px;
}

.project__story {
  padding-block: 0 3rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.project__story h2 {
  font-weight: 600;
}
.project__story h3 {
  font-weight: 500;
}
.project__story h2, .project__story h3 {
  margin-block: 2rem;
}
.project__story img {
  width: 100%;
  height: auto;
}

.project__related {
  margin-block: 0 5rem;
}
.project__related-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
}
.project__related-header-title {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 600;
  margin-top: 1rem;
}
.project__related-header-text {
  font-size: 0.9rem;
}
.project__related-header .btn {
  max-width: -moz-max-content;
  max-width: max-content;
}
.project__related-logo {
  width: 80px;
  height: 80px;
  border-inline: 2rem solid #fff;
  box-sizing: content-box;
}
.project__related-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50rem;
}
.project__related-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.project__related-logo-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  background: #bfbfbf;
}
.project__related-title {
  font-weight: 500;
  text-align: center;
  margin-block: 3rem;
}

.project__marketplace {
  padding-block: 5rem;
  background: #eaeaea;
}
.project__marketplace-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.project__section {
  margin-bottom: 5rem;
}
.project__section--reverse .row {
  flex-direction: row-reverse;
}
.project__section-photo {
  overflow: hidden;
  border-radius: 16px;
}
.project__section-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project__section-content {
  max-width: 500px;
  text-align: justify;
}
.project__section-title {
  font-weight: 600;
  margin: 0 0 2rem;
}
.project__section-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
}

.profile__avatar {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}
.profile__avatar-photo {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile__avatar-overlay .__overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.profile__avatar-overlay .__overlay svg {
  color: #fff;
  font-size: 3rem;
}
.profile__avatar-overlay:hover .__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile__avatar--md {
  width: 60px;
  height: 60px;
}
.profile__avatar--lg {
  width: 80px;
  height: 80px;
}
.profile__username {
  font-weight: 400;
  margin-right: 0.5rem;
}
.profile__username--lg {
  font-size: 1.8rem;
  font-weight: 600;
}
.profile__badge {
  color: #bdc3c7;
  margin-bottom: 2px;
}
.profile__badge--lg {
  font-size: 2rem;
}
.profile__badge--verified {
  color: #5D8AC7;
}

.user__overview {
  display: flex;
  align-items: center;
}

.profile-nav {
  padding-block: 1rem;
  display: flex;
  gap: 48px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-block: 48px 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid #eee;
}
.profile-nav .nav-link {
  color: #6e6d7a;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 !important;
  line-height: 1;
}
.profile-nav .nav-link:hover, .profile-nav .nav-link:focus, .profile-nav .nav-link:active, .profile-nav .nav-link.active {
  color: #000;
}

.profile-content {
  margin-bottom: 8rem;
}
.profile-content--narrow {
  max-width: 1100px;
  margin-inline: auto;
}

.community__cta {
  overflow: hidden;
  background: #fafafa;
  padding-block: 8rem;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .community__cta {
    padding-block: 3rem;
    padding-inline: 2rem;
  }
}
.community__cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 480px;
  height: 100%;
}
@media (max-width: 767.98px) {
  .community__cta-content {
    max-width: unset;
    align-items: center;
  }
}
.community__cta-title {
  font-size: 2.7rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 767.98px) {
  .community__cta-title {
    text-align: center;
    font-size: 2rem;
  }
}
.community__cta-text {
  font-size: 1.3rem;
  margin-block: 1rem 3rem;
  max-width: 400px;
}
@media (max-width: 767.98px) {
  .community__cta-text {
    text-align: center;
    font-size: 1.1rem;
  }
}
.community__cta-photo {
  position: absolute;
  width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.community__cta-photo-wrapper {
  position: relative;
  height: 300px;
}
@media (min-width: 576px) {
  .community__cta-photo-wrapper {
    height: 500px;
  }
}
@media (min-width: 768px) {
  .community__cta-photo-wrapper {
    height: unset;
  }
}
@media (min-width: 768px) {
  .community__cta-photo {
    width: 600px;
    left: unset;
    transform: translateY(-50%);
  }
}

.community__partners {
  padding-block: 4rem 6rem;
  max-width: 900px;
  margin-inline: auto;
}
.community__partners h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .community__partners h2 {
    font-size: 2rem;
  }
}
.community__partners .uiuxpro {
  max-width: 180px;
}
@media (max-width: 768px) {
  .community__partners .uiuxpro {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .community__partners .arrow-wrapper {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .community__partners .arrow {
    rotate: 90deg;
    width: 100px;
  }
}
.community__partners .f-of-f {
  max-width: 150px;
}

.slide-accordion-wrapper {
  padding: 2rem;
  background: #fff;
}

.ui-slide-accordion {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  overflow: hidden;
}
.ui-slide-accordion__box h2 {
  font-size: 3rem;
}
.ui-slide-accordion__box p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.ui-slide-accordion__box .btn {
  padding-left: 2rem;
  padding-right: 2rem;
}
.ui-slide-accordion__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.ui-slide-accordion__slide {
  flex-grow: 1;
  background-image: var(--photo);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 250ms flex-grow;
  margin-right: 2rem;
}
.ui-slide-accordion__slide:last-child {
  margin-right: 0;
}
.ui-slide-accordion__slide--expand {
  flex-grow: 4;
}

::-moz-selection {
  color: #fff;
  background: #5d8ac7;
}

::selection {
  color: #fff;
  background: #5d8ac7;
}

body {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  image-rendering: -webkit-optimize-contrast;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--page-heading-color, #000);
}

h1 {
  font-family: "Mont", sans-serif;
}

strong {
  font-weight: 500;
}

a {
  text-decoration: none;
}

p {
  color: var(--page-text-color, #444);
}

hr {
  border-width: var(--bs-border-width, 2px);
  border-color: #bbb;
}

img {
  display: block;
  max-width: 100%;
}

.remove-transition {
  transition: unset !important;
}

.logo {
  width: 100px;
}
.logo svg {
  width: inherit;
}

.check-reveal-content {
  display: none;
}

.form-check,
.form-check-input,
.form-check-label {
  cursor: pointer;
}

.form-check-label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0.9rem;
}

.dropdown-divider {
  background: #eee !important;
}

.dropdown-item {
  --bs-dropdown-link-active-bg: #e9ecef;
}

.tox-editor-header {
  box-shadow: none !important;
  border-bottom: 2px solid #e7e7e9 !important;
}

.tox-collection__item {
  cursor: pointer !important;
}

.tox-collection__item-label > * {
  all: unset !important;
}

.tox-tbtn {
  cursor: pointer !important;
  background: unset !important;
}

.tox-tbtn__select-label {
  cursor: pointer !important;
  margin-bottom: 3px !important;
}

.tox-edit-area__iframe {
  background: #fafafa !important;
}

.snackbar-error {
  color: #fff !important;
  background: #e84118 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-border-color: transparent;
}
.btn .icon {
  display: flex;
  margin-right: 6px;
}
.btn-lg {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
}
.btn[disabled] {
  background: #c7c7c7;
  border-color: #c7c7c7;
  color: #909090;
}

.btn-link {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0;
  text-decoration: none;
}

.btn-default {
  box-shadow: 0px 0px 0px 1px #e7e7e9 inset;
  border: unset;
  color: #6e6d7a !important;
}
.btn-default:hover {
  color: #000 !important;
}

.btn-outline {
  --bs-btn-border-color: #000;
  --bs-btn-hover-border-color: #000;
  --bs-btn-focus-border-color: #000;
  --bs-btn-active-border-color: #000;
  padding: 1rem 2rem;
  font-weight: 500;
}

.btn-focused {
  padding: 1rem 2rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-bg: #101524;
  --bs-btn-hover-bg: #1c253f;
  --bs-btn-active-bg: #1c253f;
  --bs-btn-border-color: #101524;
  --bs-btn-hover-border-color: #1c253f;
  --bs-btn-active-border-color: #1c253f;
  --bs-btn-focus-shadow-rgb: 68, 68, 68;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-hover-color: #000;
  --bs-btn-active-color: #000;
  --bs-btn-bg: #eee;
  --bs-btn-hover-bg: #ddd;
  --bs-btn-active-bg: #ddd;
  --bs-btn-border-color: #ddd;
  --bs-btn-hover-border-color: #ddd;
  --bs-btn-active-border-color: #ddd;
  --bs-btn-focus-shadow-rgb: 68, 68, 68;
}

.locked-content {
  position: relative;
}
.locked-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(93, 138, 199, 0.65);
}
.locked-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23284873' fill='%23284873' stroke-width='0' viewBox='0 0 512 512' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M368 192h-16v-80a96 96 0 10-192 0v80h-16a64.07 64.07 0 00-64 64v176a64.07 64.07 0 0064 64h224a64.07 64.07 0 0064-64V256a64.07 64.07 0 00-64-64zm-48 0H192v-80a64 64 0 11128 0z'%3E%3C/path%3E%3C/svg%3E");
  background-position: top 12px right 12px;
  background-repeat: no-repeat;
  background-size: 20px;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  border: unset;
  box-shadow: 0px 0px 0px 1px #e7e7e9 inset;
}

.dropdown-item {
  font-size: 0.9rem;
  color: #6e6d7a;
}
.dropdown-item.active {
  color: #6e6d7a;
}
.dropdown-item:hover {
  color: #000;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.invalid-feedback {
  display: unset;
  margin-top: unset;
}

.pre-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(255, 255, 255);
  z-index: 99999;
}
.pre-loader__content {
  display: none;
}

.badge {
  font-size: 0.7rem;
  font-weight: 400;
  background: #5D8AC7;
  padding: 0.2rem 0.3rem;
  border-radius: 3px;
}

.alert {
  margin-bottom: 2rem;
}
.alert:has(svg) {
  display: grid;
  grid-template-columns: 24px 1fr;
}
.alert:has(svg) svg {
  width: 100%;
  height: auto;
}

.page {
  color: var(--page-text-color, #444);
  background: var(--page-background, #fff);
}
.page--dark {
  --page-heading-color: #ffffff;
  --page-text-color: #ffffff;
  --page-background: #000000;
}

.title-striked {
  position: relative;
  z-index: 2;
  text-align: center;
}
.title-striked span {
  padding-inline: 30px;
  background-color: #f2f2f2;
}
.title-striked::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  background-color: #bfbfbf;
}

.section {
  margin-bottom: 1rem;
}
.section--light {
  background: #fff;
}
.section--spaced {
  padding: 1rem 0;
}
.section__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.section__title--lg {
  font-size: 4rem;
}
.section__title--xl {
  font-size: 5rem;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section__header-title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.2rem;
  margin: 0;
}
@media (max-width: 767.98px) {
  .section__header-title {
    font-size: 1rem;
  }
}
.section__header-action {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .section__header-action {
    font-size: 0.9rem;
  }
}
.section__header--lg .section__header-title {
  font-size: 2rem;
  font-weight: 600;
}

.page__header-title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .page__header-title {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 1.5rem;
  }
}
.page__header-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
@media (min-width: 1400px) {
  .page__header-text {
    font-size: 22px;
    line-height: 32px;
  }
}
.page__header--compressed .container {
  max-width: 1444px;
  padding: 0 72px;
}
.page__header--compressed .container .row {
  padding: 0;
}
.page__header--lg .page__header-title {
  font-size: 34px;
  line-height: 44px;
}
.page__header--lg .page__header-text {
  font-size: 22px;
  line-height: 32px;
}

.divider {
  position: relative;
  text-align: center;
}
.divider span {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  background: #fff;
  padding: 10px 30px;
}
.divider::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background: #ddd;
  transform: translateY(-50%);
}

.icon__box {
  padding: 1rem 0;
}
.icon__box .icon {
  font-size: 3rem;
  color: #444;
  margin-bottom: 0.8rem;
}
.icon__box-title {
  font-size: 1.2rem;
}
.icon__box-text {
  font-size: 0.9rem;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  margin-bottom: 0.4rem;
}
.list li:last-child {
  margin: 0;
}
.list__pipe {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list__pipe li {
  margin-right: 0.6rem;
}
.list__pipe li:last-child {
  margin: 0;
}
.list__pipe li {
  position: relative;
  padding-right: 0.6rem;
}
.list__pipe li:after {
  content: "|";
  position: absolute;
  right: 0;
}
.list__pipe li:last-child {
  padding: 0;
}
.list__pipe li:last-child:after {
  content: unset;
}
.list-checked li, .list-unchecked li {
  display: flex;
  align-items: center;
}
.list-checked li svg, .list-unchecked li svg {
  align-self: flex-start;
  margin-top: 3px;
  margin-right: 10px;
}
.list-checked li:not(:last-child), .list-unchecked li:not(:last-child) {
  margin-bottom: 10px;
}
.list-checked svg, .list-unchecked svg {
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 4px;
  border-radius: 50%;
  background: #4bb7bf;
  color: #fff;
}
.list-unchecked svg {
  background: rgba(231, 76, 60, 0.8);
}

.social {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social li {
  margin-right: 1.2rem;
}
.social li:last-child {
  margin: 0;
}

.icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.icon-link:hover .icon {
  right: 0;
  opacity: 1;
}
.icon-link .icon {
  position: absolute;
  right: 14px;
  top: -1px;
  opacity: 0;
  transition: opacity 120ms linear, right 120ms linear;
}
.icon-link span {
  font-weight: 400;
  line-height: 1;
  margin-right: 24px;
}
.icon-link--static .icon {
  opacity: 1;
  right: 0;
}
.icon-link--static:hover .icon {
  right: 0;
}

.tv-wrapper {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 6rem;
}

.tv {
  position: relative;
  box-shadow: 30px 30px 30px 0px rgb(204, 204, 204);
}
.tv::before {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  border: 5px solid black;
}
.tv video {
  display: block;
  width: 100%;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}
.grid--gap-sm {
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.column-span--1 {
  grid-column: span 1;
}
@media (max-width: 767.98px) {
  .column-span--1 {
    grid-column: span 12;
  }
}
.column-span--2 {
  grid-column: span 2;
}
@media (max-width: 767.98px) {
  .column-span--2 {
    grid-column: span 12;
  }
}
.column-span--3 {
  grid-column: span 3;
}
@media (max-width: 767.98px) {
  .column-span--3 {
    grid-column: span 12;
  }
}
.column-span--4 {
  grid-column: span 4;
}
@media (max-width: 767.98px) {
  .column-span--4 {
    grid-column: span 12;
  }
}
.column-span--5 {
  grid-column: span 5;
}
@media (max-width: 767.98px) {
  .column-span--5 {
    grid-column: span 12;
  }
}
.column-span--6 {
  grid-column: span 6;
}
@media (max-width: 767.98px) {
  .column-span--6 {
    grid-column: span 12;
  }
}
.column-span--7 {
  grid-column: span 7;
}
@media (max-width: 767.98px) {
  .column-span--7 {
    grid-column: span 12;
  }
}
.column-span--8 {
  grid-column: span 8;
}
@media (max-width: 767.98px) {
  .column-span--8 {
    grid-column: span 12;
  }
}
.column-span--9 {
  grid-column: span 9;
}
@media (max-width: 767.98px) {
  .column-span--9 {
    grid-column: span 12;
  }
}
.column-span--10 {
  grid-column: span 10;
}
@media (max-width: 767.98px) {
  .column-span--10 {
    grid-column: span 12;
  }
}
.column-span--11 {
  grid-column: span 11;
}
@media (max-width: 767.98px) {
  .column-span--11 {
    grid-column: span 12;
  }
}
.column-span--12 {
  grid-column: span 12;
}
@media (max-width: 767.98px) {
  .column-span--12 {
    grid-column: span 12;
  }
}

.modal-dialog {
  transform: scale(0.8);
  transition: all 150ms ease-out;
}
.modal-dialog .switcher {
  font-size: 0.9rem;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.modal-dialog.modal-fullscreen {
  transform: translateY(50%);
}

.modal.show .modal-dialog.modal-fullscreen {
  transform: translateY(0);
}

.modal-lg {
  max-width: 600px;
}

.modal-xl {
  max-width: 900px;
}

.modal-body {
  padding: 40px;
}
.modal-body::-webkit-scrollbar {
  display: none;
}
.modal-body strong {
  line-height: 1.3;
}
.modal-body .accordion-item {
  border: unset !important;
}
.modal-body .accordion-button {
  font-family: "Proxima Nova", sans-serif;
  padding: 16px 0;
  background: unset;
  box-shadow: unset;
  color: #777;
  font-weight: 500;
}
.modal-body .accordion-button:hover, .modal-body .accordion-button[aria-expanded=true] {
  color: #000;
}
.modal-body .accordion-body {
  padding: 0 0 20px;
}
.modal-body .accordion-body .form-label {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.modal-body .accordion-body .form-select,
.modal-body .accordion-body .form-control {
  border-width: 1px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.repeater-item {
  display: flex;
  margin-block: 2rem;
}
.repeater-item-fields {
  flex: 1;
}
.repeater-item:first-child {
  margin-top: 0;
}
.repeater-item:last-child {
  margin-bottom: 1rem;
}
.repeater-remove {
  display: flex;
  border: 0;
  margin-left: 10px;
  align-self: flex-start;
}
.repeater-remove:hover {
  color: #ff0000;
}

.form__block {
  margin-bottom: 40px;
}
.form label {
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
.form label.required::after {
  content: "*";
  display: inline-block;
  margin-left: 6px;
  color: #ff0000;
}

.form-label {
  font-weight: 400;
}

.form-text {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #fafafa;
  border: 2px solid #e7e7e9;
}

.form-control-icon {
  position: relative;
}
.form-control-icon .form-control {
  padding-left: 40px;
}
.form-control-icon svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--color);
}

.switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}
.switcher .form-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 1rem;
  pointer-events: none;
}
.switcher .form-switch .form-check-input {
  width: 2.5em;
  height: 1.3em;
}
.switcher-left, .switcher-right {
  font-weight: 400;
  cursor: pointer;
  color: #9c9c9c;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.switcher-left:hover, .switcher-left.active, .switcher-right:hover, .switcher-right.active {
  color: #000;
}

.newsletter {
  margin: 5rem 0;
}
.newsletter form {
  margin-top: 3rem;
}

.not__found {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 5rem;
}
.not__found-title, .not__found-text {
  margin: 0;
}
.not__found-title {
  font-family: "Proxima Nova", sans-serif;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .filters-trigger {
    display: none;
  }
}
.filters-collapse {
  transition: none !important;
}
@media (min-width: 768px) {
  .filters-collapse {
    display: block !important;
  }
}
@media (max-width: 767.98px) {
  .filters-collapse:not(.show) {
    display: none;
  }
}

.pagination {
  gap: 8px;
  justify-content: center;
  --bs-pagination-color: #5D8AC7;
  --bs-pagination-hover-color: #5D8AC7;
  --bs-pagination-focus-color: #5D8AC7;
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: #5D8AC7;
  --bs-pagination-border-width: 0;
  --bs-pagination-disabled-color: #b6b6b6;
}
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem !important;
  min-height: 40px;
  min-width: 40px;
  border: unset !important;
}

.header-1 {
  overflow: hidden;
  padding-block: 10rem;
}
.header-1__title {
  font-size: 3.6rem;
  font-weight: 900;
}
.header-1__text {
  margin-block: 1rem 2rem;
}
.header-1 .btn-primary {
  padding: 10px 35px;
}
.header-1__photo-grid {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  transform: rotate(45deg);
  z-index: 10;
}
@media (min-width: 768px) {
  .header-1__photo-grid {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .header-1__photo-grid {
    margin-right: 58px;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .header-1__photo-grid {
    width: 500px;
    height: 500px;
    margin-right: 72px;
  }
}
.header-1__photo-grid::before {
  content: "";
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23000' stroke-width='1' stroke-dasharray='9' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.header-1__photo-grid-item {
  overflow: hidden;
  border-radius: 50rem;
  transform: rotate(-45deg);
}
.header-1__photo-grid-item--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.header-1__photo-grid-item--icon svg {
  width: 48px;
  height: auto;
  color: #f2f2f2;
}
@media (min-width: 992px) {
  .header-1__photo-grid-item--icon svg {
    width: 60px;
  }
}
.header-1__photo-grid-item--photo {
  position: relative;
}
.header-1__photo-grid-item--photo img {
  position: absolute;
}
.header-1__photo-grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-1__search {
  position: relative;
  margin-top: -48px;
  margin-bottom: 48px;
}
.header-1__search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  padding: 0;
  outline: none !important;
}
.header-1__search-submit .icon {
  margin-right: 0;
}
.header-1-photo-appear {
  animation: header-1-photo-appear 1s ease-out forwards;
  z-index: 1;
}

@keyframes header-1-rotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
@keyframes header-1-rotate-alt {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}
@keyframes header-1-photo-appear {
  from {
    transform: scale(1.5) rotate(0deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header-home {
  position: relative;
  --colorStart: #48dbfb;
  --colorSecond: #1dd1a1;
  --colorThird: #FF585D;
  --header-color: rgb(16, 21, 36);
  background: var(--header-color);
  background-repeat: round;
  overflow: hidden;
}
@media (min-width: 992px) {
  .header-home {
    height: 900px;
  }
}
.header-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 2;
  animation: color-change 15s linear infinite normal;
}
.header-home #particles {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}
.header-home > .container {
  position: relative;
  z-index: 3;
  height: 100%;
}
.header-home__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .header-home__grid {
    grid-template-columns: 1fr 1.4fr;
    height: 100%;
    gap: 48px;
  }
}
@media (min-width: 1400px) {
  .header-home__grid {
    grid-template-columns: 1fr 1.6fr;
  }
}
@media (min-width: 1600px) {
  .header-home__grid {
    grid-template-columns: 1fr 1.8fr;
  }
}
.header-home__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .header-home__content {
    align-items: center;
    padding-block: 10rem 0;
  }
}
.header-home__content h1, .header-home__content p {
  color: #fff;
}
@media (max-width: 991.98px) {
  .header-home__content h1, .header-home__content p {
    text-align: center;
  }
}
.header-home__content h1 {
  font-size: 5.5rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991.98px) {
  .header-home__content h1 {
    font-size: 3.5rem;
  }
}
.header-home__content p {
  max-width: 400px;
  color: #a8a8a8;
  font-size: 1.4rem;
  font-weight: 400;
  margin-block: 1.6rem 3rem;
}
@media (max-width: 991.98px) {
  .header-home__content p {
    max-width: 210px;
    font-size: 1.1rem;
  }
}
.header-home__content .btn {
  --bs-btn-bg: #212529dd;
  --bs-btn-hover-bg: #212529dd;
  --bs-btn-focus-bg: #212529dd;
  --bs-btn-active-bg: #212529dd;
  --bs-btn-border-color: #373b3e;
  --bs-btn-hover-border-color: #666;
  --bs-btn-focus-border-color: #666;
  --bs-btn-active-border-color: #666;
  padding: 12px 30px;
  -webkit-backdrop-filter: blur(4px) saturate(4);
          backdrop-filter: blur(4px) saturate(4);
}
.header-home__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .header-home__art {
    justify-content: center;
  }
  .header-home__art .planets {
    transform: translateY(45%);
  }
}

.planets {
  position: relative;
  width: 300px;
  height: 300px;
}
@media (min-width: 992px) {
  .planets {
    scale: 1.6;
  }
}
@media (min-width: 1200px) {
  .planets {
    width: 500px;
    height: 500px;
  }
}
@media (min-width: 1400px) {
  .planets {
    scale: 1.8;
  }
}
.planets .sun {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 50%;
}
.planets .sun img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.planets .orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/orbit-vertical.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 991.98px) {
  .planets .orbit {
    background-image: url(../images/orbit-horizontal.svg);
  }
}
.planets .planet-wrapper {
  position: absolute;
  inset: 0;
  animation: orbit 25s linear infinite;
  transform-origin: center;
}
.planets .planet {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
}
.planets .planet img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  animation: orbit-inverse 25s linear infinite;
}
.planets .orbit-1 {
  width: 230px;
  height: 230px;
}
.planets .orbit-1 .planet-wrapper {
  animation-duration: 20s;
}
.planets .orbit-1 .planet {
  width: 20px;
  height: 20px;
}
.planets .orbit-1 .planet img {
  animation-duration: 20s;
}
.planets .orbit-2 {
  width: 300px;
  height: 300px;
}
.planets .orbit-2 .planet-wrapper {
  animation-duration: 10s;
}
.planets .orbit-2 .planet {
  width: 26px;
  height: 26px;
  right: 0;
  left: unset;
  transform: translateY(-50%) translateX(50%);
}
.planets .orbit-2 .planet img {
  animation-duration: 10s;
}
.planets .orbit-3 {
  width: 380px;
  height: 380px;
}
.planets .orbit-3 .planet-wrapper {
  animation-duration: 15s;
}
.planets .orbit-3 .planet {
  width: 60px;
  height: 60px;
  top: 0;
  left: 50%;
  right: unset;
  transform: translateY(-50%) translateX(-50%);
}
.planets .orbit-3 .planet img {
  animation-duration: 15s;
}
.planets .orbit-4 {
  width: 480px;
  height: 480px;
}
.planets .orbit-4 .planet-wrapper {
  animation-duration: 25s;
}
.planets .orbit-4 .planet {
  width: 75px;
  height: 75px;
  bottom: 0;
  left: 50%;
  top: unset;
  right: unset;
  transform: translateY(50%) translateX(-50%);
}
.planets .orbit-4 .planet img {
  animation-duration: 25s;
}
.planets .orbit-5 {
  width: 600px;
  height: 600px;
}
.planets .orbit-5 .planet-wrapper {
  animation-duration: 15s;
}
.planets .orbit-5 .planet {
  width: 75px;
  height: 75px;
}
.planets .orbit-5 .planet-alt {
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
.planets .orbit-5 .planet img {
  animation-duration: 15s;
}
.planets .orbit-6 {
  width: 700px;
  height: 700px;
}
.planets .orbit-6 .planet-wrapper {
  animation-duration: 20s;
}
.planets .orbit-6 .planet {
  width: 60px;
  height: 60px;
  right: 0;
  left: unset;
  transform: translateY(-50%) translateX(50%);
}
.planets .orbit-6 .planet-alt {
  top: unset;
  right: unset;
  bottom: 0;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
}
.planets .orbit-6 .planet img {
  animation-duration: 20s;
}
.planets .orbit-7 {
  width: 800px;
  height: 800px;
}
.planets .orbit-7 .planet-wrapper {
  animation-duration: 26s;
}
.planets .orbit-7 .planet {
  width: 65px;
  height: 65px;
  right: 0;
  left: unset;
  transform: translateY(-50%) translateX(50%);
}
.planets .orbit-7 .planet-alt {
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.planets .orbit-7 .planet img {
  animation-duration: 26s;
}
.planets .orbit-8 {
  width: 900px;
  height: 900px;
}
.planets .orbit-8 .planet-wrapper {
  animation-duration: 30s;
}
.planets .orbit-8 .planet {
  width: 40px;
  height: 40px;
  right: 0;
  left: unset;
  transform: translateY(-50%) translateX(50%);
  overflow: visible;
}
.planets .orbit-8 .planet img {
  animation-duration: 30s;
  height: unset;
  -o-object-fit: unset;
     object-fit: unset;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit-inverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.navbar {
  position: fixed;
  top: 0;
  z-index: 1050;
  width: 100%;
  height: 80px;
  transition: all 250ms linear;
}
.navbar--filler {
  margin-top: 80px;
}
.navbar-brand {
  margin-right: 2rem;
}
.navbar-nav {
  margin-right: auto;
}
@media (max-width: 1199.98px) {
  .navbar-nav {
    display: none;
  }
}
.navbar-nav li {
  position: relative;
}
.navbar-nav li .sub-menu {
  position: absolute;
  background: var(--sub-menu-bg, #fff);
  border-radius: 12px;
  display: flex;
  box-shadow: 0px 10px 70px rgba(0, 0, 0, 0.15);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(-10px);
  transition: visibility 250ms linear, opacity 250ms linear, transform 250ms linear;
}
.navbar-nav li hr {
  display: block;
  height: 1px;
  border: 0;
  background: #aaa;
}
.navbar-nav li .sub-menu-links,
.navbar-nav li .sub-menu-categories {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 16px 0;
}
.navbar-nav li .sub-menu-links {
  width: 400px;
}
.navbar-nav li .sub-menu-links--wide {
  width: 480px;
}
.navbar-nav li .sub-menu-links li {
  padding-inline: 40px;
}
.navbar-nav li .sub-menu-categories {
  padding: 30px;
  width: 200px;
  background: var(--sub-menu-categories-bg, #f8f8f8);
}
.navbar-nav li .sub-menu-categories strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}
.navbar-nav li .sub-menu-categories li {
  margin-bottom: 8px;
}
.navbar-nav li .sub-menu-categories li:last-child {
  margin-bottom: 0;
}
.navbar-nav li .sub-menu-categories a {
  display: block;
  color: #6e6d7a;
  font-size: 0.9rem;
}
.navbar-nav li .sub-menu-categories a:hover {
  color: #000;
}
.navbar-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .sub-menu-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.navbar .sub-menu-item-arrow-icon {
  width: 12px;
  height: 12px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
  fill: var(--color);
  transition: visibility 250ms linear, opacity 250ms linear, transform 250ms linear;
}
.navbar .sub-menu-item-icon {
  color: var(--color);
}
.navbar .sub-menu-item-icon-shape {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f8f8f8;
  margin-right: 16px;
}
.navbar .sub-menu-item:hover .sub-menu-item-icon-shape {
  background: var(--hover-color);
}
.navbar .sub-menu-item:hover .sub-menu-item-arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navbar .sub-menu-item-title {
  color: var(--sub-menu-item-title, #000);
  font-size: 0.9rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.navbar .sub-menu-item-text {
  font-size: 0.8rem;
  margin: 0;
  color: var(--sub-menu-item-text, #444);
}
.navbar--sm {
  height: 60px;
}
.navbar__trigger {
  color: #000;
}
.navbar__trigger .icon {
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  .navbar__trigger {
    display: none !important;
  }
}
.navbar-dark .navbar__trigger {
  color: #fff;
}
.navbar__close .icon {
  font-size: 2rem;
}
.navbar-brand {
  font-weight: 400;
}
.navbar-brand svg {
  width: 100px;
}
.navbar-brand svg text {
  font-family: "Mont";
  font-weight: 600;
  fill: #101524;
}
.navbar-brand svg text:first-of-type {
  font-size: 422.16px;
}
.navbar-brand svg text:last-of-type {
  font-size: 428.62px;
  letter-spacing: -0.02em;
}
.navbar-brand svg polygon {
  fill: #5d8ac7;
}
.navbar-brand--light svg path {
  fill: #fff;
}
.navbar__shrink {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.navbar__shrink .navbar-brand,
.navbar__shrink .navbar-nav .nav-link {
  color: #000 !important;
}
.navbar__shrink .navbar-brand svg path,
.navbar__shrink .navbar__trigger svg path,
.navbar__shrink .search__trigger svg path {
  fill: #101524;
}
.navbar__shrink .navbar-brand svg path[data-color-alt],
.navbar__shrink .navbar__trigger svg path[data-color-alt],
.navbar__shrink .search__trigger svg path[data-color-alt] {
  fill: #5d8ac7;
}
.navbar__shrink .navbar__trigger {
  color: #000;
}

.navbar-dark .nav-link {
  color: #fff;
}

.nav__auth {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
.nav__auth .nav-item .nav-link {
  padding: 0 !important;
}

.nav-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  padding: 20px 16px !important;
}

.nav__dark {
  background: rgba(16, 21, 36, 0.7);
}
.nav__dark.navbar__shrink {
  background: rgba(16, 21, 36, 0.7);
}
.nav__dark .navbar-nav .nav-link {
  color: #fff !important;
}
.nav__dark .navbar-brand svg path:not([data-color-alt]) {
  fill: #fff !important;
}
.nav__dark .navbar__trigger svg path,
.nav__dark .search__trigger svg path {
  fill: #fff;
}

.nav__transparent {
  background: transparent;
}

.nav__mini {
  height: 60px;
}

.nav__blur {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
}

.nav__light {
  height: 80px;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  box-shadow: inset 0px -1px 0px #f3f3f4;
}
.nav__light .navbar-nav .nav-link {
  color: #6e6d7a;
}
.nav__light .navbar-nav .nav-link:hover {
  color: #000;
}

.navbar-search {
  position: relative;
}
.navbar-search .icon {
  position: absolute;
  top: 50%;
  transform: translate(15px, -50%);
  color: var(--bs-body-color);
}
.navbar-search .form-control {
  font-size: 1rem !important;
  line-height: 1;
  padding-inline: 45px 30px;
  padding-block: 14px;
  border: 0;
  color: var(--bs-body-color);
  background: #eee;
}
.navbar-search .form-control::-moz-placeholder {
  color: var(--bs-body-color);
}
.navbar-search .form-control::placeholder {
  color: var(--bs-body-color);
}
.navbar-search .form-control:focus {
  background: #fff;
}
.navbar-search .form-control:focus ~ .icon {
  color: var(--bs-body-color);
}

.footer__main {
  padding-block: 3.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--footer-text-color, #6e6e73);
  background: var(--footer-background, #fafafa);
  border-color: var(--footer-border-color, #d2d2d7);
}
.footer__main a {
  color: var(--footer-link-color, #424245);
}
.footer__main p {
  font-size: 0.9rem;
}
.footer__main hr {
  margin-block: 3rem 1.5rem;
}
.footer__main .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__main .logo-wrapper span {
  margin-top: 1px;
}
.footer__main .logo {
  width: 25px;
}
.footer__main .logo svg {
  height: auto;
}
.footer__main--dark {
  --footer-heading-color: #ffffff;
  --footer-text-color: #86868b;
  --footer-link-color: #d2d2d7;
  --footer-background: #1d1d1f;
  --footer-border-color: #424245;
}
.footer__main--dark .logo svg path {
  fill: #fff;
}

.footer__grid {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575.98px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__grid-item .footer__links:not(:last-child) {
  margin-bottom: 1.4rem;
}

.footer__links-title {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer__links-list {
  margin: unset;
  padding: unset;
  list-style: none;
  font-size: 0.9rem;
}
.footer__links-list li:not(:last-child) {
  margin-bottom: 0.9rem;
}

.legal__wrapper {
  max-width: 960px;
  margin: 3rem auto;
}
.legal__wrapper .section {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.legal__wrapper h1, .legal__wrapper h2, .legal__wrapper h3 {
  margin: 0;
}
.legal__wrapper h1 {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
.legal__wrapper h1 ~ h2 {
  margin-top: 1.6rem;
}
.legal__wrapper h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.legal__wrapper h3 {
  font-size: 1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}

.auth {
  position: relative;
  width: 100%;
  height: 100vh;
}
.auth__logo {
  width: 60px;
  margin-bottom: 2rem;
}
.auth__logo img {
  width: inherit;
}
.auth__grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  height: inherit;
}
@media (max-width: 991.98px) {
  .auth__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .auth__grid {
    grid-template-columns: 1fr;
  }
}
.auth__grid-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 6rem;
}
.auth__grid-content form {
  min-width: 250px;
}
.auth__grid-slider {
  position: relative;
}
@media (max-width: 767.98px) {
  .auth__grid-slider {
    display: none;
  }
}
.auth__grid-slider .splide,
.auth__grid-slider .splide .splide__track {
  height: 100%;
}
.auth__grid-slider .splide__pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 10;
  margin: 0;
}
.auth__methods {
  display: grid;
  grid-template-columns: repeat(3, 30px);
  grid-template-rows: 30px;
  gap: 1rem;
  justify-content: center;
}
.auth__methods-title {
  position: relative;
  font-family: "Proxima Nova", sans-serif;
  font-size: 1rem;
  line-height: 25px;
  text-align: center;
  margin-block: 2rem 1.5rem;
}
.auth__methods-title .__line {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.auth__methods-title .__text {
  position: relative;
  background: #fff;
  padding-inline: 1rem;
}
.auth__methods-title::before, .auth__methods-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 25px;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff, transparent);
}
.auth__methods-title::after {
  right: 0;
  left: unset;
  background: linear-gradient(-90deg, #fff, transparent);
}
.auth__method {
  display: flex;
  align-items: center;
  justify-content: center;
  --bs-btn-padding-x: 0;
  --bs-btn-padding-y: 0;
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-color: #ffffff;
  --bs-btn-border-width: 0;
  --bs-btn-border-radius: 50%;
}
.auth__method-google {
  --bs-btn-bg: #ea4335;
  --bs-btn-hover-bg: #ee6459;
  --bs-btn-active-bg: #ee6459;
}
.auth__method-facebook {
  --bs-btn-bg: #1877f2;
  --bs-btn-hover-bg: #3d8df4;
  --bs-btn-active-bg: #3d8df4;
}
.auth__method-twitter {
  --bs-btn-bg: #1da1f2;
  --bs-btn-hover-bg: #42b0f4;
  --bs-btn-active-bg: #42b0f4;
}
.auth__method span {
  margin-left: 0.6rem;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: var(--icon-box-gap, 12px);
  line-height: 1;
}
.icon-box:not(:last-of-type) {
  margin-bottom: 8px;
}
.icon-box-text {
  font-weight: 400;
  margin-top: 3px;
}

.widget:not(:last-of-type) {
  margin-bottom: 2rem;
}
.widget--light {
  background-color: #eee;
}
.widget--spaced {
  padding: 1.3rem 1.6rem;
}
.widget--rounded {
  border-radius: 8px;
}
.widget__title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.widget__content {
  font-weight: 400;
}
.widget__content a {
  color: #444;
}
.widget__content a:hover {
  color: #000;
}

.tag {
  font-size: var(--tag-text-size, 0.8rem);
  font-weight: var(--tag-text-weight, 400);
  color: var(--tag-color, #444);
  background: var(--tag-bg, #eee);
  padding: var(--tag-padding-y, 5px) var(--tag-padding-x, 10px);
  border-radius: var(--tag-radius, 8px);
}
.tag:hover {
  --tag-color: #000;
  --tag-bg: #ddd;
}

.dashboard {
  padding-block: 3rem;
  max-width: 878px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 20ch 1fr;
  gap: 2rem;
  padding-inline: 2rem;
}
.dashboard__wrap {
  background: #fff;
  overflow: hidden;
}
.dashboard__header {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 250px;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .dashboard__header {
    grid-template-columns: 1fr;
  }
}
.dashboard__overview {
  display: flex;
  align-items: center;
}
.dashboard__overview .breadcrumb {
  font-size: 1.4rem;
  font-weight: 500;
}
.dashboard__overview .breadcrumb a, .dashboard__overview .breadcrumb li {
  color: #000;
}
.dashboard__overview .breadcrumb .breadcrumb-item::before {
  color: #dbdbde;
}
.dashboard__overview span {
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .dashboard__gopro {
    margin-top: 1.6rem;
  }
}
.dashboard__gopro div {
  border: 1px solid #ededed;
  text-align: center;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.dashboard__gopro:hover div {
  background: linear-gradient(135deg, #5d8ac7, #121d36);
}
.dashboard__gopro:hover p, .dashboard__gopro:hover span {
  color: #fff;
}
.dashboard__gopro p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
.dashboard__gopro p span {
  font-size: inherit;
  font-weight: 600;
  color: #5D8AC7;
}
.dashboard__gopro span {
  font-size: 0.8rem;
  color: #9e9ea7;
}
@media (max-width: 991.98px) {
  .dashboard__sidebar, .dashboard__panel {
    grid-column: span 2;
  }
}
@media (max-width: 991.98px) {
  .dashboard__sidebar .list-unstyled {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
  }
  .dashboard__sidebar .list-unstyled li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .dashboard__sidebar .list-unstyled hr {
    display: none;
  }
  .dashboard__sidebar .list-unstyled .vr {
    display: block;
    height: 100%;
  }
}
.dashboard__sidebar .vr {
  display: none;
}
.dashboard__sidebar li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.dashboard__sidebar a {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}
.dashboard__sidebar a.active {
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.dashboard__panel > h2,
.dashboard__panel > h5 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1rem;
  margin-block: 0 1rem;
}
.dashboard__panel > h2 {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.dashboard__panel .table th {
  font-weight: 500;
}
.dashboard__panel .table th, .dashboard__panel .table td {
  padding: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.dashboard__panel .accordion-billing .accordion-button:hover {
  background: #eee;
}
.dashboard__panel .accordion-billing .accordion-button::after {
  content: unset;
}
.dashboard__panel .accordion-billing .accordion-body {
  padding: 0;
}
.dashboard__panel .accordion-billing .accordion-body .row {
  padding-block: 1rem;
}
.dashboard__panel .accordion-billing .accordion-body .row:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.dashboard__panel .accordion-billing .accordion-body .row h5 {
  font-size: 1rem;
}

.about__hero {
  background: #000;
  overflow: hidden;
}
.about__hero-wrapper {
  max-width: 1360px;
  height: 768px;
  margin: 0 auto;
}
.about__content {
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(-120px);
}
.about__content-title, .about__content-text {
  color: #fff;
  text-align: center;
}
.about__content-title {
  font-size: 4rem;
  font-weight: 600;
}
.about__content-text {
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .about__content {
    max-width: 480px;
    transform: translateY(-260px);
    margin-bottom: -260px;
    padding-inline: 20px;
  }
  .about__content-title {
    font-size: 2.4rem;
  }
  .about__content-text {
    font-size: 1.4rem;
  }
}
.about__grid {
  position: relative;
  width: inherit;
  height: inherit;
  display: grid;
  grid-template-columns: 1fr 55% 1fr;
  grid-template-rows: 15% repeat(4, 1fr);
  row-gap: 3rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-template-areas: "iphone-left ipad macmini" "iphone-left tablet macmini" "macbook tablet iphone-right" "macbook tablet iphone-right" "macbook tablet iphone-right";
  width: inherit;
  height: inherit;
}
.about__grid-item-iphone-left, .about__grid-item-iphone-right, .about__grid-item-ipad, .about__grid-item-macmini, .about__grid-item-tablet, .about__grid-item-macbook {
  position: relative;
  display: flex;
  justify-content: center;
}
.about__grid-item-ipad {
  grid-area: ipad;
}
.about__grid-item-macmini {
  grid-area: macmini;
}
.about__grid-item-tablet {
  grid-area: tablet;
}
.about__grid-item-macbook {
  grid-area: macbook;
  align-items: flex-end;
}
.about__grid-item-iphone-left {
  grid-area: iphone-left;
  align-items: flex-end;
}
.about__grid-item-iphone-right {
  grid-area: iphone-right;
  align-items: flex-end;
}
.about__photo-iphone-left, .about__photo-iphone-right, .about__photo-ipad, .about__photo-macmini, .about__photo-macbook {
  opacity: 0;
}
.about__photo-macbook {
  position: absolute;
  top: 50px;
  right: 50px;
}
.about__photo-ipad {
  position: absolute;
  bottom: 50px;
}
.about__photo-iphone-left {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.about__photo-iphone-right {
  position: absolute;
  top: 50px;
  left: 50px;
}
.about__photo-macmini {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.about__photo-tablet {
  width: 556px;
  margin-inline: auto;
  position: absolute;
  top: 0;
  transform: translateY(-300px) scale(3);
  transform-origin: center;
  z-index: 10;
}
.about__photo-tablet img {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
}
@media (max-width: 767.98px) {
  .about__photo-macbook {
    width: 250px;
  }
  .about__photo-ipad {
    width: 200px;
  }
  .about__photo-iphone-left {
    height: 130px;
  }
  .about__photo-iphone-right {
    height: 130px;
  }
  .about__photo-macmini {
    width: 150px;
  }
  .about__photo-tablet {
    width: 200px;
    transform: translateY(-235px) scale(7);
  }
}

.about__grid-points {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 767.98px) {
  .about__grid-points {
    grid-template-columns: 1fr;
  }
}
.about__grid-points :nth-child(1) {
  flex-direction: column;
  align-items: center;
  grid-column: span 6;
}
@media (max-width: 767.98px) {
  .about__grid-points :nth-child(1) {
    grid-column: span 12;
  }
}
.about__grid-points :nth-child(2) {
  flex-direction: column;
  align-items: center;
  grid-column: span 6;
}
@media (max-width: 767.98px) {
  .about__grid-points :nth-child(2) {
    grid-column: span 12;
  }
}
.about__grid-points :nth-child(3) {
  flex-direction: column;
  align-items: center;
  grid-column: span 4;
  grid-row: span 2;
}
@media (max-width: 767.98px) {
  .about__grid-points :nth-child(3) {
    grid-column: span 12;
  }
}
.about__grid-points :nth-child(4), .about__grid-points :nth-child(5) {
  justify-content: center;
  align-items: center;
  grid-column: span 8;
}
@media (max-width: 767.98px) {
  .about__grid-points :nth-child(4), .about__grid-points :nth-child(5) {
    flex-direction: column;
    grid-column: span 12;
    padding: 80px 15%;
  }
}
@media (min-width: 768px) {
  .about__grid-points :nth-child(4) figure, .about__grid-points :nth-child(5) figure {
    flex-basis: 50%;
    background-position-x: center;
  }
  .about__grid-points :nth-child(4) .about__grid-point-content, .about__grid-points :nth-child(5) .about__grid-point-content {
    flex-basis: 50%;
    padding-right: 15%;
  }
}

.about__grid-point {
  display: flex;
  justify-content: center;
  background: #1d1d1f;
}
.about__grid-point--spaced {
  padding: 80px 15%;
}
.about__grid-point-photo {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--about-point-photo);
}
.about__grid-point-photo-mac {
  width: 568px;
  height: 326px;
  background-size: 568px 326px;
}
@media (max-width: 767.98px) {
  .about__grid-point-photo-mac {
    width: 284px;
    height: 163px;
    background-size: 284px 163px;
  }
}
.about__grid-point-photo-iphone {
  width: 197px;
  height: 386px;
  background-size: 197px 386px;
}
@media (max-width: 767.98px) {
  .about__grid-point-photo-iphone {
    width: 140.7142857143px;
    height: 275.7142857143px;
    background-size: 140.7142857143px 275.7142857143px;
  }
}
.about__grid-point-photo-ipad {
  width: 447px;
  height: 323px;
  background-size: 447px 323px;
}
@media (max-width: 767.98px) {
  .about__grid-point-photo-ipad {
    width: 223.5px;
    height: 161.5px;
    background-size: 223.5px 161.5px;
  }
}
.about__grid-point-photo-watch {
  width: 130px;
  height: 220px;
  background-size: 130px 220px;
}
.about__grid-point-photo-tv {
  width: 260px;
  height: 265px;
  background-size: 260px 265px;
}
.about__grid-point-content {
  margin-top: 60px;
}
.about__grid-point-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about__grid-point-text {
  font-size: 1.1rem;
  margin: 0;
}

.about__points-imp {
  max-width: 980px;
  margin: 8rem auto;
  padding-inline: 12px;
}
.about__points-imp .section__text {
  font-size: 3.5rem;
  width: 90%;
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  .about__points-imp .section__text {
    font-size: 2rem;
    width: 80%;
  }
}
.about__points-imp .icon__box {
  height: 100%;
  padding: 80px 15%;
}
.about__points-imp .icon__box .icon {
  color: #000;
  font-size: 5rem;
  margin-bottom: 2rem;
}
.about__points-imp .icon__box-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about__points-imp .icon__box-text {
  font-size: 1.1rem;
  margin: 0;
}

.about--willUpdate {
  --background-color: #1d1d1f;
  --title-color: #ffffff;
  --text-color: #cfd2d3;
}
.about--willUpdate .section__text {
  color: var(--title-color);
}
.about--willUpdate .about__howToBuy-title {
  color: var(--title-color);
}
.about--willUpdate .about__howToBuy-text {
  color: var(--text-color);
}
.about--willUpdate .icon__box {
  background-color: var(--background-color);
}
.about--willUpdate .icon__box .icon {
  color: var(--title-color);
}
.about--willUpdate .icon__box-title {
  color: var(--title-color);
}
.about--willUpdate .icon__box-text {
  color: var(--text-color);
}

.about-card {
  height: 100%;
  padding: 80px 15%;
  background-color: #1d1d1f;
}
.about-card__photo {
  width: 216px;
  height: 422px;
  background-size: 216px 422px;
  background-repeat: no-repeat;
  background-image: var(--photo);
}
.about-card__photo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.about-card__title, .about-card__text {
  color: #fff;
}
.about-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-card__text {
  font-size: 1.1rem;
  margin: 0;
}

.about__howToBuy {
  max-width: 980px;
  margin: 8rem auto;
  padding-inline: 12px;
}
.about__howToBuy-content {
  margin-bottom: 100px;
}
.about__howToBuy-photo {
  width: 100%;
  height: auto;
}
.about__howToBuy-title {
  font-size: 3.5rem;
}
@media (max-width: 767.98px) {
  .about__howToBuy-title {
    font-size: 2rem;
  }
}
.about__howToBuy-text {
  font-size: 1.4rem;
  width: 60%;
}
@media (max-width: 767.98px) {
  .about__howToBuy-text {
    width: 80%;
  }
}
.about__howToBuy-link {
  font-size: 1.2rem;
  font-weight: 500;
}

.cta__contact {
  max-width: 980px;
  margin: 10rem auto;
  padding-inline: 12px;
}
.cta__contact h2 {
  font-size: 3.5rem;
  margin: 0 0 2.5rem 0;
}
.cta__contact a {
  font-size: 1.4rem;
  font-weight: 500;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767.98px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
.contact h1, .contact h2 {
  font-family: "Proxima Nova", sans-serif;
}
.contact__left, .contact__right {
  padding: 120px 12px 120px 12px;
}
.contact__left {
  display: flex;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-left: 0;
}
.contact__left h1, .contact__left p, .contact__left a {
  color: #fff;
}
.contact__right {
  display: flex;
  flex-direction: column;
}
.contact__box {
  width: 668px;
  padding-left: 12px;
  padding-right: 6rem;
}
@media (max-width: 991.98px) {
  .contact__box {
    width: unset;
    padding-right: 4rem;
  }
}
.contact__box-title {
  font-size: 4rem;
  margin-bottom: 4rem;
}
.contact__box-text {
  font-size: 1.3rem;
}
.contact__form-box {
  padding: 0 3rem;
}
.contact__form-box .section__title {
  line-height: 2;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.nav__contact .navbar-brand {
  color: #fff;
}
@media (max-width: 767.98px) {
  .nav__contact .navbar-nav .nav-link {
    color: #fff;
  }
}

.contact__links {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  margin: 2rem 0 3rem 0;
}
.contact__links li {
  margin-bottom: 1rem;
}
.contact__links li:last-child {
  margin: 0;
}
.contact__links .icon {
  margin-right: 1rem;
}
.contact__links a {
  display: flex;
}
.contact__links span {
  font-size: 1.1rem;
}

.pricing {
  max-width: 1200px;
  margin-inline: auto;
  padding: 6rem 30px;
}
.pricing__title {
  font-size: 2rem;
}
.pricing__text {
  font-size: 1.2rem;
}
.pricing__title, .pricing__text {
  text-align: center;
}
.pricing h2, .pricing h4 {
  font-weight: bold;
}
.pricing .switcher {
  margin-block: 3rem;
}
.pricing__price {
  margin-top: 2rem;
}
.pricing__price strong {
  color: #000;
  font-size: 2rem;
  font-weight: 400;
}

.pricing__table {
  display: grid;
  gap: 48px;
  margin-top: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pricing__table {
    grid-template-columns: 1fr 1.4fr;
  }
}
.pricing__table-item {
  padding: 48px 60px;
  border-radius: 12px;
  background: rgba(93, 138, 199, 0.05);
}
.pricing__table-item .blurred {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pricing__table-item .blurred-content {
  filter: blur(10px);
}
.pricing__table-item .blurred-badge {
  position: absolute;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 16px;
  z-index: 1;
  color: #000;
  background: rgba(93, 138, 199, 0.2509803922);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.pricing__table-item-title {
  color: #000;
  font-size: 2.3rem;
  font-weight: 500 !important;
}
.pricing__table-item-text {
  max-width: 400px;
  color: #444;
}
.pricing__table-item .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.pricing__table-item .btn + p {
  color: #777;
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.pricing__table-item .btn + p a {
  color: #000;
  text-decoration: underline;
}
.pricing__table-item .list-unstyled {
  margin-block: 2rem;
}
.pricing__table-item .list-unstyled li {
  display: grid;
  grid-template-columns: 18px 1fr;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  align-items: center;
}
.pricing__table-item .list-unstyled li svg {
  fill: #5d8ac7;
  width: 100%;
  height: auto;
}
.pricing__table-item .list-unstyled li:not(:last-child) {
  margin-bottom: 1rem;
}

.pro__suite {
  padding-block: 6rem 2rem;
}
.pro__suite .container {
  max-width: 1444px;
  padding: 0 72px;
}
.pro__suite .container .row {
  padding: 0;
}
.pro__suite-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pro__suite-text {
  font-weight: 400;
}

.pro__point-icon {
  display: flex;
  align-items: center;
  font-size: 40px;
  color: #5d8ac7;
  margin-bottom: 1rem;
  height: 40px;
}
.pro__point-icon svg {
  display: block;
}
.pro__point-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.pro__point-text {
  font-weight: 400;
}
.pro__point--lg .pro__point-icon {
  font-size: 60px;
  margin-bottom: 1.4rem;
}
.pro__point--lg .pro__point-title {
  font-size: 1.4rem;
}
.pro__point--lg .pro__point-text {
  font-size: 1.3rem;
}
.pro__point--dark .pro__point-icon,
.pro__point--dark .pro__point-title,
.pro__point--dark .pro__point-text {
  color: #fff;
}

.pro__agency-alert {
  border: 1px solid #e7e7e9;
  border-radius: 12px;
  padding: 30px 40px;
  margin-top: 4rem;
}
.pro__agency-alert-title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.1rem;
}
.pro__agency-alert-text {
  font-weight: 400;
  margin: 0;
  font-size: 0.9rem;
}

.pro__portfolio {
  padding-block: 6rem;
  background-color: #fafafa;
  overflow-x: hidden;
}
.pro__portfolio .container {
  max-width: 1444px;
  padding: 0 72px;
}
.pro__portfolio .container .row {
  padding: 0;
}
.pro__portfolio-badge {
  font-size: 1rem;
  font-weight: 600;
  color: transparent;
  -webkit-background-clip: text;
  background-image: linear-gradient(60deg, #ff874f, #f64f90);
}
.pro__portfolio-title {
  font-size: 65px;
  font-weight: 600;
  margin-top: 1.2rem;
}
.pro__portfolio-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1.4rem;
}
.pro__portfolio-figures {
  margin-block: 6rem;
}
.pro__portfolio-figures .container {
  max-width: 1200px;
  padding: 0 10px;
}
.pro__portfolio-figures .container .row {
  padding: 0;
}
.pro__portfolio-figures-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.pro__portfolio-figures-wrapper img {
  display: block;
}
.pro__portfolio--dark {
  background: #101524;
}
.pro__portfolio--dark .pro__portfolio-title, .pro__portfolio--dark .pro__portfolio-text {
  color: #fff;
}

.plan__table {
  --color: #5d8ac7;
  background: #fafafa;
}
.plan__table--dark {
  background: #101524;
}
.plan__table-grid {
  display: grid;
  grid-template-columns: 330px 1fr 1fr;
  gap: 32px;
  max-width: 1440px;
  padding: 8rem 72px;
  margin-inline: auto;
}
.plan__table-plan {
  padding: 40px 16px 50px;
  background: #fff;
  border-radius: 12px;
  border: 3px solid var(--color);
}
.plan__table-plan-subtitle {
  font-size: 0.8rem;
  color: var(--color);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.6px;
}
.plan__table-plan-title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-block: 1rem;
}
.plan__table-plan-text {
  text-align: center;
}
.plan__table-plan-pricing {
  text-align: center;
}
.plan__table-plan-pricing small {
  display: block;
  font-size: 0.8rem;
}
.plan__table-plan-price-discount {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ff5555;
  text-decoration: line-through;
}
.plan__table-plan-price-discount-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan__table-plan-price-discount-badge span {
  color: #5d8ac7;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  margin-top: 10px;
  background: rgba(93, 138, 199, 0.1254901961);
  border-radius: 50rem;
}
.plan__table-plan-price-discount-badge svg {
  width: 18px;
  color: var(--color);
}
.plan__table-plan-price-regular {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}
.plan__table-plan .btn {
  margin-block: 2rem;
  border: unset;
  background: linear-gradient(45deg, #5d8ac7 0%, #344575 140%);
}
.plan__table-plan-features {
  margin: 0;
  padding: 0 1rem;
  list-style: none;
  font-size: 1rem;
  font-weight: 400;
}
.plan__table-plan-features svg {
  color: var(--color);
  flex: 0 0 20px;
  margin-top: 1px;
  margin-right: 10px;
}
.plan__table-plan-features strong {
  font-weight: 500;
}
.plan__table-plan-features li {
  display: flex;
  align-items: flex-start;
}
.plan__table-plan-features li:not(:last-child) {
  margin-bottom: 10px;
}
.plan__table-quote {
  color: #fff;
  border-radius: 12px;
  background: var(--background, #101524);
  padding: 48px;
}
.plan__table-quote-avatar {
  border-radius: 50rem;
  overflow: hidden;
  width: 60px;
}
.plan__table-quote-avatar img {
  width: 100%;
}
.plan__table-quote-text {
  margin: 32px 0;
  font-size: 18px;
  line-height: 32px;
}
.plan__table-quote-author {
  font-size: 20px;
  font-weight: 600;
}
.plan__table-quote-author-detail {
  font-size: 16px;
}

.blog .card {
  border: 0;
}
.blog .card-img-top {
  border-radius: 8px;
}
.blog .card-body {
  padding-inline: 0;
}

.post {
  max-width: 1000px;
  margin-inline: auto;
  font-weight: 400;
}
.post__title {
  font-weight: 600;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .post__title {
    font-size: 2rem;
  }
}
.post__excerpt {
  margin-bottom: 2rem;
}
.post__title, .post__excerpt {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}
.post__thumbnail {
  width: 100%;
  border-radius: 8px;
}
.post__content {
  max-width: 850px;
  margin-inline: auto;
  margin-block: 2rem;
  text-align: justify;
}
.post__content h2, .post__content h3 {
  margin-block: 1.5rem 1rem;
}
.post__content h2 {
  font-size: 1.4rem;
  font-weight: 600;
}
.post__content .wp-block-columns {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.post__content .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.post__content .wp-block-image figcaption {
  text-align: center;
  margin-top: 0.4rem;
}
.post__content .wp-block-quote {
  position: relative;
  margin-top: 60px;
  padding-inline: 3rem;
}
.post__content .wp-block-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0.125;
  transform: scaleX(-100%) translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg stroke='currentColor' fill='currentColor' stroke-width='0' version='1.1' viewBox='0 0 16 16' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043zM3.5 10c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5 3.5 1.567 3.5 3.5l0.016 0.5c0 3.866-3.134 7-7 7v-2c1.336 0 2.591-0.52 3.536-1.464 0.182-0.182 0.348-0.375 0.497-0.578-0.179 0.028-0.362 0.043-0.549 0.043z'%3E%3C/path%3E%3C/svg%3E");
}
.post__content .wp-block-quote cite {
  position: relative;
  padding-left: 40px;
}
.post__content .wp-block-quote cite::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  opacity: 0.3;
  transform: translateY(-50%);
  content: "";
  background: #444;
}

.create__snap {
  padding-bottom: 4rem;
}
.create__snap-container {
  max-width: 768px;
  margin-inline: auto;
}
.create__snap-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  margin-bottom: 1rem;
  pointer-events: none;
}
.create__snap-header .btn {
  pointer-events: all;
}
@media (max-width: 767.98px) {
  .create__snap-header {
    position: unset;
  }
}
.create__snap .form-control {
  border: unset;
  padding: unset;
  box-shadow: unset;
  background: unset;
  border-radius: unset;
}
.create__snap textarea {
  resize: none;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 400;
}
.create__snap .snap__title {
  font-size: 1.6rem;
  font-weight: 600;
}

.uploader {
  border-radius: 8px;
  cursor: pointer;
}
.uploader__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  border-radius: 8px;
  border: 2px dashed #ddd;
  height: 576px;
  overflow: hidden;
  pointer-events: none;
  text-align: center;
}
.uploader__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.uploader__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--background) no-repeat;
  background-size: cover;
  background-position: center;
}
.uploader__wrap svg,
.uploader__wrap p {
  color: #888;
}
.uploader__wrap svg {
  font-size: 3rem;
}
.uploader__wrap p {
  font-size: 0.8rem;
  margin: unset;
}
.uploader__wrap p strong {
  display: inline-block;
  font-size: 1rem;
  margin-block: 1rem;
}

.dz-drag-hover .uploader__wrap {
  background: #f7f7f7;
}

.snaps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
@media (min-width: 1200px) {
  .snaps {
    grid-template-columns: repeat(12, minmax(22px, 1fr));
  }
}

@media (min-width: 1200px) {
  .snap__block {
    grid-column: span 3;
  }
}

@media (min-width: 1200px) {
  .snaps-columns-3 .snap__block {
    grid-column: span 4;
  }
}

.snap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.snap:before {
  display: block;
  content: "";
  padding-bottom: 75%;
}
.snap__media {
  position: absolute;
  inset: 0;
}
.snap__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.snap__video {
  width: 100%;
}
.snap__photo-scroll {
  position: absolute;
  inset: 0;
}
.snap__photo-scroll img {
  width: 100%;
}
.snap__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms linear;
  z-index: 1;
}
.snap__content::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.00345888) 63.94%, rgba(0, 0, 0, 0.014204) 65.89%, rgba(0, 0, 0, 0.0326639) 67.83%, rgba(0, 0, 0, 0.0589645) 69.78%, rgba(0, 0, 0, 0.0927099) 71.72%, rgba(0, 0, 0, 0.132754) 73.67%, rgba(0, 0, 0, 0.177076) 75.61%, rgba(0, 0, 0, 0.222924) 77.56%, rgba(0, 0, 0, 0.267246) 79.5%, rgba(0, 0, 0, 0.30729) 81.44%, rgba(0, 0, 0, 0.341035) 83.39%, rgba(0, 0, 0, 0.367336) 85.33%, rgba(0, 0, 0, 0.385796) 87.28%, rgba(0, 0, 0, 0.396541) 89.22%, rgba(0, 0, 0, 0.4) 91.17%);
  z-index: -1;
}
.snap__content h5 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
.snap__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.snap__action {
  z-index: 3;
}
.snap:hover .snap__content {
  opacity: 1;
  pointer-events: all;
}
.snap__user {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 10px;
}
.snap__user-photo {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.snap__user-name {
  font-family: "Proxima Nova", sans-serif;
  font-size: 14px;
  margin: 0;
  margin-left: 10px;
  color: #000;
}
.snap__user svg {
  font-size: 14px;
}
.snap__meta {
  display: flex;
}
.snap__meta svg {
  margin-top: 1px;
}

@media (min-width: 1200px) {
  .snaps--product .snap__block {
    grid-column: span 4;
  }
}
.snaps--product .snap__block .snap__user {
  align-items: flex-start;
}
.snaps--product .snap__block h5.snap__user-name {
  font-size: 1rem;
  margin-bottom: 4px;
  margin-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.snaps--product .snap__block span.snap__user-name {
  font-size: 0.8rem;
}
.snaps--product .snap__block .snap__user-photo {
  width: 42px;
  height: 42px;
}
.snaps--product .snap__block .snap__meta {
  font-size: 1rem;
  font-weight: 500;
  color: #5d8ac7;
}

@media (min-width: 1200px) {
  .snaps--product-sm .snap__block {
    grid-column: span 3;
  }
}

@keyframes photoScroll {
  from {
    transform: translate(0);
  }
  to {
    transform: translateY(var(--photo-scroll, 0));
  }
}
.photo-scroll {
  animation: photoScroll var(--photo-scroll-speed, 8s) ease-in-out forwards;
}

.snap-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3rem 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .snap-preview__header {
    flex-wrap: wrap;
  }
  .snap-preview__header div:last-child {
    width: 100%;
  }
}
.snap-preview__header a, .snap-preview__header button.btn-link {
  color: #000;
}
.snap-preview__header a:hover, .snap-preview__header button.btn-link:hover {
  color: #000;
  text-decoration: underline;
}
.snap-preview__header-title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767.98px) {
  .snap-preview__header-title {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.snap-preview__header-photo {
  width: 44px;
  height: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.snap-preview__header .btn {
  font-size: 14px;
}
.snap-preview__photo {
  width: auto;
  margin-inline: auto;
  border-radius: 16px;
}
.snap-preview__photo-wrapper {
  overflow: hidden;
  border-radius: 8px;
}
.snap-preview__content {
  padding-block: 4rem;
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.2rem;
  font-weight: 400;
  z-index: 10;
}
.snap-preview__content img {
  border-radius: 16px;
  margin-block: 2rem;
}

.brand__cta {
  overflow: hidden;
  background-color: #101524;
}
.brand__cta-photo {
  padding-bottom: 4rem;
  position: absolute;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.brand__cta-photo-wrapper {
  position: relative;
  height: 500px;
}
@media (min-width: 576px) {
  .brand__cta-photo-wrapper {
    height: 600px;
  }
}
@media (min-width: 768px) {
  .brand__cta-photo-wrapper {
    height: unset;
  }
}
@media (min-width: 576px) {
  .brand__cta-photo {
    width: 700px;
  }
}
@media (min-width: 768px) {
  .brand__cta-photo {
    width: 800px;
    left: unset;
    right: 48px;
    transform: translateY(-50%);
    padding-bottom: 0;
  }
}
.brand__cta-content {
  position: relative;
  padding-block: 6rem 2rem;
}
@media (min-width: 768px) {
  .brand__cta-content {
    padding-block: 12rem;
  }
}
.brand__cta-photo {
  --colorStart: #753BBD;
  --colorSecond: #17CB98;
  --colorThird: #FF585D;
}
.brand__cta-photo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  filter: blur(300px);
  z-index: 1;
  animation: color-change 9s linear infinite normal;
}
.brand__cta-photo img {
  position: relative;
  z-index: 1;
}
.brand__cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  z-index: 1;
}
.brand__cta-subtitle, .brand__cta-title, .brand__cta-text {
  color: #fff;
}
.brand__cta-subtitle {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.brand__cta-subtitle svg {
  width: 90px;
  height: auto;
  margin-right: 5px;
}
.brand__cta-title {
  margin-bottom: 1.5rem;
}
.brand__cta-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.brand__cta-points {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 3rem;
}
.brand__cta-point {
  display: flex;
  color: #ffffff;
}
.brand__cta-point:not(:last-child) {
  margin-bottom: 1rem;
}
.brand__cta-point span {
  border: 1px solid white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.brand__cta-point span svg {
  width: 22px;
}

@keyframes color-change {
  0% {
    background: var(--colorStart);
  }
  33% {
    background: var(--colorSecond);
  }
  66% {
    background: var(--colorThird);
  }
  100% {
    background: var(--colorStart);
  }
}
.modal-product h2, .modal-product h3, .modal-product p {
  font-family: "Proxima Nova", sans-serif;
}
.modal-product h2, .modal-product h3 {
  font-weight: 600;
}
.modal-product label {
  font-weight: 500;
}
.modal-product form {
  padding: 25px;
  border: 1px solid #e7e7e9;
  border-radius: 8px;
}
.modal-product form label {
  margin-bottom: 0.6rem;
}
.modal-product .modal-logo {
  width: 130px;
  margin-bottom: 2rem;
}
.modal-product .btn-close {
  padding: 12px;
  background-color: #e7e7e9;
}
.modal-product .btn-payment {
  padding: 15px 20px;
  width: 100%;
  justify-content: center;
}
.modal-product .btn-payment img {
  width: auto;
  height: 20px;
}
.modal-product .modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
@media (max-width: 991.98px) {
  .modal-product .modal-grid {
    grid-template-columns: 1fr;
  }
}
.modal-product__wrapper {
  max-width: 550px;
  margin: 0 auto;
  padding: 40px 32px;
}
@media (max-width: 991.98px) {
  .modal-product__wrapper {
    padding: 50px 32px;
  }
}
.modal-product__photo {
  width: 100%;
  border-radius: 8px;
  margin-top: 2rem;
}
.modal-product__title {
  font-size: 1.6rem;
  margin-block: 2rem;
}
.modal-product aside {
  padding: 0;
  background: #fff;
}
@media (max-width: 991.98px) {
  .modal-product aside {
    order: 2;
  }
}
.modal-product main {
  background: #f2f2f2;
}
@media (max-width: 991.98px) {
  .modal-product main {
    order: 1;
  }
}
.modal-product main .modal-product__wrapper {
  padding-top: 32px;
}

.home__features {
  padding-block: 6rem 4rem;
}
.home__features-title, .home__features-text {
  text-align: center;
}
.home__features-title {
  font-size: 2.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .home__features-title {
    font-size: 2rem;
  }
}
.home__features-list {
  margin: unset;
  padding: unset;
  list-style: none;
  margin-top: 4rem;
}
.home__features-list-item {
  display: flex;
  gap: 20px;
}
.home__features-list-item:not(:last-child) {
  margin-bottom: 1rem;
}
.home__features-list-icon span {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(93, 138, 199, 0.1);
  border-radius: 12px;
}
.home__features-list-icon span svg {
  color: rgb(93, 138, 199);
  width: 26px;
  height: 26px;
}
.home__features-list-title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.home__features-list-title .badge {
  margin-left: 10px;
}
.home__features-list-text {
  font-size: 1rem;
}

.banner-plain {
  color: #101524;
  padding-block: 60px 30px;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: -1px;
  text-align: center;
  max-width: 1180px;
  margin-inline: auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .banner-plain {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .banner-plain {
    font-size: 1.5rem;
    text-align: justify;
  }
}
.banner-plain span {
  color: #5D8AC7;
  padding-bottom: 3px;
  border-bottom: 3px solid #5D8AC7;
}

.hero-search {
  position: relative;
  padding-block: 8rem;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100vh;
}
@media (max-width: 767.98px) {
  .hero-search {
    height: unset;
  }
}
.hero-search__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-search__courtesy {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}
.hero-search::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.hero-search__content {
  position: relative;
  width: 100%;
  z-index: 3;
}
.hero-search__title, .hero-search__text {
  color: inherit;
  margin-block: 1rem;
}
.hero-search__title {
  max-width: 800px;
  font-size: 4rem;
  font-weight: 600;
}
.hero-search__title span {
  display: block;
  font-size: 3.12rem;
  font-weight: 500;
}
.hero-search__text {
  max-width: 680px;
}
.hero-search__search {
  position: relative;
  max-width: 660px;
  margin-block: 1.8rem;
  border-radius: 4px;
  overflow: hidden;
}
.hero-search__search svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(16px, -50%);
  color: #222;
}
.hero-search__search-input {
  border: unset;
  line-height: 1;
  padding: 12px 50px;
}
.hero-search__search-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 0;
  min-width: 100px;
  justify-content: center;
}
.hero-search__categories, .hero-search__trending {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  /* width */
  /* Track */
  /* Handle */
}
.hero-search__categories::-webkit-scrollbar, .hero-search__trending::-webkit-scrollbar {
  height: 6px;
}
.hero-search__categories::-webkit-scrollbar-track, .hero-search__trending::-webkit-scrollbar-track {
  background: rgba(16, 21, 36, 0.2);
  border-radius: 50rem;
}
.hero-search__categories::-webkit-scrollbar-thumb, .hero-search__trending::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50rem;
}
.hero-search__categories a:not(:last-child), .hero-search__trending a:not(:last-child) {
  margin-right: 10px;
}
.hero-search__categories .btn, .hero-search__trending .btn {
  color: #fff;
  padding: 0.3rem 0.8rem 0.2rem;
}
@media (max-width: 1350px) {
  .hero-search__categories {
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
}
.hero-search__categories .btn {
  padding: 0.8rem 1.6rem;
  border: unset;
  background: rgba(16, 21, 36, 0.5);
}
.hero-search__categories .btn:hover, .hero-search__categories .btn:first-child {
  color: #000;
  background: #fff;
}
@media (max-width: 767.98px) {
  .hero-search__trending {
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
}
.hero-search__trending span, .hero-search__trending .btn {
  font-size: 0.8rem;
  line-height: 1;
}
.hero-search__trending span {
  margin-right: 1rem;
}
.hero-search__trending .btn {
  background: transparent;
}

.jobs__header {
  margin-bottom: 4rem;
}
.jobs__header-title {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 3rem;
}
.jobs__header-text {
  font-size: 1rem;
  margin-top: 1rem;
}
.jobs__header-photo {
  width: 100%;
  border-radius: 2rem;
}
.jobs__filters {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.jobs__filters hr {
  border-width: 1px;
  margin-block: 1.5rem;
}
.jobs__filters .btn {
  width: 100%;
  justify-content: center;
}
.jobs__filter-title {
  color: #101524;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.jobs__pagination {
  margin-block: 2rem 0;
}
.jobs__pagination .pagination {
  justify-content: space-between;
}
.jobs__pagination .pagination .page-link {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 16px;
}

.job {
  position: relative;
  display: flex;
  padding: 24px;
  border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
  .job:hover {
    background: #fafafa;
  }
  .job:hover .job__apply {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .job {
    padding: 24px 0;
  }
}
.job__avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 24px;
}
.job__avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.job__title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
  .job__title {
    font-size: 1rem;
  }
}
.job__overview {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.job__overview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.job__overview hr {
  border-width: 1px;
}
.job__organization {
  font-family: "Proxima Nova", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-block: 0 0.5rem;
}
.job__content strong {
  font-weight: 500;
}
.job__content ul {
  padding-left: 3rem;
}
.job__content ul li {
  padding-block: 0.4rem;
}
.job__description {
  margin-block: 1.5rem;
}
.job__description:last-child {
  margin-bottom: 0;
}
.job__description strong,
.job__description span {
  display: block;
}
.job__description strong {
  font-weight: 500;
}
.job__details {
  flex: 0 0 60%;
  min-width: 0;
}
.job__details strong {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .job__details {
    flex: 0 0 50%;
  }
}
.job__detail {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
@media (max-width: 767.98px) {
  .job__detail {
    display: none;
  }
}
.job__additional {
  position: relative;
  font-size: 0.9rem;
  text-align: right;
}
.job__additional .job__availability {
  display: none;
}
@media (max-width: 767.98px) {
  .job__additional .job__location svg {
    display: none;
  }
  .job__additional .job__posted-at {
    display: none;
  }
  .job__additional .job__availability {
    display: block;
  }
}
.job__apply {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  background: #fafafa;
  z-index: 1;
  pointer-events: none;
}
.job__apply .btn {
  border-color: #eee;
  background: #ffffff;
  pointer-events: all;
}
.job__apply .btn:hover {
  background: #eee;
}
.job__banner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 360px;
  z-index: -1;
}
.job__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: radial-gradient(111.11% 111.11% at 75.53% 0%, rgba(1, 22, 41, 0.75) 0%, transparent 100%);
  background-blend-mode: multiply;
}
.job__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 48%;
  object-position: 50% 48%;
}
.job__banner-content {
  padding-block: 80px 48px;
}
.job__banner-title, .job__banner-text {
  color: #fff;
  margin: 0;
}
.job__banner-title {
  font-size: 32px;
  font-weight: 600;
}
.job__banner-text {
  font-size: 1.1rem;
}

.card-job {
  border: none;
  padding: 20px;
  border-radius: 8px;
}

.availability-option {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #e7e7e7;
}

.speciality-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #e7e7e7;
}
.speciality-option .form-select {
  border: unset;
  width: auto;
  padding: 0 !important;
  box-shadow: unset;
  background-color: unset;
  padding-inline: 10px 35px !important;
}

.designers__header {
  padding: 3rem 0 1rem;
  border-bottom: 1px solid #f3f3f3;
}
@media (min-width: 768px) {
  .designers__filters {
    border-left: 1px solid #f3f3f3;
  }
}
.designers__filters form {
  padding: 2rem 1.6rem;
}

.designer {
  margin-top: 2rem;
  border-bottom: 1px solid #f3f3f3;
}
.designer__avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 24px;
}
.designer__avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.designer__title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.designer__text {
  margin-bottom: 0;
}
.designer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.designer .btn-link {
  margin-block: 1rem;
}
.designer__details {
  background: #f3f3f3;
  padding: 34px;
  font-size: 0.9rem;
}
.designer__details h5 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.1rem;
}
.designer__details .badge {
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0.6rem 0.39rem;
}

.messages {
  height: calc(100vh - 80px);
  background: #fafafa;
  padding-block: 20px;
}
.messages .container {
  height: 100%;
}

.ui-messages {
  height: 100%;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-rows: 60px 1fr 120px;
  grid-template-areas: "header-threads header-conversations" "threads conversation" "threads editor";
}
@media (max-width: 767.98px) {
  .ui-messages {
    grid-template-areas: "header-conversations header-conversations" "conversation conversation" "editor editor";
  }
}
.ui-messages__header-threads {
  display: flex;
  align-items: center;
  padding-inline: 0.8rem;
  grid-area: header-threads;
  border-right: 1px solid #eee;
}
.ui-messages__header-threads h2 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}
.ui-messages__header-threads .form-select {
  border: none;
  box-shadow: unset;
  background-color: unset;
  padding-inline: 0;
  padding-block: 1rem;
  background-position: right center;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .ui-messages__header-threads {
    display: none;
  }
}
.ui-messages__header-conversations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 1rem;
  grid-area: header-conversations;
}
.ui-messages__header-conversations h5 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  margin-left: 8px;
  margin-block: 0;
}
.ui-messages__header-conversations small {
  font-size: 0.8rem;
  line-height: 1;
}
.ui-messages__threads {
  grid-area: threads;
  border-right: 1px solid #eee;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.ui-messages__threads::-webkit-scrollbar {
  width: 6px;
}
.ui-messages__threads::-webkit-scrollbar-track {
  background: transparent;
}
.ui-messages__threads::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 50rem;
}
.ui-messages__threads::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
@media (max-width: 767.98px) {
  .ui-messages__threads {
    display: none;
  }
}
.ui-messages__conversation {
  display: flex;
  flex-direction: column-reverse;
  grid-area: conversation;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.ui-messages__conversation::-webkit-scrollbar {
  width: 6px;
}
.ui-messages__conversation::-webkit-scrollbar-track {
  background: transparent;
}
.ui-messages__conversation::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 50rem;
}
.ui-messages__conversation::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.ui-messages__conversation-scroll {
  display: flex;
  flex-direction: column;
}
.ui-messages__editor {
  grid-area: editor;
  padding: 1rem;
  border-top: 1px solid #eee;
}
.ui-messages__editor .form-control {
  border-width: 1px;
  resize: none;
}
.ui-messages__editor .btn {
  color: #1dbf73;
  font-weight: 600;
}
.ui-messages__status {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ui-messages__status--online {
  background: #1dbf73;
}

.message-preview {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 2fr) 1fr;
  align-items: center;
  padding: 0.8rem;
}
.message-preview.active {
  background: linear-gradient(90deg, transparent, #cce2ff);
}
.message-preview:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.message-preview__avatar {
  width: 48px;
  height: 48px;
}
.message-preview__avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.message-preview__content {
  margin-inline: 15px 10px;
}
.message-preview__title, .message-preview__text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.message-preview__title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.message-preview__text {
  font-size: 0.85rem;
  line-height: 1;
}
.message-preview__date {
  font-size: 0.75rem;
  margin-left: auto;
}

.chat-message {
  padding: 1rem;
  display: grid;
  grid-template-columns: 48px 1fr;
}
.chat-message__avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
}
.chat-message__avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}
.chat-message__content {
  margin-left: 12px;
}
.chat-message__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.chat-message__title {
  font-weight: 500;
  margin-bottom: 4px;
}
.chat-message__text p {
  margin-bottom: 0;
}
.chat-message__text p:not(:last-child) {
  margin-bottom: 8px;
}
.chat-message__date {
  font-size: 0.7rem;
  line-height: 1;
}

.ui-shorts-spacer {
  padding-block: 24px;
}

.ui-shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ui-shorts-flow {
  height: calc(100vh - 80px);
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.ui-shorts-flow::-webkit-scrollbar {
  width: 6px;
}
.ui-shorts-flow::-webkit-scrollbar-track {
  background: transparent;
}
.ui-shorts-flow::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 50rem;
}
.ui-shorts-flow::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.ui-shorts-flow::-webkit-scrollbar-thumb {
  visibility: hidden;
}

.ui-shorts-scrollthumb-visible:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

.ui-short {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  max-width: 620px;
  margin-inline: auto;
  padding-block: 2rem;
  gap: 20px;
}
.ui-short:first-child {
  padding-top: 0;
}
.ui-short:last-child {
  padding-bottom: 0;
}
.ui-short:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.ui-short__author {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.ui-short__author-meta {
  flex: 1;
}
.ui-short__author-name {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.05rem;
  margin: 0;
}
.ui-short__author-name a {
  color: var(--page-heading-color);
}
.ui-short__author-description {
  margin-block: 1rem;
}
.ui-short__author-tags {
  font-weight: 500;
  margin-block: 1rem 0.6rem;
}
.ui-short__author-tags a {
  color: #444;
}
.ui-short__author-tags a:hover {
  color: #000;
}
.ui-short__author-avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}
.ui-short__author-avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.ui-short__author-avatar a {
  display: block;
  width: inherit;
  height: inherit;
}
.ui-short__media {
  display: flex;
  gap: 20px;
}
.ui-short__video {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
}
.ui-short__video video {
  max-width: 310px;
}
.ui-short__actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
.ui-short__actions .btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  color: #242424;
  background: rgba(22, 24, 35, 0.06);
}
.ui-short__actions .btn svg {
  width: 24px;
  height: auto;
}
.ui-short__action {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ui-short__action small {
  margin-top: 8px;
}

.ui-short-mini__video {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}
.ui-short-mini__video video {
  width: 100%;
}
.ui-short-mini__tags {
  font-size: 0.8rem;
  font-weight: 500;
  margin-block: 10px 4px;
}
.ui-short-mini__tags a {
  color: #444;
}
.ui-short-mini__tags a:hover {
  color: #000;
}
.ui-short-mini__username {
  font-family: "Proxima Nova", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.ui-shorts-widget:not(:last-child) {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.ui-shorts-widget h4 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 1.5rem;
}

.ui-shorts-user {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}
.ui-shorts-user:not(:last-child) {
  margin-bottom: 1rem;
}
.ui-shorts-user__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.ui-shorts-user__avatar img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.ui-shorts-user__meta {
  flex: 1;
}
.ui-shorts-user__name {
  font-family: "Proxima Nova", sans-serif;
  font-size: 0.9rem;
  margin: 0;
}
.ui-shorts-user__username {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.ui-shorts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ui-shorts-tag {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  line-height: 1;
  padding: 8px 16px;
  padding-left: 26px;
  border-radius: 10rem;
  border: 1px solid #444;
  white-space: nowrap;
}
.ui-shorts-tag::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23444' fill='none' stroke-width='1.5' viewBox='0 0 24 24' aria-hidden='true' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5'%3E%3C/path%3E%3C/svg%3E");
}
.ui-shorts-tag:hover {
  color: #000;
  border-color: #000;
}
.ui-shorts-tag:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23000' fill='none' stroke-width='1.5' viewBox='0 0 24 24' aria-hidden='true' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5l-3.9 19.5m-2.1-19.5l-3.9 19.5'%3E%3C/path%3E%3C/svg%3E");
}

.license {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 12px;
  font-weight: 500;
}
.license > span {
  width: 80px;
  text-align: right;
}
.license .form-control {
  margin-left: auto;
}
.license .form-check-label {
  display: flex;
  min-width: 0;
  margin-right: 10px;
}
.license .form-check-label span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 1;
}
.license .form-check-input {
  font-size: 20px;
  margin-right: 10px;
  margin-top: 0;
}
.license .form-control {
  padding: 10px;
  text-align: center;
  width: 100px;
  visibility: hidden;
  border: none;
  background: #fff;
}
.license.active {
  background: #fafafa;
}
.license.active .form-control {
  visibility: visible;
}

.cart-list {
  margin-top: 3rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}
.cart-item-thumb {
  border-radius: 4px;
  overflow: hidden;
}
.cart-item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  white-space: nowrap;
}
.cart-item-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.cart-item-text {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.8rem;
}
.cart-item-price del {
  margin-right: 10px;
}
.cart-item-price span {
  font-size: 1rem;
  font-weight: 500;
}

.modal-checkout h2, .modal-checkout h3, .modal-checkout p,
.checkout h2,
.checkout h3,
.checkout p,
.cart h2,
.cart h3,
.cart p {
  font-family: "Proxima Nova", sans-serif;
}
.modal-checkout h2,
.checkout h2,
.cart h2 {
  font-size: 32px;
  font-weight: 600;
}
.modal-checkout-grid,
.checkout-grid,
.cart-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .modal-checkout-grid,
  .checkout-grid,
  .cart-grid {
    grid-template-columns: 1fr;
  }
}
.modal-checkout aside,
.checkout aside,
.cart aside {
  position: relative;
  padding: 40px 64px 0;
  background-image: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  .modal-checkout aside,
  .checkout aside,
  .cart aside {
    display: none;
  }
}
.modal-checkout aside .modal-logo,
.checkout aside .modal-logo,
.cart aside .modal-logo {
  width: 130px;
}
.modal-checkout aside h2,
.checkout aside h2,
.cart aside h2 {
  color: #fff;
  font-size: 34px;
  padding-top: 168px;
  margin-bottom: 30px;
  padding-inline: 72px;
}
.modal-checkout main,
.checkout main,
.cart main {
  background: #fff;
}
.modal-checkout main .plan__wrapper,
.checkout main .plan__wrapper,
.cart main .plan__wrapper {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 32px 0;
}
.modal-checkout main h2, .modal-checkout main h3,
.checkout main h2,
.checkout main h3,
.cart main h2,
.cart main h3 {
  margin-top: 50px;
}
.modal-checkout main h3,
.checkout main h3,
.cart main h3 {
  font-size: 25px;
  font-weight: 600;
}
.modal-checkout main .btn-close,
.checkout main .btn-close,
.cart main .btn-close {
  padding: 12px;
  background-color: #e7e7e9;
}
.modal-checkout label,
.checkout label,
.cart label {
  font-weight: 500;
}
.modal-checkout form,
.checkout form,
.cart form {
  padding: 25px;
  border: 1px solid #e7e7e9;
  border-radius: 8px;
}
.modal-checkout form label,
.checkout form label,
.cart form label {
  margin-bottom: 0.6rem;
}
.modal-checkout .btn-payment,
.checkout .btn-payment,
.cart .btn-payment {
  padding: 15px 20px;
  width: 100%;
  justify-content: center;
}
.modal-checkout .btn-payment img,
.checkout .btn-payment img,
.cart .btn-payment img {
  width: auto;
  height: 20px;
}
.modal-checkout .form-check,
.checkout .form-check,
.cart .form-check {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.modal-checkout .form-check-input,
.checkout .form-check-input,
.cart .form-check-input {
  position: absolute;
  right: 20px;
  top: 15px;
}
.modal-checkout .form-check .form-check-input:checked ~ .form-check-label,
.checkout .form-check .form-check-input:checked ~ .form-check-label,
.cart .form-check .form-check-input:checked ~ .form-check-label {
  background: #fafafa !important;
}
.modal-checkout .form-check-label,
.checkout .form-check-label,
.cart .form-check-label {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #e7e7e9;
  font-weight: 500;
}
.modal-checkout .form-check-label strong,
.checkout .form-check-label strong,
.cart .form-check-label strong {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.modal-checkout .form-check-label span,
.checkout .form-check-label span,
.cart .form-check-label span {
  font-weight: 400;
}

.cart,
.checkout {
  max-width: 1300px;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .cart .checkout-grid,
  .checkout .checkout-grid {
    grid-template-columns: 700px 1fr;
  }
}
.cart form,
.checkout form {
  border: unset;
  border-radius: unset;
  padding: unset;
}
.cart aside,
.checkout aside {
  padding: 40px 64px 64px;
}
@media (max-width: 1199.98px) {
  .cart aside,
  .checkout aside {
    padding: 40px 32px 64px;
    display: unset;
  }
}
.cart main,
.checkout main {
  background: #eeeeee;
}
.cart main .plan__wrapper,
.checkout main .plan__wrapper {
  position: sticky;
  top: 0;
  padding: 40px 64px 64px;
}
@media (max-width: 1199.98px) {
  .cart main .plan__wrapper,
  .checkout main .plan__wrapper {
    padding: 40px 32px 64px;
  }
}
.cart main .btn-payment,
.checkout main .btn-payment {
  background: #fff;
}

.checkout-single {
  max-width: 480px;
  margin-inline: auto;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  padding: 48px;
  background: rgba(93, 138, 199, 0.05);
}
.checkout-single .logo {
  max-width: 150px;
  margin-bottom: 2.5rem;
}
.checkout-single .notice {
  color: #888;
  text-align: center;
  font-size: 0.65rem;
  margin-block: 2rem 1.4rem;
}

@media (min-width: 1200px) {
  .cart .cart-grid {
    grid-template-columns: 800px 1fr;
  }
}

.card-sticky {
  position: sticky;
  top: 10px;
}

.card-checkout {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f2f2f2;
}
.card-checkout-header {
  display: flex;
  justify-content: space-between;
}
.card-checkout-header span {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}

.product__description {
  font-size: 1.1rem;
  font-weight: 400;
}

.modal-licenses .modal-body {
  padding: 44px 48px;
}

.community-block {
  margin-bottom: 3rem;
}
.community-block--padded {
  padding-block: 3rem;
}
.community-block--colored {
  display: flex;
  align-items: flex-end;
  height: 300px;
  background: var(--background) no-repeat;
  background-size: cover;
  background-position-y: center;
  margin-bottom: 200px;
}
@media (max-width: 767.98px) {
  .community-block--colored {
    margin-bottom: 100px;
  }
}
.community-block-banner {
  transform: translateY(50%);
  background: #fff;
}
.community-block p, .community-block ul, .community-block a {
  font-size: 18px;
}
.community-block h2 {
  font-weight: 400;
  margin-bottom: 2rem;
  background: var(--background, transparent);
}
.community-block .heading {
  font-size: 3rem;
  margin-bottom: 4rem;
}
.community-block .heading--center {
  text-align: center;
}
.community-block .heading-big {
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .community-block .heading-big {
    font-size: 4rem;
  }
}
.community-block .box {
  padding: 30px;
  background: #f2f2f2;
  border-radius: 8px;
}
.community-block .box p:last-child {
  margin-bottom: 0;
}
.community-block .box--padded {
  padding: 40px;
}
.community-block .box--outlined {
  font-size: 20px;
  background: transparent;
  border: 1px solid #dbdbde;
  margin-bottom: 24px;
}
.community-block .box--filled {
  position: relative;
  background: #5d89c6;
}
.community-block .box--filled::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: #ffb6b6;
  border-radius: 8px;
  z-index: -1;
  transform: translate(-5px, 5px);
}
.community-block .box--filled h5, .community-block .box--filled svg, .community-block .box--filled p, .community-block .box--filled a {
  color: #fff;
}
.community-block .img-rounded {
  border-radius: 24px;
}
.community-block iframe {
  width: 100%;
  height: 400px;
}
.community-block .icon {
  width: auto;
  height: 60px;
  margin-bottom: 20px;
}
.community-block .organizer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: #f2f2f2;
  border-radius: 24px;
  padding: 24px;
}
.community-block .organizer h5 {
  text-align: center;
}
.community-block .organizer img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}
.community-block .cta {
  padding: 40px 50px;
  font-size: 20px;
  line-height: 1.8rem;
  color: #000;
  background: #f2f2f2;
  border-radius: 24px;
  margin-block: 3rem 5rem;
}
.community-block .cta h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
.community-block .cta p {
  font-size: 20px;
  margin-bottom: 30px;
}
.community-block .btn {
  padding: 16px 30px;
}
.community-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.community-block ul:not(.title-list) li {
  display: flex;
}
.community-block ul:not(.title-list) li:not(:last-child) {
  margin-bottom: 1rem;
}
.community-block ul:not(.title-list) li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  margin-right: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg stroke='%235d8ac7' fill='%235d8ac7' stroke-width='0' viewBox='0 0 20 20' aria-hidden='true' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
}
.community-block ul.title-list li:not(:last-child) {
  margin-bottom: 1.4rem;
}
.community-block ul.title-list li h5 {
  display: inline-block;
  background: var(--background, rgba(114, 78, 145, 0.2));
}
.community-block ul.title-list li p {
  margin: 0;
}
.community-block .agenda__split {
  display: grid;
  grid-template-columns: 160px 1fr;
}
.community-block .agenda__split:not(:last-child) {
  margin-bottom: 1rem;
}
.community-block .agenda__split-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: monospace;
  font-size: 2rem;
}
.community-block .agenda__split-time span {
  display: block;
  font-size: 0.8rem;
}
.community-block .agenda__split-summary {
  padding: 20px 30px;
  background: #f5f5f4;
  border-left: 2px solid #d6d3d1;
}
@media (min-width: 768px) {
  .community-block .agenda__split-summary {
    display: flex;
    justify-content: space-between;
  }
}
.community-block .agenda__split-title {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}
.community-block .agenda__split-person {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.event__cta {
  position: relative;
  padding: 60px;
  background: #f2f2f2;
  margin-block: 6rem;
}
.event__cta::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: #ffb6b6;
  z-index: -1;
  transform: translate(-10px, 10px);
}
.event__cta-badge {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 9999999px;
  color: var(--home-badge-color, #3d3d4e);
  background-color: var(--home-badge-bg, #b3fbe3);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.event__cta-title {
  font-size: 4rem;
  font-weight: 500;
  margin-block: 1.5rem;
}
.event__cta-title span {
  display: block;
  font-size: 33.6px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .event__cta-title {
    font-size: 2.5rem;
  }
  .event__cta-title span {
    font-size: 1.5rem;
  }
}
.event__cta-text {
  font-size: 18px;
  margin-bottom: 2rem;
}
.event__cta-button {
  padding: 12px 24px;
  font-size: 18px;
}
@media (max-width: 1300px) {
  .event__cta-figure {
    position: relative;
  }
}
@media (max-width: 767.98px) {
  .event__cta-figure {
    display: none;
  }
}
.event__cta-figure img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-54%);
}
@media (min-width: 1300px) {
  .event__cta-figure img {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1300px) {
  .event__cta-figure img {
    transform: translateY(-54%) scale(1.6);
  }
}

.courses-container {
  max-width: 1200px;
}
@media (min-width: 992px) {
  .courses-container {
    padding: 0 40px;
  }
}

.courses-header {
  padding-block: 4rem;
  background: linear-gradient(to bottom, #f2f2f2, transparent);
}
.courses-header__title {
  max-width: 900px;
  font-size: 2.5rem;
  font-weight: 600;
  margin-block: 1.5rem;
}
@media (min-width: 768px) {
  .courses-header__title {
    font-size: 4rem;
  }
}
.courses-header__text {
  max-width: 650px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem;
}
.courses-header strong {
  color: #000;
  font-weight: 500;
}
.courses-header__enroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .courses-header__enroll {
    flex-direction: row;
    align-items: center;
  }
}
.courses-header__enroll > .btn {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .courses-header__enroll > .btn {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.courses-header__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 992px) {
  .courses-header__meta {
    grid-template-columns: repeat(4, 1fr);
  }
}
.courses-header__meta-item {
  padding: 2.5rem;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.courses-header__meta-item:nth-child(1), .courses-header__meta-item:nth-child(3) {
  padding-left: 0;
}
.courses-header__meta-item:nth-child(2), .courses-header__meta-item:nth-child(4) {
  padding-right: 0;
  border-right-width: 0;
}
.courses-header__meta-item:nth-child(3), .courses-header__meta-item:nth-child(4) {
  border-bottom-width: 0;
}
@media (min-width: 992px) {
  .courses-header__meta-item {
    padding-block: 1.3rem;
    border-right: 1px solid #e7e7e7;
    border-bottom: 0;
  }
  .courses-header__meta-item:nth-child(1) {
    padding-left: 0;
  }
  .courses-header__meta-item:nth-child(2) {
    border-right-width: 1px;
  }
  .courses-header__meta-item:nth-child(3) {
    padding-left: 2.5rem;
  }
  .courses-header__meta-item:nth-child(4) {
    padding-right: 0;
    border-right: 0;
  }
}
@media (min-width: 1200px) {
  .courses-header__meta-item {
    padding-inline: 4rem;
  }
  .courses-header__meta-item:nth-child(3) {
    padding-left: 4rem;
  }
}
.courses-header__meta h5 {
  font-size: 1rem;
  color: var(--page-text-color);
  margin-bottom: 1rem;
}
.courses-header__meta p {
  color: #000;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1;
}
.courses-header__intro {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 48px;
  margin-top: 3rem;
}
.courses-header__intro video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courses-header__intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 250ms ease-out;
}
.courses-header__intro-overlay svg {
  width: 80px;
  height: auto;
}
.courses-header__intro-overlay svg path {
  opacity: 0.8;
}
.courses-header__intro-overlay a {
  position: absolute;
  display: block;
  inset: 0;
  font-size: 0;
}
.courses-header__intro:hover .courses-header__intro-overlay {
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}

.courses-brands {
  padding-block: 4rem;
}
.courses-brands h2 {
  max-width: 700px;
  margin-inline: auto;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
}
.courses-brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .courses-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 991px) {
  .courses-brands__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.courses-brands__grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 24px;
  padding-block: 48px;
}
.courses-brands__grid-item img {
  width: auto;
  height: 40px;
}

.courses-launch {
  overflow: hidden;
  padding-block: 6rem 4rem;
}
.courses-launch__title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
.courses-launch__text {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.courses-launch__text:not(:last-child) {
  margin-bottom: 1rem;
}
.courses-launch__photo {
  display: flex;
  justify-content: flex-end;
}
.courses-launch__photo img {
  border-radius: 32px;
}
@media (min-width: 768px) {
  .courses-launch__photo img {
    width: 800px;
    max-width: unset;
  }
}
.courses-launch__content {
  max-width: 500px;
  margin-left: auto;
}

.courses-how {
  padding-block: 6rem 4rem;
}
.courses-how__title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
.courses-how__text {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.courses-how__point-title {
  display: inline-block;
  font-size: 1.32rem;
  margin-bottom: 1rem;
}
.courses-how__point-title.bg-1 {
  background: #e6fbfe;
}
.courses-how__point-title.bg-2 {
  background: #e3ebfd;
}
.courses-how__point-title.bg-3 {
  background: #edddfb;
}
.courses-how__point-text {
  font-size: 1.1rem;
  font-weight: 400;
}

.courses-tutors {
  padding-block: 6rem 4rem;
}
.courses-tutors__title, .courses-tutors__text {
  text-align: center;
}
.courses-tutors__title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.courses-tutors__text {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
.courses-tutor {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 32px;
}
.courses-tutor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courses-tutor__detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, #000);
  z-index: 1;
  padding: 0 30px 20px;
}
.courses-tutor__detail h5 {
  font-size: 1rem;
  color: #fff;
}
.courses-tutor__detail p {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
}
.courses-tutor__social {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  transition: all 250ms ease-out;
  background: rgba(0, 0, 0, 0.4);
  gap: 30px;
}
.courses-tutor__social a {
  font-size: 2rem;
  color: #fff;
  transition: all 250ms ease-out;
  opacity: 0;
  transform: translateY(-20px);
}
.courses-tutor__social a:nth-child(2) {
  transition-delay: 200ms;
}
.courses-tutor:hover .courses-tutor__social {
  opacity: 1;
  pointer-events: all;
}
.courses-tutor:hover .courses-tutor__social a {
  opacity: 1;
  transform: translateY(10px);
}

.courses-mentors {
  padding-block: 6rem 4rem;
}
.courses-mentors__title, .courses-mentors__text {
  text-align: center;
}
.courses-mentors__title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.courses-mentors__text {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.courses-mentor {
  text-align: center;
}
.courses-mentor__photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.courses-mentor__photo img:nth-child(1) {
  height: 320px;
}
.courses-mentor__photo img:nth-child(2) {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.courses-mentor__name {
  font-size: 1rem;
  margin-block: 1.5rem 4px;
}
.courses-mentor__position {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0;
}
.courses-mentor__company {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0;
}

.courses-reviews {
  padding-block: 6rem 4rem;
}
.courses-reviews__title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
.courses-reviews__text {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.courses-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .courses-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.courses-review__quote {
  position: relative;
  color: #000;
  font-weight: 400;
}
.courses-review__quote::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 55px;
  height: 55px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg stroke='%23000' fill='%23000' stroke-width='0' viewBox='0 0 24 24' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath fill='none' d='M0 0h24v24H0z'%3E%3C/path%3E%3Cpath d='M19.417 6.679C20.447 7.773 21 9 21 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311-1.804-.167-3.226-1.648-3.226-3.489a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179zm-10 0C10.447 7.773 11 9 11 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311C4.591 12.322 3.17 10.841 3.17 9a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.05;
  transform: translateY(-50%) translateX(-45%) scaleX(-1);
}
.courses-review__author {
  display: flex;
  align-items: center;
}
.courses-review__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.courses-review__author div {
  margin-left: 12px;
}
.courses-review__author h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.courses-review__author p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

#workshopBanner {
  padding-block: 5rem;
}

.courses-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e2eaf5;
}
@media (min-width: 768px) {
  .courses-banner {
    grid-template-columns: 1.5fr 1fr;
  }
}
.courses-banner__content {
  width: 80%;
  margin-inline: auto;
  padding-block: 72px;
}
@media (min-width: 768px) {
  .courses-banner__content {
    padding: 72px;
    width: 100%;
    margin-inline: 0;
  }
}
.courses-banner__content span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
}
.courses-banner__content h2 {
  font-size: 2.2rem;
  margin-block: 0.6rem 1rem;
}
.courses-banner__content p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 2rem;
}
.courses-banner__video {
  position: relative;
}
.courses-banner__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #e2eaf5, transparent);
}
@media (min-width: 768px) {
  .courses-banner__video::before {
    background: linear-gradient(to right, #e2eaf5, transparent);
  }
}
.courses-banner__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.courses-packages {
  padding-block: 6rem 5rem;
}
.courses-packages__title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
.courses-packages__text {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0;
}

.courses-package {
  position: relative;
  border: 1px solid #e7e7e7;
  border-radius: 32px;
  --color: #1c5eff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.courses-package a {
  position: absolute;
  font-size: 0;
  inset: 0;
}
.courses-package__header {
  padding: 8px;
  text-align: center;
}
.courses-package__content {
  padding-block: 3rem;
  padding-inline: 20px;
}
.courses-package__content h2 {
  font-size: 2.4rem;
  color: var(--color);
  word-break: break-word;
  text-transform: uppercase;
}
.courses-package__content p {
  color: var(--color);
  margin-bottom: 3rem;
}
.courses-package__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: var(--color);
  margin-top: auto;
}
.courses-package__footer span {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
}
.courses-package__footer .badge {
  padding: 8px 16px;
  border-radius: 50rem;
  color: var(--color);
  background: transparent;
  border: 1px solid var(--color);
}

.collage__mini {
  display: flex;
  margin-left: -5px;
}
.collage__mini img {
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.collage__mini img:not(:first-child) {
  margin-left: -15px;
  z-index: 1;
}
@media (min-width: 768px) {
  .collage__mini img {
    width: 50px;
    height: 50px;
  }
}

.courses-flow > .container {
  position: relative;
}
.courses-flow-sections {
  margin-top: -100vh;
}
.courses-flow-section {
  min-height: 100vh;
  padding-block: 5rem;
  display: flex;
  align-items: center;
  background: var(--background, #eee);
}
.courses-flow-section-content {
  max-width: 400px;
}
.courses-flow-section-content h2 {
  font-family: "Mont", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-bottom: 2rem;
}
.courses-flow-section-content p {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: justify;
  color: rgba(0, 0, 0, 0.9);
}
.courses-flow-section-content p:last-child {
  margin-bottom: 0;
}
.courses-flow-device {
  position: sticky;
  display: flex;
  justify-content: flex-end;
  top: 0;
  left: max(50%, 600px);
  width: max(50vw, 600px);
  height: 100vh;
  z-index: 10;
}
.courses-flow-screens {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: var(--p-width);
  height: var(--p-height);
  --p-width: 800px;
  --p-height: 450px;
  overflow: hidden;
}
.courses-flow-screen {
  position: absolute;
  top: 0;
  left: 6px;
  display: block;
  width: var(--p-width);
  height: var(--p-height);
  --p-width: 800px;
  --p-height: 450px;
  z-index: 2;
}
.courses-flow-screen:not(:first-child) {
  transform: translateY(100%);
}
.courses-flow img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.lessons {
  padding-block: 2rem;
}
.lessons h1 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-block: 0 0.4rem;
}
.lessons h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-block: 0 2rem;
}
.lessons p {
  font-size: 0.9rem;
  font-weight: 400;
  margin-block: 0 1rem;
}
.lessons hr {
  margin-block: 3rem;
}

.accordion-lessons {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-bg: #fafafa;
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-active-bg: #5d8ac7;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-lessons .collapsing {
  transition: none !important;
}
.accordion-lessons .accordion-item {
  margin-bottom: 10px;
}
.accordion-lessons .accordion-button {
  font-weight: 500;
  border-radius: 8px !important;
}
.accordion-lessons .accordion-body {
  padding: 0;
}
.accordion-lessons .accordion-body .list-group {
  --bs-list-group-border-width: 0;
  --bs-list-group-border-radius: 0;
  --bs-list-group-border-color: rgb(0 0 0 / 6%);
  --bs-list-group-item-padding-y: 0.8rem;
  --bs-list-group-item-padding-x: 1.25rem;
  margin-top: 10px;
}
.accordion-lessons .accordion-body .list-group a {
  font-weight: 400;
}
.accordion-lessons .accordion-body .list-group a:not(:last-child) {
  border-bottom-width: 1px;
}

.lesson {
  position: sticky;
  top: 100px;
}

.lesson-preview {
  position: relative;
}
.lesson-preview__photo {
  border-radius: 8px;
  overflow: hidden;
}
.lesson-preview a {
  position: absolute;
  inset: 0;
}

.lesson-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .lesson-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lesson-list h3 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.8rem;
}
.lesson-list a {
  font-size: 0;
}

.navbar__trigger {
  padding: 0 !important;
}

/* .tagify {
  --tags-border-color: #C6C6C6 !important;
  --tags-hover-border-color: #C6C6C6 !important;
  --tags-focus-border-color: #C6C6C6 !important;

  width: 100%;
  padding: 4px !important;

  border-radius: 8px;
  background-color: #fafafa;

  &__input {
    line-height: 1.3 !important;
  }

  &__tag {
    border-radius: 4px !important;
    background: #C6C6C6 !important;

    > div::before {
      content: unset !important;
    }

    &__removeBtn {
      font-size: 14px !important;
      background: transparent !important;

      &:hover {
        color: #ff0000 !important;
      }
    }
  }

  &__dropdown__wrapper {
    overflow: hidden !important;
    padding: 4px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #CCC !important;
  }

  &__dropdown__item {
    border-radius: 4px !important;
    padding: 2px 10px !important;
    color: #212529 !important;

    &--hidden {
      display: none !important;
    }
  }
}
 */
.tagify {
  width: 100%;
  border-radius: 8px;
  border-color: #666;
  background: #fafafa;
  border-width: 2px !important;
  --tag-border-radius: 4px !important;
}

.tagify--focus {
  border-color: #94cbff !important;
  box-shadow: 0 0 0 0.25rem rgba(41, 151, 255, 0.25);
}

.tagify__dropdown__item {
  border-radius: 4px !important;
}

.tagify__dropdown__wrapper {
  overflow-y: auto;
  padding: 4px;
  border-radius: 8px;
  border-color: #ccc !important;
}

.tagify__tag:focus div::before,
.tagify__tag:hover:not([readonly]) div::before {
  --tag-bg-inset: 0 !important;
  --tag-bg: #5d89c650 !important;
}
