*{
  margin:0;
  padding:0;
}
/*Containers*/
.container-fluid {
  position: relative;
  padding: 3% 15% 3% 15%;
}

/* Navigation Bar*/

.navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand {
  font-family: 'Playfair Display',
    serif;
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
}

.nav-item {
  padding: 0 18px;
}

.nav-link {
  font-size: 1.2rem;
}

/*Title Section*/

#title h1 {
  font-size: 5rem;
}

#title img {
  width: 50%;
  border-radius: 50% 0 50% 50%;
  position: absolute;
  top: 11rem;
  right: 0rem;
  z-index: -1;
  overflow: hidden;
  
}

#title p {
  font-size: 1.2rem;
}

.white-bg{
  background-color:#fff;
}

.btn {
  padding: 10px 50px;
}

.btn-underline{
  text-decoration: none;
}

.hover-animation {
  transition: .4s ease-in-out transform,
    .4s ease-in-out box-shadow;
  transition: 700ms;
}

.hover-animation:hover {
  transform: translate3d(0px, -5px, 0px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  opacity: 100%;
}

.img-box{
  border: 10px #fff solid;
  
}

/* Feature Section */
#feature{
  position: relative;
  padding-top: 100px;
}
a{
  text-decoration: none;
}
.card{
  border-radius: 15px;
}

.first-card{
  background-color: #0d6efd;
  opacity: 70%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
  rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.sec-card{
  background-color: #000;
  opacity: 70%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
  rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.third-card{
  background-color:#ffc354;
  opacity: 70%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
  rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* Testimonial section */
#testimonial{
  /* position: relative; */
}

.color{
  padding: 100px 0;
  margin: auto -100px;
  background-color: rgb(228, 250, 250);
  border-radius: 20px

}


@media (max-width: 375px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  
}

@media (max-width: 992px) {
  #title img {
    visibility: hidden;
  }
}

