

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --font-poppins: "Poppins", sans-serif;
}
html {
    overflow-x: hidden;
}
body{
    font-family: var(--font-poppins);
    font-size: 14px;
    overflow-x: hidden;
}
.hero-img {
    width: 400px;
}
.cust-badge{
    background-color: #FFF6E7;
    color: rgb(43, 42, 42);
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    font-size: 16px;
}

/* .cust-badge-trans{
    background-color: transparent;
    color: rgb(43, 42, 42);
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    font-size: 16px;
} */


.container{
    max-width: 1480px;
    margin: 0 auto;;
}
.gradient-upside{
    background: linear-gradient(180deg, #FFF6E7 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 136, 0, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 50px;
    border-radius: 10px;
}

.gradient-downside{
    background: linear-gradient(0deg, #FFF6E7 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(360deg, rgba(255, 136, 0, 0.45) 0%, rgba(255, 255, 255, 0) 100%);    
    padding: 50px;
    border-radius: 10px;
}
.newsletter{
    padding: 50px;
}
.bg-news {
    
    background-color: #FEF08A;
    background-image: url("https://app.ezwaynetwork.com/assets/images/newsletter-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-prim{
    background-color: #FF8800;
    color: #ffffff;
}

.cust-b-radius {
    border-radius: 10px; /* Customize the value as needed */
}

.bg-grey{
    background-color: #f8f8f8 !important;
}

/* Animation styles */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .image-animate {
    opacity: 0; /* Start hidden */
    animation: fadeInUp 1s ease forwards;
  }
  


  .navbar-nav {
    border-bottom: 2px solid transparent; /* Initial border color */
}

.nav-item {
    position: relative;
}

.nav-link {
    transition: color 0.3s, border-color 0.3s; /* Smooth transitions */
    font-size: large;
}

.nav-link:after {
    content: '';
  
    display: block;
    height: 2px; /* Height of the border */
    background: transparent; /* Initial color */
    transition: background-color 0.3s, width 0.3s; /* Smooth transitions */
    width: 100%; /* Full width of the link */
    position: absolute;
    left: 0;
    bottom: 0; /* Position at the bottom */
}

.nav-link:hover:after {
    background:  #FF8800; /* Neon green color on hover */
}

.nav-link:hover {
    color:  #FF8800; /* Change link color on hover */
}

.title-underline {
    border: 0;
    height: 2px; /* Adjust height as needed */
    background: #007bff; /* Change to your desired color */
    margin: 0.5rem auto; /* Center it and add space */
    width: 60%; /* Adjust width as needed */
}
.home-top-embed {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.home-top-embed iframe {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 10px;
}

@media only screen and (max-width: 500px) {
    .gradient-upside{
        padding: 10px;
    }
    .home-top-embed iframe {
        height: 188px;
    }
}
@media only screen and (max-width: 400px) {
    .home-main-heading {
        font-size: 22px;
    }
    .main-container {
        padding-inline: 0;
    }
}