.content {
  width: 70%;
  margin: 50px auto;
}

.container {
  margin: 80px 0;
}

#sec-img-5,
#sec-img-4 {
  margin: 10px;
}

.section-3-cols {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

#sec-img-1,
#sec-img-2,
#sec-img-3,
#sec-img-4,
#sec-img-5,
#sec-img-6,
#sec-img-7,
#sec-img-8,
#sec-img-9,
#sec-img-10 {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  margin-right: 40px;
}

#sec-img-1 {
  background-image: url(./sec-photos/Zeeshan\ Ahmad\ Fareed_.jpg);
}

#sec-img-2 {
  background-image: url(./assets/sec-gen.JPG);
}

#sec-img-3 {
  background-image: url(./sec-photos/Rohan\ Nagpal_.jpg);
}

#sec-img-4 {
  background-image: url(./assets/IMG_6185.JPG);
}

#sec-img-10 {
  background-image: url(./assets/IMG_6181.JPG);
}

#sec-img-5 {
  background-image: url(./message-pics/ashok_chauhan.jpeg);

}

#sec-img-6 {
  background-image: url(./message-pics/DrAtulChauhan.jpeg);
}

#sec-img-7 {
  background-image: url(./message-pics/21.jpeg);
}

#sec-img-8 {
  background-image: url(./message-pics/bs.jpg);
}

#sec-img-9 {
  background-image: url(./message-pics/Image.jpeg);
}




.section-col {
  padding: 1px 20px;
  flex-direction: column;
}

h1 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 1.3px;
  margin-bottom: 5px;
  padding: 30px 0px;
}

.justified-content {
  text-align: justify;
}

.header-text {
  text-align: justify;
  display: inline-block;
  position: relative;
  line-height: 30px;
  overflow: hidden;
}

.text {
  text-align: justify;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 0.8s;
  margin: 50px 0px;
}

.form-btn {
  width: 100%;
  height: 200px;
  margin: 10px auto;
  position: relative;
}

.form-btn h2 {
  text-align: center;
  margin: 30px 0;
}

#form-btn {
  /* default */
  all: unset;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 2px solid #000;
  color: #000;
  font-size: 20px;
  border-radius: 5px;
  padding: 0 33px;
  font-weight: bold;
  height: 50px;
  cursor: pointer;
  text-align: center;
  margin: 0;
  text-decoration: none;

  /* custom */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  transition: all 0.5s ease-in-out;
}

#form-btn:hover {
  background: #000;
  color: #fff;
}

.text.reveal {
  animation: revealTextAnimation 0.64s ease forwards;
}
.text:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /*   z-index: 1; */
}
.text.reveal:before {
  background: rgb(58, 58, 180);
  background: linear-gradient(
    90deg,
    rgba(58, 58, 180, 1) 24%,
    rgba(253, 29, 29, 1) 100%,
    rgba(252, 176, 69, 1) 100%
  );
  animation: blockRevealAnimation 0.8s ease forwards;
}

.img {
  position: relative;
  display: block;
  overflow: hidden;
  height: 400px;
}

.img img {
  width: 100%;
  max-height: 100%;
  opacity: 0;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.img.reveal:before {
  background: rgb(58, 58, 180);
  background: linear-gradient(
    90deg,
    rgba(58, 58, 180, 1) 24%,
    rgba(253, 29, 29, 1) 100%,
    rgba(252, 176, 69, 1) 100%
  );
  animation: blockRevealAnimation 0.8s ease forwards;
}

.img.reveal img {
  animation: revealImgAnimation 0.8s ease forwards;
}

@keyframes blockRevealAnimation {
  0% {
    left: -100%;
  }
  40% {
    left: 0;
  }
  60% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes revealTextAnimation {
  0% {
    color: transparent;
  }
  40% {
    color: transparent;
  }
  60% {
    color: #333;
  }
}
@keyframes revealImgAnimation {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 834px) {
  .form-btn h2 {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
  }

  #form-btn {
    /* default */
    all: unset;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 2px solid #000;
    color: #000;
    font-size: 18px;
    border-radius: 5px;
    padding: 12px 27px;
    font-weight: bold;
    height: 25px;
    cursor: pointer;
    text-align: center;
    margin: 0;
    text-decoration: none;

    /* custom */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    transition: all 0.5s ease-in-out;
  }

  .section-3-cols {
    /* padding: 1px 20px; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .section-col {
    padding: 1px 20px;
    /* flex-direction: column; */
  }
}

@media only screen and (max-width: 834px) and (min-width: 639px) {
}

@media only screen and (max-width: 1220px) and (min-width: 835px) {
}

@media only screen and (max-width: 1820px) and (min-width: 1366px) {
}
