@charset "UTF-8";
/*colors*/
/*fonts*/
.header {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 30px;
  background-color: rgb(179, 237, 245);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  /* box-shadow: 0px 3px 3px rgba(0,0,0, 0.1);*/
}
@media only screen and (min-width: 901px) and (max-width: 1100px) {
  .header {
    gap: 20px;
    padding-left: 0;
  }
}
.header__mobile-top-container {
  display: flex;
  justify-content: space-between;
}
.header__logo-container {
  position: relative;
  height: 100%;
  display: inline-block;
  align-self: center;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .header__logo-container {
    align-self: flex-start;
    height: 60px;
  }
}
.header__logo-img {
  height: 60px;
  width: auto;
  padding-left: 20px;
}
@media only screen and (max-width: 600px) {
  .header {
    /*height : 100vh;*/
    flex-direction: column;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
    height: 60px;
  }
}

.menu {
  display: flex;
  gap: 50px;
  flex: 0 1 auto;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  /*DROPDOWN STYLING START*/
  /* ikonky šipeček na rozbalování podkategorií v menu*/
  /*&__top-item:hover &__sublist, &__top-item:active &__sublist{
      visibility: visible;
      opacity: 1;
      display: block;   

      @media only screen and (max-width: 600px){
          display: flex;
          flex-wrap: nowrap;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          z-index: 2000;

      }
  }*/
  /*DROPDOWN STYLING end*/
}
@media only screen and (max-width: 600px) {
  .menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    align-content: stretch;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1100px) {
  .menu {
    gap: 20px;
  }
}
.menu__list {
  height: 100%;
  list-style: none;
  display: flex;
  align-self: center;
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .menu__list {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .menu__list {
    height: calc(100% - 60px);
    flex-direction: column;
    align-self: flex-start;
    width: 100%;
  }
}
.menu__top-item {
  position: relative;
  white-space: nowrap;
}
@media only screen and (max-width: 900px) {
  .menu__top-item {
    border-top: solid 1px rgba(94, 127, 131, 0.5);
    height: 15%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all ease-in-out 100ms;
  }
}
@media only screen and (max-width: 600px) {
  .menu__top-item:last-child {
    border-bottom: solid 1px rgba(94, 127, 131, 0.5);
  }
}
.menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  line-height: 60px;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all easy-in-out 100ms;
}
@media only screen and (min-width: 901px) and (max-width: 1100px) {
  .menu__link {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
  .menu__link {
    padding: 0;
    font-size: 1.9rem;
  }
}
.menu__link--nohand {
  cursor: unset;
}
.menu__link:hover {
  background-color: rgb(42, 100, 118);
  color: rgb(225, 247, 250);
}
@media only screen and (max-width: 600px) {
  .menu__link:hover {
    background-color: transparent;
    color: black;
  }
}
@media only screen and (max-width: 600px) {
  .menu__sublink {
    background-color: rgba(94, 127, 131, 0.5);
    color: rgb(179, 237, 245);
  }
}
@media only screen and (max-width: 600px) {
  .menu__sublink:hover {
    background-color: rgb(42, 100, 118);
    color: rgb(179, 237, 245);
  }
}
.menu__sublist {
  display: none;
  position: absolute;
  background-color: rgb(179, 237, 245);
  transition: all easy-in-out 100ms;
}
@media only screen and (max-width: 600px) {
  .menu__sublist {
    display: none;
    flex-wrap: nowrap;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2000;
  }
}
@media only screen and (max-width: 900px) {
  .menu__sublist {
    background-color: unset;
  }
}
.menu__subitem:nth-child(2) {
  border-top: solid 1px rgba(94, 127, 131, 0.5);
  border-bottom: solid 1px rgba(94, 127, 131, 0.5);
}
@media only screen and (max-width: 600px) {
  .menu__subitem:nth-child(2) {
    border-top: solid 1px rgb(179, 237, 245);
    border-bottom: solid 1px rgb(179, 237, 245);
  }
}
.menu__subitem {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 600px) {
  .menu__subitem {
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    background-color: rgb(42, 100, 118);
    color: rgb(225, 247, 250);
  }
}
.menu__sublink {
  white-space: nowrap;
}
@media only screen and (min-width: 901px) {
  .menu__sublink {
    background-color: rgb(179, 237, 245);
  }
}
@media only screen and (min-width: 901px) {
  .menu__top-item:hover .menu__sublist, .menu__top-item:active .menu__sublist {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 901px) {
  .menu__sublink:hover {
    background-color: rgb(42, 100, 118);
    color: rgb(179, 237, 245);
  }
}
@media only screen and (min-width: 901px) {
  .menu__arrow-container {
    display: none;
  }
}
.menu__arrow-container-right {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  z-index: 2000;
}
@media only screen and (min-width: 901px) {
  .menu__arrow-container-right {
    display: none;
  }
}
.menu__arrow-container-down {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  z-index: 2000;
}
@media only screen and (min-width: 901px) {
  .menu__arrow-container-down {
    display: none;
  }
}
.menu__arrow {
  width: 50px;
  height: 50px;
}
.menu__sm-link-container {
  flex-grow: 0;
  display: flex;
  align-self: center;
  align-items: center;
  height: 60px;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
.menu__sm-link {
  display: block;
  height: 50%;
}
.menu__sm-img {
  height: 100%;
  width: 60px;
}
@media only screen and (max-width: 1170px) {
  .menu__sm-img {
    height: 80%;
    width: 30px;
  }
}

.menu--side {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: -60vw;
  height: calc(100vh - 60px);
  width: 60vw;
  transition: transform 1s;
  background-color: rgb(179, 237, 245);
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .menu--side {
    display: flex;
  }
}
.menu--side__top-item {
  height: 15%;
  border-top: solid 1px rgba(94, 127, 131, 0.5);
}
.menu--side__sublink {
  width: 100%;
}
.menu--side__subitem {
  width: 100%;
  background-color: rgb(42, 100, 118);
  color: rgb(225, 247, 250);
}
.menu--side__sublist-tablet {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  z-index: 2000;
}
.menu--side__sublist {
  width: 100%;
  height: 60px;
  z-index: 100;
  top: 100%;
}

.icons-container {
  display: none;
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .icons-container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-self: center;
  }
}

#click {
  display: none;
}

.hamburger {
  display: none;
}
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

.closing {
  display: none;
}
@media only screen and (min-width: 901px) {
  .closing {
    display: none;
  }
}

#click:checked ~ .menu--side {
  transform: translate(-60vw, 0);
}

