@import url("https://fonts.googleapis.com/css2?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&display=swap");
:root {
  --primary-color: #004162;
  --secondary-color: #3499cc;
  --tertiary-color: #ffd700;
  --white-color: #fff;
  --black-color: #000;

  --text-color: #212627;

  --dark-gray: #7a7f85;

  --dark-color: #333;
  --light-color: #f7f7f7;

  --danger-color: #dc3545;
  --success-color: #2845a7;
  --warning-color: #ffc107;

  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-color: #dbdbdb;
  --border-radius-30: 30px;

  --bg-color: #f8f8ff;

  --border-color: #c6cbd2;
  --bg-gradient: linear-gradient(180deg, #e8f3ff 0%, #eaeaff 100%);

  --transition: all 0.3s linear;
  --transition-slow-1: all 1s linear;
  --transition-slow-2: all 2s linear;

  --cont-width: 1320px;

  --box-shadow: 0px 0px 0px 0px rgba(33, 39, 38, 0.05),
    2px 2px 6px 0px rgba(33, 39, 38, 0.05),
    7px 7px 10px 0px rgba(33, 39, 38, 0.04),
    16px 16px 14px 0px rgba(33, 39, 38, 0.03),
    29px 29px 16px 0px rgba(33, 39, 38, 0.01),
    45px 45px 18px 0px rgba(33, 39, 38, 0) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* list-style: none; */
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
  transition: var(--transition);
  cursor: pointer;
  width: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-color);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
}
/* Navbar */
header {
  padding: 10px 0;
  width: 100%;
  z-index: 1000;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--cont-width);
  height: 100%;
}

header nav .left,
header nav .right {
  height: 100%;
  display: flex;
  align-items: center;
}

header nav .left a {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

header nav .left a span {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
}

header nav .left a span.gray {
  color: var(--dark-gray);

}

header nav .right {
  column-gap: 24px;
}

header nav .right a {
  color: var(--text-color);
  font-size: 21px;
  font-weight: 500;
  transition: var(--transition);
}

header nav .right a:hover {
  color: var(--primary-color);
}


/* Hamburger */
.hamburger{
  display: none;
  cursor: pointer;
  z-index: 1000;
}
.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: var(--primary-color);
  border-radius: 2px;
  
}



/* Back to Top */

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

#back-to-top:hover {
  background-color: var(--dark-color);
  transform: translate(0, -5px);
}

#back-to-top svg {
  width: 25px;
  height: 25px;
  fill: var(--white-color);
}
/* Main */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
section {
  position: relative;
  padding-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section .cont {
  width: 100%;
  max-width: var(--cont-width);
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

section .cont .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

section .cont h2 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
section .cont h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  border-radius: 2px;
  transform: translateY(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(270deg, #d0d0ff 8.01%, #004162 100%);
}

section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
}

/* Home */
#home {
  padding-top: 0;
}
#home .cont {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-gradient);
  padding: 30px;
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow);
  min-height: 500px;
}

#home .cont .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

#home .cont .content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin: 0;
}
#home .cont .content h2{
  margin: 0;
  padding: 0;
  font-size: 25px;
}
#home .cont .content h2::before{
  display: none;
}

#home .cont .content p {
  font-size: 18px;
  color: var(--dark-color);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
#home .cont .content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#home .cont .content ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 600;
}
#home .cont .content ul li .ico {
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .cont .content ul li .ico svg {
  width: 15px;
  height: 15px;
  fill: var(--danger-color);
}

#home .cont .content ul li span,
#home .cont .content ul li span sup {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

#home .cont .content a {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--border-radius-30);
  transition: var(--transition);
}

#home .cont .content a:hover {
  background-color: var(--dark-color);
}

#home .cont .image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home .cont .image img {
  max-height: 500px;
  animation: updown 5s ease-in-out infinite;
}

@keyframes updown {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}

/* About */
#about {
  padding-bottom: 40px;
}
#about .cont {
  row-gap: 10px;
}
#about .cont > .content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#about .cont .content .left {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: flex-start;
  justify-content: center;
}
#about .cont .content .left p, #about .cont .content .left ul li{
  font-size: 16px;
  color: var(--dark-color);
  line-height: 1.6;
  
}
#about .cont .content .left ul{
  list-style: disc !important;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


