.hum-int {
  display: flex;
  gap: 48px;
  margin: 0;
  padding: 0 80px;
  align-items: center;
  justify-content: space-between;
  font-family: "Roboto", sans-serif;
  background-color: #f4f5f6;
}

@media (max-width: 1023px) {
  .hum-int {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 50px;
  }
}

.hum-int .hum-hww {
  font-size: 18px;
  line-height: 1.4;
  padding: 48px 0 0 0;
  max-width: 580px;
}

.autoint-wrapper {
  max-width: 720px;
  margin-top: 38px;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 1023px) {
  .autoint-wrapper {
    display: none;
  }
}

.autoint-wrapper .nav-sec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.autoint-wrapper .nav-sec .curve {
  transform: rotate(353deg);
  position: absolute;
  left: 15%;
}

.autoint-wrapper .nav-sec .navitems {
  position: absolute;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.autoint-wrapper .nav-sec .navitems li {
  position: relative;
  width: 200px;
  height: 100px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.autoint-wrapper .nav-sec .navitems li a {
  display: flex;
  gap: 12px;
  align-items: center;
  position: absolute;
  left: 0;
  z-index: 2;
  text-decoration: none;
}

.autoint-wrapper .nav-sec .navitems li a span {
  color: #0d6e83;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(1) span {
  color: #8336A7;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(2) span {
  color: #F6490E;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(3) span {
  color: #45CFE6;
}

.autoint-wrapper .nav-sec .navitems li a img {
  width: 72px;
  height: 72px;
  transition: 0.4s ease-in-out;
}

.autoint-wrapper .nav-sec .navitems li:hover a span {
  font-weight: 500;
  font-size: 22px;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(1):hover span {
  color: #8336A7;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(2):hover span {
  color: #F6490E;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(3):hover span {
  color: #45CFE6;
}

.autoint-wrapper .nav-sec .navitems li::after {
  content: "";
  width: 72px;
  height: 72px;
  position: absolute;
  left: -16px;
  top: 10px;
  z-index: 0;
  border-radius: 50px;
  background-color: #e7eef5;
  transition: 0.8s ease-in-out;
}

.autoint-wrapper .nav-sec .navitems li.active {
  transform: scale(1.2);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.autoint-wrapper .nav-sec .navitems li.active a span {
  font-size: 20px;
}

.autoint-wrapper .nav-sec .navitems li:nth-child(2) {
  margin-left: -16px;
}

.autoint-wrapper .tab-content {
  width: 450px;
  height: 450px;
  border-radius: 100%;
  position: relative;
  box-shadow: 0 2px 2px #dfdfdf;
  background: rgb(250, 250, 250);
  background: linear-gradient(148deg, rgba(250, 250, 250, 1) 0%, rgba(247, 247, 247, 1) 100%);
}

.autoint-wrapper .tab-content .tab-item {
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.autoint-wrapper .tab-content .tab-item.active {
  opacity: 1;
}

.autoint-mob {
  display: none;
}

@media (max-width: 1023px) {
  .autoint-mob {
    display: block;
  }
}

.autoint-mob .autoint-item {
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  margin: 8px 0;
}

.autoint-mob .autoint-item .toggle-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 8px;
}

.autoint-mob .autoint-item .toggle-nav .iconwrap {
  height: 52px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.autoint-mob .autoint-item .toggle-nav .iconwrap img {
  width: 52px;
}

.autoint-mob .autoint-item .toggle-nav .iconwrap span {
  font-size: 18px;
  font-weight: 500;
}

.autoint-mob .autoint-item .toggle-nav.is-active span {
  font-weight: 500;
  font-size: 20px;
}

.autoint-mob .autoint-item:nth-child(1) .toggle-nav .iconwrap span,
.autoint-mob .autoint-item:nth-child(1) .toggle-nav:hover .iconwrap span,
.autoint-mob .autoint-item:nth-child(1) .toggle-nav.is-active span {
  color: #8336A7;
}

.autoint-mob .autoint-item:nth-child(2) .toggle-nav .iconwrap span,
.autoint-mob .autoint-item:nth-child(2) .toggle-nav:hover .iconwrap span,
.autoint-mob .autoint-item:nth-child(2) .toggle-nav.is-active span {
  color: #F6490E;
}

.autoint-mob .autoint-item:nth-child(3) .toggle-nav .iconwrap span,
.autoint-mob .autoint-item:nth-child(3) .toggle-nav:hover .iconwrap span,
.autoint-mob .autoint-item:nth-child(3) .toggle-nav.is-active span {
  color: #45CFE6;
}

.autoint-mob .autoint-item .toggle-nav.is-active img.arw {
  transform: rotate(180deg);
}

.autoint-mob .autoint-item .item-desc {
  font-size: 16px;
  line-height: 1.4;
  display: none;
  padding-bottom: 24px;
}

.autoint-mob .autoint-item .item-desc p {
  margin: 0;
}

/*
#spotlight {
  padding-top: 0;
  padding-bottom: 0;
}*/

.invest-fund-info.ach {
  background: #ffffff !important;
}

.ach-mrg {
  padding-top: 5px !important;
  margin-top: 0 !important;
}