/* applications-detail */
.applications-detail {
  padding-top: 30px;
}

.applications-detail .title {
  margin-bottom: 10px;
  font-family: 'Montserrat-ExtraBold';
}

.applications-detail .info>*:not(:last-child) {
  margin-bottom: 15px;
}

.applications-detail .info img {
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .applications-detail {
    padding-top: 60px;
  }

  .applications-detail .container {
    max-width: 1030px;
  }

  .applications-detail .title {
    margin-bottom: 17px;
  }

  .applications-detail .info>*:not(:last-child) {
    margin-bottom: 22px;
  }
}

@media (min-width: 1440px) {
  .applications-detail {
    padding-top: 100px;
  }
}


/* related */
.related {
  padding: 30px 0;
}

.related .title {
  margin-bottom: 30px;
  font-family: 'Montserrat-ExtraBold';
}

.related .scale-img {
  border-radius: 10px;
}

.related .scale-img img {
  width: 100%;
  aspect-ratio: 435 / 435;
}

.related .tit {
  margin-top: 11px;
  margin-bottom: 7px;
  font-family: 'Montserrat-Bold';
}

.related .btn {
  width: 180px;
  margin-top: 20px;
  padding: 7px 15px;
  border-radius: 4px;
  background: var(--style-color);
}

@media (min-width: 1200px) {
  .related {
    padding: 60px 0 55px;
  }

  .related .title {
    margin-bottom: 60px;
  }

  .related .tit {
    margin-top: 22px;
    margin-bottom: 13px;
  }

  .related .tit:hover {
    color: var(--style-color);
  }

  .related .btn {
    width: 220px;
    margin-top: 37px;
    padding-top: 10px;
    padding-bottom: 9px;
    transition: all .3s;
  }

  .related .btn:hover {
    color: var(--style-color);
    background: #fff;
  }
}

@media (min-width: 1440px) {
  .related {
    padding-top: 100px;
  }

  .related .btn {
    font-size: 26px;
  }
}