/* GENERAL */

/*@import url("../fonts/gotham/gotham.css"); */

:root {
    --bs-theme: #c7a953;
    --bs-theme-dark: #c4a480;
    --bs-black: #000000;
    --bs-dark: #222222;
    --bs-light-gray: #f2f2f2;
    --bs-gray: #fff;
    --bs-white: #ffffff;
    --bs-light: #ddd;
    --bs-theme-gradient: linear-gradient(90deg, rgba(178,145,50,1) 0%, rgba(229,202,131,1) 50%, rgba(178,145,50,1) 100%);
    --scrollbar-bg: #0000;
    --scrollbar-color: #ffffff40;
}



html {
  scroll-behavior: smooth;
  background: var(--bs-black);
  scrollbar-color: var(--scrollbar-color) var(--scrollbar-bg);
}
body {
    background: var(--bs-white);
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-bg);
}
body {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .5px;
    color: var(--bs-black);
    font-weight: 200;
}

/* Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lh-1 {
  line-height: 1.2 !important;
}
.lh-2 {
  line-height: 1.4 !important;
}

.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}
.fw-900 {font-weight: 900;}

a {
  color: var(--bs-white);
}
a:hover {
  color: var(--bs-theme);
}

a, button, .btn, a img, .bs, .ts, .ease, 
.tab-clickable, .tab-clickable span {
    -webkit-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

strong, .strong, b {
    font-weight: 800;
}

hr {color: #bababa;}


.spin-load {
    position: absolute;
    z-index: 9999;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,0.4) url('../images/loader-w.svg') no-repeat scroll 50% 50% / 10% auto;
}
html.loading {
    overflow: hidden;
    position: relative;
}

.btn.spinner.active {
    position: relative;
}
.btn.spinner.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: grid;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000 url('../images/loader-w.svg') no-repeat scroll 50% 5%;
  border-radius: 3em;
}
.alert-lg {
    padding: 15px 45px;
    font-size: 1.2em;
}
.alert-success {
  color: #fff;
  background: #1eb4aa;
  border-color: #1eb4aa;
}
.alert-danger {
  color: #fff;
  background: #df532d;
  border-color: #df532d;
}

/* TEXT COLORS */
.text-white {
    color: var(--bs-white);
}
.text-black {
    color: var(--bs-black);
}
.text-gray {
  color: var(--bs-gray);
}
.text-light-gray {
  color: var(--bs-gray-500);
}
.text-gold {
  color: #c2a555;
}

/* BACKGROUNDS */
.bg-light {
  background-color: var(--bs-white) !important;
}
.bg-light-gray {
  background-color: var(--bs-light-gray) !important;
}
.bg-black {
  background-color: var(--bs-black) !important;
}
.bg-theme-gradient {
    background: var(--bs-theme-gradient) !important;
}

.bg-theme {
    background-color: #15294a !important;
}

.bg-gold {
    background: #cea65e url('../images/2025/osz/bg-gold.png') no-repeat scroll 0 0 / cover !important;
}

.bg-brown {
    background-color: #140d05 !important;
}

/* HEADER */
.logo {

}


/* BUTTONS */
.btn {
    letter-spacing: 1px;
}
.btn-theme-gradient {
    background: var(--bs-theme-gradient) !important;
}
.btn-theme-gradient:hover {
    background: var(--bs-black) !important;
    color: var(--bs-white);
}
.btn-black {
    background: var(--bs-black) !important;
    border: 3px solid var(--bs-black);
    color: var(--bs-white);
}
.btn-black:hover {
    background: transparent !important;
    border: 3px solid var(--bs-black);
    color: var(--bs-black);
}

.btn-black-outline {
    background: transparent !important;
    border: 1px solid var(--bs-gray);
    color: var(--bs-black);
}
.btn-black-outline:hover {
    background: var(--bs-black) !important;
    border: 1px solid var(--bs-black);
    color: var(--bs-white);
}
.btn-white {
    background: var(--bs-white) !important;
    border: 2px solid var(--bs-white);
    color: var(--bs-black);
}
.btn-white:hover {
    background: var(--bs-black) !important;
    border: 2px solid var(--bs-white);
    color: var(--bs-white);
}


