@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  min-height: 100%;
  font-family: "Source Serif 4", serif;
  background-color: #ff3b00;
}

.main-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/main-bg.jpg");
  background-position: center center;
  background-size: cover;
}
@media (min-width: 1300px) {
  .main-bg {
    height: 100%;
  }
}

.insidebg {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-size: cover;
}
@media (min-width: 1300px) {
  .insidebg {
    height: 100%;
  }
}
.insidebg.bg1 {
  background-image: url("../images/bg1.jpg");
}

.mainWrapper {
  position: relative;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 780px) {
  .mainWrapper {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1300px) {
  .mainWrapper {
    height: 100%;
  }
}
.mainWrapper h1 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  list-style: 1;
  padding: 20px 0;
  height: 20vh;
}
.mainWrapper h1 span {
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .mainWrapper h1 {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper h1 {
    height: auto;
    padding: 20px 0;
  }
}
.mainWrapper .bannerSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 40px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}
.mainWrapper .bannerSwiper .swiper-slide {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40vh;
  max-height: 600px;
  display: flex;
  align-items: center;
  border-radius: 50px;
}
@media (max-width: 780px) {
  .mainWrapper .bannerSwiper .swiper-slide {
    height: 30vh;
    border-radius: 15px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .bannerSwiper .swiper-slide {
    height: 300px;
  }
}
.mainWrapper .bannerSwiper .swiper-slide .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainWrapper .keypad {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 780px) {
  .mainWrapper .keypad {
    height: 50vh;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .keypad {
    height: auto;
    padding: 30px 0;
  }
}
.mainWrapper .keypad h2 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  list-style: 1;
  padding: 10px 0;
}
@media (max-width: 780px) {
  .mainWrapper .keypad h2 {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .keypad h2 {
    font-size: 22px;
    padding: 10px 0 30px;
  }
}
.mainWrapper .keypad .grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, auto);
  grid-gap: 30px;
}
.mainWrapper .keypad .grid .mobile {
  display: none;
}
@media (max-width: 780px) {
  .mainWrapper .keypad .grid {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    grid-gap: 15px;
  }
  .mainWrapper .keypad .grid .mobile {
    display: block;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .keypad .grid {
    grid-template-columns: repeat(10, auto);
    grid-gap: 10px;
  }
}
.mainWrapper .keypad .btn {
  position: relative;
  width: 150px;
  height: 150px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 43, 0, 0.3);
  border-radius: 50%;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  touch-action: manipulation;
  transition: all 0.3s;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 780px) {
  .mainWrapper .keypad .btn {
    width: 60px;
    height: 60px;
    font-size: 25px;
    border: 2px solid #fff;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .keypad .btn {
    width: 80px;
    height: 80px;
    font-size: 25px;
    border: 2px solid #fff;
    cursor: pointer;
  }
}
.mainWrapper .keypad .btn:active {
  border-radius: 50%;
  transform: scale(0.95);
}
.mainWrapper .keypad .btn:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  width: 100px;
  height: 100px;
  pointer-events: none;
  transition: transform 0.5s, opacity 1s;
  opacity: 0;
}
.mainWrapper .keypad .btn:active::after {
  transform: scale(2);
  opacity: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.mainWrapper .back {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background-color: #ff3b00;
  padding: 10px 15px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px 0;
  text-decoration: none;
}
@media (max-width: 780px) {
  .mainWrapper .back {
    font-size: 16px;
    margin: 30px 0;
  }
  .mainWrapper .back img {
    width: 20px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .back {
    font-size: 20px;
    margin: 30px 0;
  }
  .mainWrapper .back img {
    width: 24px;
  }
}
.mainWrapper .title {
  position: relative;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.mainWrapper .title .num {
  position: relative;
  width: 95px;
  aspect-ratio: 1/1;
  background-color: #272727;
  color: #ff3b00;
  font-size: 60px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .mainWrapper .title .num {
    width: 40px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .title .num {
    width: 70px;
    font-size: 24px;
  }
  .mainWrapper .title .num img {
    width: 24px;
  }
}
.mainWrapper .title .question {
  position: relative;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
}
@media (max-width: 780px) {
  .mainWrapper .title .question {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .title .question {
    font-size: 40px;
  }
}
.mainWrapper .video {
  position: relative;
  width: 100%;
  aspect-ratio: 4/2;
  overflow: hidden;
  margin-top: 80px;
  border-radius: 30px;
}
.mainWrapper .video iframe {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 780px) {
  .mainWrapper .video {
    margin-top: 40px;
    aspect-ratio: 5/3;
  }
}
@media (min-width: 1300px) {
  .mainWrapper .video {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=style.css.map */