@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  width: 100%;
  font-family: "Noto Sans TC", "Merriweather", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.eng {
  font-family: "Merriweather";
  font-weight: 700;
  font-style: italic;
}

section {
  padding: 50px 0;
}

.wrapper {
  overflow-x: hidden;
}

nav.navbar {
  padding: 10px 0;
  transition: 0.5s;
}

.navbar.fixed-top.navbar-expand-md.navbar-top {
  border-bottom: 1px solid lightgrey;
}
.navbar.fixed-top.navbar-expand-md.navbar-top a {
  transition: 0.5s;
}
.navbar.fixed-top.navbar-expand-md.navbar-top a:hover {
  color: #df972b;
}

header {
  position: relative;
  text-align: center;
  color: white;
}
header:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(img/swing_dance-color.jpg);
  background-position-x: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  filter: brightness(0.5);
  z-index: -1;
}

.header__container {
  padding: 250px 0;
}
.header__container__title {
  position: relative;
  animation: showUp 1s ease-in 1;
}
.header__container h1 {
  font-size: 56px;
}
.header__container h2 {
  margin-top: 30px;
}
.header__container h4.eng {
  position: relative;
  margin-top: 40px;
  font-weight: 400;
  letter-spacing: 1px;
}

section#section_history {
  padding: 80px 0;
  background-color: gainsboro;
}
section#section_history h2 {
  line-height: 1.5;
}
section#section_history p {
  line-height: 2;
}
section#section_history .img_history img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section#section_history .col-sm-7 {
  display: flex;
  flex-direction: column;
}
.swing-pair {
  position: relative;
}

section#section_definition .img_definition {
  margin-top: -140px;
  min-height: 350px;
  background-image: url(img/swing_dance-oldTimes.jpg);
  background-position: center center;
  background-size: contain;
}

section#section_styles {
  text-align: center;
}
section#section_styles .dance-style:hover {
  transition: all 0.2s linear;
  background-color: #EFEBE5;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
section#section_styles .dance-style:hover img {
  transition: all 0.2s linear;
  transform: scale(1.1);
}
section#section_styles .style_text {
  text-align: justify;
}
section#section_styles .img-wrap {
  -webkit-spect-ratio: 1/1;
  -moz-spect-ratio: 1/1;
  -ms-aspect-ratio: 1/1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
section#section_styles img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#section_styles h3 {
  margin-top: 10px;
}
section#section_styles p {
  line-height: 1.75;
}

section#section_video {
  padding: 0;
}
section#section_video .video {
  background-color: black;
  padding: 20px 0;
}
section#section_video .embed-container {
  position: relative;
  max-width: 100%;
  padding: 200px 0;
}
section#section_video .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section#section_course {
  background-color: #eee;
}
section#section_course .card {
  width: 100%;
}
section#section_course .card-img-cap {
  height: 250px;
  overflow: hidden;
}
section#section_course .card-img-cap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#section_course .card-body {
  padding: 20px;
}
section#section_course .card-body .card-title {
  line-height: 1.5;
  font-size: 24px;
}
section#section_course .card-body .card-text {
  line-height: 2;
  margin-bottom: 10px;
}
section#section_course .card-body .btn-sign-up {
  display: block;
  color: black;
  padding: 8px 12px;
  border-radius: 6px;
  color: white;
  background-color: #df972b;
  text-align: center;
}

footer {
  position: relative;
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(img/swing-dance-party.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(0.5);
  z-index: -1;
}
footer .container.footer {
  color: white;
  padding: 120px 0;
}
footer input.form-control {
  background-color: rgba(255, 255, 255, 0.5);
  max-width: 350px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: auto;
}
footer input.form-control:focus {
  border: 2px solid #df972b;
}
footer button {
  margin-top: 20px;
}
footer a {
  color: white;
}
footer a:hover {
  color: #df972b;
  transition-duration: 0.2s;
}
footer .footer_item-title {
  color: #df972b;
}/*# sourceMappingURL=style.css.map */