.download-apps-wrapper{
  position: relative;
}

.img-responsive{
  width: 100%;
  object-fit: contain;
}

.download-apps-wrapper .download-apps-box{
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 15px;
  z-index: 100;
  top: 40px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transform: translateY(-20px);
  transition: all .25s linear;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: all .25s linear;
  -moz-transition: all .25s linear;
  -ms-transition: all .25s linear;
  -o-transition: all .25s linear;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.download-apps-wrapper .download-apps-box .download-apps-image-wrapper{
  width: min(70, 200px);
  /* border: 1px solid #332859; */
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}

.download-apps-wrapper .download-apps-box img{
  width: 100%;
}

.header-body{
  overflow: visible !important;
}

a.download-apps-dropdown{
  transition: all .15s linear;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

a.download-apps-dropdown:hover{
  opacity: 0.75;
}

a.download-apps-dropdown:hover ~ .download-apps-box{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.floating-whatsapp-button{
  position: fixed;
  z-index: 9999;
  right: 3rem;
  bottom: 3rem;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  transition: all .15s linear;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

.floating-wa-form{
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  z-index: 9998;
  width: min(350px, 90vw);
  background-color: red;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .15s ease-in-out;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  -webkit-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -ms-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
}

.floating-wa-form.active{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.floating-wa-form-header {
  background-color: #4ab04f;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.floating-wa-form-title{
  color: #fff;
  text-transform: none;
  font-weight: 500;
}

.close-floating-wa-form{
  background-color: transparent;
  border: none;
  transition: all .15s linear;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

.floating-wa-form-body{
  width: 100%;
  background-color: #9e9e9e;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.floating-wa-form-message{
  background-color: #fff;
  padding: 10px;
  padding-bottom: 20px;
} 

.floating-wa-form-footer{
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 10px 10px 5px 10px;
}

.floating-wa-form-input-message{
  width: calc(100% - 55px);
  height: 40px;
  resize: none;
  border: none;
  padding: 5px 10px;
  border-bottom: 1px solid #000;
}

.floating-wa-form-input-message:focus{
  outline: none;
}

.floating-wa-form-send-message-button{
  border: none;
  margin-left: 5px;
  background-color: transparent;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  transition: all .15s linear;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

.floating-wa-form-send-message-button > *, .close-floating-wa-form > *, .floating-whatsapp-button > * {
  pointer-events: none;
}

.floating-wa-form-send-message-button:hover, .close-floating-wa-form:hover, .floating-whatsapp-button:hover {
  opacity: 0.75;
}

@media(max-width: 400px){
  .floating-wa-form{
    right: 15px;
  }
}

@media(max-width: 992px){
  .floating-whatsapp-button{
    right: 2rem;
    bottom: 2rem;
  }

  .floating-wa-form{
    bottom: 7rem;
  }
}

.at-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #212529;
  padding-left: 4.1rem;
}
.at-title .border-custom1 {
  position: absolute;
  width: 50px;
  height: 7px;
  background: #fdc628;
  left: 0;
  top: 8px;
}

.at-box_wrapper {
  position: relative;
}
.at-box_wrapper img {
  position: relative;
  width: 100%;
}

.at-subtitle {
  position: relative;
  font-weight: 700;
  color: #332859;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.at-desc {
  position: relative;
  margin: 1.7rem 0;
  color: #7c7878;
  font-size: 0.9rem;
}

.bg-grap-aboutus {
  background-repeat: no-repeat !important;
  background-position: 50px !important;
  background-size: 200px !important;
}

.at-divider {
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 170px;
}

.about-us-section {
  min-height: 680px;
}

.bg-white {
  background-color: #ffffff;
}

.tab-list {
  position: relative;
  display: flex;
  gap: 30px;
}
.tab-list .tab-item {
  position: relative;
}
.tab-list .tab-item.active {
  position: relative;
}

.univ-item {
  background: #ffffff;
  box-shadow: 0px 0px 55px 30px rgba(0, 0, 0, 0.03);
  border-radius: 26px;
  padding: 0.5rem;
  height: 100%;
  cursor: pointer;
  color: #333;
}
.univ-item img {
  width: 100%;
  height: 220px;
  object-fit: scale-down;
}
.univ-item .content {
  padding: 1rem;
  position: relative;
}
.univ-item .content .at-univ-title {
  margin: 0;
  color: #332859;
  font-size: 1.3rem;
  font-weight: 600;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  padding-bottom: 0.4em;
}
.univ-item .content .at-univ-desc {
  width: 80%;
}
.univ-item .content .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 7.5px;
}
.univ-item .content .bottom .love img {
  width: auto;
  height: auto;
}

.bg-color-white-darker {
  background-color: #f8f9f9 !important;
}

.univ-detail h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #332859;
  margin-top: 70px;
}

.content-detail img {
  width: 100%;
  border-radius: 23px;
  /* border: 1px solid #cacaca; */
  object-fit: scale-down;
}
.content-detail .details .location {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #2d2350;
  display: flex;
  align-items: center;
}
.content-detail .details .location svg {
  margin-right: 12px;
}
.content-detail label {
  font-weight: 700;
  font-size: 25px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #a4a4a4;
}
.share-section {
  margin-top: 2.7rem;
}
.share-section h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 42px;
  letter-spacing: -0.02em;
  color: #171940;
}
.share-section .sosmed {
  position: relative;
}
.share-section .sosmed a {
  position: relative;
  margin: 0 10px;
}



.tooltip-share {
  position: relative;
}
.tooltip-share .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #012265;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 55%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-share .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #012265 transparent transparent transparent;
}

.tooltip-share:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sosmed-button:not(.whatsapp-button){
  width: 60px;
  height: 60px;
}

button.sosmed-button{
  border: none;
  background: transparent;
}

.sosmed-button > *{
  pointer-events: none;
}

.content-detail .title h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: #332859;
  margin-top: 20px;
}

.logo-nav {
  width: 123px;
  height: 119px;
}

.border-none {
  border: none !important;
}

.main {
  margin-bottom: 230px;
  padding-top: 110px;
}
.main.home {
  padding-top: 0;
}

.t1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0.015em;
  color: #2e2a55;
}

