@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap);
* {
  font-family: "Poppins", sans-serif, "Hanuman", serif;
  line-height: normal;
}

.clearfix {
  margin-top: 90px;
}

.layout {
  margin: auto;
  height: auto;
  max-width: 1200px;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content > * {
  padding: 30px 0;
}
.content > *:first-child {
  padding-top: 30px;
}
.content > *:last-child {
  padding-bottom: 30px;
}

.bg-fixed {
  background: #000;
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0;
  z-index: -1;
  box-sizing: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

header {
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  position: fixed;
  top: 0;
  z-index: 100;
}
header .header-top {
  width: 100%;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d4af6a;
}
header .header-wrapper {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
}
header .header-wrapper .logo {
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 15px 0px;
}
header .header-wrapper .logo img {
  height: 100%;
}
header .header-wrapper .logo span {
  color: #d4af6a;
  font-size: 45px;
  font-weight: 700;
  font-family: "Times New Roman";
}
header .header-wrapper .navbar {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 5px 0px;
  box-sizing: border-box;
}
header .header-wrapper .navbar .navbar-list {
  display: flex;
  place-items: center;
  gap: 25px;
  margin: 0;
  height: 100%;
}
header .header-wrapper .navbar .navbar-list .navbar-item {
  display: flex;
  align-items: center;
}
header .header-wrapper .navbar .navbar-list .navbar-item.spacial {
  background: none;
  border: 2px solid #c8a666;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 18px;
  border-radius: 25px;
  box-sizing: border-box;
}
header .header-wrapper .navbar .navbar-list .navbar-item.spacial span {
  font-size: 17px;
}
header .header-wrapper .navbar .navbar-list .navbar-item.active span {
  color: #d4af6a;
  font-weight: 700;
}
header .header-wrapper .navbar .navbar-list .navbar-item span {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  font-weight: 500;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
header .header-wrapper .navbar .navbar-list .navbar-item span:focus {
  outline: none;
}

.auth {
  width: 100%;
  background: #fff;
  padding: 20px 0;
}
.auth .auth-wrapper {
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-image: url(/images/bg-texture.png?3231bdd301440e2d478faea6fe0fc98f);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.auth .auth-wrapper .auth-form {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.auth .auth-wrapper .auth-form form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.auth .auth-wrapper .auth-form form .row-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.auth .auth-wrapper .auth-form form .form-group {
  width: 100%;
  display: flex;
  justify-content: center;
}
.auth .auth-wrapper .auth-form form .form-group input,
.auth .auth-wrapper .auth-form form .form-group textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}
.auth .auth-wrapper .auth-form form .form-group input:focus,
.auth .auth-wrapper .auth-form form .form-group textarea:focus {
  border: 1px solid #d4af6a;
}
.auth .auth-wrapper .auth-form form .form-group input::-moz-placeholder, .auth .auth-wrapper .auth-form form .form-group textarea::-moz-placeholder {
  color: #a7a7a7;
}
.auth .auth-wrapper .auth-form form .form-group input::placeholder,
.auth .auth-wrapper .auth-form form .form-group textarea::placeholder {
  color: #a7a7a7;
}
.auth .auth-wrapper .auth-form form .group-input {
  width: 100%;
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background: #fff;
  transition: 0.3s;
}
.auth .auth-wrapper .auth-form form .group-input:focus-within {
  border: 1px solid #d4af6a;
}
.auth .auth-wrapper .auth-form form .group-input input {
  flex: auto;
  height: 100%;
  padding-right: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border: unset;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}
.auth .auth-wrapper .auth-form form .group-input input::-moz-placeholder {
  color: #a7a7a7;
}
.auth .auth-wrapper .auth-form form .group-input input::placeholder {
  color: #a7a7a7;
}
.auth .auth-wrapper .auth-form form .group-input .group-item {
  min-width: 50px;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.auth .auth-wrapper .auth-form form .group-input .group-item span {
  display: grid;
  place-items: center;
}
.auth .auth-wrapper .auth-form form .group-input .group-item span svg {
  width: 20px;
  height: 20px;
}
.auth .auth-wrapper .auth-form form .form-feature {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.auth .auth-wrapper .auth-form form p {
  font-size: 16px;
  color: #333;
}
.auth .auth-wrapper .auth-form form .error {
  font-size: 14px;
  color: #ff3838;
}
.auth .auth-wrapper .auth-form form a {
  color: #d4af6a;
  transition: 0.3s;
}
.auth .auth-wrapper .auth-form form a:hover {
  color: #d4af6a;
}
.auth .auth-wrapper .auth-form form button[type=submit] {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
  justify-content: center;
  gap: 10px;
}

.banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
  border-bottom: 10px solid #d4af6a;
}
.banner.page {
  height: 240px;
}
.banner.page.center .banner-item .banner-overlay > * {
  justify-content: center !important;
}
.banner.page .banner-item .banner-overlay > * {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.banner.page .banner-item .banner-overlay > * .filter {
  height: 50px;
  display: flex;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.banner.page .banner-item .banner-overlay > * .filter input {
  border: none;
  height: 100%;
  width: 400px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
  border-right: none;
  padding: 5px 20px;
  font-size: 20px;
  color: #fff;
}
.banner.page .banner-item .banner-overlay > * .filter button {
  height: 100%;
  border-radius: unset;
  display: flex;
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.banner .swiper {
  width: 100%;
  height: 100%;
}
.banner .swiper .swiper-pagination {
  text-align: left;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  transition: 0.6s;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  background: #fff;
  border-radius: 10px;
}
.banner .banner-item {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .banner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-item .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner .banner-item .banner-overlay > * {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding-top: 80px;
  box-sizing: border-box;
}
.banner .banner-item .banner-overlay .title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.banner .banner-item .banner-overlay .title, .banner .banner-item .banner-overlay .title > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 1) {
  .banner .banner-item .banner-overlay .title, .banner .banner-item .banner-overlay .title > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.banner .banner-item .banner-overlay button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  background: #fff;
  text-transform: uppercase;
}

.card {
  width: 100%;
  height: 400px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.introduce {
  width: 100%;
  background: #fff;
}
.introduce .introduce-header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.introduce .introduce-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}
.introduce .introduce-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.introduce .introduce-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.introduce .introduce-wrapper {
  width: 100%;
  display: grid;
  position: relative;
}
.introduce .introduce-wrapper.has-video {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.introduce .introduce-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.introduce .introduce-wrapper .introduce-content {
  text-align: justify;
}
.introduce .introduce-wrapper .introduce-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
}
.introduce .introduce-wrapper .introduce-content button {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: 0;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  border-radius: 4px;
  overflow: visible;
  color: #fff;
  align-items: center;
  background: #024de3;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  justify-content: center;
}
.introduce .introduce-wrapper .introduce-content button svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.service {
  width: 100%;
}
.service.page {
  padding: 20px 0;
}
.service .service-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.service .service-wrapper .service-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.service .service-wrapper .service-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  text-transform: uppercase;
}
.service .service-wrapper .service-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.service .service-wrapper .service-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.service .service-wrapper .service-header .btn-see-all {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
}
.service .service-wrapper .service-header .btn-see-all svg {
  width: 20px;
  height: 22px;
}
.service .service-wrapper .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service .service-wrapper .service-list .service-item {
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  overflow: hidden;
  padding: 15px;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.service .service-wrapper .service-list .service-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translateY(-3px);
  background: #fff;
}
.service .service-wrapper .service-list .service-item .service-image {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.service .service-wrapper .service-list .service-item .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .service-wrapper .service-list .service-item .service-image .service-action {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  color: #00c753;
  background: #fff;
  transition: 0.2s;
}
.service .service-wrapper .service-list .service-item .service-image .service-action:hover {
  background: #00c753;
  color: #fff;
}
.service .service-wrapper .service-list .service-item .service-image .service-action span {
  white-space: nowrap;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.service .service-wrapper .service-list .service-item .service-image .service-action svg {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}
.service .service-wrapper .service-list .service-item .service-content {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service .service-wrapper .service-list .service-item .service-content .service-title {
  text-align: center;
  font-size: 16px;
  color: #d4af6a;
}
.service .service-wrapper .service-list .service-item .service-content h3 {
  margin: 0;
}
.service .service-wrapper .service-list .service-item .service-content h3, .service .service-wrapper .service-list .service-item .service-content h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 2) {
  .service .service-wrapper .service-list .service-item .service-content h3, .service .service-wrapper .service-list .service-item .service-content h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.service .service-wrapper .service-list .service-item .service-content .service-date {
  font-size: 14px;
  color: #a7a7a7;
  display: flex;
  align-items: center;
  gap: 5px;
}
.service .service-wrapper .service-list .service-item .service-content .service-date svg {
  width: 18px;
  height: 18px;
}
.service .service-wrapper .service-list .service-item .service-content .service-date .value {
  font-weight: 700;
}
.service .service-wrapper .service-list .service-item .service-content p {
  margin: 0;
}
.service .service-wrapper .service-list .service-item .service-content p, .service .service-wrapper .service-list .service-item .service-content p > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 4) {
  .service .service-wrapper .service-list .service-item .service-content p, .service .service-wrapper .service-list .service-item .service-content p > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.service .service-wrapper .service-list .service-item .service-content .service-description {
  flex: auto;
  text-align: center;
}

.news {
  width: 100%;
}
.news.page {
  padding: 20px 0;
}
.news .news-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.news .news-wrapper .news-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.news .news-wrapper .news-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  text-transform: uppercase;
}
.news .news-wrapper .news-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.news .news-wrapper .news-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.news .news-wrapper .news-header .btn-see-all {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
}
.news .news-wrapper .news-header .btn-see-all svg {
  width: 20px;
  height: 22px;
}
.news .news-wrapper .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news .news-wrapper .news-list .news-item {
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background: #fff;
  cursor: pointer;
}
.news .news-wrapper .news-list .news-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translateY(-3px);
}
.news .news-wrapper .news-list .news-item .news-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.news .news-wrapper .news-list .news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .news-wrapper .news-list .news-item .news-content {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
}
.news .news-wrapper .news-list .news-item .news-content h3 {
  margin: 0;
}
.news .news-wrapper .news-list .news-item .news-content h3, .news .news-wrapper .news-list .news-item .news-content h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 2) {
  .news .news-wrapper .news-list .news-item .news-content h3, .news .news-wrapper .news-list .news-item .news-content h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.news .news-wrapper .news-list .news-item .news-content .news-date {
  font-size: 14px;
  color: #00c753;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news .news-wrapper .news-list .news-item .news-content .news-date svg {
  width: 18px;
  height: 18px;
}
.news .news-wrapper .news-list .news-item .news-content .news-date .value {
  font-weight: 700;
}
.news .news-wrapper .news-list .news-item .news-content p {
  margin: 0;
}
.news .news-wrapper .news-list .news-item .news-content p, .news .news-wrapper .news-list .news-item .news-content p > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 3) {
  .news .news-wrapper .news-list .news-item .news-content p, .news .news-wrapper .news-list .news-item .news-content p > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.news .news-wrapper .news-list .news-item .news-content .news-description {
  flex: auto;
}

.get-in-touch {
  width: 100%;
  background: #fff;
  padding: 20px 0;
}
.get-in-touch .get-in-touch-wrapper {
  width: 100%;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-image: url(/images/bg-texture.png?3231bdd301440e2d478faea6fe0fc98f);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .row-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group input,
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group input:focus,
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group textarea:focus {
  border: 1px solid #d4af6a;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group input::-moz-placeholder, .get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group textarea::-moz-placeholder {
  color: #a7a7a7;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group input::placeholder,
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form .form-group textarea::placeholder {
  color: #a7a7a7;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form button[type=submit] {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
  gap: 10px;
}
.get-in-touch .get-in-touch-wrapper .get-in-touch-form form button[type=submit] svg {
  width: 20px;
  height: 20px;
}

.partner {
  width: 100%;
}
.partner .partner-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.partner .partner-wrapper .partner-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.partner .partner-wrapper .partner-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  text-transform: uppercase;
}
.partner .partner-wrapper .partner-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.partner .partner-wrapper .partner-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.partner .partner-wrapper .partner-list {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
}
.partner .partner-wrapper .partner-list .swiper-button-prev {
  background-image: url(/images/arrow-left.png?a9cc1bd051d2970cb78a1d99addf4ecf);
  width: 50px;
  height: 50px;
  background-size: cover;
  filter: invert(14%) sepia(76%) saturate(1263%) hue-rotate(181deg) brightness(92%) contrast(90%);
  left: 0;
  top: unset;
  margin: 0;
}
.partner .partner-wrapper .partner-list .swiper-button-prev::after {
  display: none;
}
.partner .partner-wrapper .partner-list .swiper-button-next {
  background-image: url(/images/arrow-right.png?6c73f1c0a76eb35602164a58efe760a2);
  width: 50px;
  height: 50px;
  background-size: cover;
  filter: invert(14%) sepia(76%) saturate(1263%) hue-rotate(181deg) brightness(92%) contrast(90%);
  right: 0;
  top: unset;
  margin: 0;
}
.partner .partner-wrapper .partner-list .swiper-button-next::after {
  display: none;
}
.partner .partner-wrapper .partner-list .swiper {
  box-sizing: border-box;
}
.partner .partner-wrapper .partner-list .partner-item {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 2px solid rgba(212, 175, 106, 0.3);
  overflow: hidden;
  cursor: pointer;
}
.partner .partner-wrapper .partner-list .partner-item img {
  height: 100%;
}

.question-answer .question-answer-header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.question-answer .question-answer-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}
.question-answer .question-answer-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.question-answer .question-answer-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.question-answer .question-answer-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.question-answer .question-answer-wrapper .expand {
  max-width: 1000px;
}
.question-answer .question-answer-wrapper .expand .expand-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item {
  border-radius: 5px;
  transition: 0.2s;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item .expand-label {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: 3px solid transparent;
  transition: outline 0.1s;
  gap: 10px;
  border-radius: 5px;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item .expand-label h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item .expand-label svg {
  transition: 0.2s;
  color: #a7a7a7;
  width: 30px;
  height: 30px;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item[expanded=opened] {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item[expanded=opened] .expand-label svg {
  transition: 0.1s;
  transform: rotate(90deg);
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item .expand-content {
  padding-left: 60px;
  box-sizing: border-box;
}
.question-answer .question-answer-wrapper .expand .expand-list .expand-item .expand-content p {
  font-weight: 400;
}

footer {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5));
  background: #000;
  padding: 20px 0;
}
footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-wrapper .footer-logo {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer-wrapper .footer-logo img {
  height: 100%;
}
footer .footer-wrapper .footer-logo span {
  display: flex;
  flex-direction: column;
}
footer .footer-wrapper .footer-logo span h3 {
  color: #d4af6a;
  font-size: 24px;
  margin: 0;
  font-weight: 600;
}
footer .footer-wrapper .footer-logo span p {
  font-size: 12px;
  margin: 0;
  color: #d4af6a;
}
footer .footer-wrapper .footer-action {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .footer-wrapper .footer-action .footer-social {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-wrapper .footer-action .footer-social .social-icon {
  cursor: pointer;
}
footer .footer-wrapper .footer-action .footer-social .social-icon svg {
  height: 20px;
  width: 20px;
  fill: #fff;
}
footer .footer-wrapper .footer-action hr {
  width: 100%;
  margin: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
footer .footer-wrapper .footer-action .footer-menu {
  display: flex;
  gap: 15px;
}
footer .footer-wrapper .footer-action .footer-menu span {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.detail {
  width: 100%;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.detail .detail-content {
  width: calc(100% - 350px);
  padding: 30px 40px;
  border-radius: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  box-sizing: border-box;
}
.detail .detail-content .title {
  font-size: 24px;
  margin: 0;
}
.detail .detail-content .detail-action {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.detail .detail-content .detail-action .date {
  color: #00c753;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.detail .detail-content .detail-action .date.view {
  color: #231f20;
}
.detail .detail-content .detail-action .date svg {
  width: 18px;
  height: 18px;
}
.detail .detail-content .detail-action .date .value {
  font-weight: 700;
}
.detail .detail-content .detail-action button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  background: #ff3838;
  text-transform: uppercase;
}
.detail .detail-content .description p {
  line-height: 30px;
}
.detail .detail-related {
  width: 350px;
  min-width: 350px;
}
.detail .detail-related .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  text-transform: uppercase;
}
.detail .detail-related .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.detail .detail-related .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.detail .detail-related .news-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.detail .detail-related .news-list .news-item {
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background: #fff;
  cursor: pointer;
}
.detail .detail-related .news-list .news-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translateY(-3px);
}
.detail .detail-related .news-list .news-item .news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.detail .detail-related .news-list .news-item .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail .detail-related .news-list .news-item .news-content {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
}
.detail .detail-related .news-list .news-item .news-content h3 {
  margin: 0;
}
.detail .detail-related .news-list .news-item .news-content h3, .detail .detail-related .news-list .news-item .news-content h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 2) {
  .detail .detail-related .news-list .news-item .news-content h3, .detail .detail-related .news-list .news-item .news-content h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.detail .detail-related .news-list .news-item .news-content .news-date {
  font-size: 14px;
  color: #00c753;
  display: flex;
  align-items: center;
  gap: 5px;
}
.detail .detail-related .news-list .news-item .news-content .news-date svg {
  width: 18px;
  height: 18px;
}
.detail .detail-related .news-list .news-item .news-content .news-date .value {
  font-weight: 700;
}
.detail .detail-related .news-list .news-item .news-content p {
  margin: 0;
}
.detail .detail-related .news-list .news-item .news-content p, .detail .detail-related .news-list .news-item .news-content p > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 3) {
  .detail .detail-related .news-list .news-item .news-content p, .detail .detail-related .news-list .news-item .news-content p > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.detail .detail-related .news-list .news-item .news-content .news-description {
  flex: auto;
}

.account {
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 25px 0;
}
.account .account-sidebar {
  width: 300px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.account .account-sidebar .menu-profile {
  width: 100%;
  display: flex;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  gap: 10px;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.account .account-sidebar .menu-profile .profile {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.account .account-sidebar .menu-profile .profile img {
  width: 100%;
  height: 100%;
}
.account .account-sidebar .menu-profile .info h3 {
  margin: 0;
}
.account .account-sidebar .menu-profile .info span {
  font-size: 14px;
}
.account .account-sidebar .menu-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.account .account-sidebar .menu-list .menu-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  transition: 0.2s;
}
.account .account-sidebar .menu-list .menu-item span {
  font-size: 16px;
  font-weight: 500;
}
.account .account-sidebar .menu-list .menu-item.active {
  background: #d4af6a;
  color: #fff;
}
.account .account-sidebar .menu-list .menu-item:hover:not(.active) {
  background: #e5e5e5;
}
.account .account-sidebar .menu-list .menu-item.logout {
  color: #ff3838;
}
.account .account-content {
  width: calc(100% - 300px);
}

.profile-page {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.profile-page .block {
  width: 100%;
  display: flex;
  background: #fff;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.profile-page .block img {
  border-radius: 5px;
  width: 70px;
  height: 70px;
}
.profile-page .block button {
  height: 40px;
  width: 40px;
  font-size: 18px;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  background: #ff3838;
  display: flex;
  place-items: center;
}
.profile-page .block button svg {
  position: relative;
  left: 1px;
  width: 20px;
  height: 20px;
}
.profile-page .list {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 15px 15px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.profile-page .list .list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  padding: 0 10px;
}
.profile-page .list .list-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.profile-page .list .list-item img {
  border-radius: 5px;
}
.profile-page .list .list-item p {
  font-size: 16px;
  margin: 0;
  width: 100px;
}

.update-profile {
  width: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 40px 0;
}
.update-profile form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.update-profile form .select-image {
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid #e5e5e5;
}
.update-profile form .select-image .image {
  width: 100%;
  height: 100%;
}
.update-profile form .select-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.update-profile form .select-image button {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #333;
}
.update-profile form .row-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.update-profile form .form-group {
  width: 100%;
  display: flex;
  justify-content: center;
}
.update-profile form .form-group input,
.update-profile form .form-group textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}
.update-profile form .form-group input:focus,
.update-profile form .form-group textarea:focus {
  border: 1px solid #d4af6a;
}
.update-profile form .form-group input::-moz-placeholder, .update-profile form .form-group textarea::-moz-placeholder {
  color: #a7a7a7;
}
.update-profile form .form-group input::placeholder,
.update-profile form .form-group textarea::placeholder {
  color: #a7a7a7;
}
.update-profile form .group-input {
  width: 100%;
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background: #fff;
  transition: 0.3s;
}
.update-profile form .group-input:focus-within {
  border: 1px solid #d4af6a;
}
.update-profile form .group-input input {
  flex: auto;
  height: 100%;
  padding-right: 0;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border: unset;
  padding: 10px 15px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}
.update-profile form .group-input input::-moz-placeholder {
  color: #a7a7a7;
}
.update-profile form .group-input input::placeholder {
  color: #a7a7a7;
}
.update-profile form .group-input .group-item {
  min-width: 50px;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.update-profile form .group-input .group-item span {
  display: grid;
  place-items: center;
}
.update-profile form .group-input .group-item span svg {
  width: 20px;
  height: 20px;
}
.update-profile form .form-feature {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.update-profile form p {
  font-size: 16px;
  color: #333;
}
.update-profile form .error {
  font-size: 14px;
  color: #ff3838;
}
.update-profile form a {
  color: #d4af6a;
  transition: 0.3s;
}
.update-profile form a:hover {
  color: #d4af6a;
}
.update-profile form button[type=submit] {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
  justify-content: center;
  gap: 10px;
}

.application {
  width: 100%;
}
.application .application-content {
  width: 100%;
  min-height: 500px;
  background: #fff;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 25px;
  box-sizing: border-box;
}
.application .application-content .table {
  width: 100%;
}
.application .application-content .table .table-wrapper {
  display: flex;
  flex-direction: column;
}
.application .application-content .table .table-wrapper .table-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: 45px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  transition: background 0.2s;
}
.application .application-content .table .table-wrapper .table-row:not(:first-child) {
  border-top: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell {
  flex: auto;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}
.application .application-content .table .table-wrapper .table-row .table-cell.table-label {
  background: #f5f5f5;
}
.application .application-content .table .table-wrapper .table-row .table-cell:not(:first-child) {
  border-left: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell .table-cell:first-child {
  border-left: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell .table-cell:last-child {
  border-right: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell .table-row:first-child {
  border-top: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell .table-row:last-child {
  border-bottom: none;
}
.application .application-content .table .table-wrapper .table-row .table-cell span {
  padding: 10px 15px;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: inherit;
  cursor: default;
}
.application .application-content .table .table-wrapper .table-row .table-cell h3 {
  margin: 0;
  padding: 15px 0;
}
.application .application-content .table .table-wrapper .table-row .table-cell input[type=text], .application .application-content .table .table-wrapper .table-row .table-cell input[type=number], .application .application-content .table .table-wrapper .table-row .table-cell input[type=date] {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  padding: 0px 15px;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border 0.2s;
  font-size: 15px;
  background: none;
  text-align: inherit;
}
.application .application-content .table .table-wrapper .table-row .table-cell input[type=text]:focus, .application .application-content .table .table-wrapper .table-row .table-cell input[type=number]:focus, .application .application-content .table .table-wrapper .table-row .table-cell input[type=date]:focus {
  border-color: rgba(2, 77, 227, 0.5);
  background: #fff;
}
.application .application-content .table .table-wrapper .table-row .table-cell input[type=text]::-moz-placeholder, .application .application-content .table .table-wrapper .table-row .table-cell input[type=number]::-moz-placeholder, .application .application-content .table .table-wrapper .table-row .table-cell input[type=date]::-moz-placeholder {
  color: #ccc;
}
.application .application-content .table .table-wrapper .table-row .table-cell input[type=text]::placeholder, .application .application-content .table .table-wrapper .table-row .table-cell input[type=number]::placeholder, .application .application-content .table .table-wrapper .table-row .table-cell input[type=date]::placeholder {
  color: #ccc;
}
.application .application-content .table .table-wrapper .table-row .table-cell input[type=radio], .application .application-content .table .table-wrapper .table-row .table-cell input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}
.application .application-content .table .table-wrapper .table-row .table-cell textarea {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border 0.2s;
  font-size: 15px;
  background: none;
  text-align: inherit;
  resize: none;
  overflow: hidden;
}
.application .application-content .table .table-wrapper .table-row .table-cell textarea:focus {
  border-color: rgba(2, 77, 227, 0.5);
  background: #fff;
}
.application .application-content .table .table-wrapper .table-row .table-cell textarea::-moz-placeholder {
  color: #ccc;
}
.application .application-content .table .table-wrapper .table-row .table-cell textarea::placeholder {
  color: #ccc;
}
.application .application-content .table .table-wrapper .table-row .table-cell select {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border 0.2s;
  font-size: 15px;
  background: none;
  cursor: pointer;
}
.application .application-content .table .table-wrapper .table-row .table-cell label {
  cursor: pointer;
  flex: auto;
}
.application .application-content .table .table-wrapper .table-row .table-cell.align-center {
  justify-content: center;
}
.application .application-content .table .table-wrapper .table-row .table-cell.justify-center {
  align-items: center;
  text-align: center;
}
.application .application-content .table .table-wrapper .table-row .table-cell.bold {
  font-weight: 500;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width=fit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex: unset;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="10"] {
  max-width: 15%;
  min-width: 15%;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="20"] {
  max-width: 20%;
  min-width: 20%;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="25"] {
  max-width: 25%;
  min-width: 25%;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="30"] {
  max-width: 30%;
  min-width: 30%;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="40"] {
  max-width: 40%;
  min-width: 40%;
}
.application .application-content .table .table-wrapper .table-row .table-cell[cell-width="50"] {
  max-width: 50%;
  min-width: 50%;
}
.application .application-content .table .table-wrapper .table-row .table-cell.center {
  display: grid;
  justify-items: center;
}
.application .application-content .application-button {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.application .application-content .application-button button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  border: none;
  font-size: 16px;
  background: #ff3838;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
  justify-content: center;
  margin-top: 20px;
}
.application .application-content .application-button button.download {
  background: #024de3;
}
.application .application-content .application-button button span {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.application .application-content .application-button button span svg {
  width: 20px;
  height: 20px;
}
.application .application-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.application .application-form .tab {
  width: 100%;
  display: grid;
  grid-template-columns: 250px auto;
}
.application .application-form .tab .tab-label {
  display: grid;
  grid-template-columns: 1fr;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  overflow: hidden;
}
.application .application-form .tab .tab-label .tab-label-item {
  cursor: pointer;
  padding: 15px 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  transition: 0.2s;
  border-left: 5px solid transparent;
}
.application .application-form .tab .tab-label .tab-label-item:hover {
  background: rgba(2, 77, 227, 0.1);
}
.application .application-form .tab .tab-label .tab-label-item:last-child {
  border-bottom: none;
}
.application .application-form .tab .tab-label .tab-label-item.tab-active {
  border-left-color: #024de3;
  background: rgba(2, 77, 227, 0.1);
  cursor: default;
  box-sizing: border-box;
}
.application .application-form .tab .tab-label .tab-label-item.tab-active svg {
  display: block;
}
.application .application-form .tab .tab-label .tab-label-item span {
  display: flex;
}
.application .application-form .tab .tab-label .tab-label-item span svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.application .application-form .tab .tab-label .tab-label-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.application .application-form .tab .tab-label .tab-label-item svg {
  transition: 0.2s;
}
.application .application-form .tab .tab-content {
  padding: 0 30px;
  box-sizing: border-box;
}
.application .application-form .tab .tab-content .tab-content-item {
  width: 100%;
}
.application .application-form .tab .tab-content .tab-content-item .tab-content-footer {
  width: 100%;
  display: flex;
}
.application .application-form .tab .tab-content .tab-content-item .tab-content-footer .gap {
  flex: auto;
}
.application .application-form .tab .tab-content .tab-content-item .tab-content-footer button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
  justify-content: center;
  margin-top: 20px;
}
.application .application-form .tab .tab-content .form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 30px 30px 30px;
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.application .application-form .tab .tab-content .form-group .main-label {
  width: auto;
  display: flex;
  flex-direction: column;
}
.application .application-form .tab .tab-content .form-group .main-label label {
  font-size: 18px;
  font-weight: 500;
}
.application .application-form .tab .tab-content .form-group .main-label span {
  font-size: 14px;
  color: #999;
}
.application .application-form .tab .tab-content .form-group .form-content {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control {
  display: flex;
  gap: 5px;
  width: 100%;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control label {
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
  width: 200px;
  display: flex;
  align-items: center;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control input,
.application .application-form .tab .tab-content .form-group .form-content .form-control select {
  border: 1px solid #e4e4e4;
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #f7f7f7;
  transition-property: background;
  transition-duration: 0.3s;
  transition-delay: 0.1s;
  outline: 2px solid transparent;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control input:focus,
.application .application-form .tab .tab-content .form-group .form-content .form-control select:focus {
  outline: 3px solid rgba(2, 77, 227, 0.3);
  background: #fff;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control input::-moz-placeholder, .application .application-form .tab .tab-content .form-group .form-content .form-control select::-moz-placeholder {
  color: #bbb;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control input::placeholder,
.application .application-form .tab .tab-content .form-group .form-content .form-control select::placeholder {
  color: #bbb;
}
.application .application-form .tab .tab-content .form-group .form-content .form-control input[aria-invalid=true],
.application .application-form .tab .tab-content .form-group .form-content .form-control select[aria-invalid=true] {
  border-color: #ff3838;
}
.application .application-form .tab .tab-content hr {
  margin: 20px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
}

.apply-list .product-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.apply-list .product-list .product-item {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.apply-list .product-list .product-item .product-image {
  min-width: 150px;
  width: 150px;
  height: auto;
  overflow: hidden;
  background: #eee;
}
.apply-list .product-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apply-list .product-list .product-item .product-content {
  width: calc(100% - 200px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
}
.apply-list .product-list .product-item .product-content h3 {
  margin: 0;
  color: #d4af6a;
}
.apply-list .product-list .product-item .product-content h3, .apply-list .product-list .product-item .product-content h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 1) {
  .apply-list .product-list .product-item .product-content h3, .apply-list .product-list .product-item .product-content h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.apply-list .product-list .product-item .product-content .product-date {
  font-size: 14px;
  color: #a7a7a7;
  display: flex;
  align-items: center;
  gap: 5px;
}
.apply-list .product-list .product-item .product-content .product-date svg {
  width: 18px;
  height: 18px;
}
.apply-list .product-list .product-item .product-content .product-date .value {
  font-weight: 700;
}
.apply-list .product-list .product-item .product-content p {
  margin: 0;
  font-size: 14px;
  display: flex;
}
.apply-list .product-list .product-item .product-content .product-description {
  flex: auto;
}
.apply-list .product-list .product-item .product-content .product-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.apply-list .product-list .product-item .product-content .product-action button {
  border: 1px solid #ff3838;
  color: #ff3838;
  background: none;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: 0.2s;
  cursor: pointer;
}
.apply-list .product-list .product-item .product-content .product-action button span {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.loading {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading.load-top {
  min-height: unset;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.7);
}
.loading span {
  margin-top: 10px;
  color: #d4af6a;
}
.loading #spinner {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(212, 175, 106, 0.1);
  border-top: 4px solid #d4af6a;
  border-radius: 50%;
}
.loading #spinner {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1.2s;
  -webkit-animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-transition-property: -moz-transform;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  transition-property: transform;
  animation-name: rotate;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

*[loader] .loader {
  margin-left: 5px;
  font-size: 10px;
  text-indent: -9999em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: #ffffff;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1s infinite linear;
  animation: load3 1s infinite linear;
  transform: translateZ(0);
}
*[loader] .loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
*[loader] .loader:after {
  background: rgb(224, 224, 224) !important;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.product {
  width: 100%;
  padding: 20px 0;
}
.product .product-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product .product-wrapper .product-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.product .product-wrapper .product-header .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  display: grid;
  text-transform: uppercase;
}
.product .product-wrapper .product-header .label span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.product .product-wrapper .product-header .label .label-line {
  width: 80px;
  height: 5px;
  background: #d4af6a;
  margin-bottom: 20px;
  border-radius: 10px;
}
.product .product-wrapper .product-header .btn-see-all {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 16px;
  background: #d4af6a;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  place-items: center;
}
.product .product-wrapper .product-header .btn-see-all svg {
  width: 20px;
  height: 22px;
}
.product .product-wrapper .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.product .product-wrapper .product-list .product-item {
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  transition: 0.3s;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.product .product-wrapper .product-list .product-item:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translateY(-3px);
}
.product .product-wrapper .product-list .product-item .product-image {
  min-width: 150px;
  width: 150px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
}
.product .product-wrapper .product-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product-wrapper .product-list .product-item .product-content {
  width: calc(100% - 200px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
}
.product .product-wrapper .product-list .product-item .product-content h3 {
  margin: 0;
  cursor: pointer;
}
.product .product-wrapper .product-list .product-item .product-content h3, .product .product-wrapper .product-list .product-item .product-content h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 1) {
  .product .product-wrapper .product-list .product-item .product-content h3, .product .product-wrapper .product-list .product-item .product-content h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.product .product-wrapper .product-list .product-item .product-content .product-date {
  font-size: 14px;
  color: #a7a7a7;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product .product-wrapper .product-list .product-item .product-content .product-date svg {
  width: 18px;
  height: 18px;
}
.product .product-wrapper .product-list .product-item .product-content .product-date .value {
  font-weight: 700;
}
.product .product-wrapper .product-list .product-item .product-content p {
  margin: 0;
}
.product .product-wrapper .product-list .product-item .product-content p, .product .product-wrapper .product-list .product-item .product-content p > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 3) {
  .product .product-wrapper .product-list .product-item .product-content p, .product .product-wrapper .product-list .product-item .product-content p > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.product .product-wrapper .product-list .product-item .product-content .product-description {
  flex: auto;
}
.product .product-wrapper .product-list .product-item .product-content .product-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.product .product-wrapper .product-list .product-item .product-content .product-action button {
  border: 1px solid #ff3838;
  color: #ff3838;
  background: none;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: 0.2s;
}
.product .product-wrapper .product-list .product-item .product-content .product-action button span {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}
.product .product-wrapper .product-list .product-item .product-content .product-action button:hover:not(.applied) {
  background: #ff3838;
  color: #fff;
  cursor: pointer;
}
.product .product-wrapper .product-list .product-item .product-content .product-action button.applied {
  background: #e5e5e5;
  color: #a7a7a7;
  border: none;
  cursor: default;
}

.product-detail h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-detail h3 img {
  width: 70px;
  height: 70px;
  border-radius: 3px;
}
.product-detail .list {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  gap: 3px;
}
.product-detail .list .list-item {
  display: grid;
  grid-template-columns: 200px 2px auto;
  gap: 10px;
  min-height: 45px;
  box-sizing: border-box;
}
.product-detail .list .list-item p {
  color: #231f20;
  margin: 0;
  padding: 10px 10px;
  box-sizing: border-box;
  word-break: break-word;
  background: #f9f9f9;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
}
.product-detail .list .list-item span {
  padding: 10px 0;
}

.apply-service {
  width: 100%;
  padding: 10px 0;
}
.apply-service .application-box {
  display: flex;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  gap: 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: #231f20;
}
.apply-service .application-box.empty {
  border-style: dashed;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.apply-service .application-box.empty:hover span {
  text-decoration: underline;
}
.apply-service .application-box.empty p {
  margin: 0;
}
.apply-service .application-box.empty span {
  font-size: 16px;
  color: #ff3838;
  font-weight: 500;
}
.apply-service .application-box .application-icon {
  padding: 20px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
}
.apply-service .application-box .application-icon svg {
  width: 40px;
  height: 100%;
}
.apply-service .application-box .application-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 8px 5px;
}
.apply-service .application-box .application-content .warning {
  color: #ff3838;
}
.apply-service .application-box .application-content h4 {
  margin: 0;
}
.apply-service .application-box .application-content p {
  margin: 0;
  font-size: 14px;
}
.apply-service .application-box .application-content span {
  font-size: 14px;
  color: #ff3838;
}

.data-empty-container {
  width: 100%;
  display: block;
  padding: 100px 0;
}
.data-empty-container .data-empty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.data-empty-container .data-empty-wrapper .image {
  width: auto;
  height: 200px;
}
.data-empty-container .data-empty-wrapper .image img {
  height: 100%;
}
.data-empty-container .data-empty-wrapper .message {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.data-empty-container .data-empty-wrapper .message .title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.data-empty-container .data-empty-wrapper .message .des {
  font-size: 14px;
  color: #a7a7a7;
}
.data-empty-container .data-empty-wrapper .message button {
  border-radius: 8px;
  border: unset;
  color: #fff;
  margin-top: 10px;
}
.data-empty-container .data-empty-wrapper .message button span {
  font-size: 13px;
}
.data-empty-container .data-empty-wrapper .message button svg {
  width: 18px;
  height: 18px;
  line-height: 0;
  margin-right: 5px;
}

.Toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.Toast .Toast-container {
  background: linear-gradient(335deg, #90f7ec 0%, #32ccbc 100%);
  width: 380px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 8px;
  max-height: 95vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.Toast .Toast-container[status=primary] {
  background: #6967ce;
}
.Toast .Toast-container[status=success] {
  background: #3ae880;
}
.Toast .Toast-container[status=danger] {
  background: #fd6368;
}
.Toast .Toast-container[status=warning] {
  background: #ffb900;
}
.Toast .Toast-container[status=info] {
  background: #19afd0;
}
.Toast .Toast-container[size=small] {
  border-radius: 50px;
}
.Toast .Toast-container[size=small] .Toast-body {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
}
.Toast .Toast-container[size=small] .Toast-body .button-close {
  width: 20px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 20px;
  border-radius: 50%;
  font-size: 20px;
  background: unset;
  padding: 0;
  border: none;
  display: flex;
  color: #fff;
  cursor: pointer;
}
.Toast .Toast-container[size=small] .Toast-body .button-close svg {
  width: 100%;
  height: 100%;
}
.Toast .Toast-container .Toast-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.Toast .Toast-container .Toast-header h3 {
  margin: 0;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}
.Toast .Toast-container .Toast-header h3, .Toast .Toast-container .Toast-header h3 > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: normal;
}
@supports (-webkit-line-clamp: 1) {
  .Toast .Toast-container .Toast-header h3, .Toast .Toast-container .Toast-header h3 > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.Toast .Toast-container .Toast-header .button-close {
  width: 20px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 20px;
  border-radius: 50%;
  font-size: 20px;
  background: unset;
  padding: 0;
  border: none;
  display: flex;
  color: #fff;
  box-sizing: border-box;
  cursor: pointer;
}
.Toast .Toast-container .Toast-header .button-close svg {
  width: 100%;
  height: 100%;
}
.Toast .Toast-container .Toast-body {
  box-sizing: border-box;
  width: 100%;
}
.Toast .Toast-container .Toast-body p {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  word-break: break-word;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.Toast .Toast-container .duration-bar {
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 210299;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  background-blend-mode: overlay;
  overflow: hidden;
  padding: unset !important;
  margin: unset !important;
}
.dialog .dialog-wrapper {
  width: 100%;
  max-height: 100%;
  padding: 25px 0;
  overflow: auto;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.dialog .dialog-container {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 25px;
  border-radius: 8px;
}
.dialog .dialog-container.withBackdrop {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-blend-mode: overlay;
}
.dialog .dialog-container .dialog-form {
  display: flex;
  flex-direction: column;
}
.dialog .dialog-container .dialog-form .dialog-form-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.dialog .dialog-container .dialog-form .dialog-form-header h3 {
  margin: 0;
  line-height: normal;
}
.dialog .dialog-container .dialog-form .dialog-form-header svg {
  width: 40px;
  height: 40px;
  color: #fff;
}
.dialog .dialog-container .dialog-form .dialog-form-body {
  padding: 15px 0;
}
.dialog .dialog-container .dialog-form .dialog-form-footer {
  display: flex;
  justify-content: flex-end;
}
.dialog .dialog-container .dialog-form .dialog-form-footer button {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: 0;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  border-radius: 4px;
  overflow: visible;
  color: #fff;
  align-items: center;
  background: #ff3838;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  justify-content: center;
}
.dialog .dialog-container .dialog-form .dialog-form-footer button.close {
  background: none;
  border-color: rgba(0, 0, 0, 0.2);
  color: #333;
}
.dialog .dialog-container .dialog-form .dialog-form-footer button .loader {
  margin-left: 5px;
  font-size: 10px;
  text-indent: -9999em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: #ffffff;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1s infinite linear;
  animation: load3 1s infinite linear;
  transform: translateZ(0);
}
.dialog .dialog-container .dialog-form .dialog-form-footer button .loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.dialog .dialog-container .dialog-form .dialog-form-footer button .loader:after {
  background: rgb(224, 224, 224) !important;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.x-list {
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
  border-radius: 5px;
}
.x-list .list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  min-height: 45px;
  padding: 8px 10px;
  box-sizing: border-box;
}
.x-list .list-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.x-list .list-item img {
  border-radius: 5px;
}
.x-list .list-item p {
  font-size: 16px;
  margin: 0;
}

.contact {
  width: 100%;
}
.contact .contact-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 25px;
}
.contact .contact-wrapper .map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.contact .contact-wrapper .map iframe {
  width: 100%;
  height: 400px;
}
.contact .contact-wrapper .contact-info {
  padding: 25px 30px;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.contact .contact-wrapper .contact-info .list {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  gap: 3px;
}
.contact .contact-wrapper .contact-info .list .list-item {
  display: grid;
  grid-template-columns: 120px 2px auto;
  gap: 10px;
  min-height: 45px;
  box-sizing: border-box;
}
.contact .contact-wrapper .contact-info .list .list-item p {
  color: #231f20;
  margin: 0;
  padding: 5px 0px;
  box-sizing: border-box;
  word-break: break-word;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
}
.contact .contact-wrapper .contact-info .list .list-item span {
  padding: 5px 0;
}

.tutorial {
  width: 100%;
}
.tutorial-breadcrumb {
  width: 100%;
}
.tutorial-breadcrumb ul {
  margin: 0;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  list-style: none;
  justify-content: center;
  padding: 0;
}
.tutorial-breadcrumb ul li {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 3px;
  cursor: default;
  border: 1px solid #2badfc;
  color: #2badfc;
  font-weight: 500;
}
.tutorial-breadcrumb ul li.active {
  color: #fff;
  background: #2badfc;
}
.tutorial-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 0;
}
.tutorial-content .title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  color: #024de3;
}
.tutorial-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.tutorial-content .description {
  font-size: 16px;
}
.tutorial-content .description p {
  margin: 0;
}
.tutorial-content .tutorial-option {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.tutorial-content .tutorial-option input {
  width: 20px;
  height: 20px;
}
.tutorial-content .tutorial-button {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.tutorial-content .tutorial-button .gap {
  flex: auto;
}
.tutorial-content .tutorial-button button {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: 0;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  border-radius: 4px;
  overflow: visible;
  color: #fff;
  align-items: center;
  background: #024de3;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  justify-content: center;
}
.tutorial-content .tutorial-button button.close {
  background: #ff3838;
}
.tutorial-content .tutorial-button button svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

body {
  margin: 0;
  padding: 0;
  background: #f1f1f1;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #231f20;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

button:disabled {
  background: rgba(0, 0, 0, 0.12) !important;
  color: rgba(0, 0, 0, 0.26) !important;
  cursor: no-drop !important;
}

input:disabled,
select:disabled,
.select2-container--disabled {
  background: rgba(0, 0, 0, 0.05) !important;
  color: rgba(0, 0, 0, 0.5) !important;
  cursor: no-drop !important;
}

*[readonly] {
  cursor: default !important;
}

*:focus {
  outline: none;
}
