@import url("../universal/global.css");
.first_section {
  height: 554px;
  margin-top: -2px;
  background-color: var(--black);
}
.first_section .first_sec_bg_circ {
  position: absolute;
  top: 49%;
  left: 50%;
  margin-top: -165px;
  margin-left: -165px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 2px solid var(--black_l);
  transition: scale 320ms;
  animation: s_one_spinner_two_ani 120s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
  transform: translateZ(0);
}
.first_section .first_sec_bg_circ .fcbgc_one,
.first_section .first_sec_bg_circ .fcbgc_two,
.first_section .first_sec_bg_circ .fcbgc_three,
.first_section .first_sec_bg_circ .fcbgc_four {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--black_l);
}
.first_section .first_sec_bg_circ .fcbgc_one {
  top: 271px;
  left: 271px;
}
.first_section .first_sec_bg_circ .fcbgc_two {
  top: 271px;
  right: 271px;
}
.first_section .first_sec_bg_circ .fcbgc_three {
  bottom: 271px;
  left: 271px;
}
.first_section .first_sec_bg_circ .fcbgc_four {
  bottom: 271px;
  right: 271px;
}
@keyframes s_one_spinner_two_ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(540deg);
  }
}
.first_section .first_sec_main_text_box {
  position: absolute;
  top: 49%;
  left: 50%;
  margin-top: -139px;
  margin-left: -360px;
  width: 688px;
  height: 278px;
  padding-left: 30px;
  overflow: hidden;
  user-select: none;
}
.first_section .first_sec_main_text_box .first_sec_main_text_box_left_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  border-radius: 5px;
  background-color: var(--blue);
  box-shadow: 0px 0px 10px var(--black);
  z-index: 1;
}
.first_section .first_sec_main_text_box .first_sec_main_text_set_one {
  align-content: center;
  margin-left: -120%;
  color: var(--white_dd);
  font-size: 7.7rem;
  font-weight: 500;
  letter-spacing: -0.1rem;
  text-shadow: 0px 0px 10px var(--black);
}
.first_section .first_sec_main_text_box .first_sec_main_text_set_one .fsmtso_blue {
  color: var(--blue);
}
.first_section .first_sec_main_text_box .first_sec_main_text_set_one__ani {
  margin-left: 0;
  animation: first_sec_main_text_ani 840ms ease-in;
}
@keyframes first_sec_main_text_ani {
  0% {
    margin-left: -120%;
  }
  100% {
    margin-left: 0;
  }
}
.first_section .first_sec_mobile {
  color: white;
}
.first_section .first_sec_down_arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--black_l);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: first_sec_down_arrow_ani 12000ms infinite;
}
@keyframes first_sec_down_arrow_ani {
  0% {
    bottom: 30px;
  }
  6% {
    bottom: 50px;
  }
  12% {
    bottom: 30px;
  }
  100% {
    bottom: 30px;
  }
}

.second_section {
  height: fit-content;
  padding: 0 90px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  gap: 30px;
}
.second_section .second_sec_card {
  width: 30%;
  height: fit-content;
  padding: 0 16px 8px 16px;
}
.second_section .second_sec_card .second_sec_card_icon {
  display: block;
  width: 55px;
  height: 55px;
  margin: 64px auto 36px;
}
.second_section .second_sec_card .second_sec_card_icon svg {
  fill: var(--black_l);
  stroke: var(--black_l);
}
.second_section .second_sec_card .second_sec_card_heading {
  display: block;
  width: 100%;
  height: 45px;
  padding-top: 2px;
  padding-right: 10px;
  text-align: center;
  color: var(--blue_d);
  font-size: 3.1rem;
  font-weight: 500;
  letter-spacing: -0.1rem;
  filter: opacity(99%);
}
.second_section .second_sec_card .second_sec_card_text {
  padding: 22px 0 60px 0;
  color: var(--grey_dd);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01rem;
}

