@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*:after,
*:before {
  border: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  /* font-size: 62.5%; */
}
body {
  background: #F4F8FB;
  font-family: Lato, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  font-family: inherit;
  /* font-size: 2rem; */
  text-decoration: none;
}
/*======================================================
Navbar
======================================================*/
#navbar {
  background: white;
  color: rgb(13, 26, 38);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.25s ease-in;
  /*box-shadow: 0 1px 25px 1px rgb(69 65 78 / 15%); */
}
.scrolled {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-in;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-top-menu {
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
}
/* @media (max-width: 992px) {
.nav-wrapper {
}
} */
.logo a img {
  /* width: 3rem; */
  height: 2rem;
}
#navbar ul {
  list-style: none;
  margin-bottom: unset;
  transition: transform 0.25s ease-in;
}
@media (max-width: 992px) {
  #navbar {
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08); */
  }
  #navbar ul {
    display: none;
  }
}
#navbar li {
  display: inline-block;
  transition: all 0.25s ease-in;
}
#navbar li a {
  display: block;
  margin: 0 1.5rem;
  position: relative;
  transition: all 0.25s ease-in;
}
#navbar li a:hover {
  color: black;
  transition: 0.25s ease-in;
}
#navbar li a:before {
  position: absolute;
  content: "";
  width: 0%;
  left: 0;
  bottom: 0;
  transition: all 0.25s ease-in;
}
#navbar li a:hover:before {
  border-bottom: 1px solid black;
  transition: all 0.25s ease;
  width: 100%;
}
.actions .action-button-login {
  margin-right: 1.5rem;
  color: black;
  background: none;
}
.actions .action-button-register {
  padding: 0.7rem 2rem;
  font-weight: 600;
}
.actions .action-button-register:hover {
  color: white;
}
@media (max-width: 992px) {
  .nav-wrapper .actions {
    display: none;
  }
}
/*======================================================
Mobile Menu Menu Icon
======================================================*/
@media (max-width: 992px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 10%;
    top: 2rem;
    height: 23px;
    width: 27px;
  }
  /* Icon Bars */
  .icon-bars {
    background: blue;
    position: absolute;
    left: 1px;
    top: 45%;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .icon-bars::before {
    background: #F26862;
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }
  .icon-bars::after {
    background: #F26862;
    margin-top: 0px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }
  /* Toggle Menu Icon */
  .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .menuIcon.toggle .icon-bars::before {
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }
  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  /* .menuIcon.toggle .icon-bars.overlay {
  width: 20px;
  opacity: 0;
  -webkit-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
} */
}
/*======================================================
Responsive Mobile Menu
======================================================*/
.overlay-menu {
  background: #fff;
  color: rgb(13, 26, 38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: fixed;
  /* bottom: 0; */
  top: 6rem;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height: calc(100vh - 6rem);
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}
.overlay-menu ul,
.overlay-menu li {
  display: block;
  position: relative;
}
.overlay-menu li a {
  display: block;
  font-size: 2rem;
  margin: 2rem 0;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.overlay-menu li a:hover,
.overlay-menu li a:active {
  color: black;
  transition: 0.25s ease-in;
}
.overlay-menu li a:before {
  position: absolute;
  content: "";
  width: 0%;
  left: 0;
  bottom: 0;
  transition: all 0.25s ease-in;
}
.overlay-menu li a:hover:before {
  border-bottom: 1px solid black;
  transition: all 0.25s ease;
  width: 100%;
}
.primary-button {
  background-color: #4158d0;
  color: white;
  border-radius: 0.5rem;
  font-size: 1rem;
  padding: 1.5rem 2.5rem;
}
.primary-button:hover {
  background-color: #334abd;
  transition: all 0.25s ease-out;
  color: white;
}
.form-button {
  background-color: #4158d0;
  color: white;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  /* padding: 1.5rem 2.5rem; */
  margin-bottom: 1rem;
}
.form-button:hover {
  background-color: #334abd;
  transition: all 0.25s ease-out;
  color: white;
}
/*======================================================
WEBINAR SECTION 
======================================================*/
.webinar {
  margin-top: 8rem;
  font-size: 1.2rem;
}
.webinar .wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}
.webinar .confirm-content {
  display: grid;
  text-align: center;
  gap: 2rem;
}
.webinar .title {
  font-size: 2.2em;
  padding-bottom: 1rem;
  /* line-height: 4rem; */
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #151518;
  font-weight: 800;
}
.webinar .text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .webinar .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .webinar {
    margin-top: 5rem;
  }
  .webinar .wrapper {
    padding: 0 1rem;
  }
  .webinar .title {
    font-size: 2rem;
    padding-bottom: 1rem;
    margin-top: 4em;
  }
  .webinar .text {
    font-size: 1.2rem;
  }
}
/*======================================================
Footer Section
======================================================*/
.footer {
  margin-top: 5rem;
}
.footer__links {
  display: grid;
  gap: 6rem;
  place-items: start;
  grid-template-columns: 1.7fr 1.5fr 1.5fr 1fr;
  margin-bottom: 12rem;
}
.footer__navigation {
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.footer__navigation__text {
  color: #666669;
  font-weight: 500;
  padding-bottom: 1rem;
}
.footer__navigation__title {
  margin-bottom: 4rem;
  color: #273b4a;
  font-size: 1rem;
}
.footer__navigation__link {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  width: 15rem;
  height: 15rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}
.footer__bottom__right {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.body-text {
  font-size: 1rem;
  color: #273b4a;
  font-weight: 400;
}
/* LG */
@media (max-width: 1199.98px) {
}
/* MD */
@media (max-width: 991.98px) {
}
/* SM */
@media (max-width: 767.98px) {
  .footer__links {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
  }
  .footer__logo {
    display: none;
  }
  .footer__navigation__text {
    padding-bottom: 1.5rem;
  }
  .footer__bottom {
    justify-content: center;
  }
  .footer__bottom__right {
    display: none;
  }
}
/* XS */
@media (max-width: 575.98px) {
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-left: 2rem;
  }
  .footer__navigation:nth-child(3) {
    grid-row: span 2;
    margin-inline: auto;
  }
  .footer__navigation__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .footer__navigation__text {
    font-size: 1.3rem;
  }
}
.lead-form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 40px 0 rgb(0 0 0 / 6%);
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* Headline Center */
.headline-center {
  text-align: center;
}
.sub-2 {
  /* font-size: 1.3em; */
  font-weight: 900;
  padding-bottom: 1rem;
}
.speakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
}
.agenda ul,
.agenda li {
  /* list-style-image: url("files/check.png"); */
  line-height: 2.3;
}
@media screen and (max-width:600px){
  .right {
    order:1}
  .left {
    order:2}
}
.form-check-label {
  font-size: 1rem;
}
.btn-calendar {
  border-color: #4158D0;
  vertical-align: middle;
}
.mr-1 {
  margin-right: 5px;
}
.calendars-grid {
  display: flex;
  gap: 1rem;
  justify-items: end;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}