
/** clients-section **/


.clients-section{
  position: relative;
}

.clients-section .clients-logo-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clients-section .clients-logo-list img{
  position: relative;
  display: block;
  max-width: 100%;
  width: auto;
  height: 45px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9 !important;
  transition: all 500ms ease;
  filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1.2) contrast(1.1);
}

.clients-section .clients-logo-list .clients-logo:hover img{
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.dark-home .clients-section .clients-logo-list img{
  opacity: 1;
}

.clients-section.alternat-2{
  background: #F8F8FF;
}

.clients-section .inner-container h3{
  display: block;
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 50px;
}

.clients-section .inner-container h3 span{
  color: var(--theme-color);
}

.clients-section .inner-container .clients-logo img{
  filter: grayscale(0%);
  opacity: 1;
}

.clients-section.home-7 .clients-logo-list img{
  opacity: 0.9 !important;
  filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1.2) contrast(1.1);
}

.clients-section.home-7 .clients-logo-list img:hover{
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}



/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .clients-section .clients-logo-list{
    display: block;
    text-align: center;
  }

  .clients-section .clients-logo-list .clients-logo{
    margin-bottom: 30px;
  }

  .clients-section .clients-logo-list .clients-logo:last-child{
    margin-bottom: 0px;
  }

  .clients-section{
    padding: 40px 0px 70px 0px;
  }
}

@media only screen and (max-width: 599px){

}

/* Force all client logos to be grey - override any other styles */
.clients-section .clients-logo-list .clients-logo img,
.clients-section .clients-logo-list figure img,
.clients-section .clients-logo-list a img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1.2) contrast(1.1) !important;
  opacity: 0.9 !important;
}

.clients-section .clients-logo-list .clients-logo:hover img,
.clients-section .clients-logo-list figure:hover img,
.clients-section .clients-logo-list a:hover img {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

/* Partner info boxes styling */
.partner-info-box {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.partner-info-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.partner-info-box .icon-box {
  margin-bottom: 20px;
}

.partner-info-box h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.partner-info-box p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Partnership benefits styling */
.benefit-item {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.benefit-item .icon-box {
  margin-bottom: 20px;
}

.benefit-item .icon-box i {
  font-size: 40px;
  color: var(--theme-color);
}

.benefit-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Header logo sizing */
.header-lower .logo img,
.sticky-header .logo img,
.mobile-menu .nav-logo img {
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

/* Footer logo sizing */
.footer-logo img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

/* Make paragraph text whiter */
p {
  color: #e0e0e0 !important;
}









































