.everland_app{
  margin-top: 18.75rem;
  margin-bottom : 13rem;
}
.everland_app .mobile{
  display: none;
}
.section_name_wrap.align_right{
  text-align: right;
}
.Google_Play_download_button{
  display: inline-block;
  margin-top: 31px;
  width: 520px;
  height: 98px;

  border-radius: 100px;
  border: none;
  background-color: var(--orange);
  font-size: 38px;
  font-weight: bold;
  color: white;

  position: relative;
}
.Google_Play_download_button::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  border-radius: 100px;

  transform: translate(-50%,-50%);

  box-shadow: 0px 0px 5px rgba(244,144,0,1);
  transition: 0.5s;
}
.Google_Play_download_button:hover::before{
  animation-name: button_hover_anim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes button_hover_anim{
  0%{
    width: 100%;
    height: 100%;
  }
  60%{
    width: 110%;
    height: 120%;
    box-shadow: 0px 0px 10px rgba(244,144,0,0);
  }
  90%{
    box-shadow: 0px 0px 0px solid rgba(244,144,0,0);
  }
}

.everland_img_section{
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 2rem;
}
.phone_img_wrap, .smart_line_img_wrap, .map_img_wrap, .order_img_wrap{
  height: 100%;
  margin: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.phone_img_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34.5%;

  position: relative;
}
.phone_img_wrap:before{
  position: absolute;
  z-index: -1;
  width: 0%;
  padding-bottom: 0%;
  border-radius: 0% 50% 50% 0%;
  content: "";
  background-image: url("../img/everlandApp/everlandApp_background.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;

  transition: 2s;
}
  .scrolled .phone_img_wrap:before{
    width: clamp(900px,170%,170%) ;
    padding-bottom: clamp(900px,170%,170%) ;
  }
.phone_text_wrap{
  display: block;
  position: absolute;
  width: 150%;
  top: -4.5%;
  left : 50%;
  text-align: center;

  transform: translate(-50%);
}
.phone_text_wrap>h4{
  font-size: 38px;
  font-weight: bolder;
  color: white;
}
.phone_text_wrap>h4>point2{
  font-size : 48px;
  font-family: 'Montserrat';
  font-weight: 900;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
}
.app_phone_img{
  height: 80%;
}

.smart_line_img_wrap{
  width: 25.5%;
  height: 100%;
}

.map_img_wrap{
  width:  22.5%;
}


.order_img_wrap{
  width: 17.5%;
}

.circle_img_wrap{
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  border : 7px solid white;
}

.circle_img_wrap>img{
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  transition: 0.5s;
}
.circle_img_wrap:hover>img{
  transform: scale(1.2);
}
.smart_line_img_wrap img{
  background-image: url("../img/everlandApp/everlandApp_smarLine.jpg");
  background-size: cover;
}
.map_img_wrap img{
  background-image: url("../img/everlandApp/everlandApp_map.png");
  background-size: cover;
}
.order_img_wrap img{
  background-image: url("../img/everlandApp/everlandApp_order.jpg");
  background-size: cover;
}

.circle_text{
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.5rem;
}
