.sec-2 {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.sce-2-div-1 {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.sec-2-btn-div {
  width: 60%;
}

.sec-2-btn {
  border-radius: 0;
  padding: 1rem 5rem;
  background-color: #535353;
  color: white;
  font-weight: 600;
  outline: none;
  border: none;
  cursor: pointer;
}

.sec-2-div-txt-width {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.sec-2-heading-divs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.sec-2-main-head {
  font-size: 40px;
}

.sec-2-secondary-head {
  font-size: 25px;
}

.sce-2-div-2 {
  height: 100%;
  width: 50%;
}

.sec-2-img-div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sec-2-img {
  width: 54%;
  height: auto;
}
@media screen and (min-width: 2400px) {
  .sec-2-img {
    width: 28%;
  }
}
@media screen and (max-width: 2400px) {
  .sec-2-img {
    width: 34%;
  }
}
@media screen and (max-width: 2000px) {
  .sec-2-img {
    width: 40%;
  }
}

.sec-2-para-divs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 884px) {
  .sec-2-secondary-head {
    font-size: 20px;
  }

  .sec-2-btn {
    padding: 1rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .sec-2-secondary-head {
    font-size: 19px;
  }
}

@media screen and (max-width: 540px) {
  .sec-2 {
    flex-direction: column;
    height: auto;
    padding: 2rem 0;
  }

  .sec-2-div-txt-width {
    width: 100%;
  }

  .sec-2-btn-div {
    width: 100%;
  }

  .sce-2-div-1 {
    width: 90%;
  }

  .sce-2-div-2 {
    width: 90%;
  }
}
