@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --color-primary: #3b97d3;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
}
body {
  /* font-size: 2.4rem; */
  line-height: 1.5;
}
a {
  text-decoration: none !important;
}
h2 {
  font-size: 3.4rem !important;
}
.nav {
  height: 8vh;
  /* background: red; */
}
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  border: none;
  outline: none;
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 10px;
  cursor: pointer;
}
.cta {
  background: #2e2e2e;
  color: #fff;
  transition: all 0.5s ease-in;
}
.cta:hover {
  border: none;
  background: var(--color-primary);
  color: #fff;
}
.small-img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.header {
  position: relative;
  /* height: 50vh; */
}
.background {
  background-image: url("/image/3.png");
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 1;
}

.content {
  position: relative;
  transform: translateY(-3%);
}
.title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 4rem;
}
.subtitle {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}
.name {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.img {
  display: flex;
  justify-content: center;
}
.main-img {
  width: 100%x;
  height: 400px;
  border-radius: 15px;
  margin-bottom: 3rem;
}
p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
  /* color: #2e2e2e; */
}
.grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.one {
  flex: 2;
}
.two {
  flex: 1;
}
.fw-semi {
  font-weight: 600 !important;
  /* color: #2e2e2e; */
}
.container {
  max-width: 1280px !important;
}

.hero {
  margin: 0 auto;
  width: 50vw;
  height: 50vh;
  background-image: url(/image/1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  cursor: pointer;
}
#backvideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
/* @media (min-aspect-ratio: 16/9) {
  #backvideo {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #backvideo {
    width: auto;
    height: 100%;
  }
} */

@media screen and (max-width: 768px) {
  .hero {
    width: 100%;
    height: 30vh;
  }
  .background {
    height: 300px;
    margin-bottom: 1rem;
  }
  .content {
    transform: translateY(0);
  }
  .img {
    /* display: none; */
  }
  .title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.8rem;
  }
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
}