/* FORM */
.form-control::placeholder {
    color: #000 !important;
    opacity: 0.9;
}
.form-control {
  color: #000;
  border: 2px solid #000;
  border-radius: 3rem;
  font-weight: 300;
  background: #fff !important;
}
.form-control:focus,
.form-control:active {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}
.form-control:focus::placeholder {
    opacity: 0.2;
}
.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.form-control-lg {
    padding: 1.1rem 2rem;
}

.form-check-input,
.form-check-input:active,
.form-check-input:focus,
.form-check-input:active:focus {
    cursor: pointer;
    box-shadow: none;
    border-color: var(--bs-gray);
    position: relative;
    top: 0.02rem !important;
    left: -0.18rem !important;
}
.form-check-input:checked {
  background-color: var(--bs-black);
  border-color: var(--bs-black);
}

input[readonly], input[disabled] {
  color: #999 !important;
  background-color: rgba(0,0,0,0.02) !important;
}


.custom-file-button {
	input[type="file"] {
		margin-left: -2px !important;
		font-size: 0.9em;

		&::-webkit-file-upload-button {
			display: none !important;
		}
		&::file-selector-button {
			display: none !important;
		}
	}
	
	& label {
        background-color: #000;
        cursor: pointer;
        border: 2px solid #c7a953;
        border-radius: 3rem;
        width: 50%;
        justify-content: center;
        display: flex;
        color: #c7a953;
	}

	&:hover {
		label {
			background-color: #000;
			cursor: pointer;
			border: 2px solid #c7a953;
			color: #c7a953;
		}
	}
}

.custom-file-button input[type="file"]::file-selector-button,
.custom-file-button input[type="file"]::-webkit-file-upload-button,
.custom-file-button input[type="file"]::-ms-browse  {
    display: none !important;
}
.custom-file-button label {
    background-color: #000;
    cursor: pointer;
    border: 2px solid #c7a953;
    border-radius: 3rem;
    width: 50%;
    justify-content: center;
    display: flex;
    color: #c7a953;
    font-weight: 300;
}


.rd { border-radius: 3rem; }
.rd-4 { border-radius: .5rem; }
.rd-5 { border-radius: .75rem; }
.rd-6 { border-radius: 1rem; }



/* font sizes */
.fs-7 {
    font-size: .9em !important;
}
.fs-8 {
    font-size: .85em !important;
}
.fs-9 {
    font-size: .8em !important;
}
.fs-10 {
    font-size: .75em !important;
}
.fs-11 {
    font-size: .7em !important;
}
.fs-12 {
    font-size: .6em !important;
}
.fs-xl {
    font-size: 3em !important;
}
.fs-xxl {
    font-size: 4em !important;
}
.fs-xxxl {
    font-size: 5em !important;
}

.under-line::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 2px solid #000;
  margin: 25px auto 0;
}

table tr > th {
  font-weight: 600;
}
table tr > td {
  font-weight: 200;
}



.bordered {
    border: 1px solid #ddd;
}

/* box shadows */
.bs {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.07),0 4px 6px -2px rgba(0,0,0,.05);
}
.bs:hover,
.bs:focus,
.bs:active,
.bs.active,
.bsh:hover {
    /*box-shadow: 0 4px 10px 0 rgba(0,0,0,.2),0 4px 20px 0 rgba(0,0,0,.1);*/
}

.rounded-4 {
    border-radius: 2rem;
}

/* widths */
.w-1 { width: 1%;}
.w-5 { width: 5%;}
.w-10 { width: 10%;}
.w-15 { width: 15%;}
.w-20 { width: 20%;}
.w-30 { width: 30%;}
.w-35 { width: 35%;}
.w-40 { width: 40%;}
.w-45 { width: 45%;}
.w-55 { width: 55%;}
.w-60 { width: 60%;}
.w-65 { width: 65%;}
.w-70 { width: 70%;}
.w-80 { width: 80%;}
.w-85 { width: 85%;}
.w-90 { width: 90%;}
.w-95 { width: 95%;}

/* paddings */
.px-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
}
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.form-title {
  letter-spacing: -1px;
  font-weight: 800;
}

.link-black {
    color: #000;
}
.link-black:hover {
    color: #000;
    text-decoration: none;
}

.owl-nav.disabled {
  display: none;
}