#click:checked ~ label .hamburger {
  display: none;
}

#click:checked ~ label .closing {
  display: flex;
}

@media only screen and (min-width: 901px) {
  .menu-label {
    display: none;
  }
}

@media only screen and (min-width: 901px) {
  .checkbox {
    display: none;
  }
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}
.hamburger-menu__img {
  height: 90%;
}
@media only screen and (max-width: 600px) {
  .hamburger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-right: 20px;
  }
}

.closing-menu {
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-right: 20px;
}
.closing-menu__img {
  height: 80%;
}

.footer {
  width: 100%;
  box-shadow: 0px -3px 3px rgba(0, 0, 0, 0.1);
  color: white;
}
.footer__claim-container {
  width: 100%;
  height: 140px;
  padding: 20px 10px;
  background-image: url("/images/footer_small.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.8rem;
  text-align: center;
  line-height: 25px;
}
@media only screen and (min-width: 480px) {
  .footer__claim-container {
    line-height: 35px;
  }
}
.footer__claim-text {
  font-family: "Playball", "Montserrat", sans-serif;
  font-size: 1.3rem;
}
@media only screen and (min-width: 425px) {
  .footer__claim-text {
    font-size: 1.5rem;
  }
}
.footer__img {
  display: block;
  width: 100%;
}
.footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
  height: 60px;
  padding: 0 50px;
  background-image: linear-gradient(rgb(44, 61, 63), rgb(24, 35, 36) 30%);
}
.footer__icon {
  height: 100%;
  width: auto;
}

