:root {
    --bs-body-font-family:"Montserrat", sans-serif;
    --bg-color-primary: #FF8F50;
    --bg-color-secondary: #57D7E8;
    --bg-color-extra: #145F7D;
    --bg-fixed-navbar: rgba(240,240,240,.95);
    --bs-btn-border-radius: 0;
    --bs-nav-link-font-weight: 700;
    --bs-navbar-nav-link-padding-x: 3rem;
    --bs-primary: #FF8F50;
}

h1, .display-4 { font-size: 1.5rem; }
h3 { font-size: 1.3rem; }
h4 { margin-top:1rem; font-size: 1.1rem; }

.lead { font-weight: bold; }
.text-primary-own { color: var(--bs-primary); }

.own-bg-primary { background-color: var(--bg-color-primary); }
.own-bg-secondary { background-color: var(--bg-color-secondary); color: #fff; }
.own-btn { border: solid 1px #eee!important; color: #eee; margin-bottom: 1rem;}
.own-btn:hover { background-color: rgb(240,240,240); color: black;}
.own-btn-dark { border: solid 1px #444!important; color: #444; margin-bottom: 1rem; }
.own-btn-dark:hover { background-color: rgb(3, 100, 210); color: white;}

body {
    background-image: url(/images/00005_generic-f8177c00.webp);
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--bs-body-font-family);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: black;
}
.event-background { 
    background-image: url(/upload/efsma-background.jpg);
    background-size: cover;
    background-position: center;
    color: var(--bg-color-primary)
}

.invitation { 
    padding: 3rem;
    background-color: white;
}


.label-form { 
    font-weight: bold;
    font-size: 1.2em;
}
.uk-heading-bullet, .h11{ position:relative; font-size: 19pt; }
.uk-heading-bullet1::before, .h11::before{content:"";display:inline-block;position:relative;top:calc(-.1 * 1em);vertical-align:middle;height:calc(4px + .7em);margin-right:calc(5px + .2em);border-left:calc(2px + .05em) solid #0d1724}
.navbar .container { 
    
    background-clip: border-box;
}
.content .container{
    background-color: rgba(240,240,240,.83);
}
.bg-gradient .container, .bg-sinaia .container { 
    background-color: transparent!important;
}

.bg-gradient a { 
    color: white;
}

.nav-item { 
    
    padding-left: var(--bs-navbar-nav-link-padding-x)!important;
    padding-right: var(--bs-navbar-nav-link-padding-x)!important; 
    display: flex;
    align-items: center;
}
.btn, .dropdown-item {     
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.5em;
}

.nav-link { 
        font-weight: 700; 
        color: rgb(113,113,113); 
        text-transform: uppercase; 
        font-size: 12px;        
    }
.nav-link:hover, .dropdown { 
    color: black;
}

.dropdown:hover { 
    color: red;
}

.nav-link.active { 
    color: var(--bg-color-extra)!important;
}
.btn { border-radius: 0;}

.speaker { 
    width: 150px;
    height: 150px;
    overflow: hidden;
    float: left;
}

.speaker img { 
    width: 100%;
    border-radius: 50%;
}

.header-background, footer {
    background-image: url(/upload/00006_generic.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-color-extra);
    text-align: left;
    color: white;
    font-weight:400;
    font-size: 14px;
}

footer a:link { 
    color: white;
    text-decoration: none;
}

.text-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
    background-image: linear-gradient(90deg, var(--bg-color-primary) 0, var(--bg-color-secondary) 100%)!important;
}

.bg-gradient { 
    background-image: linear-gradient(90deg, var(--bg-color-primary) 0, var(--bg-color-secondary) 100%)!important; 
    color: white;
}

.text-lg { 
    font-size: 3.2rem;
    font-weight: 400;
}

.text-lg b {
    font-weight: 800;
}

.content p, .content div { 
    padding-top: .3rem;
    padding-bottom: .3rem;
}



.cards-ul { 
    margin:0;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    list-style-type: none;
    column-gap: 2rem;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.cards-ul-li, .cards-ul li  {
    display: block;
    background-color: rgba(240,240,240,.90);
    color: black!important;
    padding: 1rem;
    margin: .5rem;
    border-radius: .3rem;
    flex: 1 1 200px;    
    font-size:.9em;
    font-weight: 400;
}

.cards-ul-li h3, .cards-ul li h3 {
    font-size: 1.1em; font-weight: bold;
}

.alert { padding:1rem; }
.content .container {
    margin-top: 2rem;
    margin-bottom: 2rem;   
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-collapse.collapse.show {
background-color: var(--bg-fixed-navbar);
padding: 1rem;
box-shadow: 2px 2px 5px #666;
}


#loginButton {
    
}

.bg-sinaia { 
    background-image: url("/images/327128497_1153057955397183_5152841234771887504_n.jpg"); 
    background-size: cover; background-position: center; 
   
}

.sinaia {
    animation: burns 20s ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
  
  @-webkit-keyframes burns {
    0% {
      transform: scale(1);
      transform-origin: bottom left;
    }
    50% {
      transform: scale(1.1) rotate(-2deg);
      transform-origin: center center;
    }
    100% {
      transform: scale(1);
      transform-origin: top right;
    }
  }
  

.taxe { 
    max-width: 95%!important;
}
.taxe td:nth-child(2), .taxe td:nth-child(3)  { 
    font-weight: bold;
}

.workshop { 
    margin:2rem;
}
.workshop h2 {
    font-size: 19px;
    font-weight: 600;
    padding: 1rem;
    border-bottom: solid 1px #000;
}



.tax-selector { 
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-content: stretch;
}

@media (max-width: 800px) {
    .tax-selector {
      flex-direction: column;
    }
    .tax { flex: 100%; width: 100%; }
  }

.tax { 
    flex: 30%;   
    position: relative;
    border: 2px solid #ccc;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1), 1px 1px 3px rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 0rem;
    margin: 5px;
    cursor: pointer;
}

.tax.selected { 
    background-image: linear-gradient(90deg, var(--bg-color-primary) 0, var(--bg-color-secondary) 100%)!important; 
    color: white;
}

.tax:hover {
    background-color: var(--bg-color-extra);
}

.tax .item { 
    font-size: 1.1em; 
    font-weight: bold;
    min-height: 90px;
}
.tax .valid {
    position: absolute;
    bottom: 10px;
    
    font-size: .8em;
    color: #888;
}
.tax .value { 
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 1.3em;
    font-weight: bold;
}


.bg-sinaia2 {
    display: block;
    position:relative;
    overflow: hidden;
    object-fit: cover;
  }

  #video-background {
    position: relative;
    left: 0; 
    top: -35%;
    min-width: 100vw; 
    min-height: 100%;
    width: 100vw; 
    z-index: 0;
    object-fit: cover;
  }
  


.lista { 
    list-style: none;
}
.lista li { 
    padding-top: .3rem;
    padding-bottom: .3rem;
}

@media (min-width: 992px) { 
    #video-background {
      position: absolute;
      left: 0; 
      top: -35%;
      min-width: 100vw; 
      min-height: 100%;
      width: 100vh; 
      z-index: 0;
      object-fit: cover;
    }

    .cards-ul-li, .cards-ul li  {
        display: block;
        background-color: rgba(240,240,240,.95);
        color: black!important;
        padding: 1rem;
        margin: .5rem;
        border-radius: .3rem;
        flex: 1 1 300px;    
        font-size:.9em;
        font-weight: 400;
    }
  }


.gt_float_wrapper, .gt-lang-code, .nturl  { 
    font-family: var(--bs-body-font-family);
    font-size: 16px;
  }

p { text-align: justify;}

.bg-about-1 { 
    background-color: rgba(254, 176, 176, 0.5)!important;
}

.bg-about-2 { 
    background-color: rgba(237, 196, 61, 0.3)!important;
}

.bg-about-3 { 
    background-color: rgba(9, 203, 187, 0.3)!important;
}