* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

picture {
  max-width: 750px;
}

a {
  display: block;
  text-decoration: none;
}

img, source {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topBody {
  background-color: #278BE7;
  padding: 40px 20px;
}
.topBody__menu {
  display: block;
  margin: 20px auto;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
}

.fixedBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.fixedBtn.hidden {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s, transform 0.5s;
}
.fixedBtn__inner {
  padding: 16px;
  text-align: center;
  background-color: #F09F25;
  position: relative;
}
.fixedBtn__arrowIcon {
  width: 10px;
  position: absolute;
  top: 40px;
  right: 24px;
}
.fixedBtn__text {
  font-weight: 700;
  line-height: 1;
}
.fixedBtn__text--main {
  display: block;
  color: #fff;
  font-size: 20px;
}
.fixedBtn__text--sub {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  margin: 0 auto 0.5em;
  padding: 0.75em 2em 0.5em;
  color: #F09F25;
  background-color: #fff;
  border-radius: 100px;
}
.fixedBtn__text--strong {
  color: #F09F25;
  font-size: 1.3em;
}

.footer {
  width: 100%;
  background-color: #4B6469;
}
.footer__inner {
  padding: 0px 0px 88px;
  text-align: center;
}
.footer__menuLists {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  list-style: none;
  gap: 1.5em;
  padding-top: 40px;
}
.footer__link {
  font-size: 14px;
  color: #fff;
}
.footer__serviceName {
  font-size: 14px;
  padding: 48px 0;
}
.footer__right {
  color: #fff;
  padding: 16px;
  font-size: 14px;
  margin-top: 80px;
  background-color: #222;
}

.ctaSection {
  position: relative;
}
.ctaSection__btn {
  position: absolute;
  top: 85%;
  left: 6%;
  width: 88%;
  padding: 14px 0;
  background-color: #F09F25;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.05);
  border-radius: 100px;
  animation: shake 3s ease-in-out infinite;
  transition: 0.3s;
}
.ctaSection__btn:hover {
  opacity: 0.7;
}
.ctaSection__btnSpan {
  display: block;
  text-align: center;
  line-height: 1;
}
.ctaSection__btnSpan--top {
  color: #F09F25;
  background-color: #fff;
  border-radius: 100px;
  margin: auto;
  margin-bottom: 8px;
  font-size: clamp(12px, 3.5vw, 18px);
  padding: 0.4em 1em;
  width: -moz-fit-content;
  width: fit-content;
}
.ctaSection__btnSpan--bottom {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 4.8vw, 20px);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  6% {
    transform: translateX(-5px);
  }
  12% {
    transform: translateX(5px);
  }
  18% {
    transform: translateX(-5px);
  }
  24% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(0px);
  }
}/*# sourceMappingURL=index.css.map */