
/* 
    Created on : 31 May 2020, 13:58:46
    Author     : Joanna Hofmańska
*/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: "Sono";
    src: url("../assets/googlefonts/Sono-VariableFont_MONO,wght.ttf") format("truetype");
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/googlefonts/Roboto-Regular.ttf") format("truetype");
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: "RobotoLight";
    src: url("../assets/googlefonts/Roboto-Light.ttf") format("truetype");
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

root {
    display: block;
}

body {
    font-family: "RobotoLight", Arial, sans-serif;
    margin: 0px auto;
    color: black;
}

table {
    border-collapse: collapse;
}

a, button {
    cursor: pointer;
}

a {
    color: black;
}

a, a:hover, a:visited, a:active {
    text-decoration: none;
}

/* Interactive elements that can benavigated using the keyboardshould be surrounded by a visualoutline whenever they arefocused. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
video:focus-visible {
    outline: 2px solid darkblue; /* Or any desired focus style */
    outline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid darkblue; /* Or any desired focus style */
    outline-offset: 2px;
}

.top-announcement {
    background-color: #484a4d;
    text-align: center;
    font-size: 16px;
    color: white;
}

.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background-color: lightcoral;
    border-radius: 3px;
}

.skip:focus {
    position: static;
    width: auto;
    height: auto;
}

.skip:focus-visible {
    outline: 2px solid darkblue; /* Or any desired focus style */
    outline-offset: 2px;
}

.logo {
    height: 40px;
}

.top-nav a {
    font-family: "Roboto", Arial, sans-serif;
    color: black;
    font-size: 20px;
}

a.nav-pioneersmenu {
    color: #146c43;
}

.highlight-red {
    color: red;
    font-family: "Roboto", Arial, sans-serif;
}

.highlight-green {
    color: green;
    font-family: "Roboto", Arial, sans-serif;
}

.top-socials i{
    font-size: 22px;
    margin-left: 6px;
}

.top-info {
    background-image:url("../juhimg/top-content-bg-2568.jpg");
}

.top-info-text {
    background-color: rgb(255,255,255,0.8)
}

.flex-even {
    flex: 0 0 49%;
    max-width: 49%;
}

.product img{
    width: 100%;
    border-radius: 21px;
    margin-bottom: 10px;
}

.carousel-link {
    font-size: 22px;
    color: silver;
    margin-top: 5px;
}

.slide-title {
    font-size: 40px;
    font-weight: 700;
}

.caption-blues {
    background: #2b2a2b;
    background-image: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 70%, rgba(0, 212, 255, 0.6) 100%);
}

.caption-greens {
    background: #2b2a2b;
    background-image: radial-gradient(circle, rgba(2, 0, 36, 1) 0%, rgba(9, 121, 74, 1) 70%, rgba(8, 255, 152, 0.6) 100%);
}

.caption-greys {
    background: #2b2a2b;
    background-image: radial-gradient(circle, rgba(43, 42, 43, 1) 0%, rgba(87, 87, 89, 1) 70%, rgba(195, 198, 199, 0.6) 100%);
}

footer {
    margin: 0px auto;
    width: 100%;
    text-align: center;
    font-family: "Sono", Arial, sans-serif;
}

.search-bar i, .user-bar i, .search-bar form{
    display: none;
}

/* Old event page */
.events td {
    padding: 12px 10px;
    font-size: 16px;
    border-bottom: 1px solid silver;
}

.events a {
    color: #000cba;
}

.events tr td:first-of-type {
    font-weight: bold;
}

.events-description {
    width: 100%;
    margin: 0px auto;
    margin-bottom: 10px;
    border: 1px solid #CDA76D;
    border-radius: 5px;
    background-color: #F2E8D9;
    font-size: 20px;
    line-height: 1.5;
    padding: 10px;
    text-align: left;
    font-family: "Roboto", Arial, sans-serif;
}

.events-past {
    background-color: #e0e0e0;
}

.events {
    width: 70%;
    margin: 0px auto;
    text-align: center;
}

.events table {
    width: 100%;
    border-spacing: 0px;
    border: 2px solid silver;
}

.events th, .events td {
    text-align: left;
    border-left: 1px solid silver;
}

.events th {
    font-size: 20px;
    padding: 14px 8px;
    font-family: "Roboto", Arial, sans-serif;
    border-bottom: 2px solid silver;
    background-color: #F2F2F2;
}

th.events-year {
    font-size: 28px;
    padding: 20px 6px;
    background-color: #e0e0e0;
}
/*end of old event page*/

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Bootstrap product page css*/
.container {
  max-width: 960px;
}

/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #8e8e8e;
  transition: color .15s ease-in-out;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}

/*End of bootstrap product page css*/

@media only screen and (max-width: 1000px) {
    .events {
        width: 95%;
    }

    .events td {
        font-size: 12px;
    }

}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .carousel-item img {
        width: 98%;
    }

}

@media only screen and (max-width: 1920px) {
    .top-info {
        background-image:url("../juhimg/top-content-bg-1920.jpg");
    }
}

@media only screen and (max-width: 1000px) {
    .top-info {
        background-image:url("../juhimg/top-content-bg-1000.jpg");
    }
}