
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

*{
  font-family:  'Montserrat', sans-serif;;
}
.c-border{
  border: 2px solid #871f78;
  border-radius: 10px;
  
}

.c-image-rounded-corners{
  border-radius: 10px 10px 0px 0px;
}

.c-no-border{
  border: none;
}


#backgroundHeader{
  background: url(../assets/images/headerimg.jpg) no-repeat center ;
  background-size: cover;
  /* border-radius: 0 12px 12px 12px; */
  background-position: center top -165px;
  border-radius: 10px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 30vh;
  border: 2px solid #ac3588; 
  border-radius: 0px 0px 20px 20px;
}

.img img{
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  width: auto;
  height: 50%;
  border: 2px solid #ac3588; 
  -o-object-fit: cover;
     object-fit: cover;
     
  border-radius: 50%; /* make the image circular */
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* add a shadow */
          z-index: 2;
}

.logo{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          height: 40%;
}

#contDetails{

   padding: 20px 0px;       
}
.left{
  width: 20%;
  text-align: end;
  margin-right: 10px;
  margin-left: 10px;

}
.right{
  width:80% ;
  text-align: start;
  padding-left: 10px;
}
.right p {
  font-size: 14px;
  font-weight: 600;
  
}
button{
 background: -webkit-gradient(linear, left top, right top, from(rgba(131,47,126,1)), color-stop(31%, rgba(135,46,128,1)), color-stop(85%, rgba(185,57,144,1)));
 background: linear-gradient(90deg, rgba(131,47,126,1) 0%, rgba(135,46,128,1) 31%, rgba(185,57,144,1) 85%);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}