::-moz-selection {
  background-color: #eee809;
  color: black;
}

::selection {
  background-color: #eee809;
  color: black;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Barlow";
  text-transform: uppercase;
  letter-spacing: 1px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20vh;
}

html,
body {
  font-size: 62.5%;
}

body {
  background-color: #edede6;
}

a {
  text-decoration: none;
  font-family: "Barlow-Medium";
  color: black;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow-Medium";
}

h1 {
  font-size: 3.8rem;
}
@media (max-width: 991px) {
  h1 {
    font-size: 1.8rem;
    line-height: 2;
  }
}

h2 {
  font-size: 5.8rem;
}

h3 {
  font-size: 3.8rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.4;
}
p:not(:last-child) {
  margin-bottom: 4rem;
}

strong {
  font-family: Barlow-Medium;
}

.btn {
  background-color: black;
  color: white;
  padding: 1.1rem 2rem;
  display: inline-flex;
  justify-content: center;
}
.btn.btn-big {
  font-size: 2.6rem;
  padding: 2rem;
  max-width: 40rem;
  width: 100%;
  text-align: center;
}
.btn.btn-wide {
  max-width: unset;
  width: 100%;
}

a,
ul,
li,
input,
label {
  font-size: 1.6rem;
}

main {
  overflow: hidden;
}
main:nth-of-type(1) {
  margin-top: 18.5rem;
}

.cube-bck {
  width: 100%;
  position: absolute;
  z-index: -5;
}

