* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}
*,
:after,
:before {
  box-sizing: border-box;
}

:root{
  --primary-color: #f94b32;
  --page-black: #000;
  --page-white: #fff;
  --page-gradint: linear-gradient(to left, rgba(249, 120, 50, 0.8), rgba(249, 75, 50, 0.8));
  --tawk-visibility: hidden;
}

html, body{
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  font: 16px/24px Helvetica, Arial, Sans-Serif;
  color: #eee9e9;
  transition: 0.5s;
  clip: rect(auto, auto, auto, auto);
  background-color:var(--page-black);
}
main {
  margin: 0 auto;
  /*! padding-top: 90px; */
  width: 100%;
}
img {
  max-width: 100%;
  max-height: 100%;
}
a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}
a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
p a {
  color: #f94b32;
}
ol,
ul {
  padding-left: 20%;
}
p {
  margin: 0 2rem 1rem 2rem;
}
h1 {
  font-size: 1.8rem;
  margin: 0 1rem 1rem 0;
  text-align: center;
  line-height: 2.2rem;
}
h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
h3 {
  font-size: 1.5rem;
  margin: 1rem;
}
button {
  cursor: pointer;
}
blockquote {
  border-left: 1px solid gray;
  margin-left: 1rem;
}
hr.separator {
  border: none;
  height: 0;
  margin: 0;
  border-bottom: 10px solid #f5f5f5;
  border-radius: 1rem;
  display: block;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  margin-inline-start: auto;
  margin-inline-end: auto;
}
.container {
  margin: 0 auto;
  padding: 5rem 1rem;
  max-width: 1000px;
}

.container-col{
  display: flex;
  flex-flow: row nowrap;
}

.col-2{
  width: 50%;
}

/* HEADER & FOOTER */
#header, #headerHomepage{
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  background: rgba(29,29,31,0.8);
  backdrop-filter: blur( 7px );
  -webkit-backdrop-filter: blur( 7px );
  border-bottom: 1px solid rgba( 255, 255, 255, 0.25 );
}

#header .container, #headerHomepage .container{
  max-height: 70px;
  display: flex;
  width: 100%;
  max-width: 1000px;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
a .logo{
  display: flex;
  align-items: center;
}

#header .container .logo, #headerHomepage .container .logo{
  height: 60px;
}

#header .container h1, #headerHomepage .container h1{
  height: 60px;
  margin: 0;
}

#header ul, #headerHomepage ul{
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
}
#header ul li a, #headerHomepage ul li a{
  padding: 0 12px;
  opacity: 0.5;
}

#header ul li.active a, #headerHomepage ul li.active a{
  opacity: 1;
}
#header ul li.active a:hover, #headerHomepage ul li.active a:hover{
  opacity: 1;
  color: var(--page-white);
  text-decoration: none;
}

#header ul li:last-child, #headerHomepage ul li:last-child{
  background: var(--page-gradint);
  opacity: 1;
  border-radius: 25px;
  margin-left: 10px;
}

#header ul li:last-child a, #headerHomepage ul li:last-child a{
  opacity: 1 !important;
  transition: .1s;
}

#header ul li:last-child a:hover, #headerHomepage ul li:last-child a:hover{
  color: var(--page-black);
  opacity: 1;
}

#header ul li a, #headerHomepage ul li a{
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  white-space: nowrap;
  transition: .1s;
}

#header ul li a:hover, #headerHomepage ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  opacity: 1;
}

#headerHomepage{
  z-index: 100;
}

#headerHomepage .container{
  justify-content: center;
  position: relative;
  transition: all .1s ease-in-out;
}

#headerHomepage .logo{
  transform: scale(3);
  position: absolute;
  left: 20px;
  bottom: 70px;
  transition: all .1s ease-in-out;
}

#footer {
  text-align: center;
  color: #fff;
  background: rgba(29,29,31,0.8);
  margin-top: 5rem;
}

#footer p{
  opacity: .5;
  margin: 0;
  display: inline;
  margin-right: 5px;
}

