@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css");

h3 {
  text-align: center;
}

.photo {
  border-radius: 30px;
  width: 300px;
}

.isoImg {
  width: 700px;
  height: 48px;
}

.nav-link {
  margin-right: 30px;
}

.main-bakgroundColor {
  background-color: #D7D8D9;
}

.highlight-title {
  background: linear-gradient(45deg, yellow, transparent);
  display: inline;
  padding: 2px;
  height: 50%;
}

.highlight-mark {
  display: inline;
  background-color: yellow;
  color: black;
  height: 50%;
}

ul.custom-list {
  list-style-type: none;
  margin-left: -40px;
}

ul.custom-list li.item-1 img {
  width: 35px;
  height: 35px;
}

ul.custom-list li.item-2 img {
  width: 35px;
  height: 35px;
}

ul.custom-list li.item-3 img {
  width: 35px;
  height: 35px;
}

.customized {
  margin-bottom: 0;
}

.shadow-right-bottom {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.info {
  padding: 10px;
  width: 400px;
}

.related-links {
  display: flex;
  justify-content: center;
  font-size: 50px;
}

.icon {
  padding: 8px;
}

.customTitle {
  width: 300px;
  height: 120px;
  margin-left: -65px;
}

.custom-img {
  width: 200px;
  height: 111px;
}

.sendBtnImg {
  width: 150px;
  height: 83px;
}

.form-container {
  background-size: cover;
  background-position: center;
  padding: 50px;
  box-shadow: inset 0 0 10px orange;
}

textarea {
  resize: none;
  min-height: 100px;
  max-height: 100px;
  overflow-y: auto;
}

.recruitSec {
  padding-bottom: 50px;
}

footer {
  background-color: #1B1F3C;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}

.footerImg {
  width: 100px;
  height: 79px;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.link {
  cursor: pointer;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
  color: var(--color-text);
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
  /* show by default */
}

.link--elara {
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 1.375rem;
}

.link--elara::before {
  transform-origin: 50% 100%;
  transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
}

.link--elara:hover::before {
  transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
  clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 0 100%, 100% 100%, 100% 0%);
}

.link--elara span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link--elara:hover span {
  transform: translate3d(0, -2px, 0);
}