#speakers-carousel.owl-theme .owl-nav {
    position: relative;
}
#speakers-carousel.owl-theme .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: unset;
}
#speakers-carousel.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -5rem;
    top: -22rem;
}
#speakers-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -5rem;
    top: -22rem;
}

#speakers-carousel.owl-theme .owl-dots {
   margin-top: 1rem; 
}
#speakers-carousel.owl-theme .owl-dots .owl-dot {
  background: unset;
  border: unset;
}

#speakers-carousel.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
#speakers-carousel.owl-theme .owl-dots .owl-dot.active span, 
#speakers-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #000;  
} 

/* SAPI form */
.mmform-container {
  background-color: unset !important;
  color: #b09568 !important;
  display: block !important;
  font-family: 'Montserrat',sans-serif !important;
  font-size: 100% !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: unset !important;
  -webkit-box-shadow: unset !important;
  -moz-box-shadow: unset !important;
  box-shadow: unset !important;
}
.mmform-container .titlepart {
    display: none !important;
}
.mmform-container fieldset.datafields,
.mmform-container fieldset.submitpart {
  padding: unset !important;
}
.mmform-container div.formrowcontainer label.formlabel, 
.mmform-container div.formrowcontainer label.checkbox-formlabel {
  display: none !important;
}
.mmform-container div.fieldcontainer input[type="text"], 
.mmform-container div.fieldcontainer input[type="email"], 
.mmform-container div.fieldcontainer input[type="url"], 
.mmform-container div.fieldcontainer input[type="number"], 
.mmform-container div.fieldcontainer input[type="tel"], 
.mmform-container div.fieldcontainer input[type="password"], 
.mmform-container div.fieldcontainer select, 
.mmform-container div.fieldcontainer textarea {
    border: 0px solid #000 !important;
    outline: none !important;
    color: #92754b !important;
    background: rgba(255,255,255,0.1) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.2em !important;
    margin: 0 5px !important;
    padding: 15px 20px !important;
    width: 100% !important;
    border-radius: 0 !important;
}
.mmform-container div.fieldcontainer input::placeholder {
    color: #92754b !important;
}
.mmform-container div.fieldcontainer input:focus::placeholder {
    opacity: 0.2 !important;
}
.mmform-container div.submitcontainer button.submitbutton {
  background: #cea65e url('../images/2025/osz/bg-gold.png') no-repeat scroll 0 0 / cover !important;
  border-radius: 0 !important;
  font-size: 2.2em !important;
  font-weight: 800 !important;
  margin: 0px !important;
  padding: 12px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  width: 100% !important;
  color: #000 !important;
  text-align: center !important;
  display: block !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border: 0 solid #000 !important;
}
.mmform-container div.submitcontainer button.submitbutton:hover {
  background: #cea65e url('../images/2025/osz/bg-gold.png') no-repeat scroll 0 0 / cover !important;
  color: #000 !important;
  border: 0 solid #000 !important;
  opacity: 0.5;
}
.mmform-container  div.error-container {
  color: #ec1395;
  display: none;
  margin-left: 15px;
  margin-top: 5px;
  font-size: 14px;
}
.mmform-container p,
.mmform-container a:any-link {
  color: #b09568 !important;
  font-size: 0.9em;
}



@media (max-width: 1400px) { 

}


@media (max-width: 780px) { 
    .w-75, .w-65 { width: 100% !important;}
    .form-title {font-size:1.5em;}
    .fs-xxl, .fs-xl {
      font-size: 3em !important;
    }
    .form-section {
        padding: 25px 15px !important;
    }
    .form-title {
        margin-top: 0 !important;
        text-align: center !important;
    }
    .form-subtitle {
        margin-bottom: 20px !important;
        font-size: 1.3em !important;
        text-align: center !important;
    }
    #speakers-carousel.owl-theme .owl-nav {
        display: none !important;
    }
}

@media (max-width: 580px) { 
    .social-icons img {
      max-width: 60px;
    }
    .fs-xxl, .fs-xl {
      font-size: 2em !important;
    }
    .custom-file-button label {
        width: 60%;
    }
    .form-control {
        font-size: 1em;
    }
    .form-control-lg {
        padding: 1.2rem 1.2rem;
    }
    .custom-file-button .form-control-lg {
        padding: 1.2rem 1rem;
    }
    .social-section.py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .mmform-container div.submitcontainer button.submitbutton {
        font-size: 1.5em !important;
    }
}