section {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-container-big {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section-container-small {
  padding-left: 11vw;
  padding-right: 11vw;
}

.section-container-big,
.section-container-small {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .section-container-big,
  .section-container-small {
    padding-left: 0;
    padding-right: 0;
  }
}

.landing {
  min-height: 67dvh;
}
.landing .section-container-big {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 37.2rem);
}
@media (min-width: 992px) {
  .landing .section-container-big {
    height: calc(100vh - 53rem);
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.text-compact {
  max-width: 87.4rem;
}
.text-compact p {
  letter-spacing: 1.5px;
  font-weight: 400;
  line-height: 20px;
}

.join-us-heading {
  margin-block: 12rem;
  max-width: 96.7rem;
  padding-right: 2rem;
}

.section-cyber-business h2 {
  margin-bottom: 5rem;
}
.section-cyber-business a {
  position: relative;
}
.section-cyber-business a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: all 0.5s ease-out;
}
.section-cyber-business a:hover::before {
  content: "";
  width: 100%;
}
.section-cyber-business a::before {
  bottom: -2px;
}

/* HEADER - START */
header {
  padding: 8rem 1.5rem 3.6rem 1.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all 0.4s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
header.scrolled {
  background: linear-gradient(1deg, rgba(255, 255, 255, 0) 10%, rgba(237, 237, 230, 0.91) 50%, rgb(237, 237, 230) 100%);
  z-index: 2;
  transform: translateY(-100%);
}
header.scrolling-up {
  transform: translateY(0);
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .header-container {
    padding-left: 5.2vw;
    padding-right: 5.2vw;
    align-items: center;
  }
}
.header-container .header-left {
  position: relative;
  z-index: 2;
}
.header-container .header-left .logo {
  height: 11.2rem;
}
.header-container .header-left a {
  display: block;
}
.header-container nav {
  display: flex;
  gap: 5rem;
  transition: all 0.3s linear;
}
.header-container nav a {
  font-weight: 500;
  color: black;
  font-size: 1.8rem;
  position: relative;
}
.header-container nav a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: all 0.5s ease-out;
}
.header-container nav a:hover::before {
  content: "";
  width: 100%;
}
@media (max-width: 991px) {
  .header-container nav {
    transform: translateX(-100%);
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: column;
    z-index: 1;
    background-color: #edede6;
    justify-content: flex-end;
    padding: 2rem;
    gap: 7rem;
    padding-bottom: 8rem;
    height: 100dvh;
  }
  .header-container nav a {
    font-size: 3.8rem;
  }
}
.header-container nav.show {
  transform: translateX(0%);
}
.header-container .menu-toggle {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .header-container .menu-toggle {
    display: none;
  }
}

/* HEADER - END */
/* SPEAKERS - START */
.speakers-section h2 {
  margin-bottom: 10rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
@media (max-width: 991px) {
  .speakers-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2.2rem;
  }
}

.speaker {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.speaker h3 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-family: "Barlow-Semibold";
}
.speaker p {
  margin-bottom: 2.4rem;
  font-family: "Barlow-Medium";
}
@media (min-width: 992px) {
  .speaker:nth-child(2) {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .speaker:nth-child(3) {
    margin-top: 10rem;
  }
}
.speaker:nth-child(2) .speaker-img img, .speaker:nth-child(3) .speaker-img img {
  transform: translateY(2rem);
}

.speaker-img {
  margin-bottom: 2rem;
  background-color: #b3b3b3;
  position: relative;
  overflow: hidden;
  aspect-ratio: 34/40;
}
.speaker-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

/* SPEAKERS - END */
.section-video {
  padding-top: 20rem;
}

.video-overlay {
  position: relative;
  overflow: hidden;
}
.video-overlay > .video-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  width: 100%;
  height: 100%;
}
.video-overlay > .btn-play {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 2;
  color: white;
  cursor: pointer;
}
@media (max-width: 991px) {
  .video-overlay > .btn-play {
    max-width: 9.3rem;
    bottom: 8%;
  }
}
.video-overlay.play .video-mask,
.video-overlay.play .btn-play {
  display: none;
}

video {
  width: 100%;
  aspect-ratio: 16/9;
}

ul {
  list-style-type: square;
  max-width: 87rem;
  padding-left: 2rem;
}
ul li {
  letter-spacing: 1px;
}
ul li:not(:last-child) {
  margin-bottom: 4rem;
}

.access-exclusive {
  padding-block: 13rem;
  max-width: 101.1rem;
  line-height: 1.4;
}

.strategies-heading {
  margin-bottom: 7rem;
  max-width: 105rem;
}

.strategy-container {
  display: flex;
  gap: 2rem;
}
@media (max-width: 992px) {
  .strategy-container {
    flex-direction: column;
  }
}

.strategy {
  display: flex;
  flex-direction: column;
  padding: 2.8rem;
  background-color: rgb(250, 242, 201);
  width: 100%;
}
.strategy-img {
  aspect-ratio: 17/23;
  width: calc(100% - 2.5rem);
  background-color: white;
  margin-bottom: 3.8rem;
}
.strategy-img img {
  display: block;
  width: 100%;
  transform: translate(2.5rem, 2.5rem);
  border: 1px solid rgb(238, 232, 9);
}
.strategy-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.strategy-content h4 {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4rem;
  line-height: 1.5;
}
.strategy-content a {
  text-align: right;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: black;
  gap: 0.6rem;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  margin-top: auto;
}
.strategy-content a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 11L0.937822 0.5L13.0622 0.500001L7 11Z' fill='black'/%3E%3C/svg%3E%0A");
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  transition: all 0.4s ease-out;
}
.strategy-content a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: all 0.5s ease-out;
}
.strategy-content a:hover::before {
  content: "";
  width: 100%;
}
.strategy-content a::before {
  bottom: -2px;
}

