@import url('https://fonts.cdnfonts.com/css/satoshi');

/* RESET CSS */
*{
  margin: 0; 
  padding: 0;
  font-family: 'Satoshi', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* max-width: 1300px; */
  justify-content: center;
  /* display: flex; */
 
}
  
  .og-conf-webinar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .og-conf-webinar-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 94px;
    background-color: #FDD8001A;
    /* background-image: url('../images/hero-bg-image.png'); */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .og-conf-webinar-left {
    padding: 20px;
    flex: 1;
    text-align: left;
  }
  
  .og-conf-webinar-logo {
    max-width: 150px;
  }
  
  .og-conf-webinar-title {
    font-size: 18px;
    font-weight: 800;
    color: #666;
    margin-top: 10px;
  }
  
  .og-conf-webinar-heading {
    font-size: 30px;
    font-weight: 800;
    color: #003f8b;
    margin: 15px 0;
    line-height: 1.5;
  }
  
  .og-conf-webinar-details {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin: 15px 0;
  }
  
  .og-conf-webinar-badge {
    background-color: #ffd300;
    color: #003f8b;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .og-conf-webinar-date {
    font-size: 12px;
    color: #333;
    background-color: #ffff;
    padding: 5px 15px;
    border-radius: 6px;
  }
  
  .og-conf-webinar-buttons {
    margin-top: 20px;
  }
  
  .og-conf-webinar-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
  }
  
  .og-conf-webinar-register {
    background-color: #003f8b;
    color: #ffffff;
    margin-right: 10px;
  }
  
  .og-conf-webinar-visit {
    background-color: #ffffff;
    color: #003f8b;
    border: 2px solid #003f8b;
  }
  
  .og-conf-webinar-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #003f8b; */
  }
  
  .og-conf-webinar-image {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 991px) {
    .og-conf-webinar-content {
      flex-direction: column;
      padding: 5px;
    }
  
    .og-conf-webinar-left, .og-conf-webinar-right {
      flex: none;
      text-align: center;
    }
  
    .og-conf-webinar-buttons button {
      display: block;
      width: 100%;
      margin-bottom: 10px;
    }

    .og-conf-webinar-image {
      display: none;
    }

  }

  @media (max-width: 600px) {
    .og-conf-webinar-content {
        padding: 5px;
    }
  
    .og-conf-webinar-date {
      font-size: 12px;
    }
  
    .og-conf-webinar-image {
      display: none;
    }
  }

  .og-conf-registration-container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .og-conf-registration-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .og-conf-registration-form {
    flex: 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .og-conf-registration-title {
    font-size: 18px;
    font-weight: bold;
    background-color: #ffd300;
    color: #003f8b;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .og-conf-embedded-form {
    margin-bottom: 20px;
  }
  
  .og-conf-register-button {
    display: block;
    width: 100%;
    background-color: #003f8b;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
  }
  
  .og-conf-details {
    flex: 1;
    padding: 20px;
  }

  .og-conf-details-section{
    margin-top: 35px;
    margin-bottom: 95px;
  }
  
  .og-conf-details-title {
    font-size: 24px;
    font-weight: 900;
    color: #003f8b;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .og-conf-details-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .og-conf-details-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  /* .og-conf-learn-list {
    list-style: none;
    padding: 0;
  }
  
  .og-conf-learn-list li {
    font-size: 14px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  } */
  
  /* .og-conf-learn-list li:before {
    content: "●";
    color: #003f8b;
    font-size: 14px;
    margin-right: 10px;
  } */

  /* new list ul */

/* Section Header */
.og-conf-webinar-learn-section h3 {
  font-size: 24px;
  font-weight: 900;
  color: #003f8b;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* List Container */
.og-conf-webinar-learn-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items */
.og-conf-webinar-learn-section li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}

/* Check Icon */
.og-conf-webinar-list-icon {
  font-size: 18px;
  color: #0069b4; /* Blue color for the icon */
  margin-top: 5px;
}

/* List Content */
.og-conf-webinar-list-content {
  flex: 1;
}

.og-conf-webinar-list-content strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.og-conf-webinar-list-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

  
  .og-conf-speakers {
    margin-top: 40px;
    background-color: #e8f0ff;
    padding: 20px;
    border-radius: 10px;
  }
  
  .og-conf-speakers-title {
    font-size: 18px;
    font-weight: bold;
    color: #003f8b;
    margin-bottom: 20px;
  }
  
  .og-conf-speakers-list {
    display: flex;
    gap: 20px;
  }
  
  .og-conf-speaker-card {
    text-align: center;
    flex: 1;
  }
  
  .og-conf-speaker-image {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .og-conf-speaker-name {
    font-size: 16px;
    font-weight: bold;
    color: #003f8b;
  }
  
  .og-conf-speaker-info {
    font-size: 14px;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .og-conf-registration-content {
      flex-direction: column;
    }
  
    .og-conf-speakers-list {
      flex-direction: column;
    }
  }

  /* Countown */

  .og-conf-timer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FDD800;
    padding: 20px;
    border-radius: 10px;
    color: #666;
    height: fit-content;
    position: absolute;
    top: 475px;
    left: 269px;
}
.og-conf-timer-section {
    text-align: center;
    margin: 0 10px;
}
.og-conf-timer-section .og-conf-timer-value {
    font-size: 2em;
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 5px;
}
.og-conf-timer-section .og-conf-timer-label {
    margin-top: 5px;
    font-size: 1em;
}
@media (max-width: 600px) {
    .og-conf-timer-container {
        /* flex-direction: column; */
        position: unset;
        width: -webkit-fill-available;
    }
    .og-conf-timer-section {
        margin: 10px 0;
    }
}

/* logos Brand Section */

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.optimogov-brand-logos-section{
  /* margin-top: 3rem; */
  margin-bottom: 2rem;
  padding: 0 9rem;
  /* padding-top: 2rem; */
  /* background: linear-gradient(180deg, rgba(219, 234, 254, 1) 0%, rgba(255, 255, 255, 1) 87%, rgba(255, 255, 255, 1) 100%); */
}

@media(max-width: 768px) {
  .optimogov-brand-logos-section {
    margin-top: 3rem;        
    padding: 0 2rem;
  }
  
}

.optimogov-brand-logos-section-heading{
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.optimogov-brand-logos-section-heading h1{
  font-size: 25px;
  color: #213D6A;
  margin-bottom: 1rem;
  text-transform: capitalize;
  text-align: center;
  width: 82%;
}

@media (max-width: 1366px) {
  .optimogov-brand-logos-section-heading h1{
      width: 85%;
  }  
}

.optimogov-brand-logos-section-banner-overlay img {
  height: 9rem;
  z-index: 99;
  position: absolute;
  margin-top: 10px;
}


.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 100px;
  margin-right: 4rem;
}

.optimogov-logo-small-desc{
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #463C4B;
}

.optimogov-logo-small-desc p {
  max-width: 800px;    
  margin: 0 auto;
  margin-top: 15px;
}

    /* Footer Section */
    .optimogov-footer-section {
      background-color: #0B2039;
      color: #FFFFFF;
      padding: 40px 20px;
  }

  .optimogov-footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .optimogov-footer-logo img {
      max-width: 50px;
  }

  .optimogov-footer-logo p {
      margin-top: 10px;
      font-size: 14px;
      line-height: 1.6;
      text-align: left;
  }

  @media (max-width: 768px) {
      .optimogov-footer-logo p {
          text-align: center;
      }
  }

  .optimogov-footer-products h4,
  .optimogov-footer-head-office h4,
  .optimogov-footer-branch-office h4,
  .optimogov-footer-links h4 {
      margin-bottom: 10px;
      font-size: 18px;
  }

  .optimogov-footer-products ul {
      list-style: none;
      padding: 0;
  }

      .optimogov-footer-products ul li {
          margin-bottom: 5px;
      }

  .optimogov-footer-links a {
      text-decoration: none;
      color: #FFFFFF;
  }

  .optimogov-footer-social a {
      color: #FFFFFF;
      font-size: 20px;
      margin-right: 10px;
      display: inline-block;
  }

      .optimogov-footer-social a:hover {
          color: #FDD800;
      }

  .optimogov-footer-head-office p,
  .optimogov-footer-branch-office p {
      margin-bottom: 12px;
      font-size: 14px;
      text-align: left;
  }

  @media only screen and (max-width: 768px) {
      .optimogov-footer-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .optimogov-footer-head-office p,
      .optimogov-footer-branch-office p {
          text-align: center;
      }

      .optimogov-footer-logo img {
          margin: 0 auto;
      }

      .optimogov-footer-social {
          margin-top: 20px;
      }
  }


  /* Why Attend */

.og-conf-container {
    background-color: #f0f4f8;
    text-align: center;
    padding: 20px;
}

.og-conf-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.og-conf-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.og-conf-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
}