/* -------------- Mobile Display ---------------- */
/* ------------------- Start -------------------- */
@media screen and (max-width: 500px) and (min-width: 200px) {
  .first_section .first_sec_bg_circ {
      animation: none;
    top: 49%;
    left: 50%;
    margin-top: -165px;
    margin-left: -165px;
    width: 330px;
    height: 330px;
  }
  .first_section .first_sec_main_text_box {
    display: none;
  }
  .second_section {
    display: block;
    padding: 10px 46px 40px 46px;
  }
  .second_section .second_sec_card {
    display: block;
    margin: auto;
    width: 100%;
    padding: 0 16px 0px 16px;
  }
  .second_section .second_sec_card .second_sec_card_heading {
    min-height: 45px;
    height: fit-content;
  }
  .second_section .second_sec_card .second_sec_card_text {
    padding: 14px 0 34px 0;
    text-align: center;
  }
}
/* -------------- Mobile Display ---------------- */
/* ------------------- End ---------------------- */
/* - */
/* - */
/* - */
/* - */
/* - */
/* ----------- Tablet Small Display ------------- */
/* ------------------- Start -------------------- */
@media screen and (max-width: 767px) and (min-width: 501px) {
  .first_section .first_sec_bg_circ {
    display: none;
    animation: none;
  }
  .first_section .first_sec_main_text_box {
    display: none;
  }
  .second_section {
    display: block;
    padding: 16px 98px 40px 98px;
  }
  .second_section .second_sec_card {
    display: block;
    margin: auto;
    width: 100%;
    padding: 0 16px 0px 16px;
  }
  .second_section .second_sec_card .second_sec_card_text {
    padding: 14px 0 34px 0;
    text-align: center;
  }
}
/* ----------- Tablet Small Display ------------- */
/* ------------------- End ---------------------- */
/* - */
/* - */
/* - */
/* - */
/* - */
/* ----------- Tablet Large Display ------------- */
/* ------------------- Start -------------------- */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .first_section .first_sec_bg_circ {
    scale: 92%;
  }
  .first_section .first_sec_main_text_box {
    margin-top: -113px;
    margin-left: -284px;
    width: 566px;
    height: 228px;
  }
  .first_section .first_sec_main_text_box .first_sec_main_text_set_one {
    font-size: 6.3rem;
  }
  .first_section .first_sec_mobile {
    display: none;
  }
  .second_section {
    display: block;
    padding: 20px 142px 40px 142px;
  }
  .second_section .second_sec_card {
    display: block;
    margin: auto;
    width: 100%;
    padding: 0 16px 0px 16px;
  }
  .second_section .second_sec_card .second_sec_card_text {
    padding: 14px 0 34px 0;
    text-align: center;
  }
}
/* ----------- Tablet Large Display ------------- */
/* ------------------- End ---------------------- */
/* - */
/* - */
/* - */
/* - */
/* - */
/* ------------- Desktop Display ---------------- */
/* ------------------- Start -------------------- */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  .first_section .first_sec_bg_circ {
    scale: 96%;
  }
  .first_section .first_sec_main_text_box {
    margin-top: -127px;
    margin-left: -329px;
    width: 626px;
    height: 254px;
  }
  .first_section .first_sec_main_text_box .first_sec_main_text_set_one {
    font-size: 7rem;
  }
  .first_section .first_sec_mobile {
    display: none;
  }
  .second_section .second_sec_card .second_sec_card_heading {
    width: 176px;
    height: 74px;
    margin: auto;
  }
}
/* ------------- Desktop Display ---------------- */
/* ------------------- End ---------------------- */
/* - */
/* - */
/* - */
/* - */
/* - */
/* ------------- Larger Displays ---------------- */
/* ------------------- Start -------------------- */
@media screen and (min-width: 1281px) {
  .first_section .first_sec_bg_circ {
    scale: 96%;
  }
  .first_section .first_sec_main_text_box {
    margin-top: -127px;
    margin-left: -329px;
    width: 626px;
    height: 254px;
  }
  .first_section .first_sec_main_text_box .first_sec_main_text_set_one {
    font-size: 7rem;
  }
  .first_section .first_sec_mobile {
    display: none;
  }
}
/* ------------- Larger Displays ---------------- */
/* ------------------- End ---------------------- */

/*# sourceMappingURL=landing.css.map */
