.loca_ip_txt {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.loca_ip_txt div {
  width: 240px;
  height: 100px;
  background-color: #fbfbfb;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 35px;
  color: #2a2b32;
}

.loca_ip_txt div p:first-child {
  font-family: Poppins-Medium;
  font-size: 24px;
}

.loca_ip_txt div p:last-child {
  font-size: 16px;
  color: #2a2b32;
}

.loca_regin {
  margin-top: 120px;
  position: relative;
  height: 520px;
  z-index: 1;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.loca_item {
  position: absolute;
}

.loca_div {
  position: absolute;
  display: flex;
  align-items: flex-start;
}

.loca_left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loca_left img {
  width: 20px;
  margin-bottom: 5px;
  opacity: 0;
  transition: all 0.2s;
}

.loca_left .iconfont {
  color: #889599;
  font-size: 36px;
}

.loca_right {
  padding: 20px;
  background-color: #fbfbfb;
  border-radius: 8px;
  border: solid 1px #e2e6ef;
  color: #2a2b32;
  line-height: 24px;
  margin-left: 10px;
  display: none;
  width: max-content;
  z-index: 2;
}

.loca_right p:first-child {
  font-size: 16px;
  font-family: "Poppins-Medium";
}

.loca_right p:last-child {
  font-size: 14px;
}

.active .loca_left img {
  opacity: 1;
}

.active .loca_left .iconfont {
  color: #f66932;
}

.active .loca_right {
  cursor: auto;
  display: block;
  animation: loca_right_ani 0.5s;
}

@keyframes loca_right_ani {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.loca_item_1 {
  background: url(/assets/img/ui/base/locations/north-america.svg) no-repeat;
  background-size: contain;
  width: 405px;
  height: 210px;
  left: 70px;
  top: 34px;
}

.loca_item_1.active {
  background: url(/assets/img/ui/base/locations/north-america-bright.svg) no-repeat;
}

.loca_item_1 .loca_div {
  left: 33%;
  top: -8%;
}

.loca_item_2 {
  background: url(/assets/img/ui/base/locations/south-america.svg) no-repeat;
  background-size: contain;
  width: 135px;
  height: 151px;
  left: 262px;
  top: 260px;
}

.loca_item_2.active {
  background: url(/assets/img/ui/base/locations/south-america-bright.svg) no-repeat;
}

.loca_item_2 .loca_div {
  left: 23%;
  top: -32%;
}

.loca_item_3 {
  background: url(/assets/img/ui/base/locations/europe.svg) no-repeat;
  background-size: contain;
  width: 180px;
  height: 113px;
  left: 475px;
  top: 58px;
}

.loca_item_3.active {
  background: url(/assets/img/ui/base/locations/europe-bright.svg) no-repeat;
}

.loca_item_3 .loca_div {
  left: 30%;
  top: -71%;
}

.loca_item_4 {
  background: url(/assets/img/ui/base/locations/africa.svg) no-repeat;
  background-size: contain;
  width: 200px;
  height: 190px;
  left: 451px;
  top: 176px;
}

.loca_item_4.active {
  background: url(/assets/img/ui/base/locations/africa-bright.svg) no-repeat;
}

.loca_item_4 .loca_div {
  left: 58%;
  top: -11%;
}

.loca_item_5 {
  background: url(/assets/img/ui/base/locations/asia.svg) no-repeat;
  background-size: contain;
  width: 319px;
  height: 251px;
  left: 586px;
  top: 72px;
}

.loca_item_5.active {
  background: url(/assets/img/ui/base/locations/asia-bright.svg) no-repeat;
}

.loca_item_5 .loca_div {
  left: 30%;
  top: -15%;
}

.loca_item_6 {
  background: url(/assets/img/ui/base/locations/oceania.svg) no-repeat;
  background-size: contain;
  width: 120px;
  height: 100px;
  left: 804px;
  top: 322px;
}

.loca_item_6.active {
  background: url(/assets/img/ui/base/locations/oceania-bright.svg) no-repeat;
}

.loca_item_6 .loca_div {
  left: 30%;
  top: -86%;
}

@media only screen and (max-width: 1100px) {
  .loca_ip_txt div {
    width: auto;
    padding: 20px;
  }
}

@media only screen and (max-width: 1000px) {
  .loca_regin {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .loca_ip_txt {
    grid-template-columns: 1fr 1fr;
  }
}
