/* ===== Global ===== */
* {
  font-family: "Poppins", sans-serif;
}

body {
  position: relative;
  margin: 0;
  padding: 20px 0 0 0;
  color: #333;
  background-color: #fff;
}

.top-header {
  text-align: center;
  padding: 0 15px;
}
.top-header .top-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.top-header .sub-title {
  font-size: 20px;
  font-weight: 500;
}
.top-header .top-arrow {
  border: solid;
  display: inline-block;
  padding: 10px;
  position: relative;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.linktree-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1170px;
  margin: 20px auto;
}
.linktree-content .linktree-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 20px 15px 30px;
}
.linktree-content .linktree-item .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
.linktree-content .linktree-item .item-content .item-name h3 {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}
.linktree-content .linktree-item .item-content .item-img {
  margin: 5px 0;
}
.linktree-content .linktree-item .item-content .item-img img {
  width: 100%;
  max-width: 175px;
}
.linktree-content .linktree-item .item-slogan {
  display: none;
}
.linktree-content .linktree-item .item-button {
  width: 100%;
  text-align: center;
  margin: 15px auto 0;
}
.linktree-content .linktree-item .item-button a {
  text-decoration: none;
  font-weight: 500;
  font-size: 25px;
  color: var(--text-white);
  background-color: var(--primary-color);
  padding: 12px 50px;
  border-radius: 30px;
}
.linktree-content .linktree-item .item-button a:hover {
  text-decoration: none;
  background: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  color: var(--text-white);
}
.linktree-content .linktree-item .item-button a:focus {
  text-decoration: none;
  background: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  color: var(--text-white);
}

@media (min-width: 768px) {
  .top-header .top-title {
    font-size: 45px;
    margin-bottom: 0;
  }
  .top-header .sub-title {
    font-size: 30px;
  }
  .top-header .top-arrow {
    margin: 5px 0;
  }
  .linktree-content .linktree-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 30px 20px 20px;
  }
  .linktree-content .linktree-item .item-content {
    flex: 1;
    text-align: left;
    min-width: 190px;
    max-width: 190px;
  }
  .linktree-content .linktree-item .item-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    padding: 0 15px;
  }
  .linktree-content .linktree-item .item-button {
    flex: 1;
    text-align: right;
    min-width: 250px;
  }
}
@media (min-width: 992px) {
  .linktree-content .linktree-item .item-content {
    min-width: 250px;
    max-width: 250px;
  }
}
/* ===== Footer2 ===== */
.footer2 {
  background-color: #f9f9f9;
  margin-top: 650px;
}
.footer2 .footer2-container {
  text-align: center;
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.footer2 .footer2-container .footer2-links {
  margin: 15px 0;
}
.footer2 .footer2-container .footer2-links a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 10px;
  cursor: pointer;
}
.footer2 .footer2-declare div {
  font-size: 0.75rem;
  line-height: 25px;
  color: lightgray;
}

.footer2-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.footer2-modal .footer2-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  max-width: 960px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
}
.footer2-modal .footer2-modal-content .footer2-modal-top {
  padding: 2px 16px;
  background-color: var(--primary-color);
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.footer2-modal .footer2-modal-content .footer2-modal-top .close {
  color: white;
  float: right;
  font-size: 2.75rem;
  margin-top: 5px;
  margin-right: -5px;
}
.footer2-modal .footer2-modal-content .footer2-modal-top .close:hover,
.footer2-modal .footer2-modal-content .footer2-modal-top .close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.footer2-modal .footer2-modal-content .footer2-modal-top .footer2-modal-header {
  font-size: 1.5rem;
  font-weight: 500;
}
.footer2-modal .footer2-modal-content .footer2-modal-body {
  padding: 30px;
  max-height: 500px;
  overflow-y: scroll;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
