@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #111111;
  background-color: #f8f8f8;
  font-family: "Poppins", sans-serif;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.outline-input-field {
  outline: 1px solid rgba(250, 209, 59, 0.462745098);
}

header {
  background: #fff;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo img {
  height: 66px;
  margin: 12px 0;
}
header ul {
  list-style-type: none;
  display: inline-flex;
  text-transform: uppercase;
}
header ul.pri-nav {
  display: inline-flex;
  justify-content: space-between;
  width: 30rem;
  min-width: 35%;
}
header ul.pri-nav a {
  padding: 0px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  height: 90px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
header ul.pri-nav a:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  left: 0;
  bottom: -3px;
  padding: 1.5px;
  background-color: #fad03b;
  transition: all 0.5s ease;
}
header ul.pri-nav a.active {
  color: #bc9e31;
}
header ul.pri-nav a.active:after {
  opacity: 1;
  width: 100%;
}
header ul.pri-nav a:hover {
  color: #fad03b;
}
header ul.pri-nav a:hover:after {
  opacity: 1;
  width: 100%;
}
header ul.sec-nav a {
  min-height: 50px;
  padding: 5px 32px;
  display: inline-flex;
  place-items: center;
}
header ul.sec-nav a.i-will-attend {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  transition: all 0.2s ease-out;
}
header ul.sec-nav a.i-will-attend:hover {
  color: #fad03b;
}
header ul.sec-nav a.register {
  font-size: 13px;
  font-weight: 700;
  background: #444444;
  border-radius: 4px;
  background: #fad03b;
  border: 2px solid #fad03b;
  transition: all 0.2s ease-out;
}
header ul.sec-nav a.register:hover {
  background-color: #111111;
  color: #fff;
  border-color: #111111;
}
header #menuToggleBtn {
  display: none;
}

