*,
*::after,
*::before {
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}
.logo {
  width: 120px;
}
.logo img {
  display: block;
  max-width: 100%;
}
h2 {
  font-weight: 600;
  font-size: 25px;
}

p.desc {
  max-width: 540px;
  line-height: 1.8;
  font-weight: 500;
  font-size: 13px;
  /* letter-spacing: .5px; */
}

#video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(7, 7, 7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#video-container video {
  width: 510px;
  height: 510px;
  object-fit: cover;
  position: relative;
}

.overlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.out-wrap-content {
  display: block;
  position: relative;
  margin-left: 50px;
  margin-top: 50px;
  z-index: 1;
  color: #ebe7e4;
}
.content-layer {
  position: absolute;
  top: 0;
  width: 100%;
  color: #ebe7e4;
  z-index: 11;
  max-width: 100%;
  padding-left: 48px;
  top: calc(50vh - 130px);
  margin: 0 auto;
  right: 0;
  left: 0;
}
.wrap {
  padding-left: 122px;
}
.download {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.download a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
}
.download img {
  max-width: 100%;
  width: 40px;
}
.bar {
  width: 24px;
  height: 4px;
  background-color: #ebe7e4;
  margin-top: 70px;
  position: relative;
}

p.footer {
  font-size: 12px;
  position: absolute;
  bottom: 0;
}

@media (max-width: 768px) {
  .content-layer {
    padding-left: 5px;
  }
  #video-container video {
    width: 350px;
    height: 350px;
  }
  h2 {
    font-size: 26px;
  }
  .wrap {
    padding-left: 50px;
  }
  p.desc {
    font-size: 9px;
    max-width: 300px;
  }
  .download img {
    width: 30px;
  }
  .bar {
    margin-top: 80px;
    display: none;
  }
  .barForMobile {
    display: block;
    width: 24px;
    height: 4px;
    background-color: #ebe7e4;
    margin-top: 70px;
    position: relative;
  }
  #downloadLink {
    font-size: 14px;
  }
  p.footer {
    font-size: 8px;
  }
}

/* for labtop 1440 */
@media (min-width: 1440px) {
  #video-container video {
    width: 550px;
    height: 550px;
  }
}
/* for 4k screen */
@media (min-width: 2560px) {
  .content-layer {
    padding-left: 122px;
  }
  #video-container video {
    width: 710px;
    height: 710px;
  }
}