#about .cont .content .right {
  min-width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .cont .content .right .about-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#about .cont .content .right .about-logo img {
  max-height: 300px;
  transition: var(--transition-slow-1);
}
#about .cont .content .right .about-logo img:hover {
  transform: scale(1.05);
}

section .cont .skcard {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

section .cont .skcard h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
  text-align: center;
  margin: 0;
}

section .cont .skcard .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
section .cont .skcard .content .sk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: calc(25% - 60px / 4); */
  background: var(--bg-gradient);
  max-height: 200px;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow);
  padding: 20px;
}

section .cont .skcard .content .sk .logo {
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section .cont .skcard .content .sk .logo img {
  max-height: 100%;
  transition: var(--transition-slow-1);
}

section .cont .skcard .content .sk .logo img:hover {
  transform: scale(1.05);
}

section .cont .skcard .content .sk .name {
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Why Join */

#why-join {
  padding-top: 70px;
  padding-bottom: 30px;
  background-image: url("../img/bg1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#why-join .overlay {
  background-color: #4659;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#why-join .cont h2 {
  color: var(--white-color);
}

#why-join .cont .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--cont-width);
  height: 100%;
}

#why-join .cont .content .whyjoincard {
  width: calc(100% / 3 - 40px / 3);
  background: var(--bg-gradient);
  /* border: 1px solid var(--white-color); */
  /* background-color: #01704b66; */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 300px;
}

#why-join .cont .content .whyjoincard .icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--primary-color);
}

#why-join .cont .content .whyjoincard .icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white-color);
}

#why-join .cont .content .whyjoincard .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#why-join .cont .content .whyjoincard .details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  text-align: center;
}

#why-join .cont .content .whyjoincard .details p {
  font-size: 13px;
  font-weight: 300;
  color: var(--primary-color);
  text-align: center;
}

/* Speakers */

#speakers {
  padding-top: 70px;
  background: var(--bg-gradient);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
}

#speakers .cont .content {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--cont-width);
  height: 100%;
}

#speakers .cont .content .speaker {
  position: relative;
  width: calc(100% / 3 - 40px / 3);
  background: var(--bg-gradient);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow);
  padding: 20px;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 120px;
}

#speakers .cont .content .speaker .image {
  position: absolute;
  top: -100px;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-color);
  border: 5px solid var(--primary-color);
  padding: 5px;
  object-fit: cover;
}


#speakers .cont .content .speaker .image img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  object-fit: cover;
  border-radius: 50%;
}

#speakers .cont .content .speaker .image img:hover {
  transform: scale(1.05);
}

#speakers .cont .content .speaker .details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

#speakers .cont .content .speaker .details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  width: 100%;
}

#speakers .cont .content .speaker .details p {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-color);
  text-align: center;
  width: 100%;
  padding-bottom: 5px;
}

#speakers .cont .content .speaker .details span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  text-align: center;
  width: 100%;
  padding-top: 10px;
}

#speakers .cont .content .speaker .details span::before {
  content: "";
  position: absolute;
  left: calc(50% - 75px);
  top: 1px;
  width: 150px;
  height: 1px;
  border-radius: 1px;
  background: var(--primary-color);
}

/* Shedules */

#schedule{
  padding-top: 70px;
  padding-bottom: 50px;
  background: var(--dark-gray);
  /* background-attachment: fixed;
  background-size: cover;
  background-position: center; */
}
#schedule .cont h2{
  color: var(--white-color);

}
#schedule .cont .content{
  align-items: center ;
  justify-content: center;

}
#schedule .cont .content .load-btns{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

#schedule .cont .content .load-btns button{
  background-color: var(--dark-color);
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  padding: 10px 0;
  width: 50%;
  cursor: pointer;
}
#schedule .cont .content .load-btns button.active{
  background-color: var(--primary-color);
}

#schedule .cont .content .load-btns button:hover{
  background-color: var(--primary-color);
}
#schedule .cont .content .schedule-cont{
  /* background: var(--bg-gradient); */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#schedule .cont .content .schedule-cont .day{
  display: none;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
  transition: var(--transition);
}
#schedule .cont .content .schedule-cont .day.active{
  display: flex;
}

