:root {
    --maintheme-color: #A52A2A;
    --maintheme-darkercolor: #A21E1E;
    --maintheme-lightercolor: #ead9d9;
  }


/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


body {
    font-family: 'Oswald', 'Lexend';
    background-image: url('../images/background.png');
    background-repeat: repeat;
}

.wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.conference-details {
    background-color: #f0f0f0;
    border: 0px solid black;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.v20 {
    height:15vh;
}

.daydate {
    margin-top: 10px;
    margin-bottom: 0;
}

.text-details {
    border: 0px solid black;
    box-sizing: border-box;
    text-align: right;
    height:100%;
}

.tleft{
    text-align: left;
}

.tright{
    text-align: right;
}
.tcenter{
    text-align: center;
}

.text-details h2 {
    font-size: 2.5em;
    color: #353535;
    font-weight: bold;
}

.text-details p {
    font-size: 1.3em;
}

.pt25{
    padding-top: 25%;
}

.pt50{
    padding-top: 50%;
}

.logo-container {
    border: 0px solid black;
    box-sizing: border-box;
    position: relative;
}

.logo-container img {
    max-width: 100%;
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);

}

.banner {
    width: 100%;
    background-image: url('../images/lisbon_skyline2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 5px 5px;
    position: relative
}

nav {
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

nav ul {
    background-color: var(--maintheme-color);
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;

    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.g3 {
    grid-template-columns: repeat(3,1fr);
}

.g8 {
    grid-template-columns: repeat(8,1fr);
}

.fvw38 {
    font-size: 3.8vw;
}
.fem12 {
    font-size:1.2em;
}

.current {
    background-color: var(--maintheme-lightercolor);
}

.bold {
    font-weight:600;
}
nav ul li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 4px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

li.highlight {
    background-color: var(--maintheme-darkercolor);
    color: white;
    border-radius: 2px;
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.2);
}


nav ul li a:hover {
    background-color:var(--maintheme-darkercolor);
    color: white;
    border-radius: 2px;
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.2);
}



.search-box {
    width: 100px;
    background-color: black;
    padding: 0;
    padding-right: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: absolute;
    top: 0%;
    right: 0;
}

.search-box input {
    width: 100%;
    border: none;
    background-color: transparent;
    color: white;
    padding: 5px;
    outline: none;
}



main {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}


.patrocinio-col {
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.content-col {
    box-sizing: border-box;
}


.content-col {

    text-align: justify;
    font-size: 1.0em;
    background-color: #fff;
    padding: 10px 20px 10px 20px;
    line-height: 1.5;
}

.news-col {
    box-sizing: border-box;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;

}

.p20 {
    width: 20%;
}

.p40 {
    width: 40%;
}
.p50 {
    width: 50%;
}
.p60 {
    width: 60%;
}


.p80 {
    width: 80%;
}

.p100 {
    width: 100%;
}



/* Style the <i> elements as bullet points */
.content-col i {
    display: block;
    margin-left: 20px;
    /* Adjust the spacing between the bullet and the text */
    position: relative;
}

/* Add a bullet icon before each <i> element */
.content-col i:before {
    content: "\2022";
    /* Unicode character for bullet point */
    position: absolute;
    left: -20px;
    /* Adjust the position of the bullet */
}


.content-col h2 {
    text-align: center;
    font-size: 2.0em;
    color:var(--maintheme-color);
}


.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.call_to_action {
    background-color: var(--maintheme-color);
    color: white;
    padding: 15px 30px;
    border: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Oswald', 'Lexend';
}

.disabled {
    background-color: #4d454a;
}

.call_to_action:hover {
    opacity: 0.8;
}


.nice-section {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.important {
    font-weight: bold;
    color: red;
}