/* FORM SECTION */
.form-section {
    background: #140d05 url('../images/2025/osz/form-section-bg.jpg') no-repeat scroll 50% 50% / 100% 100%;
}
.form-section .text-col {
    background: #140d05 url('../images/2025/osz/bg-gold.png') no-repeat scroll 50% 50% / 100% 100%;
    padding-left: 4em;
    padding-top: 4em;
}
.form-section .form-col .form-wrapper {
    background: transparent url('../images/2025/osz/form-bg.png') no-repeat scroll 50% 50% / 100% 100%;
}
.form-section .form-col .form-wrapper {
    padding: 3em;
}

.g-6, .gy-6 {
  --bs-gutter-y: 4rem;
}
.g-6, .gx-6 {
  --bs-gutter-x: 4rem;
}

/* TICKER */
.ticker-section {
    position: relative;
    z-index: 99;
}
.ticker {
    overflow: hidden;
    width: 100%;
    padding: 0;
    position: absolute;
    bottom: unset;
    left: 0;
    background: #a98345 url('../images/2025/osz/ticker-bg.jpg') no-repeat scroll 50% 50% / 100% 100%;
}
.ticker-news {
    width: 7000px;
    padding: 15px 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}
.ticker-news > * {
    display: inline-block;
    animation: news 15s infinite linear;
}
@keyframes news {
    0% {transform: translateX(0);}
    100% {transform: translateX(-1000px);}
}
.ticker-news > span > span {
    display: inline-block;
    border-right: 2px solid #fff;
    padding-right: 30px;
    margin-right: 20px;
    line-height: 0.8;
}


/* HERO SECTION - BACKGROUND VIDEO */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 1130px;
}
.hero-section .background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
.hero-section .background-video-content {
    position: relative;
    z-index: 1;
}
.hero-section video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* SPEAKERS SECTION - BACKGROUND VIDEO */
.speakers-section {
    position: relative;
    overflow: hidden;
    height: 1130px;
}
.speakers-section .background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
.speakers-section .background-video-content {
    position: relative;
    z-index: 1;
}
.speakers-section video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


@media (max-width: 1480px) { 
    .ticker-news {
        font-size: 26px;
    }
    .hero-section {
        height: 700px;
    }
    .speakers-section {
        height: 900px;
    }
    .form-section .w-75 {
        width: 80% !important;
    }
    .fs-xl {
        font-size: 2.5em !important;
    }
    .fs-xxl {
        font-size: 3em !important;
    }
    .fs-xxxl {
        font-size: 4em !important;
    }
    .form-section .form-col .form-wrapper {
        padding: 2em;
    }
    .speakers-section .w-75 {
      width: 85% !important;
    }
    .mmform-container div.submitcontainer button.submitbutton {
        font-size: 2em !important;
    }
}
@media (max-width: 1380px) { 
    .hero-section {
        height: 600px;
    }
}
@media (max-width: 1080px) { 
    .ticker-news {
        font-size: 18px;
    }
    .hero-section {
        height: 550px;
        transform: translateY(20px);
    }
      .speakers-section {
        height: 750px;
    }
}

@media (max-width: 900px) { 
    .ticker-news {
        font-size: 18px;
    }
    .hero-section {
        height: 470px;
        transform: translateY(20px);
    }
    .form-section {
        background: #140d05 url('../images/2025/osz/form-section-bg-m.jpg') no-repeat scroll 0 0 / 100% 100%;
        padding-top: 50px !important;
    }
    .form-section .w-75 {
        width: 85% !important;
      }
    .form-section .text-col {
        padding-left: 1em;
        padding-top: 1em;
    }
    .form-section .text-col > div {
        width: 100% !important;
    }
    .form-section .form-col {
        margin-top: 1em;
        padding: 0;
    }
    .fs-xxxl {
        font-size: 3em !important;
    }
    .fs-xxl {
        font-size: 2em !important;
    }
    .fs-xl {
        font-size: 1.5em !important;
    }
      .speakers-section {
        height: auto;
    }
}