@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");
body {
  margin: 0;
}

img {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

a {
  text-decoration: none;
}

.red-bg {
  background-color: #d42a2a;
}

.yellow-bg {
  background-color: #ffe4a5;
}

.cormorant {
  font-family: "Cormorant", serif;
}

.cormorant-inf {
  font-family: "Cormorant Infant", serif;
}

.white {
  color: #ffffff;
}

.black {
  color: #000000;
}

.gold {
  color: #af8d00;
}

.light-blue-title {
  color: #96BED1;
  font-family: "Inter", serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .light-blue-title {
    font-size: 17px;
  }
}

.red-title {
  color: #E82027;
  font-family: "Inter", serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .red-title {
    font-size: 17px;
  }
}

.lg-red-title {
  color: #E82027;
  font-family: "Inter", serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.4;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  .lg-red-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 640px) {
  .lg-red-title {
    font-size: 20px;
  }
}

.sm-gold-title {
  color: #af8d00;
  font-family: "Cormorant", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.24em;
}
@media only screen and (max-width: 480px) {
  .sm-gold-title {
    font-size: 18px;
  }
}

.black-title {
  color: #1a1a1a;
  font-family: "Inter", serif;
  font-size: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
  .black-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .black-title {
    font-size: 27px;
  }
}
@media only screen and (max-width: 640px) {
  .black-title {
    font-size: 24px;
  }
}

.white-title {
  color: #fff9ec;
  font-family: "Inter", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}

.lg-black-title {
  color: #1a1a1a;
  font-family: "Cormorant Infant", serif;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 480px) {
  .lg-black-title {
    font-size: 50px;
  }
}

.content {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .content {
    padding: 10px 0;
  }
}

#tophead {
  background: linear-gradient(180deg, #E82027 0%, #821216 100%);
  padding: 10px;
}
#tophead img {
  max-width: 170px;
  padding: 7px;
}

.site-header img {
  padding: 12px 0;
  max-width: 292px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0;
}
ul li {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  text-transform: capitalize;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  text-align: left;
}
ul li:before {
  content: " ";
  background: url(/wp-content/uploads/2025/10/red-check-mark.svg) no-repeat center center/cover;
  position: absolute;
  top: 3px;
  left: 0px;
  width: 20px;
  height: 19px;
}

.outline-btn {
  border: 1px solid #ffe4a5;
  padding: 15px 15px;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 350px;
  text-align: center;
  letter-spacing: 2px;
}
.outline-btn:hover {
  border: 1px solid #1a1a1a;
  background: #ffe4a5;
  color: #1a1a1a;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .outline-btn {
    max-width: 440px;
  }
}
@media only screen and (max-width: 640px) {
  .outline-btn {
    max-width: 330px;
    width: 88%;
  }
}
.outline-btn a {
  color: #1a1a1a;
  text-decoration: none;
}

.black-btn {
  background: #1a1a1a;
  border: 1px solid #af8d00;
  padding: 15px 15px;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 350px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 2px;
}
.black-btn:hover {
  border: 1px solid #ddd1b9;
  background: #ffe4a5;
  color: #1a1a1a;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .black-btn {
    max-width: 440px;
  }
}
@media only screen and (max-width: 640px) {
  .black-btn {
    max-width: 330px;
  }
}

.red-btn {
  background: #E82027;
  border: 1px solid #E82027;
  padding: 15px 30px;
  border-radius: 37px;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .red-btn {
    max-width: 440px;
  }
}
@media only screen and (max-width: 640px) {
  .red-btn {
    max-width: 330px;
  }
}
.red-btn:hover {
  background: #c01016;
  border: 1px solid #c01016;
  color: #ffffff;
  cursor: pointer;
}

