.gform_fields input, .gform_fields select, .gform_fields textarea {
    background-color: #fff;
    border: 1px solid #0000001A !important;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px !important;
    line-height: 28px;
    padding: 12px 20px !important;
    color: #787878 !important;
    outline: none !important;
}

.gform_fields textarea {
    height: 150px !important;
    resize: none;
}

.gform_fields input::placeholder,
.gform_fields textarea::placeholder {
  color: #787878 !important;
}

.gfield-choice-input {
    width: 20px;
    height: 20px;
}

.gform-field-label {
    font-size: 16px !important;
    margin-left: 5px;
    color: #787878 !important;
}

.gform_button {
    background: #775E83;
    border-color: #775E83;
    color: #fff;
    padding: 6px 60px 6px 30px;
    border-radius: 100px;
    background-image: url(../images/Arrow-up.svg);
    background-repeat: no-repeat;
    background-position: 106px 12px;
    margin: 0 !important;
}

.gform-footer.gform_footer.top_label {
    justify-content: center;
}

.gform_button:hover {
    background-color: var( --e-global-color-accent );
    border-color:  var( --e-global-color-accent );
}
.gform_fields select {
    --webkit-appearance: none;
    background-image: url(../images/down_arrow.svg);
    appearance: none;
    background-repeat: no-repeat;
    background-position: 96% 50%;
}
.gfield{
	position:relative;
}
.validation_message {
    position: absolute;
    left: 0 !important;
    background-color: transparent !important;
    font-size: 12px !important;
    line-height: 14px !important;
    color: red !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.gform_validation_errors,.gform-loader,.gfield_description.instruction.validation_message{
	display:none !important;
}
.gfield-choice-input{
   vertical-align: top !important;
   margin-top: 5px !important;
}
.contact-wr .gfield {
    grid-column: span 12!important;
}
.contact-wr .gform_fields {
    gap: 30px 0 !important;
}
.gform-footer {
    margin: 0 !important;
    padding: 046px 0 0 0 !important;
}
.contact-wr .gform-footer {
	text-align:left;
}
.contact-wr .gform-footer.gform_footer.top_label {
    justify-content: start !important;
}
a {
    color:var(--e-global-color-text);
    transition: .3s;
}
a:hover{
    color:var(--e-global-color-secondary);
    transition: .3s;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}
.gform_confirmation_message {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main-header.fixed {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    width: 100%;
    animation: slideDown 0.50s ease-out;
    z-index: 9;
    padding: 0;
    background: var(--e-global-color-primary);
}


.main-header.fixed .inner-header-wr {
    background-color: transparent !important;
    border: 0;
    padding: 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
 
    to {
        transform: translateY(0);
    }
}

    .webinar-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.webinar-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 18px 0px #00000014;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.webinar-thumbnail {
  position: relative;
}

.webinar-thumbnail img.main-img {
  width: 100%;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: #055171CC;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse-glow 2s infinite;
  cursor: pointer;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0  rgba(5, 81, 113, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(5, 81, 113, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 81, 113, 0.4);
  }
}


.webinar-title p{
    padding: 15px 20px 20px 20px;
    color: #000;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    min-height: 165px;
}

/* Popup Styles */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-popup.open {
  display: flex;
}
.video-popup-inner {
    position: relative;
    max-width: 840px;
    width: 100%;
    background: var(--e-global-color-secondary);
    border-radius: 10px;
    padding: 6px;
}

.video-popup-close {
    position: absolute;
    top: -13px;
    right: -13px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    z-index: 10;
    background: var(--e-global-color-secondary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 100%;
    transition: 0.3s all;
}
.video-popup-close:hover {
    background: var(--e-global-color-primary);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.title-heading {
    display: flex;
/*    justify-content: space-between;*/
    gap: 40px;
    align-items: center;
    padding-bottom: 50px;
}
.webinar-search-field {
    display: flex;
    position: relative;
    align-items: center;
    max-width: 339px;
    width: 100%;
}
button#webinarSearchBtn {
    position: absolute;
    right: 5px;
    background: var(--e-global-color-primary);
    padding: 0;
    border: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

button#webinarSearchBtn:hover {
    background: var(--e-global-color-secondary);
}

.webinar-search-field-title h2 {
    font-size: 38px;
    line-height: 100%;
}

input#webinarSearch {
    background: #F6F6F6;
    border-radius: 100px;
    border-color: #F6F6F6;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px; 
    padding: 10px 60px 10px 20px;
}

.no-webinar-found {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 60px 0;
}