/* main styles */
.link-details-review a,
.category-desc a {
  color: #2eaf61 !important;
}

.link-header {
  position: relative;
  color: #fff;
  font-size: 39px;
  padding: 5px 5px 5px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 5px 0;
}

.link-header:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  display: inline-block;
  width: 100%;
  height: 3px;
  border-radius: 1px;
}

.link-header .inline-icon {
  margin: -5px 5px 0 0;
}

@media (max-width: 576px) {
  .link-header .inline-icon {
    margin: 0;
  }
}

.link-header .link-header-back {
  display: none !important;
}

.link-header h2,
.link-header h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  color: #767676;
}

@media (max-width: 991px) {

  .link-header h2,
  .link-header h1 {
    font-size: 20px;
    font-weight: 500;
  }
}

/* main styles */
/* 404 page */
.block-404 {
  margin: 40px 0 50px 0;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .block-404 {
    padding: 0;
  }
}

.block-404 .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .block-404 .info {
    flex-direction: column;
    text-align: center;
  }
}

.block-404 .img-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 300px;
  max-width: 500px;
  margin-right: 68px;
  padding: 60px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 991px) {
  .block-404 .img-holder {
    max-width: 350px;
    margin-right: 40px;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .block-404 .img-holder {
    min-width: initial;
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .block-404 .img-holder {
    max-width: 250px;
  }
}

/* @media (max-width: 480px) {

} */

.block-404 .img-holder svg {
  position: relative;
  width: 100%;
  height: 100%;
}

.block-404 .img-holder svg .mascot-glasses {
  position: relative;
  animation: glasses 5s;
  transform: translateY(0);
}

.block-404 .img-holder:before {
  content: '';
  background-color: #fff4e5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 0;
}

.block-404 .img-holder:after {
  content: '';
  position: absolute;
  top: -2%;
  right: -10%;
  width: 20%;
  height: 20%;
  background-color: #fff4e5;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 991px) {
  .block-404 .img-holder:after {
    top: -5%;
    right: -5%;
  }
}

.block-404 .text-holder .title {
  margin: 0 0 26px -5px;
  font-size: 100px;
  font-weight: 500;
  overflow-wrap: anywhere;
  color: #ff9701;
}

@media (max-width: 991px) {
  .block-404 .text-holder .title {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .block-404 .text-holder .title {
    font-size: 60px;
  }
}

.block-404 .text-holder .subtitle {
  color: #4e4e4e;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 17px;
}

.block-404 .text-holder .text {
  color: #4e4e4e;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 41px;
}

.block-404 .text-holder .btn {
  --animation-rgb-value: 255, 177, 66;

  display: inline-block;
  box-shadow: 0 5px 9px rgba(255, 151, 1, 0.33);
  border-radius: 10px;
  max-width: 250px;
  background-color: #ff9701;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  outline: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .block-404 .text-holder .btn:hover {
    animation: pulse 1s infinite;
  }
}

.block-404 .text-holder .btn img {
  display: inline-block;
  margin-right: 4px;
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .block-404 .text-holder .btn:hover img {
    animation: backButtonArrow 1s infinite;
  }
}

/* 404 page */