section.hero {
  height: 40vw;
  position: relative;
}
section.hero .conference-ad {
  background: url("/assets/images/conference-banners/nddssc2023flyer.jpeg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section.hero .conference-ad .darkner-bg {
  background-color: #000;
  opacity: 0.75;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.hero .container {
  display: grid;
  place-content: center;
  height: 100%;
}
section.hero .content {
  color: #fff;
  text-transform: uppercase;
}
section.hero .content .main-heading {
  font-size: 48px;
  line-height: 110%;
  margin-bottom: 24px;
}

section.live-streams {
  padding: 48px 0;
}
section.live-streams .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
section.live-streams .heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
}
section.live-streams .youtube {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.live-streams .youtube .title img {
  height: 31px;
}
section.live-streams .youtube .frame {
  display: grid;
  place-content: center;
  background: #f2f2f2;
  border-radius: 25px;
  height: 39vw;
}
section.live-streams .facebook {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.live-streams .facebook .title img {
  height: 31px;
}
section.live-streams .facebook .frame {
  display: grid;
  place-content: center;
  background: #f2f2f2;
  border-radius: 25px;
  height: 39vw;
}
section.live-streams .telegram {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.live-streams .telegram .title {
  display: flex;
  align-items: center;
}
section.live-streams .telegram .title img {
  height: 48px;
}
section.live-streams .telegram .title span {
  font-weight: 600;
  font-size: 28px;
}
section.live-streams .telegram .frame {
  display: grid;
  place-content: center;
  background: #f2f2f2;
  border-radius: 25px;
  height: 10vw;
}

section.conference-details-bannner {
  display: grid;
  grid-template-columns: auto 55%;
}
section.conference-details-bannner .address-date {
  text-align: center;
  padding: 48px 16px;
  background-color: aqua;
}
section.conference-details-bannner .address-date .venue {
  font-size: 46px;
  font-weight: 700;
}
section.conference-details-bannner .address-date .address {
  font-size: 26px;
  font-weight: 300;
}
section.conference-details-bannner .address-date .date {
  font-size: 28px;
  font-weight: 500;
}
section.conference-details-bannner .countdown {
  display: grid;
  place-items: center;
}
section.conference-details-bannner .countdown .countdown-container {
  text-align: center;
  display: flex;
  width: 90%;
  justify-content: space-between;
}
section.conference-details-bannner .countdown .days .figure, section.conference-details-bannner .countdown .hours .figure, section.conference-details-bannner .countdown .minutes .figure, section.conference-details-bannner .countdown .seconds .figure {
  font-size: 60px;
  font-weight: 600;
}
section.conference-details-bannner .countdown .days .desc, section.conference-details-bannner .countdown .hours .desc, section.conference-details-bannner .countdown .minutes .desc, section.conference-details-bannner .countdown .seconds .desc {
  font-weight: 600;
  display: block;
}
section.conference-details-bannner .countdown .separator {
  font-size: 60px;
  font-weight: 600;
  opacity: 0.5;
}

section.registration {
  color: #fff;
  background-color: #111111;
  padding: 36px 0;
}
section.registration .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.registration p {
  font-size: 24px;
  font-weight: 600;
}
section.registration .c-t-a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 32px;
  border-radius: 4px;
  color: #111111;
  background: #fad03b;
  min-height: 55px;
  display: inline-flex;
  place-items: center;
  border: 2px solid #fad03b;
  transition: all 0.2s ease-out;
}
section.registration .c-t-a:hover {
  color: #fad03b;
  background: none;
  border-color: #fad03b;
}

section.contact {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: #fff;
}
section.contact .right-col {
  padding: 40px 32px;
  max-width: 500px;
}
section.contact .right-col .heading {
  margin-bottom: 20px;
}
section.contact .right-col form {
  width: 100%;
}
section.contact .right-col form input, section.contact .right-col form button, section.contact .right-col form textarea {
  border: none;
  outline: none;
  border-radius: 4px;
}
section.contact .right-col form input:focus, section.contact .right-col form textarea:focus {
  outline: 1px solid #fad03b;
}
section.contact .right-col form label {
  margin-bottom: 8px;
}
section.contact .right-col form .form-group {
  width: 100%;
}
section.contact .right-col form .form-group.name-email {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}
section.contact .right-col form .form-group.name {
  width: calc(50% - 8px);
}
section.contact .right-col form .form-group.name label {
  display: block;
}
section.contact .right-col form .form-group.name input {
  width: 100%;
  background-color: #f5f5f5;
  padding: 8px;
  min-height: 44px;
}
section.contact .right-col form .form-group.email {
  width: calc(50% - 8px);
}
section.contact .right-col form .form-group.email label {
  display: block;
}
section.contact .right-col form .form-group.email input {
  width: 100%;
  background-color: #f5f5f5;
  padding: 8px;
  min-height: 44px;
}
section.contact .right-col form .form-group.subject {
  margin-bottom: 26px;
}
section.contact .right-col form .form-group.subject label {
  display: block;
}
section.contact .right-col form .form-group.subject input {
  width: 100%;
  background-color: #f5f5f5;
  padding: 8px;
  min-height: 44px;
}
section.contact .right-col form .form-group.message {
  margin-bottom: 16px;
}
section.contact .right-col form .form-group.message label {
  display: block;
}
section.contact .right-col form .form-group.message textarea {
  width: 100%;
  background-color: #f5f5f5;
  padding: 8px;
}
section.contact .right-col form .form-group.submit button {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 32px;
  background: #444444;
  border-radius: 4px;
  background: #fad03b;
  min-height: 55px;
  display: inline-flex;
  place-items: center;
  border: 2px solid #fad03b;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}
section.contact .right-col form .form-group.submit button:hover {
  background-color: #111111;
  color: #fff;
  border-color: #111111;
}

footer {
  background: #111111;
}
footer *, footer *:hover {
  text-transform: unset;
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 60px 0;
}
footer .sub-head {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .list {
  color: #bfbfbf;
  display: grid;
  grid-template-columns: 100%;
  gap: 12px;
  margin-left: 10px;
}
footer .list a {
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-out;
}
footer .list a:hover {
  color: #fad03b;
}
footer ul {
  list-style-type: none;
}
footer .sec-1, footer .sec-2, footer .sec-3, footer .sec-4 {
  width: 30%;
}
footer .sec-1 ul {
  margin-bottom: 20px;
}
footer .sec-1 .social-spaces h4 {
  color: #fff;
}
footer .sec-1 .social-spaces ul {
  display: flex;
  margin-left: 10px;
  gap: 16px;
}
footer .sec-1 .social-spaces ul a {
  color: #bfbfbf;
  font-size: 24px;
  transition: all 0.3s ease-out;
}
footer .sec-1 .social-spaces ul a:hover {
  color: #fff;
}
footer .sec-4 form {
  width: 100%;
  margin-bottom: 40px;
}
footer .sec-4 form p {
  font-size: 15px;
  color: #bfbfbf;
  margin-bottom: 24px;
  line-height: 160%;
}
footer .sec-4 form .input-field {
  background-color: #404344;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 6px;
  width: 100%;
}
footer .sec-4 form .input-field input {
  width: 100%;
  padding: 16px;
  background: none;
  font-size: 16px;
  color: #a9a9a9;
  border: none;
  outline: none;
  width: 60%;
  overflow: hidden;
}
footer .sec-4 form .input-field input:focus {
  border: none;
}
footer .sec-4 form .input-field button {
  height: 40px;
  color: #111111;
  background-color: #fad03b;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid #fad03b;
}
footer .sec-4 form .input-field button i {
  font-size: 16px;
  font-weight: 600;
}
footer .sec-4 form .input-field button:hover {
  background: none;
  color: #fad03b;
}
footer .copyright {
  color: #bfbfbf;
  font-size: 15px;
  display: grid;
  place-content: center;
  padding: 16px 0;
  width: 90%;
  margin: auto;
  border-top: 1px solid #404344;
}/*# sourceMappingURL=live-stream.css.map */