
body {
  padding-top: 120px;
}
.brand-logo{
    width: 110px;
}

.lang-button{
    background: transparent;
    color: white;
}

.lang-button-active{
    font-weight: 600;
}

.ul-spacing{
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* language dropdown  */

.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    background: transparent;
    color: #8d8989;
    border: none;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .dropdown-toggle:hover {
    /* background-color: #b6b6b6; */
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px 0;
    display: none;
    width: 100px;
    padding-left: 20px;
  }
  
  .dropdown-menu li {
    background-color: #f9f9f9;
    list-style: none;
    padding-left: 15px;
    padding-top: 5px;
    margin-top: 10px;
  }

  .dropdown-menu li:first-child {
    margin-top: 0px;
  }
  .dropdown-menu li:hover {
    background-color: #e9e2e2;
  }
  
  .dropdown-menu li a {
    color: #333;
    text-decoration: none;
  }
  
  .dropdown-menu li a:hover {
    /* background-color: #f0f0f0; */
  }
  
  .dropdown-menu.show {
    display: block;
  }

  /* language dropdown::end */

  .flex {
    display: flex;
  }
  
  .inline-flex {
    display: inline-flex;
  }

  .justify-start {
    justify-content: flex-start;
  }
  
  .justify-end {
    justify-content: flex-end;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .justify-around {
    justify-content: space-around;
  }

  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-justify {
    text-align: justify;
  }


  .header-wrapper.w-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* Change this based on your design */
    border-bottom: 1px solid #ddd; /* Optional: Adds a bottom border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

.header-wrapper.w-nav.scrolled {
  /* background-color: #f8f8f8; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, .9)
}


.section-7 {
  background: linear-gradient(rgba(249, 252, 255, 0.7), rgba(249, 252, 255, 0.8)), url('../images/map_blue_1.png');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center; 
}

.glassmorphism {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  width: 120px;
  height: auto;
  transition: filter 0.3s; /* add a transition effect to the filter property */
  /* filter: blur(2px);  initial blur effect */
  opacity: 0.5;
}

.brand-logo:hover {
  /* filter: blur(0); remove blur effect on hover */
  cursor: pointer;
  opacity: 1;
  transition: transform .3s;
}

.team-avatar{
  object-fit: cover;
  width: 100%;
  min-width: 16px;
  height: 100%;
  max-height: 455px;
  position: relative;
}
.team-avatar img{
  max-height: 455px;
}


/* team member */
.team-avatar {
  position: relative;
}

.info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(199, 195, 195, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1;
  border-radius: 0px 0px 20px 20px;
}

.team-avatar:hover .info {
  transform: translateY(0);
}
/* team member end */

.blog-first-news{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: rgb(50 133 209 / 79%);
  color: white;
  padding: 20px;
  z-index: 1;
}


.card-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mandatory-input{
  color: #9c2222;
}


.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

#cookieConsent{ background-color:white;text-align:center;display:none;position:fixed;z-index:65000;bottom:0px;width:100%;font-size:14px; }
#cookieConsent button.cookieAccept{ background:#090;color:white;border:none;border-radius:0.2em;margin:0.5em;padding:0.2em 0.5em 0.2em 0.5em;}
.grecaptcha-badge { 
  visibility: hidden;
}