@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
  --black: #272a31;
  --orange: #ec5242;
  --grey: #d3d3d3;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
  list-style: none;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

/* -----------------------------Hamburgar Icon Starts------------------------------------------------------ */
.hamburger {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 14px;
  left: 14px;
  top: 46px;
  z-index: 99;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* -----------------------------Hamburgar Icon Ends------------------------------------------------------ */

/* -----------------------------Navbar Section Starts---------------------------------------------------- */

#navbar {
  position: fixed;
  width: 100%;
  left: -100%;
  backdrop-filter: blur(5px);
  background-color: #ec534285;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

#navbar.active {
  left: 0;
}

.sub__navbar {
  width: 100%;
  height: 40px;
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #272a31;
}

.socialIcon {
  display: flex;
  gap: 50px;
  margin-left: 20px;
}

.socialIcon a {
  font-size: 25px;
  color: #fff;
}

.program a {
  display: none;
}

.sub__navMenu ul li a {
  color: #fff;
  transition: 0.3s;
}

.main__navMenu ul li a {
  color: #272a31;
  font-weight: 500;
  transition: 0.3s ease;
}

.socialIcon a:hover {
  color: #ec5242;
  transition: 0.3s;
}

.sub__navMenu ul {
  display: flex;
  gap: 30px;
}

.sub__navMenu ul li a:hover {
  color: #ec5242;
}

.main__navbar {
  height: 600px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: #fff;
}

