@import url(../fonts/flaticon/flaticon.css);
@import url(../css/revise.css);

.wow {
  visibility: hidden;
}
.wow.animate__animated {
  visibility: visible;
}

/*========================================================
                         基本設定
=========================================================*/

/* 基礎重置 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-image: url("../img/body-bg.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 32px;
  font-size: 1rem;
  color: #111;
  overflow-x: hidden;
}
p {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 24px;
  margin: unset;
}
/* google recaptcha 隱藏 */
.grecaptcha-badge {
  visibility: hidden;
}
.pc {
  display: none;
}
.mb {
  display: block;
}
section {
  min-height: 800px;
}
@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .pc {
    display: block;
  }
  .mb {
    display: none;
  }
  section {
    min-height: unset;
  }
}

/*========================================================
                          nav
=========================================================*/

.navbar {
  padding: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.navbar .navbar-Link {
  display: flex;
  flex-direction: column;
}
.navbar .navbar-Link .btn {
  flex: 1;
  font-size: 1rem;
  color: #fff;
  padding: 20px;
  text-align: center;
  background-color: transparent;
  border-color: transparent;
  transition: all 0.4s;
  box-shadow: 0 0 0;
  text-shadow: 0 0 10px rgba(67, 66, 66, 0.678);
}
.navbar .navbar-Link .btn:hover,
.navbar .navbar-Link .btn:active {
  border-color: transparent;
}
.navbar .navbar-Link .btn:hover i,
.navbar .navbar-Link .btn:active i {
  font-size: 2.2rem;
  transition: all 0.4s;
}
.navbar .navbar-Link .btn i {
  display: block;
  font-size: 1.5rem;
}
.navbar .navbar-Link .btn span {
  display: block;
  font-size: 0.8rem;
}
.navbar.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .navbar {
    box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: auto;
    width: 100%;
    background-color: rgba(252, 252, 252, 0.571);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
  .navbar .navbar-brand {
    display: none;
  }
  .navbar .navbar-Link {
    width: 100%;
    flex-direction: row;
  }
  .navbar .navbar-Link .btn {
    min-width: auto;
    font-size: 14px;
    padding: 10px 0;
    padding-bottom: 14px;
    text-shadow: 0 0 0;
    color: rgb(29 82 149 / 62%);
    border-left: 1px solid rgba(118, 114, 114, 0.1921568627);
  }
  .navbar .navbar-Link .btn:hover,
  .navbar .navbar-Link .btn:active {
    border-color: transparent;
    border-left: 1px solid rgba(118, 114, 114, 0.1921568627);
  }
  .navbar .navbar-Link .btn:hover i,
  .navbar .navbar-Link .btn:active i {
    font-size: 1rem;
  }
  .navbar .navbar-Link .btn i {
    display: block;
    font-size: 1rem;
  }
  .navbar .navbar-Link .btn span {
    display: none;
  }
}

/*========================================================
                          bg
=========================================================*/

.section.has-bg {
  position: relative;
}

.section.has-bg .bg {
  position: absolute;
  inset: 0;
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bg.is-ready {
  opacity: 1;
}
.bg__inner {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg__half {
  flex: 1 1 0;
  display: flex;
  align-items: center;
}
.bg__half--left {
  justify-content: flex-start;
}
.bg__half--right {
  justify-content: flex-end;
}
.bg__grid {
  --cell: 6vw;
  --gap: 15px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-evenly;
  gap: var(--gap);
  box-sizing: border-box;
  width: calc((var(--cell) * 5) + (var(--gap) * 4) + (var(--gap) * 2));
}
.bg__grid--right {
  justify-content: flex-end;
}
.bg__grid .t {
  width: var(--cell);
  height: var(--cell);
  flex: 0 0 var(--cell);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* SVG 來源 */
.bg__grid .t1 {
  background-image: url("../img/c1.svg");
}
.bg__grid .t2 {
  background-image: url("../img/c2.svg");
}
.bg__grid .t3 {
  background-image: url("../img/c3.svg");
}

/* ====== 旋轉動畫 ====== */
@keyframes spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.bg__half--left .t,
#bgLeft .t {
  animation: spin-cw var(--spin, 18s) linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

.bg__half--right .t,
#bgRight .t {
  animation: spin-ccw var(--spin, 18s) linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* 每顆速差 */
.bg .t:nth-child(3n) {
  --spin: 14s;
}
.bg .t:nth-child(3n + 1) {
  --spin: 18s;
}
.bg .t:nth-child(3n + 2) {
  --spin: 22s;
}
.bg .t:nth-child(4n) {
  animation-delay: -2s;
}
.bg .t:nth-child(5n) {
  animation-delay: -5s;
}

@media screen and (min-width: 1500px) {
  .bg__grid {
    --cell: 5.5vw;
    --gap: 20px;
  }
}

@media screen and (max-width: 1024px) and (min-height: 651px) {
  /* 變成上下分區 */
  .bg__inner {
    flex-direction: column;
    justify-content: center; /* 中間留空的核心 */
    align-items: stretch;
  }
  .bg__half {
    flex: 0 0 50%;
    width: 100%;
    align-items: center;
  }
  .bg__half--left {
    justify-content: center;
    align-items: flex-start;
  }
  .bg__half--right {
    justify-content: center;
    align-items: flex-end;
  }
  .bg__grid {
    --cell: 10vw;
    --gap: 12px;
    width: 100%;
    height: calc((var(--cell) * 5) + (var(--gap) * 2) + (var(--gap) * 2));
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
}

@media screen and (max-width: 450px) {
  .bg__grid {
    --cell: 14vw;
  }
}

.bg .t {
  animation-play-state: paused;
}

/* 進入視窗才跑 */
.bg.is-animating .t {
  animation-play-state: running;
}

/*========================================================
                          區塊1
=========================================================*/

.section1 {
  background-image: url("../img/banner-bg.png");
  background-repeat: no-repeat;
  background-position: 75% center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.section1 .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 80%;
}
.section1 .logo-block {
  width: auto;
  height: 45%;
  margin-bottom: 8%;
}
.section1 .text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.section1 p {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
}
.section1 .pgs {
  margin-top: 1%;
  width: 90%;
  height: 100%;
}
.section1 .logo-block img,
.section1 .text-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .section1 .pc {
    display: block;
  }
  .section1 .mb {
    display: none;
  }
  .section1 p {
    font-size: 28px;
    line-height: 36px;
  }
  .section1 .pgs {
    width: 75%;
    max-width: 560px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section1 {
    height: 100vh;
    min-height: unset;
    background-position: center center;
  }
  .section1 .box {
    height: 90%;
  }
  .section1 .logo-block {
    height: 55%;
    margin-bottom: 6%;
  }
  .section1 p {
    font-size: 40px;
    line-height: 56px;
  }
}

@media screen and (min-width: 1500px) {
}

/*========================================================
                          區塊2
=========================================================*/
.section2 {
  background-image: url("../img/s2-bg.png");
  background-repeat: no-repeat;
  background-position: 44% center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: url(../img/overlay-mb.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
.section2 .box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: end;
  color: #fff;
  text-align: end;
  width: 90%;
  height: 90%;
}
.section2 h2 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px rgba(67, 66, 66, 0.678);
}
.section2 p {
  display: block;
  margin: 5% 0;
  text-shadow: 0 0 10px rgba(67, 66, 66, 0.678);
}
.section2 .eng {
  font-size: 13.6px;
}

@media screen and (min-width: 768px) {
  .section2 .box {
    width: 85%;
    height: 80%;
  }
  .section2 h2 {
    font-size: 28px;
  }
  .section2 p {
    font-size: 18px;
    line-height: 28px;
    margin: 5% 0;
  }
  .section2 .eng {
    font-size: 16px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section2 .box {
    width: 80%;
    height: 80%;
  }
  .section2 h2 {
    font-size: 24px;
  }
  .section2 p {
    font-size: 16px;
    line-height: 26px;
  }
  .section2 .eng {
    font-size: 14.4px;
  }
}

@media screen and (min-width: 1500px) {
  .section2 h2 {
    font-size: 26px;
  }
  .section2 p {
    font-size: 18px;
    line-height: 28px;
  }
  .section2 .eng {
    font-size: 16px;
  }
}

/*========================================================
                          區塊3、4
=========================================================*/
.section3,
.section4,
.section5 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section5 {
  min-height: unset;
  height: 100%;
  padding-bottom: 90px;
}
.s3,
.s4,
.s5 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  height: 100%;
}
.s5 {
  justify-content: flex-start;
}
.circle {
  width: 15%;
  margin: 8% 0;
}
.circle img {
  animation: spin-cw var(--spin, 10s) linear infinite;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3 .box,
.s4 .box,
.s5 .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.s3 .pic,
.s5 .pic {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.s3 .pic img,
.s5 .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s3 .pic span,
.s5 .pic span {
  position: absolute;
  right: 3%;
  bottom: 1%;
  font-size: 12px;
  color: #fff;
  text-shadow:
    1px 1px 2px #000,
    1px 1px 2px #000;
}
.s4 .pic {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, max-content));
  gap: 20px;
  position: relative;
}
.s4 .pic::before,
.s4 .pic::after {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background: #919191;
}
.s4 .pic::before {
  top: 0;
  bottom: 0;
  width: 0.5px;
  left: calc(50% - 1px); /* 2px 的中心對齊 */
}
.s4 .pic::after {
  left: 0;
  right: 0;
  height: 0.5px;
  top: calc(50% - 1px);
}
.s4 .fig {
  position: relative;
  z-index: 1;
}
.s4 .fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  display: block;
}
.s3 h2,
.s4 h2,
.s5 h2 {
  color: #0057ae;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1.2px;
}
.s3 p,
.s4 p,
.s5 p {
  color: #373737;
  display: block;
  margin: 5% 0;
}
.s5 p {
  margin: 8% 0;
  text-align: end;
}
.s3 .txt2 p,
.s4 .txt2 p {
  margin: 8% 0 0 0;
}
.s3 .eng,
.s4 .eng {
  color: #b0b0b0;
  margin: 2% 0;
  font-size: 13.6px;
}

@media screen and (min-width: 768px) {
  .section3,
  .section4,
  .section5 {
    height: 100%;
    padding: 5% 0;
  }
  .section5 {
    padding: 5% 0 10% 0;
  }
  .circle {
    width: 12%;
    margin: 4% 0;
  }
  .s3,
  .s4,
  .s5 {
    width: 80%;
  }
  .s3 .box,
  .s4 .box,
  .s5 .box {
    margin: 2.5% 0 5% 0;
  }
  .s3 .pic {
    margin: 5% 0 2.5% 0;
  }
  .s3 h2,
  .s4 h2,
  .s5 h2 {
    font-size: 28px;
  }
  .s3 p,
  .s4 p,
  .s5 p {
    font-size: 18px;
    line-height: 28px;
  }
  .s3 .txt2 p,
  .s4 .txt2 p {
    margin: 4% 0 0 0;
  }
  .s3 .eng,
  .s4 .eng {
    font-size: 16px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section3,
  .section4,
  .section5 {
    height: 100vh;
  }
  .s3,
  .s4 {
    flex-direction: row;
    width: 100%;
    height: 90%;
  }
  .s5 {
    flex-direction: row-reverse;
    width: 100%;
    height: 90%;
  }
  .circle {
    position: relative;
    left: -5%;
  }
  .s3 .box,
  .s4 .box,
  .s5 .box {
    margin: unset;
    padding-left: 5%;
    width: 45%;
    height: 100%;
  }
  .s5 .box {
    justify-content: center;
    padding-left: unset;
    padding-right: 5%;
  }
  .s4 .box {
    width: 40%;
    height: 100%;
  }
  .s3 .pic {
    margin: unset;
    width: 60%;
    height: 100%;
    aspect-ratio: 3 / 2;
  }
  .s4 .pic {
    width: 60%;
    margin-right: 5%;
    grid-template-columns: repeat(2, 1fr); /* ✅ 等寬兩欄 */
    gap: 20px;
  }
  .s5 .pic {
    width: 60%;
    aspect-ratio: 3 / 2;
    margin-left: 5%;
  }
  .s3 h2,
  .s4 h2 {
    font-size: 24px;
  }
  .s3 p,
  .s4 p {
    font-size: 16px;
    line-height: 26px;
  }
  .s3 .eng,
  .s4 .eng {
    font-size: 14.4px;
  }
}

@media screen and (min-width: 1500px) {
  .circle {
    width: 10%;
  }
  .s3 h2,
  .s4 h2 {
    font-size: 26px;
  }
  .s3 p,
  .s4 p {
    font-size: 18px;
    line-height: 28px;
  }
  .s3 .eng,
  .s4 .eng {
    font-size: 16px;
  }
}

/*========================================================
                         form-title
=========================================================*/
.form-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 5% 0;
}
.form-logo {
  width: 70%;
  margin-bottom: 8%;
}
.form-title h4 {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: unset;
}
.line-div {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #fff;
  margin: 2% 0;
}
@media screen and (min-width: 768px) {
  .form-title {
    width: 72%;
  }
  .form-title h4 {
    font-size: 24px;
  }
  .line-div {
    max-width: 421px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .form-title {
    width: 38%;
    margin: 3.5% 0 2% 0;
  }
  .form-title h4 {
    font-size: 28px;
  }
  .line-div {
    max-width: 491px;
  }
}

@media screen and (min-width: 1500px) {
  .form-title {
    width: 35%;
  }
}

/*========================================================
                         預約賞屋
=========================================================*/

input,
select {
  background-color: #eeeeef;
  border-radius: 0;
  color: #036eb6;
  outline-color: #036eb6;
  border: 0;
  padding-left: 15px;
  opacity: 1;
}
input:focus,
select:focus {
  scale: 1.01;
}
input[type="text"],
input[type="phone"],
select {
  height: 45px;
  width: 100%;
}
select {
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 24px auto;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
::placeholder {
  color: #0f81cd !important;
}
:-ms-input-placeholder {
  color: #0f81cd !important;
}
::-ms-input-placeholder {
  color: #0f81cd !important;
}
.reservation {
  background-image: url("../img/banner-bg.png");
  background-repeat: no-repeat;
  background-position: 75% center;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0 100px 0;
}
.reservation .box {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}
#myform {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation .input-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
/* 所有欄位預設一列寬 */
.reservation .input-block input,
.reservation .input-block select {
  flex: 1 1 100%;
}
.reservation .form_check_txt {
  color: #fff;
  font-size: 14.4px;
  margin-left: 3px;
  line-height: 1.8;
}
.reservation .form_check_txt a {
  text-decoration: none;
  color: #fff;
}
.reservation .reg_btn {
  width: 100%;
  background-color: #fff;
  color: #0057ae;
  font-size: 16px;
  font-weight: 400;
  border: none;
  margin-top: 20px;
  padding: 10px 20px;
  line-height: normal;
}
.reservation .reg_disabled {
  cursor: no-drop;
  opacity: 0.9;
}
.reservation .reg_btn:hover {
  background-color: #919191;
  color: #fff;
  opacity: 0.9;
}
.reservation .reg_btn:focus {
  outline: unset;
}
.reservation .reg_disabled:hover {
  background-color: #b0aeae;
  opacity: 0.9;
}
.reservation .msgerror {
  color: #f6dec1;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.input-error {
  border: 2px solid #ee7878 !important;
}
.input-error:focus {
  outline: 0;
  box-shadow: 0 0 10px 3px rgb(149 149 149) !important;
}
.btn-block {
  text-align: center;
}

/* 平板以上：兩欄排版邏輯 */
@media screen and (min-width: 768px) {
  .reservation {
    min-height: 1000px;
  }
  .reservation .input-block .field-group-half {
    flex: 1 1 calc(50% - 7px); /* 兩欄，中間 gap 是14px */
  }

  .reservation .input-block .field-group-full {
    flex: 1 1 100%;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .reservation {
    min-height: unset;
    height: 100vh;
    padding: 60px 0 40px 0;
  }
  .reservation .box {
    display: flex;
    justify-content: center;
    max-width: 650px;
    gap: 5%;
  }
  #myform {
    width: 100%;
  }
  .reservation .form_check_txt {
    font-size: 16px;
  }
}

@media screen and (min-width: 1500px) {
  .reservation .box {
    max-width: 800px;
  }
}

/*========================================================
                         map
=========================================================*/
.map {
  min-height: unset;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
}
.map-block {
  width: 90%;
  height: 450px;
}
.map-text {
  width: 90%;
  margin-top: 3%;
}
.map-text p {
  font-size: 16px;
  line-height: 32px;
}
.map-text p a {
  color: #0057ae;
  font-weight: 600;
  font-size: 18px;
}
.mp1 {
  display: none;
}
.mp2 {
  display: block;
}

@media screen and (min-width: 768px) {
  .map-text {
    text-align: center;
  }
  .map-text p {
    font-size: 18px;
    line-height: 36px;
  }
  .map-text p a {
    font-size: 20px;
  }
  .mp1 {
    display: block;
  }
  .mp2 {
    display: none;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .map {
    height: 100vh;
  }
  .map-block {
    height: 80%;
  }
  .map-text p {
    font-size: 24px;
    line-height: 48px;
  }
  .map-text p a {
    font-size: 26px;
  }
}

/*========================================================
                         location
=========================================================*/
.location,
.transport {
  min-height: 550px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.transport {
  align-items: end;
}
.location-txt,
.transport-txt {
  width: 45%;
  margin: 0 0 10% 3%;
}
.transport-txt {
  margin: 0 3% 10% 0;
}
.location-map,
.transport-map {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .location,
  .transport {
    min-height: unset;
  }
  .location-txt,
  .transport-txt {
    width: 35%;
    margin: 10% 0 10% 3%;
  }
  .transport-txt {
    margin: 10% 3% 10% 0;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .location,
  .transport {
    position: relative;
    height: 100vh;
    flex-direction: row;
    justify-content: end;
    align-items: anchor-center;
  }
  .transport {
    justify-content: start;
  }
  .location-txt,
  .transport-txt {
    position: absolute;
    top: 45%;
    left: 10%;
    width: 18%;
    margin: unset;
  }
  .transport-txt {
    left: auto;
    right: 10%;
  }
  .location-map,
  .transport-map {
    width: 80%;
    height: 90%;
    object-fit: cover;
    overflow: initial;
  }
  .location span,
  .transport span {
    font-size: 11px;
    color: #5b5b5b;
    position: absolute;
    bottom: 10%;
    left: 10%;
  }
  .transport span {
    left: auto;
    right: 10%;
  }
}

/*========================================================
                         隱私權聲明
=========================================================*/

.fancybox-container {
  z-index: 9999999;
}

.modal-body {
  overflow-y: auto;
  padding: 20px;
}

.modal-header {
  border-bottom: none;
}

.modal-body h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-body p span {
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-dialog {
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .modal-body {
    padding: 20px 40px;
  }

  .modal-dialog {
    max-width: 1000px;
  }
}

@media (min-width: 1024px) {
  .modal-body {
    padding: 20px 80px;
  }

  .modal-dialog {
    max-width: 1200px;
    margin-bottom: 0;
  }
}

/*========================================================
                         footer
=========================================================*/

footer {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0057ae;
  color: #fff;
  margin-bottom: 71px;
}

footer p {
  margin: unset;
  font-size: 0.75rem;
}

@media screen and (min-width: 992px) {
  footer {
    height: 50px;
    margin-bottom: unset;
  }
}