#footer a:hover{
  color: var(--primary-color);
  text-decoration: underline;
}

#footer .logo{
  max-width: 200px;
}

#footer .container{
  display: flex;
  width: 100%;
  padding: 50px 20px;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

#footer .container ul {
  text-align: left;
  padding: 0;
  margin-bottom: 10px;
  list-style: none;
  font-size: 14px;
}

#footer .copyright{
  display: flex;
  border-top:solid 1px rgba(255,255,255, .1);
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  background: rgba(29,29,31,1);
}

#footer h4{
  margin-bottom: 10px;
  font-size: 18px;
}

#footer .f-podpora{
  display: inline;
}

#footer .f-socials{
  display: flex;
  flex-flow: row wrap;
}

#footer .f-socials li{
  width: 40px;
  height: 40px;
  display: flex;
  margin: 10px;
  border-radius: 50%;
  justify-content: center;
  align-content: center;
  border: solid 1px #fff;
}
#footer .f-socials li img{
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 0;
}
/* HEADER & FOOTER END */

.full-width-video{
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-bottom: -70px;
}

#homepage-video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  top:0;
  left: 0;
}

#stop-homepage-video{
  border: solid 1px #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5%;
  right: 5%;
  cursor: pointer;
  background-color: rgba(0,0,0,.25);
}

#stop-homepage-video img{
  width: 20px;
}

.video-hero{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 0 auto;
  aspect-ratio: 16/9;
}

.video-hero .video{
  margin: 0;
}

.misia-heading{
  position: relative;
  font-size: 80px;
  font-weight: bold;
  line-height: 1em;
  padding: 0 !important;
  display: flex;
  flex-flow: column nowrap;
  text-align: left;
  color: var(--page-white);

  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 90vw;
}

.misia-heading span{
  font-weight: bold;
  width: 100%;
  color: #A1A1A6;
  font-size: calc(100% / 1.618);
}

.misia-paragraph{
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.3em;
  font-weight: 500;
  letter-spacing: .004em;
  text-align: left;
  color: #a1a1a6;
  margin: 0;
  margin-bottom: 50px;
  width: 700px;
  max-width: 90vw;
}

.misia-about{
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: .004em;
  text-align: left;
  color: #a1a1a6;
  margin: 0;
  margin-bottom: 50px;
  width: 900px;
  max-width: 90vw;
}

.misia-about p{
  margin: 0;
  padding: 6px 0;
  opacity: 0.8;
}


.hero {
  height: 300px;
}

.orange-bg{
  background-color: red
}

.hero h2 {
  margin-top: 5rem;
  font-size: 2rem;
  color: rgba(41, 35, 87, 0.5);
  font-size: 22px;
  letter-spacing: 0.5rem;
  line-height: 1.5rem;
}

.radius{
  border-radius: 1rem;
}

