/*--------------------------------------------------------------
# appointment page css
--------------------------------------------------------------*/

*,
::after,
::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.parent-container {
  overflow: hidden;
  background: url(../img/products/appointment.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.71);
}

.apt-text{
  color: white;
}


.appointment-main-text h1 {
  text-align: center;
  font-size: 50px;
}

.appointment-main-text {
  margin-top: 100px;
  margin-bottom: 50px;
}

.main-box-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.box {
  margin: 2px;
  width: 40vw;
  padding: 30px;
  background-color: rgba(246, 243, 243, 0.582);
  box-shadow: 1px 1px 5px grey;
  border-radius: 8px;
}

.box h1 {
  padding-top: 10px;
}

.box .blue-txt {

  font-weight: 700 !important;
}

.box p {
  text-align: center;
  font-size: 20px;
}

.appointment-main-text .main-box-container .home-page-button {
  align-items: center;
}

.btn-box{
  display: flex;
  justify-content: center;
}

.btn-box .apt-btn {
  background-color: #3889ed;
  border-radius: 5px;
}

.btn-box .apt-btn>a {
  color: white;

}


.btn-box .apt-btn:hover {
  background-color: #00aff0;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  padding: 10px 30px;
  letter-spacing: 2px;
}

@media(max-width:450px) {

  .appointment-main-text h1 {
    text-align: center;
    font-size: 30px;

  }


  .main-box-container {
    display: block;
  }

  .box {
    width: 90vw;
    margin: 5px 0px 5px -5px;
  }
}

/* @media(max-width:376px) {

  .appointment-main-text h1 {
    text-align: center;
    font-size: 30px;

  }


  .main-box-container {
    display: block;
  }

  .box {
    width: 90vw;
    margin: 5px 0px 5px -5px;
  }
} */