.og-conf-icon {
    text-align: left;
    margin-bottom: 10px;
}

.og-conf-icon img {
    width: 50px;
    height: 50px;
}

.og-conf-content h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.og-conf-content p {
    font-size: 1em;
    color: #555;
}

@media (max-width: 600px) {
    .og-conf-section {
        width: 100%;
    }
}

/* Agenda */

.og-conf-agenda-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.og-conf-agenda-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.og-conf-agenda-description {
  font-size: 14px;
  margin-bottom: 20px;
}

.og-conf-agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background-color: #e6f0fa;
  margin-bottom: 10px;
  border-radius: 5px;
}

.og-conf-agenda-item:last-child {
  margin-bottom: 0;
}

.og-conf-agenda-time {
  font-size: 18px;
  color: #368DD3;
}

.og-conf-agenda-bar{
  font-size: 50px;
  font-weight: 600;
  color: #368DD3;
  position: absolute;
  right: 25%;
}

.og-conf-agenda-title {
  font-size: 18px;
  margin: 0;
  color: #64648C;
}

@media (max-width: 600px) {
  .og-conf-agenda-item {
      flex-direction: column;
      align-items: flex-start;
  }
  .og-conf-agenda-time {
      margin-top: 5px;
  }
}

/* Register Now Banner */