.light-gold-btn {
  display: none;
}
@media only screen and (max-width: 640px) {
  .light-gold-btn {
    display: block;
    background: #ffe4a5;
    border: 1px solid #ffe4a5;
    padding: 15px 10px;
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    color: #1a1a1a;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    letter-spacing: 2px;
  }
}
.light-gold-btn:hover {
  background: #1a1a1a;
  border: 1px solid #ffe4a5;
  color: #ffffff;
  cursor: pointer;
}

.top-hero {
  background-image: url(/wp-content/uploads/2025/10/the-vault-hero-1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 10px 40px;
  border-bottom: 8px solid #CBE3EE;
}
@media only screen and (max-width: 1024px) {
  .top-hero {
    background-position-x: 10%;
  }
}
@media only screen and (max-width: 440px) {
  .top-hero {
    background-image: url(/wp-content/uploads/2025/10/hero-mobile.jpg);
    padding: 10px 10px 0px;
  }
}
@media only screen and (max-width: 480px) {
  .top-hero .container {
    padding: 0 20px;
  }
}
.top-hero #sls-logo-hero {
  max-width: 240px;
  display: block;
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .top-hero #sls-logo-hero {
    max-width: 240px;
    margin: 0 auto;
  }
}
.top-hero .hero-title {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 69px;
  font-style: normal;
  letter-spacing: 3.5px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 0.7;
}
@media only screen and (max-width: 1024px) {
  .top-hero .hero-title {
    font-size: 57px;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero .hero-title {
    font-size: 46px;
    margin: 20px auto 0;
    text-align: center;
  }
}
@media only screen and (max-width: 440px) {
  .top-hero .hero-title {
    letter-spacing: 1px;
  }
}
.top-hero .lg-hero-title {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 93px;
  font-style: normal;
  letter-spacing: 3.5px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .top-hero .lg-hero-title {
    font-size: 78px;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero .lg-hero-title {
    font-size: 60px;
    margin: 0 auto;
    text-align: center;
  }
}
@media only screen and (max-width: 440px) {
  .top-hero .lg-hero-title {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero .light-gold-title {
    text-align: center;
  }
}
.top-hero .two-cols {
  display: flex;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto 30px;
  padding-top: 10px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .top-hero .two-cols {
    max-width: 930px;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero .two-cols {
    flex-direction: column;
  }
}
@media only screen and (max-width: 440px) {
  .top-hero .two-cols {
    margin: 0 auto;
  }
}
.top-hero .two-cols .content-col {
  width: 49%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-hero .two-cols .content-col {
    width: 100%;
    text-align: center;
  }
}
.top-hero .two-cols .content-col .hero-video img {
  width: 650px;
  position: absolute;
  top: -160px;
  left: -80px;
}
@media only screen and (max-width: 1024px) {
  .top-hero .two-cols .content-col .hero-video img {
    width: 560px;
    left: -60px;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero .two-cols .content-col .hero-video img {
    position: relative;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .top-hero .two-cols .content-col .hero-video img {
    top: 40px;
    width: 380px;
    left: -23px;
  }
}
@media only screen and (max-width: 440px) {
  .top-hero .two-cols .content-col .hero-video img {
    width: 115%;
    left: -20px;
  }
}
.top-hero .two-cols .title {
  font-family: "Cormorant Infant", sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .top-hero .two-cols .title {
    font-size: 24px;
  }
}
.top-hero .two-cols .h-support {
  margin-top: 3px;
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 1.7px;
  font-weight: 300;
  text-transform: uppercase;
}
.top-hero .two-cols .content {
  color: #ffffff;
  max-width: 480px;
  line-height: 1.7;
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .top-hero .two-cols .content {
    margin: 10px auto;
  }
}
.top-hero .two-cols .red-btn {
  display: inline-block;
}

.video-content .hero-video {
  position: relative;
  max-width: 685px;
  margin: 0 auto;
  border: 10px solid #ffe4a5;
}
.video-content .hero-video .sls-video {
  margin-bottom: -5px;
}
.video-content .hero-video #video-shadow {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.87) 100%);
  position: absolute;
  margin: 0 auto;
  top: 0;
  right: 0;
  left: 0;
}
.video-content .hero-video #video-shadow:hover {
  background: transparent;
}
.video-content .hero-video .play-btn {
  width: 100px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 35%;
  pointer-events: none;
}
@media only screen and (max-width: 640px) {
  .video-content .hero-video .play-btn {
    width: 50px;
  }
}
.video-content .hero-sm {
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 400;
  max-width: 670px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .video-content .hero-sm {
    font-size: 16px;
  }
}
.video-content .pbd-hero {
  font-size: 35px;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .video-content .pbd-hero {
    font-size: 29px;
  }
}
@media only screen and (max-width: 640px) {
  .video-content .pbd-hero {
    display: block;
  }
}
.video-content .two-cols {
  display: flex;
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .video-content .two-cols {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.video-content .two-cols .content-col {
  width: 50%;
  padding: 30px 30px;
}
@media only screen and (max-width: 640px) {
  .video-content .two-cols .content-col {
    width: 100%;
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .video-content .two-cols .content-col {
    padding: 30px 0px;
  }
}
.video-content .two-cols .content-col .red-btn {
  margin-left: 0;
  display: inline-block;
  margin-top: 20px;
}
@media only screen and (max-width: 640px) {
  .video-content .two-cols .content-col .red-btn {
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (max-width: 440px) {
  .video-content .two-cols .content-col:nth-of-type(1) {
    padding-bottom: 0;
  }
  .video-content .two-cols .content-col:nth-of-type(2) {
    padding-top: 0;
  }
}

.about-host {
  background-color: #CBE3EE;
  margin-top: 60px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .about-host {
    margin-top: 110px;
  }
}
.about-host .host-flexer {
  display: flex;
}
@media only screen and (max-width: 640px) {
  .about-host .host-flexer {
    flex-wrap: wrap;
  }
}
.about-host .host-flexer .pbd-host {
  width: 50%;
  background-image: url(/wp-content/uploads/2025/09/center-image.jpg);
  background-size: cover;
  position: relative;
  height: 460px;
}
@media only screen and (max-width: 640px) {
  .about-host .host-flexer .pbd-host {
    width: 100%;
    height: auto;
  }
}
.about-host .host-flexer .pbd-host img {
  position: absolute;
  width: 570px;
  bottom: 0;
  right: -80px;
}
@media only screen and (max-width: 640px) {
  .about-host .host-flexer .pbd-host img {
    right: 0;
    left: 0;
    bottom: -4px;
    margin: -70px auto 0;
    position: relative;
    width: 100%;
  }
}
.about-host .host-flexer .pbd-about {
  width: 50%;
  padding: 30px 60px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .about-host .host-flexer .pbd-about {
    width: 100%;
    padding: 30px 20px;
  }
}

#portfolio-companies {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 440px) {
  #portfolio-companies {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#portfolio-companies .lg-red-title {
  margin-bottom: 50px;
}
@media only screen and (max-width: 440px) {
  #portfolio-companies .lg-red-title {
    margin-bottom: 30px;
  }
}
#portfolio-companies .carousel-container {
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  #portfolio-companies .carousel-container {
    margin-top: 50px;
    margin-bottom: 0px;
  }
}
#portfolio-companies .portfolio-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#portfolio-companies .portfolio-logos .p-logo {
  padding: 10px;
}
@media only screen and (max-width: 640px) {
  #portfolio-companies .carousel-container {
    overflow: hidden;
    order: 3;
  }
  #portfolio-companies .portfolio-logos {
    display: flex;
    animation: scrollLogos 20s linear infinite; /* Adjust animation duration as needed */
    white-space: nowrap; /* Prevent wrapping of logos */
  }
  #portfolio-companies .p-logo {
    flex: 0 0 auto;
    padding: 0 10px;
    display: inline-block; /* Display logos in a line */
  }
  #portfolio-companies .p-logo img {
    max-width: 100%;
    height: auto;
  }
  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
#portfolio-companies .red-btn {
  display: block;
}