.subscribe {
  /*! margin: 0 auto; */
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.contact-form h2{
  text-align: left;
  font-weight: bold;
  width: 100%;
  color: #A1A1A6;
  font-size: 48px;
  line-height: 1.1em;
  width: 500px;

  background: linear-gradient(-45deg, #FF416C, var(--primary-color));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 20s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }

}

.form-row {
  display: block;
  width: 100%;
  text-align: left;
}

small {
  line-height: 1.2;
  font-size: .8rem;
  color: #757373;
}

.subscribe input::placeholder {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 500;
  letter-spacing: .004em;
  text-align: left;
  color: #a1a1a6;
}

.subscribe input:focus-visible{
  border-color: var(--primary-color);
  outline-style: none;
}

.subscribe button,
.subscribe input {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 500;
  letter-spacing: .004em;
  text-align: left;
  color: #fff;

  padding: 2rem 0;
  margin: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(255,255, 255, 0.25);
  vertical-align: middle;
  width: 100%;
  height: 3rem;
  background-color: transparent;
  transition: 0.3s ease;
}

.osobne-udaje{
  margin-top: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
}

.submit-btn{
  text-align: right;
  width: 50%;
  margin: 0;
  margin-top: 50px;
}

.osobne-udaje label{
  width: unset !important;
  font-size: 14px;
  font-weight: normal;
  color: #A1A1A6;
  cursor: pointer;
}

.osobne-udaje label a{
  opacity: 1 !important;
}

.subscribe .field_2 {
  display: none;
}
.subscribe input[type="radio"],
.subscribe input[type="checkbox"] {
  width: 1.5rem;
  margin: 0.5rem 0.5rem 0.5rem 0;
  display: inline-block;
  vertical-align: top;
  height: 1rem;
  cursor: pointer;
}
.subscribe select {
  background: #fff url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 97% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 1rem;
}
@media (max-width: 500px) {
  .subscribe button,
  .subscribe input,
  .subscribe select {
    width: 100%;
  }
}

.subscribe button {
  width: 200px;
  margin: 0;
  height: 100%;
  padding: 0.8rem;
  text-align: center;
  border: solid 3px var(--primary-color);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: .5s ease-in-out;
}

.subscribe label {
  vertical-align: middle;
  display: inline-block;
  width: calc(100% - 2.2rem);
  margin: .5rem 0;
}
.subscribe p {
  margin-bottom: 0;
}
.subscribe button:hover {
  background: var(--page-gradint);
  border: solid 3px var(--primary-color);
}
.subscribe img {
  max-width: 160px;
  max-height: 54px;
  vertical-align: middle;
  margin: 1rem;
}
.subscribe .fb-logo,
.subscribe .ig-logo,
.subscribe .spotify-logo,
.subscribe .podcasts-logo,
.subscribe .yt-logo {
  filter: saturate(0);
  transition: 0.3s ease;
}
.subscribe .fb-logo:hover,
.subscribe .ig-logo:hover,
.subscribe .spotify-logo:hover,
.subscribe .podcasts-logo:hover,
.subscribe .yt-logo:hover {
  filter: saturate(100%);
}
.descript {
  display: block;
  width: 100%;
  /*! background-color: #f5f5f5; */
}
.descript .container {
  /*! background-color: #5b5b5b; */
  border-radius: 1rem;
}
.descript h2 {
  padding: 0 10%;
}
.descript ul {
  padding: 0 10%;
}
.descript li {
  line-height: 1.6rem;
}
.video {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 4rem 0;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.year-plan {
  text-align: center;
}
.year-plan .container {
  padding-bottom: 0.3rem;
}
.plan {
  text-align: left;
}
.day-plan {
  display: block;
  overflow-x: scroll;
  overflow-y: hidden;
}
.btn-link {
  border: none;
  display: inline;
  font-size: 1rem;
  background: 0 0;
  color: #f94b32;
}
.btn-link:hover {
  text-decoration: underline;
}
.days {
  width: 2929rem;
  height: 8rem;
  display: block;
  text-align: center;
  padding: 0;
}
.days li {
  width: 7rem;
  height: 7rem;
  display: inline-block;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: bolder;
  text-align: center;
  line-height: 2rem;
  margin: 0 0.5rem;
  background-color: #fff;
  border: 2px solid #f5f5f5;
  color: #292357;
  transition: 0.3s ease;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
}

.days li:hover {
  background-color: #fdedee;
}

.days li.active {
  border: 2px solid #f94b32;
}
.days li.current {
  background: #292357;
  color: #fff;
}
.days i {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}
.days li[data-yt]::before {
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  background: url(/images/playbtn_dark.png) no-repeat;
  background-size: 1.5rem;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  font-size: 1rem;
  line-height: 1.4rem;
}
.month-plan {
  text-align: center;
}
.month-plan .container {
  padding-top: 0.3rem;
}
.day-read {
  text-align: center;
  display: block;
  width: 100%;
}
.day-read .container {
  background-color: #fff;
  border-radius: 1rem;
}
.day-read h2 {
  margin-bottom: 2rem;
}
.day-read ul {
  padding: 0;
  line-height: 2rem;
  margin: 1rem 0 2rem;
}
.day-read li {
  list-style: none;
  margin: 0.5rem 0;
}
.day-read .chapter {
  display: inline-block;
  margin-right: 1rem;
  min-width: 100px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: right;
  color: #292357;
  vertical-align: middle;
}
.day-read input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
  vertical-align: middle;
  display: inline-block;
}
.day-read button {
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  color: white;
  border-radius: 2rem;
  transition: 0.3s ease;
  background-color: #292357;
}
.day-read button:hover {
  text-decoration: none;
  background-color: #f94b32;
}
.day-read button:active,
.day-read button.active {
  background-color: #f94b32;
}
.day-read .btn-listen {
  margin: 0 auto;
  padding-left: 2.6rem;
  background: url(/images/playbtn.png) 7px center no-repeat;
  background-color: #292357;
  background-size: 1.6rem;
  font-size: 1rem;
}
.day-read .btn-read {
  display: block;
  margin: 0 auto;
  padding-left: 3rem;
  background: url(/images/readbtn.png) 11px center no-repeat;
  background-color: #292357;
  background-size: 1.5rem;
}

.day-read hr,
.descript hr  {
  border: 0.3rem solid #f5f5f5;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
  background-color: #f5f5f5;
  padding: 0 10%;
}

.calendar{
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem;
  background-color: #171718;
  backdrop-filter: blur( 7px );
  -webkit-backdrop-filter: blur( 7px );
  /*border: 1px solid rgba( 255, 255, 255, 0.1 );*/
  border-radius: 1rem;
  margin-bottom: 5rem;
}
.calendar .table{
  max-width: 100%;
  overflow-x: scroll;
  padding-bottom: 10px;
}

.calendar .table::-webkit-scrollbar {
  height: 17px;
}

.calendar .table::-webkit-scrollbar-track {
  background-color: #171718;
  border-radius: 25px;
}

.calendar .table::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border: solid 5px #171718;
}

.calendar .table::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.calendar-heading{
  position: relative;
  font-size: 80px;
  font-weight: bold;
  line-height: 1em;
  padding: 0 !important;
  display: flex;
  flex-flow: column nowrap;
  text-align: left;
  color: var(--page-white);
  margin-bottom: 80px;
}

.calendar-heading span{
  font-weight: bold;
  width: 100%;
  color: #A1A1A6;
  font-size: calc(100% / 1.618);
}

.calendar th{
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 500;
  letter-spacing: .004em;
  text-align: left;
  color: #a1a1a6;
  padding-bottom: 12px;
  margin-right: 20px;
}
.calendar .datum{
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 12px;
  font-weight: normal;
  opacity: 0.5;
  margin-bottom: 10px !important;
}

.calendar table {
  width: 100%;
  border-spacing: 0;
}

.calendar td.weekday6,
.calendar td.weekday0 {
  background: rgba( 255, 255, 255, 0.1 );
}
.calendar td.has-event {
  font-size: 14px;
  line-height: 1.3em;
  background: var(--page-gradint);
  border: 1px solid #515152;
}

.calendar td .table-inside{
  margin-top: 2px;
}

.calendar td.has-event .datum {
  opacity: 1;
  color: #fff;
}

.calendar td {
  padding: 12px;
  position: relative;
  min-width: 120px !important;
  max-width: 120px !important;
  height: 100px;
  border: 1px solid #515152;
  vertical-align: top;
}


#bibleText {
  text-align: left;
  margin-bottom: 0;
}
#bibleText i {
  margin: 0 0.3rem;
  font-size: 0.7rem;
}
#bibleVideo .video {
  margin-bottom: 0;
}
#audioPlayer {
  width: 100%;
}



