@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --dark-green: #31493C;
  --black: #001A23;
  --light-green: #7A9E7E;
  --lime-green: #B3EFB2;
  --white: #E8F1F2 ;
  font-family: 'Barlow';
}


h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18.72px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 13.28px;
}

h6 {
  font-size: 10.72px;
}

p{
  font-size: 22px;
  line-height: 40px;
  color: --black;
}

.video-background {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 20px;
}

.image-container {
  position: relative;
  max-width: 80%;
  height: auto;
}

.responsive-image {
 max-height: 600px;
}

.dot {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #D9BA68;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .video-background {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
  }
  .header-img{
    max-height: 600px;
  }
}