#qualify-attend .three-quarters {
  padding: 30px 30px 400px;
  background: #fff9ec;
}
#qualify-attend .three-quarters .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  #qualify-attend .three-quarters .container {
    flex-wrap: wrap;
  }
}
#qualify-attend .three-quarters .qualify-titles {
  width: 35%;
}
@media only screen and (max-width: 640px) {
  #qualify-attend .three-quarters .qualify-titles {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
#qualify-attend .three-quarters .two-cols {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  #qualify-attend .three-quarters .two-cols {
    width: 100%;
    flex-wrap: wrap;
  }
}
#qualify-attend .three-quarters .two-cols .beige-box {
  width: 43%;
  background: #f4eee1;
  padding: 21px;
}
@media only screen and (max-width: 1024px) {
  #qualify-attend .three-quarters .two-cols .beige-box {
    width: 42%;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #qualify-attend .three-quarters .two-cols .beige-box {
    padding: 15px;
  }
}
@media only screen and (max-width: 640px) {
  #qualify-attend .three-quarters .two-cols .beige-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
#qualify-attend .three-quarters .two-cols .beige-box .box-title {
  color: #af8d00;
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 6.2px;
  text-transform: uppercase;
}
#qualify-attend .three-quarters .two-cols .beige-box .box-content {
  color: #1a1a1a;
  text-align: center;
  font-family: "Cormorant", sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  #qualify-attend .three-quarters .two-cols .beige-box .box-content {
    font-size: 20px;
  }
}
#qualify-attend .price-row {
  display: flex;
  justify-content: space-between;
  margin-top: -320px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  #qualify-attend .price-row {
    flex-wrap: wrap;
  }
}
#qualify-attend .price-row .price-col {
  border: 1px solid #af8d00;
  background-color: #fff9ec;
  width: 19%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #qualify-attend .price-row .price-col {
    padding: 25px;
  }
}
@media only screen and (max-width: 768px) {
  #qualify-attend .price-row .price-col {
    width: 40%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  #qualify-attend .price-row .price-col {
    width: 80%;
    padding: 20px;
    margin: 0 auto 20px;
  }
}
#qualify-attend .price-row .price-col .dark-overlay {
  background-color: rgba(26, 26, 26, 0.4588235294);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#qualify-attend .price-row .price-col .price-flag {
  position: absolute;
  top: -4px;
  right: 0;
  max-width: 117px;
}
#qualify-attend .price-row .price-col .box-top .ticket-type {
  text-align: center;
  font-family: "Cormorant", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: -30px;
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  #qualify-attend .price-row .price-col .box-top .ticket-type {
    margin: -25px;
  }
}
@media only screen and (max-width: 640px) {
  #qualify-attend .price-row .price-col .box-top .ticket-type {
    margin: -20px;
  }
}
#qualify-attend .price-row .price-col .box-top .executive {
  background-color: #efe3c8;
}
#qualify-attend .price-row .price-col .box-top .founder {
  background-color: #dfbf7c;
}
#qualify-attend .price-row .price-col .box-top .ceo {
  background-color: #af8d00;
}
#qualify-attend .price-row .price-col .box-top .vip {
  background-color: rgb(26, 26, 26);
}
#qualify-attend .price-row .price-col .box-top .ticket-price {
  color: #000;
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}
#qualify-attend .price-row .price-col .box-top li {
  border-bottom: 1px solid #ddd1b9;
  padding-bottom: 15px;
}
#qualify-attend .price-row .price-col .outline-btn {
  background-color: #ffffff;
}
#qualify-attend .price-row .price-col .btn {
  width: 80%;
  margin-top: 14px;
}
@media only screen and (max-width: 640px) {
  #qualify-attend .price-row .price-col .btn {
    width: 88%;
  }
}

