.logo{
    width: 20%;
    transition: background-color 1s ease-in-out;
   
}
.logo-border {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 1px solid white;
    width: 100vw;
}
  
  
header{
    background-image: linear-gradient(rgb(0 0 0 / 63%), rgb(0 0 0 / 70%)), 
    url(bg-img.jpeg);
    height: 35rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 25%;
}

header .container {
  height: 55%;
}

.circle img {
  height: 5em;
}

.map{
    width: 100%;
    height: 400px;
}
.shadow-box{
    border: 1px solid #f4f4f4;
    box-shadow: 0 0 11px 2px #ccc;
    background-color: white;
    height: 15rem;
    transition: transform 0.5s ease;
}
.title span{
    color: #198754;
    font-weight: 700;
    text-transform: uppercase;
}
.icon{
    color: #198754;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
hr{
    color: #198754;
    background-color: #198754;
}
body {
    font-family: 'Montserrat', sans-serif;
  }
  .portfolio-section{
    background-image: linear-gradient(rgb(0 0 0 / 63%), rgb(0 0 0 / 70%)), 
    url(bg-img.jpeg);
    height: 23rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    margin: 0;

}
.navbar{
  background-color: white;
    transition: background-color .5s ease-in-out;
}
.navbar a {
    color: black;
    font-weight: 700;
}
.navbar a:hover{
    color: #198754;
}
.shadow-box:hover{
    transform: scale(1.1);
    border:2px solid #198754;
}
.footer-box:hover{
    transform: scale(1.1);
    border:2px solid #198754;
}
.footer-box{
    transition: transform 0.5s ease;
    background-color: white;
    border: 1px solid #f4f4f4;
    box-shadow: 0 0 11px 2px #ccc;
    height: 15rem;
}

footer a {
  color: #198754;
  text-decoration: none;
}

h4{
    border-bottom: 2px solid #198754;
}
.animate__animated {
    animation-duration: 1s;
    animation-name: slideInLeft;
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0%);
    }
  }
  .animate__slideInUp {
    animation-duration: 1s;
    animation-name: slideInUp;
  }
  
  @keyframes slideInUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0%);
    }
  }
  .red{
    color: red!important;
    cursor: pointer;
  }
  .w-5{
    width: 5%;
  }


  .logo-container {

    position: relative;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%;
  }
  
  .logo-container img {
    position: absolute;
    width: 100px;
    display: block;
    z-index: 999;
  }
  
  .white-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid white;
  }
