@charset "UTF-8";
* {
  box-sizing: border-box;
}

.hero-image {
  background-image: url("main.jpg");
  background-color: #ffffff;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  object-fit:  center;
9

  background-size:100%,100% ;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 10px;
  height: 80px; /* Should be removed. Only for demonstration */
}
.youtube1 {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.res12
 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