.overview-agenda {
  margin-top: 50px;
  padding: 0 5px;
}
.overview-agenda .agenda-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 10px;
}
.overview-agenda .agenda-top .gold-line {
  height: 1px;
  width: 80%;
  background-color: #ddd1b9;
}
@media only screen and (max-width: 768px) {
  .overview-agenda .agenda-top .gold-line {
    width: 70%;
  }
}
@media only screen and (max-width: 640px) {
  .overview-agenda .agenda-top .gold-line {
    width: 50%;
  }
}
.overview-agenda .agenda-row {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .overview-agenda .agenda-row {
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
.overview-agenda .agenda-row .agenda-box {
  border: 1px solid #ddd1b9;
  background-color: #fff;
  width: 29%;
  padding: 20px 20px 10px;
}
@media only screen and (max-width: 1024px) {
  .overview-agenda .agenda-row .agenda-box {
    width: 28%;
    padding: 10px 15px 10px;
  }
}
@media only screen and (max-width: 768px) {
  .overview-agenda .agenda-row .agenda-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .overview-agenda .agenda-row .agenda-box {
    padding: 5px 10px 5px;
  }
}
.overview-agenda .agenda-row .agenda-box .a-box-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .date {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .overview-agenda .agenda-row .agenda-box .a-box-inner .date {
    padding: 10px 10px 0;
  }
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .gold-border {
  width: 1px;
  height: 130px;
  background: #ddd1b9;
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .agenda {
  padding: 10px;
  width: 50%;
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .agenda .time {
  color: #1a1a1a;
  font-family: "Cormorant Infant", serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .agenda .description {
  color: #1a1a1a;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.overview-agenda .agenda-row .agenda-box .a-box-inner .agenda .disclaimer {
  color: #1a1a1a;
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: 400;
}
.overview-agenda .agenda-row .agenda-box .t-year {
  color: #af8d00;
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
}
@media only screen and (max-width: 480px) {
  .overview-agenda .agenda-row .agenda-box .t-year {
    font-size: 17px;
  }
}

.elevate-sales {
  background-color: #1a1a1a;
  padding-top: 150px;
  padding-bottom: 60px;
  margin-top: -80px;
}
.elevate-sales .white-title {
  margin-bottom: 30px;
  padding: 10px;
}
@media only screen and (max-width: 640px) {
  .elevate-sales .white-title {
    font-size: 32px;
    padding: 10px 20px;
  }
}
.elevate-sales .outline-btn {
  color: #ffffff;
}

#book-hotel {
  background-image: url(/wp-content/uploads/2024/01/book-hotel-bg-1.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0;
  height: 360px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  #book-hotel {
    margin: 0 auto;
    background-position-x: 84%;
  }
}
#book-hotel .container {
  display: flex;
  height: 100%;
}
#book-hotel .white-box-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
@media only screen and (max-width: 640px) {
  #book-hotel .white-box-inner {
    padding: 10px 50px;
  }
}
#book-hotel .white-box-inner .red-btn {
  margin-left: 0;
}
#book-hotel .white-box-inner .red-btn a {
  color: #ffffff;
  text-decoration: none;
}
#book-hotel .white-box {
  background-color: #ffffff;
  width: 50%;
  position: absolute;
  height: 70%;
  top: 15%;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  #book-hotel .white-box {
    width: 70%;
  }
}
@media only screen and (max-width: 640px) {
  #book-hotel .white-box {
    width: 90%;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

#qualify .qualify-top {
  padding-top: 70px;
  padding-bottom: 160px;
  background-color: #fff9ec;
}
#qualify .gold-line-horizontal {
  background: #af8d00;
  height: 1px;
  width: 100px;
  margin: 20px auto;
}
#qualify .form-box {
  max-width: 600px;
  margin: -130px auto 0;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #ddd1b9;
}
@media only screen and (max-width: 640px) {
  #qualify .form-box {
    max-width: 470px;
    padding: 10px;
  }
}
@media only screen and (max-width: 480px) {
  #qualify .form-box {
    max-width: 350px;
  }
}

