@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #dbecf5;
}

a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.home {
  width: 100vw;
  height: 50vw;
  position: relative;
  margin-bottom: 5vw;
}

.home img {
  width: 100%;
  position: absolute;
}

.home h1 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
  font-size: 4.5vw;
  letter-spacing: 5px;
}

.sub-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 7vw;
  margin-bottom: 2vw;
}

.sub-headings h1,
.sub-headings h2 {
  font-size: 3.5vw;
  font-weight: 300;
  letter-spacing: 5px;
}

.sub-headings h2 {
  color: #f0bd1b;
  font-size: 2.5vw;
  margin-bottom: 0;
}

.sub-headings h1 {
  color: #233956;
  font-weight: 400;
  margin-top: 0;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f9;
  padding: 4vw 2vw;
  /* max-height: 50vw; */
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 880px;
}
.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video h4 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 2.5vw;
  color: #233956;
  letter-spacing: 5px;
}

.video h4 span {
  color: #f0bd1b;
}

.hs-container,
.cf-container {
  background-color: #dbecf5;
}

.hs-main,
.cf-main {
  margin: 6vw 8vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.hs-img,
.cf-img {
  width: 30vw;
}

.hs-img img,
.cf-img img {
  width: 20vw;
  border-radius: 0.5vw;
}

.hs-content,
.cf-content {
  width: 40vw;
  color: #233956;
}

.hs-content img,
.about-us-content img,
.cf-content img {
  height: 1.5vw;
}

.hs-content h1,
.cf-content h1,
.cf-content span {
  font-size: 3vw;
  margin-top: 0;
  margin-bottom: 0;
}

.hs-content p,
.cf-content p {
  font-size: 1.7vw;
  padding-right: 2.5vw;
  font-weight: 300;
}

.button {
  box-sizing: border-box;
  border: 2px solid #dc6f1f;
  border-radius: 0.8vw;
  width: 10vw;
  font-size: 1.5vw;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  padding: 0.5vw 0.5vw;
  letter-spacing: 2px;
}

.button a {
  text-decoration: none;
  color: #233956;
}

.button:hover {
  color: #fff;
  background-color: #dc6f1f;
  transition: ease-in-out 0.3s;
}

.button:hover > a {
  color: #fff;
}

.about-us {
  background-color: #27466f;
  padding: 6vw 8vw;
}

.about-us-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.about-us-content {
  color: #f8f8f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.about-us-content p {
  font-size: 20px;
  letter-spacing: 2px;
  padding: 0 5vw;
  line-height: 1.8;
}

.about-us-content h2 {
  font-size: 35px;
  margin-top: 20px;
}

.flower-img img {
  width: 90%;
}

.hand-img img {
  width: 8vw;
}

.cf-main {
  flex-direction: row-reverse;
}

.cf-img {
  text-align: right;
}

/* media query */
@media screen and (max-width: 769px) {
  .hs-main,
  .cf-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
  }
  .hs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
  }
  .hs-content h1,
  .cf-content h1,
  .cf-content span {
    font-size: 5vw;
  }
  .hs-content p,
  .cf-content p {
    font-size: 15px;
  }
  .button {
    width: 22vw;
    font-size: 15px;
  }
  .about-us {
    padding: 6vw 2vw;
  }
  .about-us-content p {
    padding: 0;
    line-height: 1.4;
    font-size: 18px;
  }
  .cf-img {
    text-align: center;
  }
  .cf-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }
}
