body {
  margin: 0;
  background-color: white !important;
  cursor: default;
  color: transparent !important;
}
h1,
h2,
h3,
p {
  margin: 0;
  font-family: work-sans, sans-serif;
  font-style: normal;
}

a {
  color: unset !important;
  text-decoration: none !important;
}

.h1-text {
  font-weight: 500;
  font-size: 68px;
  line-height: 60px;
  margin-bottom: 30px;
}

.h2-text {
  font-weight: 500;
  font-size: 44px;
  line-height: 48px;
  margin-bottom: 11px;
}

.h3-text {
  font-weight: 500;
  font-size: 28px;
  line-height: 22px;
  margin-bottom: 11px;
  color: #282762;
}

.text {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #404040;
  margin-bottom: 0;
}

.sub-text {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #999999;
}

.mini-sub-text {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: #404040;
  margin: 0;
}

.coppy-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-blue {
  color: #2f7ca0;
}

.wrapper {
  max-width: 1440px;
  height: 1320px;
  margin: auto;
  position: relative;
}

.bg1 {
  position: absolute;
  background-image: url("bg-layer1.svg");
  top: 320px;
  right: 0;
  width: 85%;
  height: 998px;
  z-index: -5;
  background-size: cover;
}

.bg2 {
  position: absolute;
  background-image: url("bg-layer2.svg");
  bottom: 0;
  width: 100%;
  height: 800px;
  z-index: -4;

  background-size: cover;
}

.road {
  position: absolute;
  bottom: 0;
  z-index: -3;
  left: 501px;
  width: 59%;
  height: 74%;
}

.pin1 {
  width: 50px;
  height: 67px;
  position: absolute;
  left: 695px;
  top: 366px;
  margin: -20px 0 0 -20px;
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1s;
}
.pin1::after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #2f2f2f;
  position: absolute;
}

.pin2 {
  width: 37px;
  height: 49px;
  position: absolute;
  left: 1285px;
  top: 552px;
  margin: -20px 0 0 -20px;
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1.5s;
}
.pin2::after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #2f2f2f;
  position: absolute;
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.pulse1 {
  border: dashed 2px white;
  border-radius: 50%;
  width: 52px;
  height: 22px;
  position: absolute;
  left: 684px;
  top: 387px;
  margin: 11px 0px 0px -12px;
  transform: rotateX(55deg);
  z-index: -2;
}

.pulse2 {
  border: dashed 2px white;
  border-radius: 50%;
  width: 52px;
  height: 22px;
  position: absolute;
  left: 684px;
  top: 387px;
  margin: 11px 0px 0px -12px;
  transform: rotateX(55deg);
  z-index: -2;
}

.row1 {
  padding: 75px 160px 70px 87px;
  display: flex;
  flex-direction: row;
  min-height: 425px;
}

.row1-col1 {
  width: 525px;
  display: flex;
  flex-direction: column;
}

.logo {
  width: 263px;
  height: 59px;
  margin-bottom: 42px;
}

.store {
  display: flex;
  flex-direction: row;
}

.store-icon:nth-child(2) {
  margin-left: 17px;
}

.store-mobile {
  display: none;
}

.row1-col2 {
  padding-left: 120px;
  width: 668px;
  min-height: 424px;
  display: flex;
  flex-direction: column;
}

.images {
  width: 100%;
  height: 100%;
  position: relative;
}

.img1 {
  width: 269px;
  height: 386px;
  position: absolute;
  animation-name: appear1;
  animation-duration: 1.5s;
}

.img2 {
  width: 201px;
  height: 391px;
  position: absolute;
  top: 33px;
  left: 241px;
  animation-name: appear2;
  animation-duration: 2s;
}