html {
  box-sizing: border-box;
}

*, ::after, ::before {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: rgb(24, 35, 36);
  background-color: rgba(225, 247, 250, 0.4);
}

main {
  margin: 0 auto;
}
@media only screen and (min-width: 500px) {
  main {
    margin: 0 20px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (min-width: 1001px) {
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  main {
    max-width: 1400px;
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

h1, h2 {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-weight: 300;
}

h3 {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: rgb(44, 61, 63);
}

h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: rgb(42, 100, 118);
}

a {
  text-decoration: none;
  border: none;
  background: none;
  display: inline-block;
  color: unset;
}

.claim-container {
  position: absolute;
  top: 10%;
  left: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  width: 80%;
  font-family: "Playball", "Montserrat", sans-serif;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2px;
  line-height: 80px;
  padding: 0 10px;
}

.button {
  height: 50px;
  padding: 10px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
  cursor: pointer;
  transition: transform 0.05s;
}

.button:hover {
  transform: scale(1.1);
}

.button--primary {
  color: rgb(179, 237, 245);
  background-color: rgb(179, 237, 245);
  border: solid 1px rgba(94, 127, 131, 0.5);
  box-shadow: 3px 3px 10px rgba(22, 55, 65, 0.5);
  color: rgb(42, 100, 118);
  transition: transform 0.05s, box-shadow 0.05s;
}
.button--primary__link {
  color: rgb(24, 35, 36);
}

.button--primary:hover {
  box-shadow: 4px 4px 12px rgba(22, 55, 65, 0.5);
}

.button--primary:active {
  box-shadow: 3px 3px 10px rgba(22, 55, 65, 0.5);
  transform: translate(2px, 2px);
  background-color: rgb(165, 220, 227);
}

.button--secondary {
  background-color: transparent;
  border: solid 1px rgb(179, 237, 245);
  box-shadow: 3px 3px 10px rgba(225, 247, 250, 0.4);
  color: white;
  transition: transform 0.05s, box-shadow 0.05s;
}

.button--secondary:hover {
  background-color: transparent;
  box-shadow: 4px 4px 12px rgba(225, 247, 250, 0.4);
}

.button--secondary:active {
  transform: translate(2px, 2px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 3px 3px 10px rgba(225, 247, 250, 0.4);
}

/*.button a:hover {

    color: variables.$c-hover-font;
}*/
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  margin-top: 60px;
}
@media only screen and (min-width: 601px) {
  .hero {
    height: 420px;
    margin-top: 60px;
  }
}
.hero__claim-container {
  position: absolute;
  top: 10%;
  left: 10%;
  display: flex;
  flex-direction: column;
  height: 80%;
  width: 80%;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero__logo-container {
  height: 200px;
  display: flex;
  align-items: flex-end;
}
.hero__claim {
  font-family: "Playball", "Montserrat", sans-serif;
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
}
@media only screen and (min-width: 601px) {
  .hero__claim {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    height: 100px;
  }
}
.hero__claim--smaller {
  font-size: 1.5rem;
  font-weight: 100;
}

.article-thumbnail {
  width: 100%;
  position: relative;
  box-shadow: 0px 0px 10px rgba(225, 198, 198, 0.2);
  border-radius: 5px;
}
.article-thumbnail__text-container {
  position: absolute;
  width: 90%;
  height: 100px;
  bottom: 15%;
  left: 5%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  color: rgb(225, 247, 250);
}
.article-thumbnail__text-container:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(179, 237, 245);
}
.article-thumbnail__text {
  font-size: 1.5rem;
  border: 1px solid white;
  border-radius: 5px;
  text-align: center;
  padding: 5px;
  width: 90%;
}
@media only screen and (min-width: 400px) {
  .article-thumbnail__text {
    font-size: 1.8rem;
  }
}
.article-thumbnail__text-container:hover .article-thumbnail__text {
  border: 1px solid rgb(179, 237, 245);
}
.article-thumbnail__img {
  border-radius: 5px;
}

.country {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  align-items: flex-start;
  padding: 80px 0 30px;
  gap: 60px;
}
@media only screen and (min-width: 1001px) {
  .country {
    margin: 0 auto 30px auto;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 8vh 175px 560px;
    -moz-column-gap: 100px;
         column-gap: 100px;
    row-gap: 56px;
    padding-left: 0;
    overflow: hidden;
    width: 90%;
  }
}
@media only screen and (min-width: 1400px) {
  .country {
    max-width: 90%;
  }
}
.country__selection {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 50px;
  padding: 20px 0 50px;
  border-top: solid 2px rgb(179, 237, 245);
  border-bottom: solid 2px rgb(179, 237, 245);
}
@media only screen and (min-width: 1001px) {
  .country__selection {
    gap: 61px;
    grid-row: 1/3;
    grid-column: 1/2;
    text-align: center;
    height: 100%;
    border-bottom: 2px solid rgb(179, 237, 245);
  }
}
.country__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
  gap: 30px;
}
@media only screen and (min-width: 550px) {
  .country__list {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1001px) {
  .country__list {
    height: 120px;
  }
}
.country__link {
  text-decoration: none;
  color: white;
  background: rgb(22, 55, 65);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 100px;
  font-size: 1.2rem;
}
@media only screen and (min-width: 550px) {
  .country__link {
    line-height: 150px;
  }
}
@media only screen and (min-width: 1001px) {
  .country__link {
    line-height: 120px;
    height: 100%;
    width: 100%;
    font-size: 1.4rem;
  }
}
.country__link:hover {
  background-color: rgb(43, 69, 78);
  color: rgb(83, 230, 250);
}
.country__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  padding: 2px;
  border: solid 1px rgb(22, 55, 65);
  flex: 0 0 100px;
  box-shadow: 3px 3px 3px rgba(94, 127, 131, 0.5);
  transition: transform 0.05s, box-shadow 0.05s;
}
@media only screen and (min-width: 550px) {
  .country__item {
    flex: 0 0 150px;
    height: 150px;
  }
}
@media only screen and (min-width: 1001px) {
  .country__item {
    height: 100%;
    flex: 0 0 120px;
  }
}
.country__item:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 4px rgba(94, 127, 131, 0.5);
}
.country__item:active {
  box-shadow: 2px 2px 3px rgba(94, 127, 131, 0.5);
  transform: translate(2px, 2px);
}
.country__img-container {
  width: 100%;
  height: 400px;
  position: relative;
  box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
@media only screen and (min-width: 60px) {
  .country__img-container {
    height: 450px;
  }
}
@media only screen and (min-width: 1001px) {
  .country__img-container {
    grid-row: 3/4;
    grid-column: 1/2;
    height: 560px;
  }
}
.country__img {
  border-radius: 5px;
}
.country__claim {
  font-size: 2.5rem;
  background-color: unset;
  color: rgb(24, 35, 36);
  text-align: right;
  justify-content: flex-end;
  padding-right: 20px;
  height: 30%;
  width: 350px;
  top: 50px;
  right: 0;
  left: unset;
}
@media only screen and (min-width: 600px) {
  .country__claim {
    width: 400px;
    top: 40px;
  }
}
@media only screen and (min-width: 1001px) {
  .country__claim {
    font-size: 2.8rem;
  }
}

.most-read {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 30px 50px 30px;
  overflow: hidden;
  border: solid 1px rgb(179, 237, 245);
  background-color: rgb(225, 247, 250);
}
@media only screen and (min-width: 1001px) {
  .most-read {
    grid-row: 1/4;
    grid-column: 2/3;
    margin: 0;
    height: 100%;
  }
}
.most-read__list {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (min-width) {
  .most-read__list {
    width: 75%;
  }
}
.most-read__item {
  height: calc((100% - 40px) / 3);
}
@media only screen and (min-width: 1001px) {
  .most-read {
    width: 100%;
    max-width: 360px;
  }
}
.most-read__title {
  line-height: 10vh;
  padding-bottom: 40px;
}
@media only screen and (min-width: 1001px) {
  .most-read__title {
    grid-row: 1/2;
    line-height: 8vh;
    padding-bottom: 30px;
    text-align: center;
  }
}

.article-teaser {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 300px auto;
  gap: 20px;
  justify-items: center;
  padding-bottom: 0px;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 1001px) {
  .article-teaser {
    grid-template-rows: 400px;
    margin-top: 0;
  }
}
.article-teaser__header {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 500px) {
  .article-teaser__header {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser__title-container {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
  }
}
.article-teaser__title {
  border-bottom: solid 1px rgb(179, 237, 245);
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (min-width: 300px) {
  .article-teaser__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 400px) {
  .article-teaser__title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 900px) {
  .article-teaser__title {
    font-size: 3rem;
  }
}
.article-teaser__caption--desktop {
  display: none;
}
@media only screen and (min-width: 1001px) {
  .article-teaser__caption--desktop {
    display: inline-block;
    color: white;
  }
}
.article-teaser__button {
  display: none;
}
@media only screen and (min-width: 1001px) {
  .article-teaser__button {
    display: flex;
    margin-top: 30px;
    margin-right: 30px;
  }
}
.article-teaser__link {
  color: white;
}
.article-teaser__content {
  text-align: center;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 1001px) {
  .article-teaser__content {
    display: none;
  }
}
.article-teaser__date {
  color: rgb(42, 100, 118);
}
.article-teaser__text {
  padding: 30px 0 10px 0;
}
.article-teaser__link {
  color: rgb(42, 100, 118);
  height: 100%;
  padding: 5px 0;
}
.article-teaser__categories {
  display: flex;
  width: 90%;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0 10px;
  margin-top: 20px;
  border-top: 1px solid rgba(94, 127, 131, 0.241);
  border-bottom: 1px solid rgba(94, 127, 131, 0.241);
}
@media only screen and (min-width: 1001px) {
  .article-teaser__categories {
    display: none;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser__button-container {
    display: none;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser__img--leftrigth {
    border-radius: 5px;
  }
}

.article-teaser--right {
  padding-bottom: 0;
}
@media only screen and (min-width: 1001px) {
  .article-teaser--right {
    width: 90%;
    margin: 0 auto 100px;
    grid-template-columns: calc(60% - 30px) 40%;
    grid-template-rows: auto;
    grid-auto-flow: dense;
    gap: 30px;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--right__header {
    border-radius: 5px;
    grid-column: 2/3;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--right__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-column: 1/2;
    padding: 20px 20px 0 0;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--right__date {
    order: -1;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--right__button--container {
    display: flex;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .article-teaser--right__title {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 1001px) {
  .article-teaser--left {
    width: 90%;
    margin: 0 auto 100px;
    grid-template-columns: 40% calc(60% - 30px);
    grid-template-rows: auto;
    gap: 30px;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--left__header {
    border-radius: 5px;
    grid-column: 1/2;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--left__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-column: 2/3;
    padding: 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--left__date {
    order: -1;
  }
}
@media only screen and (min-width: 1001px) {
  .article-teaser--left__button--container {
    display: flex;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1300px) {
  .article-teaser--left__title {
    font-size: 2.5rem;
  }
}

.article {
  width: 100%;
  padding: 20px;
}
@media only screen and (min-width: 1001px) {
  .article {
    padding: 20px 50px;
  }
}
.article__hero {
  margin-top: 60px;
  width: 100%;
  height: 40vh;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 1001px) {
  .article__hero {
    height: 50vh;
    min-height: 500px;
  }
}
.article__caption {
  font-size: 1.3rem;
  text-align: center;
  color: rgb(42, 100, 118);
  margin: 20px 0;
}
.article__date {
  color: rgba(22, 55, 65, 0.5);
  font-size: 0.9rem;
  text-align: right;
  margin: 0;
}
.article__perex {
  font-weight: bold;
}
.article p {
  margin: 20px 0;
}
.article__title--smaller {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (min-width: 900px) {
  .article__title--smaller {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1001px) {
  .article__title--smaller {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .article__title--smaller {
    font-size: 4rem;
  }
}
.article__title {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (min-width: 300px) {
  .article__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 450px) {
  .article__title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 600px) {
  .article__title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 900px) {
  .article__title {
    font-size: 6rem;
  }
}

.expeditions-article__route {
  text-align: center;
  font-size: 0.8rem;
}
.expeditions-article__perex {
  padding: 20px;
  font-weight: bold;
  max-width: 1200px;
  margin: 0 auto;
}
.expeditions-article__members-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 40px 0 30px 0;
}
.expeditions-article__route-title {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 20px;
}

.expedition {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.expedition :first-child {
  margin-top: 0px;
}
.expedition__day {
  font-size: 1.2rem;
}
.expedition__day--left {
  clear: left;
}
.expedition__day--right {
  clear: right;
}
.expedition__img--left {
  width: 45%;
  float: right;
  margin: 0 0 20px 20px;
  clear: left;
}
.expedition__img--right {
  width: 45%;
  float: left;
  margin: 0 30px 20px 0;
  clear: right;
}
.expedition__perex {
  margin: 20px auto 20px auto;
  max-width: 1200px;
}

.expedition p:has(+ img) {
  margin-bottom: 0;
}

.members {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 40px auto;
}
@media only screen and (min-width: 600px) {
  .members {
    width: 60%;
    min-width: 415px;
  }
}
@media only screen and (min-width: 850px) {
  .members {
    padding: 20px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1100px) {
  .members {
    padding: 20px;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.members__item {
  display: flex;
  width: 100%;
  gap: 0px;
  align-items: center;
}
@media only screen and (min-width: 400px) {
  .members__item {
    gap: 50px;
  }
}
@media only screen and (min-width: 850px) {
  .members__item {
    width: calc((100% - 40px) / 2);
    padding: 10px;
    box-shadow: 3px 3px 10px rgba(94, 127, 131, 0.241);
    gap: 100px;
  }
}
@media only screen and (min-width: 1100px) {
  .members__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: calc((100% - 120px) / 4);
    text-align: center;
    padding-top: 10px;
  }
}
.members__description {
  padding-left: 20px;
}
@media only screen and (min-width: 400px) {
  .members__description {
    padding-left: 0;
  }
}
.members__foto-container {
  width: 100px;
  height: 100px;
  border: solid 1px;
  border-radius: 50%;
}
@media only screen and (min-width: 1100px) {
  .members__foto-container {
    width: 150px;
    height: 150px;
  }
}
.members__foto {
  border-radius: 50%;
}
.members__name {
  color: rgb(22, 55, 65);
  font-weight: 700;
  font-size: 1.2rem;
}
.members__function {
  color: rgb(42, 100, 118);
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
}

.contact-main {
  width: unset;
  max-width: unset;
  margin: unset;
  height: 100vh;
  position: relative;
}

.contact {
  width: 100%;
  height: calc(100vh - 60px);
  position: absolute;
  top: 60px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  padding-top: 50px;
  gap: 40px;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .contact__content {
    width: 60%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 95%, rgba(0, 0, 0, 0));
    align-items: center;
  }
}
.contact__foto-container {
  height: 100px;
  width: 100px;
  padding: 10px;
  border-radius: 50%;
  border: solid 2px white;
  box-shadow: 0px 0px 10px rgba(94, 127, 131, 0.5);
}
@media only screen and (min-width: 600px) {
  .contact__foto-container {
    height: 150px;
    width: 150px;
  }
}
.contact__our-foto {
  border-radius: 50%;
  border: solid 1px rgb(225, 247, 250);
  box-shadow: 0px 0px 10px rgba(94, 127, 131, 0.5);
}
.contact__message {
  color: white;
  font-size: 1.5rem;
  font-weight: 500px;
  padding: 0 20px;
}
.contact__email {
  color: rgb(179, 237, 245);
  font-size: 1.7rem;
  line-height: 50px;
  height: 50px;
  border: solid 2px white;
  border-radius: 15px;
  padding: 0 20px;
  box-shadow: 0px 0px 10px rgba(94, 127, 131, 0.5);
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 40px;
  margin-bottom: 140px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
  line-height: 50px;
  font-size: 1.5rem;
  color: white;
}
@media only screen and (min-width: 1200px) {
  .contact-form__field {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-form__field--button {
    justify-content: flex-end;
  }
}
.contact-form__input {
  background-color: rgba(0, 0, 0, 0.1);
  border-style: unset;
  border: solid 2px white;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(94, 127, 131, 0.5);
  width: 70%;
  height: 50px;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: white;
}
.contact-form__textarea {
  width: 100%;
  height: 200px;
  border-radius: 30px;
}
.contact-form__button {
  background: rgba(0, 0, 0, 0.1);
  border: solid 2px white;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(94, 127, 131, 0.5);
  color: rgb(179, 237, 245);
  width: 80%;
  font-size: 1rem;
}
@media only screen and (min-width: 600px) {
  .contact-form__button {
    width: 50%;
  }
}
@media only screen and (min-width: 600px) {
  .contact-form__button {
    width: 40%;
  }
}
.contact-form__button:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(39, 152, 109);
}
.contact-form__button:active {
  background-color: rgba(187, 186, 186, 0.5);
  color: rgb(24, 35, 36);
}

.main-onas {
  margin-top: 60px;
  padding-top: 40px;
}

.onas {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
  justify-items: center;
  padding: 0 20px 20px 20px;
  text-align: justify;
  /*
  &__jarda {
      @media only screen and (min-width:900px){
          grid-column: 1 / 2;
          grid-row: 3 /4;
      }
  }
  &__jarda {
      @media only screen and (min-width:900px){
          grid-column: 1 / 2;
          grid-row: 3 /4;
      }
  }
  &__jarda {
      @media only screen and (min-width:900px){
          grid-column: 1 / 2;
          grid-row: 3 /4;
      }
  }
  &__jarda {
      @media only screen and (min-width:900px){
          grid-column: 1 / 2;
          grid-row: 3 /4;
      }
  }
  &__jarda {
      @media only screen and (min-width:900px){
          grid-column: 1 / 2;
          grid-row: 3 /4;
      }
  }*/
}
@media only screen and (min-width: 900px) {
  .onas {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 80px;
    padding: 0 40px 20px 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .onas {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 100px;
  }
}
.onas__foto {
  width: 150px;
  height: 150px;
}
@media only screen and (min-width: 900px) {
  .onas__foto {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
}
.onas__all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media only screen and (min-width: 900px) {
  .onas__all {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media only screen and (min-width: 1100px) {
  .onas__all {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
@media only screen and (min-width: 600px) {
  .onas__foto-all {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 900px) {
  .onas__foto-all {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (min-width: 900px) {
  .onas__jarda {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.onas__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.destinace-main {
  padding: 40px 0 10px 0;
}
@media only screen and (min-width: 1001px) {
  .destinace-main {
    padding: 100px 0 10px 0;
  }
}

@media only screen and (min-width: 1001px) {
  .article-teaser--list {
    margin: 0 20px 100px;
    grid-template-columns: 40% calc(60% - 20px);
    gap: 20px;
  }
}

@media only screen and (min-width: 1001px) {
  .article-teaser--destinace__content {
    padding: 10px 0 0 20px;
  }
}

.fotogalerie__info {
  text-align: center;
  margin: 20px auto;
}

.foto-main {
  height: calc(100vh - 60px);
}/*# sourceMappingURL=style.css.map */