@media (max-width: 760px) {

  .hero {
    height: 200px;
  }
  .hero h2 {
    margin-top: 1.5rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  p {
    margin: 0 1rem 1rem 1rem;
  }
  .container {
    padding: 2rem 1rem;
  }

  /* HEADER & FOOTER */
  #header, #headerHomepage{
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    align-items: center;
    width: 100vw;
    display: flex;
    justify-content: center;
    flex-flow: row nowrap;
    background: rgba(29,29,31,0.8);
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
    border-bottom: 1px solid rgba( 255, 255, 255, 0.25 );
  }

  #header .container, #headerHomepage .container{
    height: 50px;
    display: flex;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }

  #header .container .logo, #headerHomepage .container .logo{
    height: 50px;
    padding: 0 5px;
  }

  .nav{
    width: 100%;
  }

  .nav:before {
    content: url("/images/hamburger.svg");
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: scale(1.2);
    cursor: pointer;
    z-index: 1000;
  }
  .nav ul {
    align-items: center;
    background: #222;
    position: absolute;
    top: 0;
    padding: 0;
    right: 0;
  }
  .nav ul li {
    color: white;
    margin: 0 0 1.5rem 0;
    padding: 6px 12px;
  }
  .nav ul li a {
    color: white;
  }
  .nav ul {
    transition: 350ms !important;
    display: none !important;
    transform-origin: 100% 0;
    color: white;
  }
  .nav.open ul {
    display: flex !important;
    flex-flow: column nowrap !important;
    justify-content: center;
    width: 100vw;
    height: 100vh;
  }


  #footer {
    text-align: center;
    color: #fff;
    background: rgba(29,29,31,0.8);
    margin-top: 5rem;
  }

  #footer p{
    opacity: 1;
    color: rgba(255,255,255,.5);
  }

  #footer .container{
    padding: 40px 20px 10px 20px;
  }

  #footer .container ul {
    text-align: left;
    padding: 0;
    margin-bottom: 10px;
  }


  #footer .container ul:last-child {
    margin-bottom: 0;
  }

  #footer .copyright{
    justify-content: flex-start;
    padding: 16px 20px;
  }

  #footer .f-socials li{
    margin: 15px 15px 15px 0;
  }




  .full-width-video{
    width: 100vw;
    height: 70vh;
    margin-bottom: -60px;
  }

  #homepage-video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    top:0;
    left: 0;
  }

  #stop-homepage-video{
    border: solid 1px #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    top: 5%;
    right: 5%;
  }

  #stop-homepage-video img{
    width: 18px;
  }

  .video-hero{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 0 auto;
    aspect-ratio: 16/9;
  }

  .video-hero .video{
    margin: 0;
  }

  .misia-heading{
    font-size: 50px;
    margin-top: 0;
  }

  .misia-heading span{
    font-size: 24px;
  }

  .misia-paragraph{
    font-size: 22px;
  }

  .misia-about{
    font-size: 18px;
  }

  .misia-about p{
    margin: 0;
    padding: 6px 0;
    opacity: 0.8;
  }

  .radius{
    border-radius: 5px;
  }


  .calendar{
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
    background: rgba(29,29,31,0.8);
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
    /*border: 1px solid rgba( 255, 255, 255, 0.1 );*/
    border-radius: 0;
    margin-bottom: 5rem;
  }

  .calendar .table{
    padding-bottom: 1.5rem;
  }

  .calendar-heading{
    font-size: 50px;
    margin-bottom: 3rem;
  }

  .calendar-heading span {
    font-size: 24px;
  }

  .calendar .table::-webkit-scrollbar-thumb {
    border: solid 5px #222222;
    border-radius: 25px;
  }

  .calendar .table::-webkit-scrollbar-track {
    background-color: #222222;
  }

  .contact-form h2{
    font-size: 32px;
    max-width: 100%;
  }

  .osobne-udaje{
    margin-top: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .submit-btn{
    text-align: left;
    width: 100%;
    margin: 0;
    margin-top: 50px;
  }

  .subscribe button {
    width: 100%;
  }

  /*
  main{
    padding-top: 45px;
  }*/

}

/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v14/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lujVj9_mf.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