@keyframes appear1 {
  0% {
    top: 400px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes appear2 {
  0% {
    top: 433px;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.img3-box {
  position: absolute;
  right: 0;
  top: 0;
}

.img3 {
  width: 156px;
  height: 156px;
  position: absolute;
  right: 8px;
  z-index: 500;
}

.circle {
  display: block;
  height: 156px;
  width: 156px;
  border-radius: 50%;
  background: #9fc2e9;
  opacity: 0.3;
  transition: 5s ease;
  position: absolute;
  right: 8px;
}

.delay1 {
  -webkit-animation: waves 2.5s linear infinite;
  animation: waves 2.5s linear infinite;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay2 {
  -webkit-animation: waves 2.5s linear 0.7s forwards infinite;
  animation: waves 2.5s linear 0.7s forwards infinite;
}

.delay3 {
  -webkit-animation: waves 2.5s linear 1.3s forwards infinite;
  animation: waves 2.5s linear 1.3s forwards infinite;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.row2 {
  padding: 0 160px 150px 0;
  display: flex;
  flex-direction: row;
  min-height: 521px;
}

.row2-col1 {
  width: 568px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.title-mobile {
  display: none;
}

.message-box {
  position: absolute;
  width: 332px;
  height: 74px;
  padding: 8px 22px 29px 21px;
  left: 58px;
  filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.2));
  background: #f9f9f9;
  border-top: 1px solid #dfdfdf;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation-name: appearMessage;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes appearMessage {
  0% {
    bottom: 394px;
    opacity: 0;
  }
  25% {
    bottom: 53px;
    opacity: 1;
  }
  50% {
    bottom: 153px;
  }
  100% {
    bottom: 53px;
  }
}

@keyframes appearMessageMobile {
  0% {
    bottom: 300px;
    opacity: 0;
  }
  25% {
    bottom: 31px;
    opacity: 1;
  }
  50% {
    bottom: 141px;
  }
  100% {
    bottom: 31px;
  }
}

.input-box {
  width: 217px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px 6px 15px;
  border: 1px solid #dfdfdf;
  border-radius: 28px;
}

.img4 {
  width: 267px;
  height: 521px;
  animation-name: appear4;
  animation-duration: 2s;
}

@keyframes appear4 {
  0% {
    margin-right: 200px;
    opacity: 0;
  }
  100% {
    margin-right: 0;
    opacity: 1;
  }
}

.img5 {
  width: 44px;
  height: 24px;
  padding-left: 15px;
}

.img6 {
  width: 13px;
  height: 13px;
}

.row2-col2 {
  padding-left: 83px;
  max-width: 629px;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

.check-box {
  width: 57px;
  height: 41px;
  padding-right: 16px;
  animation-name: appearCheckbox;
  animation-duration: 2s;
}

@keyframes appearCheckbox {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.check-option {
  width: 585px;
  height: 86px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content {
  animation-name: appearContent;
  animation-duration: 2s;
}

@keyframes appearContent {
  0% {
    padding-top: 40px;
    opacity: 0;
  }
  100% {
    padding-top: 0;
    opacity: 1;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 1025px) {
  .pin1 {
    left: 50%;
    top: 19%;
  }
  .pulse1 {
    top: 500px;
    left: 42px;
    width: 22px;
  }
  .pin2 {
    left: 85%;
    top: 699px;
  }
  .pulse2 {
    top: 685px;
    left: 86%;
    width: 22px;
  }
  .road {
    width: 30%;
    left: 0;
    bottom: unset;
    top: 469px;
    height: auto;
  }
  .img3-box {
    position: absolute;
    right: -20%;
    top: 0;
  }
  .img1 {
    left: 12%;
  }

  .img2 {
    top: 24px;
    left: 57%;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .h1-text {
    font-weight: 500;
    font-size: 40px;
    line-height: 39px;
    margin-bottom: 0;
  }

  .h2-text {
    font-weight: 500;
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 11px;
  }

  .h3-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 11px;
  }

  .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
  }

  .sub-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
  }

  .bg1 {
    background-image: url("bg-mobile-layer1.svg");
    width: 100%;
    top: 320px;
    height: 472px;
  }

  .bg2 {
    background-image: url("bg-mobile-layer2.svg");
    top: 400px;
    bottom: unset;
    height: 814px;
  }

  .road {
    width: 70%;
    left: 0;
    bottom: unset;
    top: 469px;
    height: auto;
  }

  .pin1 {
    left: 50%;
    top: 19%;
  }
  .pulse1 {
    top: 500px;
    left: 42px;
    width: 22px;
  }
  .pin2 {
    left: 85%;
    top: 699px;
  }
  .pulse2 {
    top: 685px;
    left: 86%;
    width: 22px;
  }
  .row1 {
    padding: 55px 15px 15px;
    display: flex;
    flex-direction: column;
    min-height: 425px;
  }
  .row1-col1 {
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
  }

  .logo {
    width: 168px;
    height: 37px;
    margin-bottom: 40px;
  }

  .store {
    display: none;
  }

  .store-mobile {
    display: flex;
    flex-direction: column;
  }

  .store-mobile-icon {
    margin-bottom: 20px;
  }

  .row1-col2 {
    padding-left: 0;
    width: 100%;
    min-height: 418px;
    margin-bottom: 0;
  }

  .images {
    width: 100%;
    height: 100%;
  }

  .img1 {
    left: 20%;
  }

  .img2 {
    top: 24px;
    left: 57%;
  }
  .img3-box {
    position: absolute;
    right: 10%;
    top: 0;
  }
  .img3 {
    right: 20px;
  }

  .circle {
    right: 20px;
  }

  .row2 {
    padding: 0 15px;
    flex-direction: column;
    min-height: 521px;
    align-items: center;
  }

  .row2-col1 {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-mobile {
    padding: 15px 0;
    display: block;
    max-width: 281px;
  }

  .message-box {
    left: 260px;
    bottom: 41px;
    animation-name: appearMessageMobile;
  }

  .content {
    font-weight: 500;
    font-size: 68px;
    line-height: 60px;
  }

  .input-box {
    width: 217px;
    height: 23px;
    padding: 3px 10px;
  }

  .custom {
    display: none !important;
  }

  .img5 {
    padding-left: 9px;
  }

  .img6 {
    width: 8px;
    height: 8px;
  }

  .row2-col2 {
    padding-left: 0;
    width: auto;
    padding: 32px 25px 0 30px;
  }

  .check-option {
    width: 100%;
  }

  .coppy-right {
    padding: 0 40px;
    margin: 80px 0;
  }
}

@media only screen and (max-width: 768px) {
  .h1-text {
    font-weight: 500;
    font-size: 40px;
    line-height: 39px;
    margin-bottom: 0;
  }

  .h2-text {
    font-weight: 500;
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 11px;
  }

  .h3-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
  }

  .sub-text {
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
  }

  .mini-sub-text {
    text-align: center;
  }

  .wrapper {
    max-width: 600px;
    height: auto;
  }

  .bg1 {
    background-image: url("bg-mobile-layer1.svg");
    width: 100%;
    top: 320px;
    height: 472px;
  }

  .bg2 {
    background-image: url("bg-mobile-layer2.svg");
    top: 400px;
    bottom: unset;
    height: 814px;
  }

  .road {
    width: 100%;
    left: 0;
    bottom: unset;
    top: 469px;
    height: auto;
  }

  .pin1 {
    left: 50px;
    top: 513px;
    width: 22px;
    height: 30px;
  }
  .pulse1 {
    top: 500px;
    left: 42px;
    width: 22px;
  }

  .pin2 {
    left: 329px;
    top: 699px;
    width: 22px;
    height: 30px;
  }
  .pulse2 {
    top: 685px;
    left: 321px;
    width: 22px;
  }
  .row1 {
    padding: 55px 15px 15px;
    display: flex;
    flex-direction: column;
    min-height: 425px;
  }
  .row1-col1 {
    width: 100%;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
  }

  .logo {
    width: 168px;
    height: 37px;
    margin-bottom: 40px;
  }

  .store {
    display: none;
  }

  .store-mobile {
    display: flex;
    flex-direction: column;
  }

  .store-mobile-icon {
    margin-bottom: 20px;
  }

  .row1-col2 {
    padding-left: 0;
    width: 100%;
    min-height: 280px;
    margin-bottom: 0;
  }

  .images {
    width: 100%;
    height: 100%;
  }

  .img1 {
    width: 177px;
    height: 254px;
    left: 20px;
  }

  .img2 {
    width: 132px;
    height: 258px;
    top: 24px;
    left: 190px;
  }

  .img3 {
    width: 79px;
    height: 79px;
    right: 20px;
    top: 7px;
  }

  .circle {
    height: 79px;
    width: 79px;
    right: 20px;
    top: 7px;
  }

  .row2 {
    padding: 0 15px;
    flex-direction: column;
    min-height: 521px;
  }

  .row2-col1 {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-mobile {
    padding: 25px 0 15px;
    display: block;
    max-width: 281px;
  }

  .message-box {
    width: 208px;
    height: 46px;
    padding: 5px 14px 13px 14px;
    left: 80px;
    bottom: 31px;
    animation-name: appearMessageMobile;
  }

  .content {
    font-weight: 500;
    font-size: 68px;
    line-height: 60px;
  }

  .input-box {
    width: 217px;
    height: 23px;
    padding: 3px 10px;
  }

  .custom {
    display: none !important;
  }

  .img4 {
    width: 168px;
    height: 329px;
  }

  .img5 {
    width: 20px;
    height: 17px;
    padding-left: 9px;
  }

  .img6 {
    width: 8px;
    height: 8px;
  }

  .row2-col2 {
    padding-left: 0;
    width: auto;
    padding: 32px 25px 0 30px;
  }

  .check-option {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 20px;
    height: auto;
  }

  .check-box {
    width: 40px;
    height: 30px;
    padding-right: 10px;
  }

  .coppy-right {
    padding: 0 25px;
    margin: 50px 0 35px;
  }
}

@media only screen and (max-width: 320px) {
  .pin1 {
    left: 50px;
    top: 513px;
  }
  .pulse1 {
    top: 500px;
    left: 42px;
  }

  .pin2 {
    left: 302px;
    top: 699px;
  }
  .pulse2 {
    top: 685px;
    left: 294px;
  }

  .img1 {
    left: 0;
  }

  .img2 {
    top: 24px;
    left: 134px;
  }

  .message-box {
    left: 50px;
  }

  .row2-col2 {
    padding: 35px 0 0;
  }

  .coppy-right {
    margin: 60px 0;
  }
}
