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

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

}
h4{
    color: #bc544b;
    padding: 0;
    margin: 0 0 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 25px;
}
header {
  background-color: #bc544b;
  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 */
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
    color: black;
    font-weight: 600px;
    text-align: center;
  }
  .carousel-caption h1,
  .carousel-caption p {
    color: #fff;
  }
  .carousel-caption a.btn {
    margin-top: 10px;
  }
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 42rem;
    position: relative;
  }
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 42em;
    object-fit: cover;
  }
  .carousel-item img {
    opacity: 0.4; 
    color: #333;/* Adjust the opacity value as desired */
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity value (0.5) to control the darkness */
}

  /************************ About us *******************************************/

  .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col-md-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.message-box {
    margin-bottom: 30px;
}

.message-box h2 {
    font-size: 15px;
    font-weight: 300;
    padding: 0 0 10px;
    margin: 0;
    
    margin-top: 0;
    text-transform: none;
}

.message-box p {
    margin-bottom: 20px;
}

.col-md-6{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    
}
.post-media {
    position: relative;

}
.post-media img {
    width: 100%;
    align-items: center;
    
}
.img-rounded {
    border-radius: 6px;
    justify-content: center !important; 
}

img {
    border: 0;
}

/************************ Team members *******************************************/
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 10px;
  margin: 0;
}

.profile-card {
  position: relative;
  font-family: sans-serif;
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 30px;
  border-radius: 10%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
  margin: 0 25px 25px;
}

.profile-card:hover {
  border-radius: 10px;
  height: 260px;
}

.profile-card .img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: .6s;
  z-index: 99;
}

.img img {
  width: 100%;
  height: 70%;
  border-radius: 10%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
}

.profile-card:hover .img {
  transform: translateY(-60px);
}

.profile-card:hover img {
  border-radius: 10px;
}

.caption {
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: .6s;
}

.profile-card:hover .caption {
  opacity: 1;
}

.caption h3 {
  font-size: 21px;
  font-family: sans-serif;
}

.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}

.caption .social-links a {
  color: #333;
  margin-right: 15px;
  font-size: 21px;
  transition: .6s;
}

.social-links a:hover {
  color: #0c52a1;
}

.see-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0c52a1;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}
.fab{
  border-radius: 50%;
}

/************************ Testimonials *******************************************/
.reviews {
    margin-top: 10em;
    background-image: url("");
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("images/kuplogo.jpg"), linear-gradient(rgba(0, 0, 0, 0.7), 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;
    display: inline-block;
}
.reviews .line {
    height: 3px;
    width: 50px;
    background-color: #006494;
    display: inline-block;
}
.reviews .cards {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    align-items: center;
}
.reviews .card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1em;
    margin: auto;
    width: 10em;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.reviews .card h3 {
    color: #006494;
    font-size: 2em;
    font-weight: bolder;
}
.reviews .card p {
    color: #f5f3f4a8;
}
/************************ News section *******************************************/
.section {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.section-title {
    display: block;
    position: relative;
    margin-bottom: 60px;
    box-sizing: border-box;
}
.text-left {
    text-align: left;
}
.section-title h3 {
    font-weight: bold;
    font-size: 28px;
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
.section-title p {
    font-size: 14px;
    line-height: 25px;
    color: #999;
    font-weight: 400;
    font-size: 18px;
    line-height: 33px;
    margin: 0;
}
.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}
.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col-md-5{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 600px){
  .issuse-wrap2 {
    margin-bottom: 30px;
    
}
}
@media (max-width: 768px){
 .issuse-wrap2 {
    margin-top: 30px;
}
}
.issues-wrap2{
display: block;
position: relative;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.img-responsive, .thumbnail a>img, .thumbnail>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.issuse-wrap2 h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0 20px;
    text-transform: capitalize;
}
.col-md-7{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; 
}
 .issuse-wrap {
    padding: 20px 0;
    display: block;
    position: relative;
    border-bottom: 1px dashed #f44336;
}
.issuse-wrap img {
    max-width: 100px;
    margin: 0 30px 0 0;
    float:  left;
    clear: left;
}

img {
    vertical-align: middle;
}
.issuse-wrap p {
    margin-bottom: 0;
}
h5{
  font-weight: bold;
}

/********************************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));
    }
  }
  