#faq {
  margin-top: 100px;
  margin-bottom: 60px;
  padding: 0 20px;
}
#faq .faq-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}
#faq .faq-top .gold-line {
  height: 1px;
  width: 80%;
  background-color: #ddd1b9;
}
@media only screen and (max-width: 640px) {
  #faq .faq-top .gold-line {
    width: 60%;
  }
}
#faq .faq-box {
  border: 2px solid #ddd1b9;
  background: #fff;
  padding: 15px 20px 0;
  margin-bottom: 20px;
}
#faq .faq-box .faq-question {
  display: flex;
  justify-content: space-between;
  color: #1a1a1a;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 15px;
  cursor: pointer;
}
#faq .faq-box .faq-question img {
  width: 12px;
}
#faq .faq-box .faq-answer {
  color: #1a1a1a;
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 300;
  display: none;
}
@media only screen and (max-width: 768px) {
  #faq .faq-box .faq-answer {
    font-size: 16px;
  }
}
#faq .faq-box .rotate180 {
  transform: rotate(180deg);
  transition: transform 0.6s ease-in-out;
}

.footer {
  background-color: #10212C;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #CBE3EE;
}
@media only screen and (max-width: 440px) {
  .footer {
    padding: 0;
  }
}
.footer .footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: "Bebas Neue", serif;
  text-transform: uppercase;
  padding: 40px 0;
  border-bottom: 1px solid #E82027;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top-inner {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.footer .footer-top-inner a {
  text-decoration: none;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top-inner a {
    flex: 1;
    margin: 20px auto 0;
  }
}
.footer .footer-top-inner .footer-logo {
  max-width: 180px;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top-inner .footer-logo {
    text-align: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 640px) {
  .footer .footer-top-inner .footer-logo {
    margin-bottom: 30px;
    max-width: 240px;
  }
}
.footer .footer-top-inner .content {
  max-width: 450px;
  color: #ffffff;
  font-size: 32px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top-inner .content {
    text-align: center;
  }
}
.footer .footer-top-inner .outline-btn {
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .footer .footer-top-inner .outline-btn {
    width: 100%;
    margin: 0 auto;
  }
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .footer .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .footer-bottom p {
  color: #33607D;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-transform: capitalize;
  padding: 0 0 10px;
}
@media only screen and (max-width: 640px) {
  .footer .footer-bottom p {
    text-align: center;
  }
}

/** Video Popup **/
.popup {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.video-thumbnail {
  width: 100%;
  filter: grayscale(1);
}
.video-thumbnail:hover, .video-thumbnail:focus {
  filter: grayscale(0);
}

.play-btn {
  position: absolute;
  top: 31%;
  right: 0;
  width: 60px;
}
@media only screen and (max-width: 768px) {
  .play-btn {
    width: 40px;
  }
}

.popup .popupvideo {
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8705882353);
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .popup .popupvideo {
    padding: 25px 0 0;
  }
}
@media only screen and (max-width: 1100px) {
  .popup .popupvideo {
    padding: 40px 0 0;
  }
}

.popupvideo.show {
  visibility: visible;
  animation: fadeIn 1s;
}

.videoWrapper {
  position: relative;
  padding-bottom: 50.25%;
  height: 0;
  max-width: 1040px;
  margin: 0 auto;
}

.closeme {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  margin: 5px 0 0;
  color: #fff;
  position: absolute;
  top: 4%;
  right: 11%;
}
@media only screen and (max-width: 1350px) {
  .closeme {
    top: 2%;
    right: 10%;
  }
}
@media only screen and (max-width: 1300px) {
  .closeme {
    top: 1%;
    right: 5%;
  }
}
@media only screen and (max-width: 1200px) {
  .closeme {
    top: 1%;
    right: 2%;
  }
}

/** Menu styles **/
.top-header {
  position: relative;
}

.top-menu {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  align-items: center;
}
.top-menu svg {
  display: none;
  margin-left: -10px;
}
.top-menu a:hover svg,
.top-menu a:focus svg {
  display: inline-block;
}
.top-menu li {
  list-style: none;
  margin: 5px 8px;
  font-size: 17px;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
}
.top-menu li:before {
  display: none;
}
.top-menu .has-submenu {
  position: relative;
}
.top-menu .submenu {
  position: absolute;
  top: 30px;
  z-index: 30;
  padding: 10px 0px;
  min-width: 17vw;
  display: none;
  margin-top: -5px;
}
.top-menu .submenu.visible {
  display: block;
}
.top-menu a {
  text-decoration: none;
  padding: 6px 7px 5px;
  word-break: break-all;
}
.top-menu a span {
  width: 10px;
}
.top-menu a span:before {
  content: "";
  display: inline-block;
  width: 10px;
}
@media only screen and (min-width: 768px) {
  .top-menu a:hover, .top-menu a:focus {
    color: #ffe4a5;
    cursor: pointer;
  }
}
@media only screen and (max-width: 768px) {
  .top-menu {
    display: none;
  }
}

#burger-menu {
  cursor: pointer;
  height: 27px;
  width: 27px;
  margin: 0 0 0 30px;
  overflow: visible;
  position: relative;
  z-index: 101;
  left: 83%;
}

#burger-menu.close {
  /* position: fixed; */
  left: 80%;
}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
  background: url(/wp-content/uploads/2024/01/burger-menu.svg);
  display: block;
  height: 4px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
}