.section-agenda {
  padding-block: 23rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-agenda h2 {
  margin-bottom: 5rem;
}

.workshops h2 {
  margin-bottom: 7rem;
}
.workshops a {
  cursor: pointer;
}

.workshops-contener {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .workshops-contener {
    flex-direction: column;
  }
}
.workshops-contener .workshop {
  color: white;
  padding: 5.9rem 3.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.workshops-contener .workshop h4 {
  font-size: 2.2rem;
  font-family: Barlow-Semibold;
  margin-bottom: 3.8rem;
}
.workshops-contener .workshop a {
  color: white;
  font-size: 2rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.workshops-contener .workshop a img {
  filter: brightness(0) invert(1);
}
.workshops-contener .workshop a:hover {
  color: #eee809;
}
.workshops-contener .workshop a:hover img {
  filter: unset;
}
.workshops-contener .workshop:first-child {
  background-color: black;
}
.workshops-contener .workshop:nth-child(2) {
  background-color: rgb(64, 56, 48);
}
.workshops-contener .workshop:nth-child(3) {
  background-color: rgb(104, 97, 38);
}

.btn-animated {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.btn-animated:has(.btn-big) {
  max-width: 40rem;
  width: 100%;
}
.btn-animated:has(.btn-wide) {
  width: 100%;
  max-width: unset;
}
.btn-animated .btn {
  background-color: unset;
  transition: color 0.3s ease-out;
}
.btn-animated::before, .btn-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: color 0.3s ease-out;
}
.btn-animated::before {
  background-color: black;
  z-index: -2;
}
.btn-animated::after {
  content: "";
  position: absolute;
  background-color: #eee809;
  transition: all 0.3s ease-out;
  width: 0;
  z-index: -1;
  right: 100%;
}
.btn-animated:hover .btn {
  color: black;
}
.btn-animated:hover::after {
  width: 100%;
  right: 0;
}

.workshop-dates {
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-family: Barlow-Medium;
  line-height: 2;
}

.topics {
  margin-bottom: 1.2rem !important;
}

.contact-form-column .workshop-dates br:last-of-type {
  display: none;
}

.workshop-description {
  display: none;
  margin-bottom: 5rem;
}
.workshop-description li {
  margin-bottom: 2rem !important;
  letter-spacing: 4px;
}
.workshop-description p {
  letter-spacing: 4px;
}
.workshop-description.show {
  display: block;
}

footer {
  margin-top: 19rem;
  background-image: url("../images/footer-bck.svg");
  background-size: cover;
  background-position: bottom center;
  padding: 2rem;
}
@media (max-width: 991px) {
  footer {
    margin-top: 14rem;
  }
}

.host-partner {
  display: flex;
  gap: 13rem;
  padding-bottom: 20rem;
}
@media (max-width: 991px) {
  .host-partner {
    flex-direction: column;
  }
}

.logo-group {
  display: flex;
  gap: 8.6rem;
}
@media (max-width: 991px) {
  .logo-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1272px) {
  .logo-group {
    flex-wrap: wrap;
  }
}

.hosted h2,
.partner h2 {
  margin-bottom: 8rem;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .hosted h2,
  .partner h2 {
    font-family: Barlow-Medium;
    font-size: 3.8rem;
  }
}

.hosted h2 {
  white-space: nowrap;
}
.hosted img {
  display: block;
}
@media (max-width: 991px) {
  .hosted img {
    margin: auto;
  }
}

.copyright-social {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .copyright-social {
    flex-direction: column-reverse;
    gap: 6rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.copyright-social .copyright,
.copyright-social .social a {
  font-family: Barlow-Medium;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.copyright-social .copyright {
  letter-spacing: 0;
}
.copyright-social .social {
  display: flex;
  gap: 1.6rem;
}
.copyright-social .social a {
  color: black;
}

/* MODAL - start */
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .modal {
    padding-block: 1.5rem;
  }
}
.modal .modal {
  z-index: 9999;
}
.modal.show {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 90rem;
  z-index: 9999;
  margin: auto 15px;
  overflow: hidden;
  position: relative;
  background-color: #edede6;
}
@media (min-width: 992px) {
  .modal-content {
    padding: 3.4rem 6rem;
  }
}
@media (max-width: 991px) {
  .modal-content {
    padding: 1.8rem 2rem;
  }
}
.modal-content-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  z-index: 2;
  min-height: 38px;
}
.modal-content-header .modal-title {
  padding-right: 33px;
  font-size: 1.3rem;
}
.modal-content-header .modal-title i {
  font-size: 1.2rem;
}
.modal-content-header div.modal-close.close {
  position: absolute;
  right: 1.2rem;
}
.modal-content-header .modal-close {
  padding: 8px;
  background-color: black;
  border-radius: 50%;
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  cursor: pointer;
}
.modal-content-body {
  min-height: 1rem;
  scrollbar-width: none;
}
.modal-content-body::-webkit-scrollbar {
  width: 0;
}
.modal-content-body h2 {
  font-size: 2.8rem;
  margin-bottom: 2.8rem;
}
.modal-content > .modal-close {
  cursor: pointer;
  transition: all 0.1s linear;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 99;
  font-size: 3rem;
}
.modal-content > .modal-close:hover {
  transform: rotate(90deg);
  transition: all 0.1s linear;
  display: block;
}

.modal .modal-xs {
  max-width: 240px;
}

.modal .modal-sm {
  max-width: 400px;
}

.modal .modal-md {
  max-width: 800px;
}

.modal .modal-l {
  max-width: 1100px;
}

.modal .modal-xl {
  max-width: 1920px;
}
.modal .modal-xl .floor-view {
  max-height: 100vh;
}

.modal .modal-responsive {
  width: 100%;
  max-height: calc(100vh - 2rem);
  max-width: unset;
}

/* MODAL - end */
.input-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  cursor: pointer;
}
.input-wrapper input:not([type=submit]) {
  background-color: #edede6;
  padding: 1.6rem 0rem;
  border: 0;
  border-bottom: 1px solid black;
}
.input-wrapper input:not([type=submit]):focus {
  border: 0;
  border-bottom: 1px solid black;
  outline: 0;
}
.input-wrapper input:not([type=submit])::-webkit-autofill {
  box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: black !important;
  background-color: #edede6;
}
.input-wrapper input:not([type=submit])::-webkit-autofill:focus, .input-wrapper input:not([type=submit])::-webkit-autofill:hover, .input-wrapper input:not([type=submit])::-webkit-autofill:active {
  box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: black !important;
  background-color: #edede6;
}
.input-wrapper input[type=submit] {
  border: 0;
  padding: 1.8rem 2rem;
}
.input-wrapper input[type=submit]:hover {
  border: 1px solid #eee809;
}
.input-wrapper input::-moz-placeholder {
  color: #adadad;
  text-transform: initial;
}
.input-wrapper input::placeholder {
  color: #adadad;
  text-transform: initial;
}

.hidden-field {
  display: none;
}

.help-block.with-errors ul {
  padding-left: 0;
}
.help-block.with-errors ul li {
  color: red;
  margin-top: 5px;
  list-style: none;
}

.message-outpoot {
  font-family: Barlow-Medium;
  margin-top: 2rem;
  text-align: center;
  font-size: 1.8rem;
}
.message-outpoot.success {
  color: green;
}
.message-outpoot.failure {
  color: red;
}

.speaker-profile {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 6rem;
}
.speaker-profile .speaker-img {
  max-width: 25rem;
}
.speaker-profile h2 {
  font-size: 3.8rem;
  margin-bottom: 2.6rem;
}
@media (max-width: 991px) {
  .speaker-profile h2 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .speaker-profile {
    flex-direction: column;
    gap: 2rem;
  }
}

.speaker-main {
  display: flex;
  flex-direction: column;
}
.speaker-main p {
  margin-bottom: 0;
}
.speaker-main .speaking-date {
  line-height: 2;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .speaker-main {
    width: 100%;
  }
}

.h-line {
  display: block;
  height: 1px;
  background-color: black;
  width: 10rem;
  margin-block: 2.6rem;
}

.speaker-description p {
  letter-spacing: 1px;
  line-height: 1.3;
}

.speaker-bio {
  display: none;
}
.speaker-bio.show {
  display: block;
}

.contact-form-all {
  max-width: 60rem;
  padding: 2rem;
  background-color: #edede6;
  border: 2px solid #eee809;
  margin: 8rem auto 0rem auto;
  position: relative;
  z-index: 1;
}
.contact-form-all h2 {
  margin-bottom: 4rem;
  text-align: center;
}

.go-workshop {
  text-align: center;
  margin-bottom: 8rem;
  margin-top: 1rem;
  font-size: 1.8em;
}
.go-workshop a {
  font: inherit;
  display: inline-flex;
  position: relative;
  text-underline-offset: 3px;
}
.go-workshop a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: all 0.5s ease-out;
}
.go-workshop a:hover::before {
  content: "";
  width: 100%;
}

.logo-div {
  font-size: 3rem;
  font-weight: 700;
}
.logo-div .cyber-security,
.logo-div .initiative {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eee809;
}
.logo-div .local-chapter {
  width: -moz-fit-content;
  width: fit-content;
}