.country-block-current-item-style3 {
  margin-bottom: 30px;
  min-height: 230px;
}
.country-block-current-item-style3 .inner-box {
  position: relative;
  padding: 15px 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #f2edeb;
  background-color: #fff;
  text-align: center;
  z-index: 0;
  transition: all 300ms ease;
}
.country-block-current-item-style3 .inner-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  height: 0;
  background-color: var(--theme-color1);
  transition: all 300ms ease;
  content: "";
  z-index: -1;
}
.country-block-current-item-style3 .inner-box:hover {
  padding-bottom: 30px;
}
.country-block-current-item-style3 .inner-box:hover:before {
  height: 100%;
}
.country-block-current-item-style3 .inner-box:hover .feature-title,
.country-block-current-item-style3 .inner-box:hover .feature-details {
  color: #fff;
}
.country-block-current-item-style3 .inner-box:hover .read-more {
  opacity: 1;
  transition-delay: 100ms;
}
.country-block-current-item-style3 .inner-box:hover .bg-map {
  height: 100%;
  opacity: 1;
}
.country-block-current-item-style3 .inner-box .bg-map {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 214px;
  background-image: url(../../../images/current-theme/bg-map.png);
  transition: all 300ms ease;
  z-index: -1;
}
.country-block-current-item-style3 .inner-box img {
  position: relative;
  display: block;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #f2edeb;
  margin-bottom: 20px;
  width: auto;
}
.country-block-current-item-style3 .inner-box .feature-title {
  position: relative;
  color: var(--theme-color2);
  margin-top: 0;
  margin-bottom: 5px;
}
.country-block-current-item-style3 .inner-box .feature-title a:hover {
  color: #fff;
}
.country-block-current-item-style3 .inner-box .feature-details {
  position: relative;
  font-size: 15px;
  line-height: 26px;
  transition: all 300ms ease;
}
.country-block-current-item-style3 .inner-box .read-more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  color: #fff;
  background-color: #e20935;
  transition: all 300ms ease;
}