@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --cobalt: #004aad;
  --text: #424242;
  --stroke: #e6e6e7;
  --blue: #1565c0;
  --blue-violet: #3533cd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.navbar {
  padding: 8px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar .img_container {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.navbar .img_container .logo {
  width: 100px;
  height: 50px;
}

.navbar .img_container .cyber_logo {
  margin-left: 20px;
}

.navbar .nav-items {
  padding: 5px 20px;
  border: 1px white solid;
  border-radius: 999px;
}

.navbar .nav-items .nav-link {
  color: #ffffff;
  font-size: 16px;
  margin-right: 50px;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
  color: black !important;
}

.navbar .nav-items .nav-link:last-child {
  margin-right: 0px;
}

.navbar .nav-items .nav-link:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/*  hero page */
.hero_page {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  padding: 50px 0px;
}

.hero_img {
  width: 100%;
  height: 100vh;
  object-fit: fill;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero_page .qr {
  position: absolute;
  top: 13%;
  right: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero_page .qr img {
  height: 65px;
  width: 65px;
  margin-bottom: 3px;
}

.hero_page .qr p {
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  width: 100px;
  font-weight: 200;
}

.hero_page .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
  max-width: 90%;
  z-index: 1;
}

.hero_page .container .separator {
  display: flex;
}

.hero_page .container .separator .left {
  display: block;
}

.hero_page .container .separator .left img {
  height: 150px;
  width: 150px;
}

.hero_page .container .separator .vertical-line {
  width: 1px;
  background-color: white;
  height: 150px;
  margin: 0px 15px;
}

.hero_page .container .separator .right .p-container {
  font-family: "Bebas Neue", sans-serif;
  line-height: 60px;
  letter-spacing: 3px;
}

.hero_page .container .separator .right .p-container .caps1 {
  font-weight: 800;
  font-size: 50px;
  color: #ffffff;
}

.hero_page .container .separator .right .p-container .caps {
  font-weight: 800;
  font-size: 65px;
  color: #ffffff;
}

.hero_page .container .separator .right .desc {
  font-size: 20px;
  font-weight: 200;
  color: #fcfbfb;
  width: 800px;
}

.hero_page .container .separator .right .reg-button {
  color: #ffffff;
  margin-top: 10px;
  background: var(--cobalt);
  padding: 8px 10px;
  border: none;
  width: 200px;
  border-radius: 999px;
  font-size: 17px;
  cursor: pointer;
}

.hero_page .container .separator .right .reg-button:hover {
  transition: all 0.3s ease-in;
  color: var(--cobalt);
  background: #ffffff;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #001e47;
}

.reg-modal {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(to right, #001e47, var(--cobalt));
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999999;
  border: none;
  border-radius: 16px;
  img {
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  form {
    padding: 10px 20px 10px 20px;
    display: flex;
    height: 70vh;
    overflow-y: auto;
    flex-direction: column;
    .form_group {
      margin-bottom: 5px;
    }
  }
}

.reg-modal .modal-header {
  position: relative;
  width: 100%;
  i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    z-index: 9999;
    cursor: pointer;
  }
  i:hover {
    color: red;
  }
}

.reg-modal::backdrop{
  background: rgb(0, 0, 0, 0.6);
}

/* event venue */
.event_venue {
  padding: 80px 0px;
}

.event_venue .container {
  display: flex;
  justify-content: center;
}

.event_venue .container .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event_venue .container .header h3 {
  color: var(--cobalt);
  font-size: 35px;
}

.event_venue .container .header .line {
  background-color: var(--blue);
  margin-top: 8px;
  width: 100px;
  height: 2px;
  border-radius: 2px;
}

.event_venue .container .header p {
  margin-top: 10px;
  font-size: 18px;
  color: var(--text);
}

.event_venue .container .header p svg {
  color: var(--blue);
}

.event_venue .container .map {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event_venue .container .map .google-map img {
  width: 600px;
  height: 252px;
}

.event_venue .container .map .qr-waze img {
  width: 200px;
  height: 200px;
}

.event_venue .container .map .qr-waze p {
  text-align: center;
  font-weight: 500;
}

/* speakers */
.speaker {
  padding: 150px 0px;
  background: linear-gradient(to right, #001e47, var(--cobalt));
}

.speaker .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.speaker .header h3 {
  color: #ffffff;
  font-size: 35px;
}

.speaker .header .line {
  background-color: #ffffff;
  margin-top: 8px;
  width: 100px;
  height: 2px;
  border-radius: 2px;
}

.speaker .container {
  margin-top: 50px;
  display: flex;
  position: relative;
}

.speaker .container .waves img {
  position: absolute;
  left: 0;
  width: 250px;
  z-index: 1;
}

.speaker .container .transparency img {
  position: absolute;
  bottom: -29%;
  right: 0;
  width: 150px;
  height: 150px;
  z-index: 1;
}

.speaker .container .speakers {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 2;
}

.speaker .container .speakers .speaker1 .upper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaker .container .speakers .speaker1 .upper .upper-right {
  margin-left: 15px;
}

.speaker .container .speakers .speaker1 .bottom {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.speaker .container .speakers .speaker1 .bottom .desc {
  margin-top: 25px;
  max-width: 500px;
  font-size: 18px;
  text-align: start;
}

.speaker .container .speakers .speaker1 .bottom ol {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.speaker .container .speakers .speaker1 .bottom ol li {
  color: #ffffff;
  margin-top: 14px;
  font-size: 16px;
  width: 70%;
}

/* -------- */
.speaker .container .speakers .speaker2 .upper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaker .container .speakers .speaker2 .upper .upper-right {
  margin-left: 15px;
}

.speaker .container .speakers .speaker2 .bottom {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.speaker .container .speakers .speaker2 .bottom .desc {
  margin-top: 25px;
  max-width: 500px;
  font-size: 18px;
  text-align: start;
}

.speaker .container .speakers .speaker2 .bottom ol {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.speaker .container .speakers .speaker2 .bottom ol li {
  color: #ffffff;
  margin-top: 14px;
  font-size: 16px;
  width: 53%;
}

.speaker .container .speakers img {
  width: 200px;
  height: 200px;
  z-index: 2;
}

.speaker .container .speakers p {
  color: #ffffff;
  text-align: center;
  font-weight: 300;
}

.speaker .container .speakers .name {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 22px;
}

.speaker .container .speakers .bottom-u {
  font-size: 20px;
}

.speaker .container .speakers .bottom-p {
  margin-top: 5px;
  font-size: 22px;
  font-style: italic;
}

/* topics */

.topics {
  padding: 120px 10px;
  position: relative;
  background-image: url("../assets/images/BACKGROUND.png");
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.topics .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10;
}

.topics .container .group-call-container {
  border: 5px var(--cobalt) solid;
  padding: 5px;
  border-radius: 10px;
}

.topics .container .group-call {
  background: var(--cobalt);
  color: #ffffff;
  padding: 10px 140px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
}

.topics .container .group-call .waves {
  position: absolute;
  top: 14%;
  left: 0px;
  width: 110px;
  height: 10px;
  z-index: 1;
}

.topics .container .group-call .transparency {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  z-index: 1;
}

.topics .container .group-call .header {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 20px;
}

.topics .container .group-call .links {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin-bottom: 15px;
}

.topics .container .group-call .links p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
}

.topics .container .group-call .vector {
  height: 20px;
  width: 20px;
  margin-right: 5px;
}

.topics .container .groups .header {
  color: var(--cobalt);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.topics .container .groups .links p {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 16px;
}

.topics .container .groups .links {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
  margin-bottom: 15px;
}

.topics .container .groups .links .key {
  background-color: var(--cobalt);
  padding: 7px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
}

.topics .container .groups .links .key span {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  margin-left: 5px;
}

.topics .container .groups .links .key img {
  width: 25px;
  height: 25px;
}

.topics .group-img .blop1 {
  position: absolute;
  left: -5%;
  height: 300px;
  width: 300px;
  z-index: 1;
}

.topics .group-img .blop2 {
  position: absolute;
  top: 50%;
  right: -5%;
  height: 300px;
  width: 300px;
}

.topics .group-img .team1 {
  position: absolute;
  top: 20%;
  left: 7%;
  height: 80px;
  width: 80px;
  z-index: 2;
}

.topics .group-img .team2 {
  position: absolute;
  top: 60%;
  right: 5%;
  height: 80px;
  width: 80px;
  z-index: 2;
}

.topics .form_section {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 800px;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

small {
  font-size: 0.75rem;
  color: red;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
}

.consent {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

button[type="submit"] {
  width: 100%;
  margin-top: 1.5rem;
  background-color: transparent;
  color: white;
  padding: 8px 5px;
  border: 2px solid white;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: white;
  color: #002060;
}

.toast-success {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 999999;
}

.break-text {
  display: none;
}

/* footee */
footer {
  font-size: 15px;
  background-color: var(--blue);
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
}
.section_videos {
  background-image: url("/assets/images/BACKGROUND.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0px;
  height: auto;
  overflow-x: auto;
  .title {
    color: var(--cobalt);
    font-size: 35px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    .line {
      height: 2px;
      width: 30%;
      background-color: var(--blue);
      margin: 4px 0;
    }
  }
  .list {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0;
    align-items: center;
    justify-content: center;
  }
  .video-container {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
    margin: 10px;
    iframe {
      border-radius: 10px;
      overflow: hidden;
    }
    .desc {
      color: var(--cobalt);
      padding: 20px;
      font-size: 20px;
      font-weight: bold;
      width: 300px;
    }
  }
}

@media screen and (max-width: 1300px) {
  .section_videos {
    .video-container {
      flex-direction: column;
    }
  }
}

@media (max-width: 1116px) {
  /* hero page */

  .hero_page .container .separator .left img {
    height: 120px;
    width: 120px;
  }

  .hero_page .container .separator .vertical-line {
    width: 1px;
    background-color: white;
    height: 120px;
  }

  .hero_page .qr {
    right: 8%;
  }

  .hero_page .container .separator .right .p-container .caps1 {
    font-weight: 800;
    font-size: 40px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .p-container .caps {
    font-weight: 800;
    font-size: 55px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .desc {
    font-size: 16px;
    font-weight: 200;
    width: 800px;
  }

  .hero_page .container .separator .right .reg-button {
    color: #ffffff;
    width: 230px;
  }

  .topics .group-img .blop1 {
    top: 10%;
    left: -15%;
  }

  .topics .group-img .team1 {
    top: 20%;
    left: 10%;
    height: 60px;
    width: 60px;
  }

  .topics .group-img .blop2 {
    top: 50%;
    right: -14%;
  }

  .topics .group-img .team2 {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 1206px) {
  .speaker .container .speakers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .speaker .container .speakers .speaker1,
  .speaker .container .speakers .speaker2 {
    margin-top: 40px;
    max-width: 90%;
    text-align: center;
  }

  .speaker .container .speakers .speaker1 .bottom .desc,
  .speaker .container .speakers .speaker2 .bottom .desc {
    margin-top: 20px;
    font-size: 18px;
    padding: 0 20px;
    text-align: center;
  }
}
@media (max-width: 1037px) {
  .speaker .container .speakers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .speaker .container .speakers .speaker1,
  .speaker .container .speakers .speaker2 {
    max-width: 90%;
    text-align: center;
  }

  .speaker .container .speakers .speaker1 .bottom .desc,
  .speaker .container .speakers .speaker2 .bottom .desc {
    margin-top: 20px;
    font-size: 18px;
    padding: 0 20px;
    text-align: center;
  }

  .speaker .container .speakers .speaker1 .bottom ol,
  .speaker .container .speakers .speaker2 .bottom ol {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
  }

  .speaker .container .speakers .speaker1 .bottom ol li,
  .speaker .container .speakers .speaker2 .bottom ol li {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 974px) {
  .navbar.scrolled .hamburger {
    color: black;
  }

  .hamburger {
    display: block;
  }

  .nav-items {
    border-top: 1px black solid;
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background-color: white;
    border: 1px solid var(--stroke);
    border-radius: 10px !important;
    padding: 20px;
    flex-direction: column;
    z-index: 1001;
  }

  .nav-items.show {
    display: flex;
  }

  .nav-items .nav-link {
    margin: 10px 0;
    color: black !important;
  }

  .hero_page .container .separator .right .p-container {
    font-family: "Bebas Neue", sans-serif;
    line-height: 55px;
    letter-spacing: 3px;
  }

  .hero_page .container .separator .right .p-container .caps1 {
    font-weight: 800;
    font-size: 35px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .p-container .caps {
    font-weight: 800;
    font-size: 45px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .desc {
    font-size: 16px;
    font-weight: 200;
    width: 550px;
  }

  .speaker .container .speakers img {
    width: 150px;
    height: 150px;
  }

  .speaker .container .transparency img {
    bottom: -60%;
  }

  .speaker .container .speakers .speaker1 .bottom .desc {
    padding: 0px 0px 0px 0px;
  }

  .speaker .container .speakers .speaker2 .bottom .desc {
    padding: 0px 0px 0px 0px;
  }

  .topics .group-img .blop1 {
    display: none;
  }

  .topics .group-img .team1 {
    display: none;
  }

  .topics .group-img .blop2 {
    display: none;
  }

  .topics .group-img .team2 {
    display: none;
  }
}

@media (max-width: 860px) {
  .navbar {
    padding: 8px 20px;
  }

  .nav-items {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid var(--stroke);
    border-radius: 0px !important;
    padding: 20px;
    flex-direction: column;
    z-index: 1001;
  }

  .event_venue .container .map .google-map img {
    width: 440px;
    height: 252px;
  }

  .event_venue .container .map .qr-waze img {
    width: 200px;
    height: 200px;
  }

  .speaker .container .speakers .speaker1,
  .speaker .container .speakers .speaker2 {
    margin-top: 0px;
  }
  .speaker .container .speakers .speaker1 .bottom ol {
    margin-top: 25px;
  }

  .speaker .container .speakers .speaker1 .bottom ol li {
    margin: 10px 0px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
  }

  .speaker .container .speakers .speaker2 .bottom ol {
    margin-top: 20px;
  }

  .speaker .container .speakers .speaker2 .bottom ol li {
    margin: 10px 0px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
  }

  .topics .group-img .blop1 {
    top: 10%;
    left: -15%;
  }

  .topics .group-img .team1 {
    top: 20%;
    left: 10%;
    height: 60px;
    width: 60px;
  }

  .topics .group-img .team2 {
    z-index: 2;
    height: 60px;
    width: 60px;
  }

  .topics .form_section {
    width: 700px;
    z-index: 3;
  }

  .topics .container .group-call {
    padding: 10px 110px;
  }
}

@media (max-width: 788px) {
  .hero_page .container .separator .left img {
    height: 110px;
    width: 110px;
  }

  .hero_page .container .separator .vertical-line {
    width: 1px;
    background-color: white;
    height: 110px;
  }

  .hero_page .qr {
    right: 1%;
  }

  .hero_page .container .separator .right .p-container {
    line-height: 45px;
    letter-spacing: 1px;
  }

  .hero_page .container .separator .right .p-container .caps1 {
    font-weight: 800;
    font-size: 35px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .p-container .caps {
    font-weight: 800;
    font-size: 55px;
    color: #ffffff;
  }

  .hero_page .container .separator .right .desc {
    font-size: 18px;
    font-weight: 200;
    width: 450px;
  }

  .hero_page .container .separator .right .reg-button {
    color: #ffffff;
    width: 230px;
    padding: 6px 6px;
  }

  .event_venue .container .map {
    display: flex;
    flex-direction: column;
  }

  .speaker {
    padding: 80px 0px;
  }

  .speaker .container .speakers {
    align-items: center;
    flex-direction: column;
  }

  .speaker .container .speakers .speaker1 {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
  }

  .speaker .container .speakers .speaker2 {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
  }

  .speaker .container .speakers .speaker1 .bottom .desc {
    max-width: 700px;
  }

  .speaker .container .speakers .speaker2 .bottom .desc {
    max-width: 700px;
  }

  .speaker .container .speakers .speaker1 .bottom ol {
    margin-top: 20px;
  }

  .speaker .container .speakers .speaker1 .bottom ol li {
    color: #ffffff;
    font-size: 16px;
  }

  .speaker .container .speakers .speaker1 .bottom .desc {
    font-size: 20px;
  }

  .speaker .container .speakers .speaker2 .bottom .desc {
    font-size: 20px;
  }

  .speaker .container .speakers .speaker2 .bottom ol {
    margin-top: 20px;
  }

  .speaker .container .speakers .speaker2 .bottom ol li {
    color: #ffffff;
    font-size: 16px;
  }

  .speaker .container .transparency img {
    bottom: -7%;
    height: 150px;
  }

  .topics .group-img .blop1 {
    top: 10%;
    left: -27%;
  }

  .topics .group-img .team1 {
    display: none;
  }

  .topics .form_section {
    width: 600px;
    z-index: 3;
  }

  .topics .container .group-call {
    padding: 10px 60px;
  }

  .speaker .container .speakers .speaker1 .bottom .desc {
    text-align: center;
  }

  .speaker .container .speakers .speaker2 .bottom .desc {
    text-align: center;
  }

  .speaker .container .speakers .speaker1 .bottom ol li {
    width: 90%;
  }

  .speaker .container .speakers .speaker2 .bottom ol li {
    width: 90%;
  }
}

/* Mobile Phones (<= 575px) */
@media (max-width: 575.98px) {
  .navbar {
    padding: 8px 10px;
  }

  .nav-items {
    top: 70px;
  }

  .navbar .img_container .logo {
    width: 80px;
    height: 50px;
  }

  .hero_page {
    padding: 90px 0px;
  }

  .hero_page .container {
    max-width: 100%;
  }

  .hero_page .container .separator .left {
    display: none;
  }

  .hero_page .container .separator .right {
    justify-content: center;
    text-align: center;
  }

  .hero_page .container .separator .vertical-line {
    display: none;
  }

  .hero_page .container .separator .right .p-container {
    line-height: 35px;
  }

  .hero_page .qr {
    display: none;
  }

  .hero_page .container .separator .right .p-container .caps1 {
    font-size: 30px;
  }

  .hero_page .container .separator .right .p-container .caps {
    font-weight: 500;
    font-size: 40px;
  }

  .hero_page .container .separator .right .desc {
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
    font-size: 13px;
  }

  .hero_page .container .separator .right .reg-button {
    color: #ffffff;
    width: 230px;
    padding: 6px 6px;
    font-size: 13px;
  }

  .event_venue .container .header p {
    text-align: center;
  }

  .event_venue .container .map .google-map img {
    width: 300px;
    height: 202px;
  }

  .event_venue .container .map .qr-waze img {
    width: 150px;
    height: 150px;
  }

  .speakers {
    padding: 0px 13px;
  }

  .speaker .container .waves img {
    width: 100px;
  }

  .speaker .container .transparency img {
    bottom: -6%;
    height: 80px;
    width: 50px;
  }

  .speaker .container .speakers .speaker1 .bottom .desc {
    margin-top: 40px;
    text-align: center;
    max-width: 500px;
  }

  .speaker .container .speakers .speaker2 .bottom .desc {
    margin-top: 40px;
    text-align: center;
    max-width: 500px;
  }

  .topics {
    padding: 50px 0px;
  }

  .topics .container .groups {
    padding: 0px 10px;
  }

  .topics .container .groups .links .key img {
    width: 15px;
    height: 15px;
  }

  .topics .container .groups .links .key span {
    font-size: 16px;
    margin-left: 3px;
  }

  .topics .container .groups .links p {
    font-size: 12px;
  }

  .topics .group-img .blop1 {
    display: none;
  }

  .topics .group-img .team1 {
    display: none;
  }

  .topics .form_section {
    width: 100%;
  }

  .topics .form_section .header {
    border-radius: 0px 0px 0px 0px;
    margin-bottom: 0px;
  }

  .topics .form_section .header .title {
    padding: 5px;
  }

  .topics .form_section .header .title .group-p p {
    font-size: 12px;
  }

  .topics .form_section form {
    margin-top: 0px;
  }

  .topics .container .group-call {
    padding: 10px 5px;
  }

  .topics .container .group-call .links p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  /* 
  .topics .form_section form {
    border-radius: 0px;
  } */

  .full-text {
    display: none;
  }

  .break-text {
    display: inline;
  }

  .toast-success {
    top: 90px;
    right: 2px;
    font-size: 16px;
  }
}

@media (max-width: 445px) {
  .hero_page .container .separator .right .reg-button {
    padding: 8px 8px;
  }

  .topics .container .group-call {
    padding: 10px 10px;
  }

  .topics .container .group-call-container {
    border: 2px var(--cobalt) solid;
    padding: 2px;
  }

  .speaker .container .transparency img {
    bottom: -5.5%;
    height: 80px;
    width: 50px;
  }
  .toast-success {
    top: 80px;
    right: 2px;
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .navbar .img_container .logo {
    width: 70px;
    height: 40px;
  }
  .navbar .img_container .cyber_logo {
    width: 80px;
    height: 40px;
  }
  .nav-items {
    top: 60px;
  }
  .speaker .container .transparency img {
    bottom: -5%;
  }
  .toast-success {
    top: 70px;
    right: 2px;
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .navbar .img_container .logo {
    width: 65px;
    height: 40px;
  }

  .toast-success {
    top: 68px;
    right: 2px;
  }

  .speaker .container .speakers .name {
    font-size: 20px;
  }

  .speaker .container .transparency img {
    bottom: -4.8%;
  }
}