.og-conf-banner {
  background: linear-gradient(to right, #003366, #66ccff);
  color: white;
  text-align: center;
  padding: 20px;
}

.og-conf-banner h1 {
  font-size: 2em;
  margin: 0;
}

.og-conf-banner h1 span {
  color: #FDD800;
  font-style: italic;
}

.og-conf-banner p {
  margin: 10px 0;
}

.og-conf-banner .og-conf-button {
  background-color: #FDD800;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .og-conf-banner{
    height: 275px;
  }

  .og-conf-aboutus-section{
    height: 75vh !important;}

  .og-conf-agenda-bar{
    display: none;  
  }

  .og-conf-agenda-time {
    /* margin-top: 5px; */
    position: sticky;
    left: 100%;
}

}

@media (max-width: 600px) {
  .og-conf-banner h1 {
      font-size: 1.5em;
  }
  .og-conf-banner .og-conf-button {
      padding: 8px 16px;
  }
}

/* About OG */

.og-conf-aboutus-section {  
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  /* background-color: #f4f4f4; */
}

.og-conf-aboutus-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  /* border-radius: 8px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  max-width: 1200px;
  width: 100%;
}

.og-conf-aboutus-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.og-conf-aboutus-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}

.og-conf-aboutus-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
}

.og-conf-aboutus-text {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}

.og-conf-aboutus-button {
  color: #144692;
  border: 2px solid #144692;
  padding: 10px 20px;
  /* border: none; */
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
}

@media (min-width: 768px) {
  .og-conf-aboutus-content {
      flex-direction: row;
      text-align: left;
  }
  .og-conf-aboutus-image {
      margin-right: 20px;
      margin-bottom: 0;
  }
}