#schedule .cont .content .schedule-cont .day .schedule{
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-gradient);
  padding: 20px;
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow);
}

#schedule .cont .content .schedule-cont .day .schedule .time h3, #schedule .cont .content .schedule-cont .day .schedule .event p, #schedule .cont .content .schedule-cont .day .schedule .event h3{
  color: var(--primary-color);
}


/* ============================== */
/* 
#schedule .cont .content .schedule-cont .day .schedule{
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-gradient);
  padding: 20px;
  gap: 20px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;

}
#schedule .cont .content .schedule-cont .day .schedule .flyer{
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  aspect-ratio: 1/1;
}

#schedule .cont .content .schedule-cont .day .schedule .flyer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#schedule .cont .content .schedule-cont .day .schedule .details{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  width: calc(100% - 200px);
}

#schedule .cont .content .schedule-cont .day .schedule .details .time h3, #schedule .cont .content .schedule-cont .day .schedule .details .event p, #schedule .cont .content .schedule-cont .day .schedule .details .event h3{
  color: var(--primary-color);
} */

/* ============================== */
/* #schedule .cont .content .shedule-table-container{
  display: flex;
  width: 100%;
  align-items: center ;
  justify-content: center;

}
#schedule .cont .content .shedule-table-container table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
#schedule .cont .content .shedule-table-container table colgroup col.title{
  max-width: 24%;
  width: 100%;
}
#schedule .cont .content .shedule-table-container table colgroup col.day1{
  max-width: 38%;
  width: 100%;
}
#schedule .cont .content .shedule-table-container table colgroup col.day2{
  max-width: 38%;
  width: 100%;
}

#schedule .cont .content .shedule-table-container table thead tr th, #schedule .cont .content .shedule-table-container table tbody tr td, #schedule .cont .content .shedule-table-container table tbody tr th{
  text-align: center;
  padding: 10px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;

}
#schedule .cont .content .shedule-table-container table tbody tr td.titile{
  background: var(--bg-gradient);

}
#schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont, #schedule .cont .content .shedule-table-container table thead tr th.title .title-cont{
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  
}
#schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont .icon, #schedule .cont .content .shedule-table-container table thead tr th.title .title-cont .icon{
  position: absolute;
  left: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;

}
#schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont .icon svg, #schedule .cont .content .shedule-table-container table thead tr th.title .title-cont .icon svg{
  fill: var(--primary-color);
  width: 20px;
  height: 20px;
}
#schedule .cont .content .shedule-table-container table thead tr th.title .title-cont .icon svg{
  fill: var(--white-color);
}
#schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont span{
  font-weight: 600;
  color: var(--primary-color);

}
#schedule .cont .content .shedule-table-container table tbody tr:nth-child(even) td.titile{
  font-weight: 600;
  background-color: #697;
  color: var(--white-color);

}
#schedule .cont .content .shedule-table-container table tbody tr:nth-child(odd){
  background-color: #e8f3ff;

}
#schedule .cont .content .shedule-table-container table tbody tr:nth-child(even){
  background-color: #eaffea;

}
#schedule .cont .content .shedule-table-container table tbody tr{
background: var(--bg-gradient);
}


#schedule .cont .content .shedule-table-container table thead tr{
  background-color: var(--primary-color);
}
#schedule .cont .content .shedule-table-container table thead tr th{
  color: var(--bg-color);
}

#schedule .cont .content .shedule-table-container table thead tr th.title{
  background-color: var(--primary-color);
}
#schedule .cont .content .shedule-table-container table thead tr th.title .title-cont h3{
  font-size: 30px;
  color: var(--white-color);
}
#schedule .cont .content .shedule-table-container table thead tr th.day1{
  background-color: #004E95;
}
#schedule .cont .content .shedule-table-container table thead tr th.day2{
  background-color: #ED2938;
}
#schedule .cont .content .shedule-table-container table thead tr th .day-cont h3, #schedule .cont .content .shedule-table-container table thead tr th .day-cont p{
  color: var(--white-color);
}
#schedule .cont .content .shedule-table-container table thead tr th .day-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#schedule .cont .content .shedule-table-container table thead tr th .day-cont h3{
  font-size: 30px;
}

#schedule .cont .content .shedule-table-container table thead tr th .day-cont p{
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  max-width: 250px;
}
#schedule .cont .content .shedule-table-container table tbody tr td .lists{
  display: flex;
  flex-direction: column;
}
#schedule .cont .content .shedule-table-container table tbody tr td:nth-child(2), #schedule .cont .content .shedule-table-container table tbody tr td:nth-child(2) sup, #schedule .cont .content .shedule-table-container table tbody tr td:nth-child(2) div span{
  color: #004E95;
}
#schedule .cont .content .shedule-table-container table tbody tr td:nth-child(3), #schedule .cont .content .shedule-table-container table tbody tr td:nth-child(3) sup, #schedule .cont .content .shedule-table-container table tbody tr td:nth-child(3) div span{
  color: #ED2938;
} */


