/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

.header-nav-main .nav-top-link {
    font-size: 16px;
}

#masthead .header-nav-main.nav-spacing-xlarge > li {
    margin: 0 25px !important;
}

#masthead .header-button a.button.primary {
    background-color: transparent !important;
    color: #070C0E !important;
    border: 1px solid #070C0E !important;
    font-size: 16px !important;
	font-weight: 500;
    border-radius: 99px;
	   padding: 5px 30px !important;

}

#masthead .header-button a.button.primary:hover {
    background-color: #1F1F1F !important;
    color: #fff !important;
}

#top-bar .nav li.html_topbar_left .topbar-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
    color: #070C0E !important;
    text-decoration: none !important;
}

#top-bar .nav li.html_topbar_left .topbar-cta img {
    width: 15px !important;
    height: auto !important;
}

@media (max-width: 849px) {
    #top-bar .nav li.html_topbar_left .topbar-cta {
        font-size: 12px !important;
        gap: 8px !important;
        padding: 8px 10px !important;
    }

    #top-bar .nav li.html_topbar_left .topbar-cta img {
        width: 12px !important;
    }
}
.sec-bg {
    position: relative !important;
}

.sec-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 11, 1) 10%, rgba(11, 11, 11, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.sec-title :is(h1, h2, h3, h4, h5, h6) {
  line-height: 1.1;
}

/* 1. White background, black arrow */
a.btn-white-solid {
    background-color: #ffffff !important;
    color: #070C0E !important;
    border: 1px solid #ffffff !important;
    font-size: 16px !important;
    font-weight: 500;
    border-radius: 99px;
    padding: 10px 25px !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

a.btn-white-solid::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('/wp-content/uploads/2026/02/tb_arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* 2. Transparent background, white border, white arrow */
a.btn-white-outline {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    font-size: 16px !important;
    font-weight: 500;
    border-radius: 99px;
    padding: 10px 25px !important;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

a.btn-white-outline::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('/wp-content/uploads/2026/02/tb_arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

/* Mobile responsive */
@media (max-width: 849px) {
    a.btn-white-solid,
    a.btn-white-outline {
        font-size: 13px !important;
        padding: 10px 20px !important;
        gap: 8px;
    }

    a.btn-white-solid::after,
    a.btn-white-outline::after {
        width: 12px;
        height: 12px;
    }
}

/* =====================================
   Logo Carousel (30% Larger Logos)
   ===================================== */

.logo-carousel {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  margin: 20px auto;
  width: 1350px;
  max-width: 100%;
}

/* Gradient fade edges */
.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Track */
.logo-carousel-wrapper {
  display: flex;
  width: max-content;
}

/* Logo Item */
.logo-item {
  display: flex;
  width: 182px;        /* +30% from 140px */
  margin: 0 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Logo Image */
.logo-item img {
  width: 100%;
  max-height: 130px;   /* +30% from 100px */
  object-fit: contain;
  opacity: 0.4;
}

/* Large screens */
@media (max-width: 1400px) {
  .logo-carousel {
    width: 95%;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .logo-item {
    width: 156px;      /* +30% from 120px */
    margin: 0 26px;
  }

  .logo-item img {
    max-height: 117px; /* +30% */
  }

  .logo-carousel {
    height: 115px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 60px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-item {
    width: 130px;      /* +30% from 100px */
    margin: 0 20px;
  }

  .logo-item img {
    max-height: 91px;  /* +30% */
  }

  .logo-carousel {
    height: 95px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 30px;
  }
}

.img-rd-20 img {
	
	border-radius: 20px;
}