.atlas-icon {
  position: relative;
}
.atlas-icon i {
  position: absolute;
  right: 15px;
  bottom: 12px;
  z-index: 10;
}

.bg-auth1 {
  width: 140px;
  position: absolute;
  top: 50%;
}

.bg-auth2 {
  width: 140px;
  position: absolute;
  top: 10%;
  right: 0;
}

.card-bg {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  box-shadow: 0px 0px 13px 13px rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  padding: 1.6rem;
}
.card-bg .input-group {
  margin: 1.2rem 0;
}
.card-bg .input-group label {
  width: 100%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #332859;
}
.card-bg .input-group input {
  background: #e8efff;
  border-radius: 8px !important;
  margin-top: 10px;
}
.card-bg .input-group select {
  background: #e8efff;
  border-radius: 8px !important;
}
.card-bg .terms {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  letter-spacing: -0.02em;
  color: #012265;
  margin-bottom: 0.7rem;
  display: block;
}

.btn-atlas-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ffffff;
  background: #012265;
  border-radius: 14px;
  padding: 0.8rem 0;
  transition: all .15s linear;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

.btn-atlas-1:hover{
  color: #fff;
  opacity: 0.75;
}

.univ-colum-right {
  border-left: 1px solid #eaeaea;
}

@media (max-width: 791px) {
  .at-divider {
    display: none;
  }
  .card-bg {
    margin-left: 0 !important;
    margin-top: 20px;
  }
  .logo-nav {
    width: 80px;
    height: 80px;
  }
  .header-container {
    background-color: #ffffff;
  }
}
.verif-wrapper > * {
  margin: 10px;
  height: 80px;
  width: 80px;
  text-align: center;
  font-size: 42px !important;
}

.elipsis-depan {
  display: -webkit-box;
  max-width: 100%;
  height: 62px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-approval {
	font-weight: normal;
    border-radius: 1em !important;
    position: relative;
    display: inline-block;
    top: -1px;
}

.badge-gray, .btn-gray{
  background-color: #676767;
}

.btn-gray{
  color: #fff;
}

button.btn-gray:hover{
  color: #fff !important;
  opacity: 0.75 !important;
  transition: all .15s linear;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
}

/* @media (min-width: 771px) {
  .content-detail img {
    height: 430px;
  }
} */

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