@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

body{
    background-color: #e9e3e6;
    font-family: exo;

}
h4 ,h5{
    color: #bc544b;
    padding: 0;
    margin: 0 0 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 25px;
}



header {
  background-color: #e4405f;
  padding: 10px 0;
}

.navbar {
  background-color: #bc544b;
  color: red;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.navbar-brand img {
  width: 40px; /* Adjust the width as needed */
  height: 30px;
  margin-right: 10px;
}
.nav-link {
  color: black; /* Change link color to black */
}

/*********overlay********/
.reviews {
  background-image: url("");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  padding-top: 5em;
  padding-bottom: 5em;
}
.reviews h2 {
  color: #006494;
  font-size: 70px;
  text-align: center;
}
/********************************footer***********************/
.footer-clean {
    padding:50px 0;
    background-color:#007bbb;
    color:black;
  }
  
  .footer-clean h3 {
    margin-top:0;
    margin-bottom:12px;
    font-weight:bold;
    font-size:16px;
  }
  
  .footer-clean ul {
    padding:0;
    list-style:none;
    line-height:1.6;
    font-size:14px;
    margin-bottom:0;
  }
  
  .footer-clean ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
  }

  .footer-clean ul a:hover {
    opacity: 1;
  }
  
  .footer-clean .item.social > a {
    margin-top: 40px;
  }
  
  
  .fa-brands {
    font-size:24px;
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    border:1px solid #ccc;
    margin-left:10px;
    margin-top:22px;
    color:inherit;
    
}
.fa-brands:hover {
    opacity: 0.4;
}

.fa-facebook {
  background: #39569c;
  color: white;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-instagram {
    background:#e4405f;
    color: white;
  } 

  .fa-whatsapp {
    background: #25d366;
    color: white;
  } 
  
.top-social-share {
        display: flex;
       }
       
.footer-clean .copyright {
    margin-top:14px;
    margin-bottom:0;
    font-size:13px;
    opacity:0.6;
  }

  @media (max-width: 991px) {
    .footer-clean .item.social > a {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 768px) {
    .col-md-5,
    .col-md-7 {
      width: 100%;
      padding: 0;
    }
    
    .issuse-wrap img {
      margin-bottom: 20px;
    }
    
    .reviews .cards {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
  