/* Contact Section */
#contact .cont .content {
  gap: 20px;

}
#contact .cont .content .contsct-cont{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#contact .cont .content .contsct-cont .contact-card {
  width: calc(50% - 10px);
  min-width: 300px;
  max-width: 400px;
  /* background: var(--bg-gradient);
  border-radius: var(--border-radius-30);
  box-shadow: var(--box-shadow); */
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: #0f0; */
}

#contact .cont .content .contsct-cont .contact-card .details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

#contact .cont .content .contsct-cont .contact-card .details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  width: 100%;
}

#contact .cont .content .contsct-cont .contact-card .details p{
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
  text-align: center;
  width: 100%;
  padding-bottom: 5px;
}
#contact .cont .content .contsct-cont .contact-card .details p a{
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-color);
  text-align: center;
  width: 100%;
  padding-bottom: 5px;
}

#contact .cont .content .map-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 400px; */
  overflow: hidden;
}

#contact .cont .content .map-cont iframe {
  width: 100%;
  max-height: 500px;
  border: none;
}
/* Footer */

footer {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

footer .cont {
  max-width: var(--cont-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

footer .cont .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .cont .content .left,
footer .cont .content .right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  width: 50%;
}

footer .cont .content .right {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

footer .cont .content .right p,
footer .cont .content .left p {
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 500;
}

/* Responsive */

@media screen and (max-width: 1400px) {
  :root{
    --cont-width: 1140px;
  }

}
@media screen and (max-width: 1200px) {
  :root{
    --cont-width: 960px;
  }

}

@media screen and (max-width: 992px) {
  :root{
    --cont-width: 720px;
  }
  header{
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 1000;
  }

  header nav .right {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--bg-gradient);
    height: 100vh;
    max-width: 300px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    z-index: 1000;
    transition: var(--transition);
  }

  header nav.active .right {
    transform: translateX(0);
  }
  header nav .right a {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  header nav .right a:last-child {
    border-bottom: none;
  }

  .hamburger{
    display: block;
  }
  header nav.active .hamburger .bar:nth-child(2){
      opacity: 0;
  }
  header nav.active .hamburger .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
  }
  header nav.active .hamburger .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
  }

  #home .cont {
    flex-direction: column;
  }
  
  #home .cont .content {
    width: 100%;
  }
  
  #home .cont .content h1 {
    font-size: 38px;
    text-align: center;
  }
  
  #home .cont .content p {
    font-size: 16px;
    text-align: center;
  }
  #home .cont .content ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }
  
  #home .cont .content ul li {
    flex-wrap: nowrap;
  }
  
  #home .cont .content a {
    align-self: center;
  }
  #home .cont .image {
    width: 100%;
  }




  #about .cont > .content {
    flex-direction: column-reverse;
  }
  
  #about .cont .content .left {
    align-items: center;
  }
  #about .cont .content .right {
    height: 100%;
    width: 100%;
  }
  
  #about .cont .content .right .about-logo img {
    max-height: 200px;
    transition: var(--transition-slow-1);
  }

  #about .cont .content .left p {
    text-align: center;
  }
  
  #why-join .cont .content .whyjoincard {
    width: calc(100% / 2 - 10px);
    min-height: 300px;
  }
  
  #speakers .cont .content .speaker {
    width: calc(100% / 2 - 10px);

  }
  
  