#burger-menu span:before,
#burger-menu span:after {
  content: "";
}

#burger-menu span {
  right: 0px;
  top: 13px;
  width: 31px;
}

#burger-menu span:before {
  right: 0px;
  top: -10px;
  width: 31px;
}

#burger-menu span:after {
  right: 0px;
  top: 10px;
  width: 31px;
}

#burger-menu.close span {
  transform: rotate(-45deg);
  top: 13px;
  width: 30px;
}

#burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 30px;
}

#burger-menu.close span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}

#menu {
  z-index: 100;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  padding-top: 20px;
  transition: all 0.3s ease-in-out;
}
#menu ul {
  padding-left: 0px;
}
#menu li {
  list-style: none;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
  font-size: 18px;
  padding: 5px 15px;
  display: block;
}
#menu li:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  #menu li:active {
    display: inline-block;
    color: #ffe4a5;
    cursor: pointer;
  }
}
#menu a {
  display: block;
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  #menu a {
    font-size: 20px;
  }
}

#menu.overlay {
  visibility: visible;
  opacity: 1;
  padding-top: 160px;
  background: rgba(0, 0, 0, 0.8784313725);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media only screen and (max-width: 640px) {
  #menu.overlay {
    padding-top: 160px;
  }
}

@media only screen and (min-width: 1024px) {
  #burger-menu {
    display: none;
  }
}
/* Add animation (fade in the popup) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dark-cta {
  background-image: url(/wp-content/uploads/2025/10/pbd-bottom.jpg);
  background-size: cover;
  background-position: center;
  height: 527px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .dark-cta {
    background-position-x: 50%;
    height: 500px;
    padding-top: 50px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 640px) {
  .dark-cta {
    background-image: url(/wp-content/uploads/2025/10/bottom-mobile.jpg);
    height: 360px;
    padding-top: 20px;
  }
}
.dark-cta .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.dark-cta .white-title {
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .dark-cta .white-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .dark-cta .white-title {
    font-size: 30px;
  }
}
.dark-cta .red-btn {
  display: inline-block;
  margin: 25px auto 0;
}

@media only screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}/*# sourceMappingURL=main.css.map */