.social_media_wrapper {
  position: fixed;
  right: 0;
  top: 19vh;
  z-index: 9999;
  background-color: white;
  border-radius: 5px 0 0 5px;
}
.social_media_wrapper ul {
  border: 1px solid #c1c1c1;
  border-right: none;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.social_media_wrapper li {
  border-radius: 5px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85px;
  aspect-ratio: 85/75;
  border: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social_media_wrapper li:last-child a {
  border-radius: 5px 0 0 5px;
  background-color: transparent;
  border: none;
}
.social_media_wrapper li a {
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none !important;
  width: 100%;
  height: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -1px;
}
.social_media_wrapper li a p {
  line-height: 16px;
}
.social_media_wrapper li a svg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
.social_media_wrapper li a svg path {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social_media_wrapper li:first-child {
  border-radius: 5px 0 0 5px;
}
.social_media_wrapper li:nth-child(3) a {
  padding: 8px;
}
.social_media_wrapper li:nth-last-of-type(2) {
  border-radius: 0 0 0 5px;
}
.social_media_wrapper li:not(:first-child) {
  position: relative;
}
.social_media_wrapper li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  width: 75.6%;
  margin: 0 auto;
  background-color: #dedede;
  -webkit-transform: 0.4s;
          transform: 0.4s;
}
.social_media_wrapper li:not(:last-child):hover {
  background-color: #e4007f;
}
.social_media_wrapper li:not(:last-child):hover a {
  color: #fff;
}
.social_media_wrapper li:not(:last-child):hover svg path {
  fill: #fff;
}
.social_media_wrapper li:not(:last-child):hover::before {
  content: none;
}
.social_media_wrapper li.chat {
  margin-top: 12px;
  background-color: transparent;
  color: #fff;
}
.social_media_wrapper li.chat:hover a {
  color: #e4007f;
}
.social_media_wrapper li.chat:hover svg path {
  fill: #e4007f;
}
@media (max-width: 900px) {
  .social_media_wrapper {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .social_media_wrapper {
    display: none !important;
  }
}
.social_media_wrapper li.chat {
  position: absolute;
}
.social_media_wrapper li.chat::before {
  content: none;
}
.social_media_wrapper li.chat a {
  background-color: transparent;
  border: none;
  padding: 0;
}
.social_media_wrapper ul .wechat a {
  cursor: pointer;
  position: relative;
}
.social_media_wrapper ul .wechat a img {
  width: 40px;
  position: relative;
  z-index: 5;
  padding-bottom: 0.2em;
}
.social_media_wrapper ul .wechat a .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 135px;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: -1;
  padding: 10px;
  background-color: #fff;
}
.social_media_wrapper ul .wechat a .hover-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.social_media_wrapper ul .wechat a .hover-image p {
  color: #333;
  text-align: center;
}
.social_media_wrapper ul .wechat a:hover .hover-image {
  opacity: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.social_media_wrapper ul .wechat a:hover .hover-image img {
  opacity: 1;
}

.bottom_cta__buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8fafd;
  border: 4px solid #d6d8db;
  border-radius: 3px;
  z-index: 5;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list_chat {
  background-color: #e4007f;
  border-radius: 3px;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list_chat a {
  color: #fff;
  border-right: none !important;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list_chat a:hover {
  text-decoration: none;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list {
  width: 25%;
  padding: 5px 0;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list:last-child a {
  border-right: none;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #595757;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  font-size: 13px;
  padding: 5px 0;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list a:hover {
  text-decoration: none;
}
.bottom_cta__buttons ul.bottom_cta__buttons_lists .bottom_cta__buttons_list img {
  height: 25px;
}
.bottom_cta__buttons .wechat_qr_sp:hover .touch-image {
  padding: 10px;
}
.bottom_cta__buttons .wechat_qr_sp:hover .touch-image p {
  color: #333;
  text-align: center;
  margin-top: 5px;
}
.bottom_cta__buttons .wechat_qr_sp:hover .touch-image img {
  opacity: 1;
}
.bottom_cta__buttons .touch-image {
  position: fixed;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
  text-align: center;
}
.bottom_cta__buttons .touch-image p {
  color: #333;
  font-weight: bold;
}
.bottom_cta__buttons .touch-image img {
  width: 100%;
  max-width: 200px;
  height: auto !important;
  opacity: 1;
}
.bottom_cta__buttons .touch-image.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .back_to_top {
    bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  #ot-sdk-btn-floating.ot-floating-button {
    bottom: 90px !important;
  }
}

@media screen and (max-width: 1024px) {
  footer .footer_bottom .footer_contents .footer_logo {
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  div#footer {
    margin-bottom: 72px;
  }
}

.home a.btn span.component__circle_hover::before {
  content: none;
}

/*
.single-applications .breadcrumb nav ol li::before{
  color: #333;
}*/
.single-applications .breadcrumb nav ol li:last-child::before {
  color: #333;
}

.postid-3580 .application.common .application-post p a::after, .application.common .section p a::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 0.3em;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: middle;
}