footer .cont .content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .cont .content .left,
footer .cont .content .right {
  justify-content: center;
  align-items: center;
  width: 100%;
}
footer .cont .content .left p,
footer .cont .content .right p{
  text-align: center;
}

}
#sec404{
  padding-top: 20px;
}
#sec404 .cont {
  padding: 0;
  padding-top: 0;
}
#sec404 .cont .content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;

}
#sec404 .cont .content h1{
  font-size: 100px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 100px;
  text-align: center;
}

#sec404 .cont .content p{
  font-size: 20px;
  color: var(--dark-color);
  font-weight: 500;
  text-align: center;
}

#sec404 .cont .content .image404{
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;

}
#sec404 .cont .content .image404 img{
  max-height: 300px;
  width: 100%;

}

#sec404 .cont .content a{
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--border-radius-30);
  transition: var(--transition);
}

@media screen and (max-width: 768px) {
  :root{
    --cont-width: 540px;
  }

  #why-join .cont .content .whyjoincard {
    width: 100%;
  }

  #speakers .cont .content .speaker {
    width: 100%;

  }

  #schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont .icon, #schedule .cont .content .shedule-table-container table thead tr th.title .title-cont .icon{
    /* position: absolute;
    left: 10px; */
    display: flex;
  
  }
  #schedule .cont .content .shedule-table-container table tbody tr td.titile .title-cont span, #schedule .cont .content .shedule-table-container table thead tr th.title .title-cont h3{
    display: none;
  
  }

  #schedule .cont .content .shedule-table-container table colgroup col.title{
    max-width: 10%;
    width: 100%;
  }
  #schedule .cont .content .shedule-table-container table colgroup col.day1{
    max-width: 45%;
    width: 100%;
  }
  #schedule .cont .content .shedule-table-container table colgroup col.day2{
    max-width: 45%;
    width: 100%;
  }
  /* Contact Section */
#contact .cont .content .contsct-cont{
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}

#contact .cont .content .contsct-cont .contact-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
}


@media screen and (max-width: 576px) {
  :root{
    --cont-width: 100%;
  }

  section{
    padding-left: 20px;
    padding-right: 20px;
  }

  header{
    padding: 10px 20px;
  }
  #home .cont .content h1 {
    font-size: 28px;
  }
  
  #home .cont .content p {
    font-size: 14px;
  }
  
  #home .cont .content ul li {
    font-size: 12px;
  }
  
  #home .cont .content a {
    font-size: 16px;
  }
  
  #home .cont .image img {
    max-height: 400px;
  }
  
  #about .cont .content .right .about-logo img {
    max-height: 150px;
  }
  
  #about .cont .content .left p {
    font-size: 14px;
  }
  
  #why-join .cont .content .whyjoincard {
    width: 100%;
  }
  
  #why-join .cont .content .whyjoincard .icon {
    width: 80px;
    height: 80px;
  }
  
  #why-join .cont .content .whyjoincard .details h3 {
    font-size: 18px;
  }
  
  #why-join .cont .content .whyjoincard .details p {
    font-size: 12px;
  }
  
  #speakers .cont .content .speaker {
    width: 100%;
  }
  
  #speakers .cont .content .speaker .image {
    width: 150px;
    height: 150px;
  }
  
  #speakers .cont .content .speaker .image img {
    width: 100%;
    height: 100%;
  }
  
  #speakers .cont .content .speaker .details h3 {
    font-size: 18px;
  }
  
  #speakers .cont .content .speaker .details p {
    font-size: 12px;
  }
  
  #speakers .cont .content .speaker .details span {
    font-size: 12px;
  }
  
  #schedule .cont .content .shedule-table-container table colgroup col.title{
    max-width: 15%;
    width: 100%;
  }
  #schedule .cont .content .shedule-table-container table colgroup col.day1{
    max-width: 42%;
    width: 100%;
  }
}

@media screen and (max-width: 380px){
  section{
    padding-left: 10px;
    padding-right: 10px;
  }
}