.main__navMenu ul {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.close button,
.more button {
  padding: 20px;
  width: 100%;
  background: #fff;
  border: 2px solid #d3d3d3;
  transition: 0.3s;
}

.main__navMenu ul li button {
  width: 150px;
  height: 50px;
  border: 5px solid #ec5242;
  background: #fff;
  color: #ec5242;
  transition: 0.3s ease-in-out;
}

.more button:hover,
.close button:hover {
  background: var(--black);
  color: var(--grey);
}

.main__navMenu ul li a:hover {
  color: #ec5242;
}

.main__navMenu ul li button:hover {
  color: #fff;
  background: #d3d3d3;
}

/* -----------------------------Navbar Section Ends------------------------------------------------------ */

/* -----------------------------Header Banner Section Start---------------------------------------------- */

.headerBanner {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  gap: 7px;
  background-image: url(../img/1025341.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cross {
  position: absolute;
  top: 14px;
  left: 20px;
  color: #272a31;
  font-size: 40px;
}

.banner {
  margin-top: 20px;
}

.subHeader {
  color: #ec5242;
  font-weight: 500;
  font-size: 20px;
}

.mainHeader {
  font-weight: 800;
  font-size: 33px;
  background-image: url(../img/water.jpeg);
  background-size: contain;
  background-clip: var(--grey);
  -webkit-background-clip: text;
  color: transparent;
}

.headerPara {
  margin-top: 20px;
  padding: 10px;
  background: #d3d3d39a;
  border: 3px solid aliceblue;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.placeNdate {
  padding: 5px;
}

.dateTag {
  font-size: 25px;
  font-weight: 800;
  color: #ec5242;
}

.datePara {
  font-weight: 400;
  font-size: 15px;
  color: #d3d3d3;
}

/* -----------------------------Header Banner Section End--------------------------------------------------- */

/* -----------------------------Program Section Starts--------------------------------------------------------- */

.program {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 20px;
  background: url(../img/pexels-photo-11196384.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.programTitle {
  color: #fff;
  font-size: 25px;
  padding: 20px;
  border-bottom: 1px solid #ec5242;
}

.programList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.programList h4 {
  color: #ec5242;
  font-size: 18px;
}

.programList p {
  color: #d3d3d3;
}

.programCard {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background: #d3d3d32f;
}

.programCard span {
  color: #ec5242;
  font-size: 50px;
}

.frost span {
  color: aqua;
}

.arcane span {
  color: rgb(167, 129, 243);
}

.duel span {
  color: cornflowerblue;
}

.learn span {
  color: #d3d3d3;
}

.programBtn {
  padding: 30px;
  margin: 30px 0;
  font-size: 20px;
  border: none;
  background-image: linear-gradient(to right, #f30, purple, cornflowerblue);
  color: #fff;
  background-size: 200%;
  transition: 0.6s;
}

.programBtn:hover {
  background-position: right;
}

/* -----------------------------Program Section Ends----------------------------------------------------------- */

/* -----------------------------Featured Speaker Section Starts------------------------------------------------ */

#speaker {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.speakerImg {
  border-radius: 0;
  background: #e0e0e0;
  box-shadow:
    -11px 11px 25px #5a5a5a,
    11px -11px 25px #fff;
}

.speakerTitle {
  color: #1a2236;
  font-size: 25px;
  padding: 20px;
  border-bottom: 1px solid #ec5242;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

#speakerCards {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.card {
  display: flex;
  gap: 30px;
  align-items: center;
}

.name {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
}

.work {
  font-size: 14px;
  color: var(--orange);
}

.underline {
  width: 7%;
  margin: 10px 0;
  border-bottom: 1px solid #d3d3d3;
}

.aboutText {
  font-size: 14px;
}

.more {
  margin-bottom: 50px;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.close {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more button span,
.close button span {
  font-size: 18px;
  text-transform: uppercase;
}

.more button i,
.close button i {
  margin-left: 10px;
  font-size: 18px;
  color: var(--orange);
}

/* -----------------------------Featured Speaker Section Starts------------------------------------------------ */

#partner {
  display: none;
}

#copyright {
  display: none;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MEDIA_QUERY_SECTION------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  /* -----------------------NavBar Section Start------------------------------------------------------------ */

  /* -----------------Sub_Nav-------------- */

  #navbar {
    height: 130px;
    position: relative;
    align-items: normal;
    background-color: #eff2fa;
    left: 0;
  }

  .sub__navbar {
    height: 30px;
    padding-right: 300px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 24px;
    background-color: #272a31;
  }

  .socialIcon {
    width: 50px;
    gap: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }

  .socialIcon a {
    font-size: 1rem;
    color: #d3d3d3;
  }

  .sub__navMenu ul {
    width: 207px;
    gap: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .program a {
    display: block;
    line-height: 10;
    text-decoration: underline;
    text-transform: uppercase;
    color: #fff;
    transition: 0.5s;
  }

  .sub__navMenu ul li a {
    color: #d3d3d3;
    font-size: 15px;
  }

  /* -------------Main_Nav-------------- */

  .main__navbar {
    width: 100%;
    height: 100px;
    flex-direction: row;
  }

  .main__navMenu ul {
    height: auto;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  /* -----------------------NavBar Section Ends------------------------------------------------------------ */

  /* -----------------------Header Banner Section Starts--------------------------------------------------- */

  .headerBanner {
    height: 100vh;
    padding-left: 220px;
    gap: 50px;
  }

  .subHeader {
    font-size: 40px;
  }

  .mainHeader {
    width: 60%;
    font-size: 60px;
  }

  .headerPara {
    width: 40%;
  }

  .dateTag {
    font-size: 40px;
  }

  .datePara {
    font-size: 20px;
  }

  /* -----------------------Header Banner Section Ends--------------------------------------------------- */

  /* -----------------------Program Section Starts------------------------------------------------------- */

  .program {
    padding: 0 300px;
  }

  .programList {
    flex-direction: row;
    gap: 5px;
  }

  .programCard {
    flex-direction: column;
  }

  .programBtn {
    display: none;
  }

  .program a:hover {
    color: #ec5242;
  }

  /* -----------------------Program Section Ends--------------------------------------------------------- */

  /* -----------------------Featured Section Starts------------------------------------------------------ */

  .wrapper {
    width: 60%;
  }

  #speakerCards {
    display: grid;
    grid-template-columns: 50% 1fr;
  }

  /* -----------------------Featured Section Ends-------------------------------------------------------- */

  /* -----------------------Partner Section Ends-------------------------------------------------------- */

  #partner {
    background-color: #5a5a5a;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .partnerTitle {
    color: #d3d3d3;
    font-size: 25px;
    font-weight: 300;
    padding-bottom: 20px;
    border-bottom: 2px solid #ec5242;
  }

  .partnerIcons {
    width: 50%;
    display: flex;
    justify-content: space-between;
  }

  .partnerIcons a img {
    width: 100px;
  }

  /* -----------------------Partner Section Ends-------------------------------------------------------- */

  /* -----------------------Copyright Section Start-------------------------------------------------------- */

  #copyright {
    display: block;
    padding: 50px 0;
  }

  .crWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .wowlogo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logoText {
    font-size: 30px;
  }

  .crText {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* -----------------------Copyright Section Start-------------------------------------------------------- */
}
