section#webinaires section {
  margin: 0 0 150px;
}
section#webinaires section > span {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  color: white;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
}
section#webinaires section > span:before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--e-global-color-primary);
}
@media screen and (max-width: 767px) {
  section#webinaires section > span {
    font-size: 25px;
    line-height: 30px;
  }
}
section#webinaires section.coming .webinaire-grid article:first-child {
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  section#webinaires section.coming .webinaire-grid article:first-child {
    grid-column: 1;
  }
}
@media screen and (min-width: 768px) {
  section#webinaires section.coming .webinaire-grid article:first-child div.left {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#webinaires section.coming .webinaire-grid article:first-child div.left {
    flex: 1 0 100%;
  }
}
@media screen and (min-width: 768px) {
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.date {
    top: unset;
    bottom: 30px;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.date span.icon {
    width: 120px;
    height: 120px;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.date span.icon span {
    font-size: 20px;
    line-height: 20px;
    margin-left: -4px;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.date span.icon span:first-child {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: -8px;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.date span.icon:before {
    height: 150px;
    width: 150px;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.left div.img-sizer {
    padding-bottom: 50.65%;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.right {
    flex: 0 0 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#webinaires section.coming .webinaire-grid article:first-child div.right {
    flex: 1 0 100%;
  }
}
@media screen and (min-width: 768px) {
  section#webinaires section.coming .webinaire-grid article:first-child div.right span {
    font-size: 19px;
    display: block;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.right h2 {
    font-size: 38px;
    line-height: 42px;
    max-width: 70%;
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.right p {
    font-size: 25px;
    font-weight: 600;
    color: var(--e-global-color-primary);
  }
  section#webinaires section.coming .webinaire-grid article:first-child div.right a {
    font-size: 21px;
    font-weight: 600;
  }
}
section#webinaires section.coming .webinaire-grid article div.left div.date span.icon {
  background-color: var(--e-global-color-primary);
}
section#webinaires section.coming .webinaire-grid article div.left div.date span.icon:before {
  --color1: rgba(229, 171, 73, 0.4);
  --color2: rgba(229, 171, 73,0.2);
}
section#webinaires div.webinaire-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  section#webinaires div.webinaire-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 20px;
  }
}
section#webinaires div.webinaire-grid article {
  border-radius: 35px;
  background-image: linear-gradient(130deg, rgba(67, 86, 134, 0.4), rgba(23, 31, 52, 0.4));
  border: 1px solid var(--e-global-color-accent);
  padding: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
section#webinaires div.webinaire-grid article div.left {
  position: relative;
  flex: 0 0 40%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  section#webinaires div.webinaire-grid article div.left {
    flex: 1 0 100%;
  }
}
section#webinaires div.webinaire-grid article div.left div.date {
  position: absolute;
  bottom: 15px;
  left: 30px;
  z-index: 1;
}
section#webinaires div.webinaire-grid article div.left div.date span.icon {
  position: relative;
  width: 85px;
  height: 85px;
  display: inline-flex;
  flex-flow: wrap row;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--e-global-color-accent);
  border-radius: 50%;
  z-index: 1;
  gap: 5px;
  color: var(--e-global-color-primary);
}
section#webinaires div.webinaire-grid article div.left div.date span.icon:before {
  --color1: rgba(90, 99, 128, 0.4);
  --color2: rgba(90, 99, 128,0.2);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
  background-color: rgba(90, 99, 128, 0.2);
  transition: 0.3s ease-out;
  transform-origin: top left;
  z-index: -1;
  animation: glow-var 2s ease-out infinite;
}
section#webinaires div.webinaire-grid article div.left div.date span.icon span {
  text-align: center;
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  flex: 1 0 100%;
  line-height: 17px;
  margin-left: -4px;
}
section#webinaires div.webinaire-grid article div.left div.date span.icon span:first-child {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: -4px;
}
section#webinaires div.webinaire-grid article div.left div.img-sizer {
  position: relative;
  padding-bottom: 78%;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s ease-out;
}
section#webinaires div.webinaire-grid article div.left div.img-sizer:hover img {
  transform: scale(1.1);
}
section#webinaires div.webinaire-grid article div.left div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
section#webinaires div.webinaire-grid article div.right {
  flex: 0 0 55%;
}
@media screen and (max-width: 1024px) {
  section#webinaires div.webinaire-grid article div.right {
    flex: 1 0 100%;
    padding: 20px;
  }
}
section#webinaires div.webinaire-grid article div.right span {
  color: var(--e-global-color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
section#webinaires div.webinaire-grid article div.right h2 {
  font-size: 29px;
  line-height: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
section#webinaires div.webinaire-grid article div.right h2:hover {
  color: var(--e-global-color-primary);
}
section#webinaires div.webinaire-grid article div.right p {
  color: var(--e-global-color-primary);
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
}
section#webinaires div.webinaire-grid article div.right a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
section#webinaires div.webinaire-grid article div.right a:hover {
  color: var(--e-global-color-primary);
}
