@charset "UTF-8";
/* Abstrakty */
/* Styly stránek */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 2%;
}
main #intro {
  color: #ffffff;
  width: 100%;
  background-image: url(../assets/img/foto.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 600px;
}
main #intro div {
  width: 40%;
  margin-left: 5%;
}
main #intro div h1 {
  margin-top: 10%;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 4.5rem;
}
main #intro div h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 100;
}
main #intro div #buttons {
  display: flex;
  width: 100%;
  margin-top: 10%;
  justify-content: space-between;
  margin-left: 0;
}
main #intro div #buttons a {
  font-size: 1.5rem;
  background-color: #14480d;
  width: 280px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #actualities {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 2%;
  min-height: 500px;
}
main #actualities h2 {
  position: relative;
  align-self: flex-start;
  display: inline-block;
  margin-left: 5%;
  font-weight: 500;
  font-size: 3rem;
}
main #actualities h2::before {
  content: "";
  position: absolute;
  inset: -0.15em -0.35em;
  background-color: #fff;
  z-index: -1;
  border-radius: 4px;
}
main #actualities #actualitiesBox {
  display: flex;
  width: 90%;
  
  flex-wrap: wrap;
  justify-content: center;
}
main #actualities div .actualityCard {
  z-index: 2;
  display: flex;
  border: solid;
  border-color: #ececec;
  background-color: #fafafa;
  border-width: 1px;
  height: 200px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  margin: 30px;
}
main #actualities div .actualityCard .publishedDate {
  height: 15%;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
 
}
main #actualities div .actualityCard .publishedDate img{
  width: 32px;
}
main #actualities div .actualityCard .publishedDate p span {
  width: 90%;
}
main #actualities div .actualityCard .publishedDate  span {
  color: #307b7e;
  font-weight: 500;
}
main #actualities div .actualityCard h3 {
 
  height: 20%;
 
  padding-left: 10px;
  font-weight: 500;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main #actualities div .actualityCard .text {
  height: 60%;
  margin-left: 10px;
  margin-top: 5px;
 
}
main #actualities div .actualityCard:hover {
  transform: scale(1.05);
  transition-duration: 0.75s;
  box-shadow: 0 4px 16px rgba(4, 73, 13, 0.5);
}
main #actualities::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
main #divider {
  width: 100%;
  height: 1px;
  background-color: #d4d4d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
main #test {
  width: 100%;
  height: 300px;
}

@media (max-width: 1450px) {
  main{
    padding-top: 5%;
  }
  main #intro div h1 {
    margin-top: 10%;
    font-size: 3rem;
    font-weight: 500;
    line-height: 3.25rem;
  }
  main #intro div h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  main #intro div #buttons {
    width: 80%;
  }
  main #intro div #buttons a {
    width: 200px;
  }
}
@media (max-width: 1300px) {
  main #intro div #buttons {
    flex-direction: column;
  }
  main #intro div #buttons a {
    width: 280px;
    margin-top: 5%;
  }
}
/* MENŠÍ TABLET / VELKÝ MOBIL */
@media (max-width: 768px) {
  main #intro div {
    width: 70%;
  }
}
/* MOBIL */
@media (max-width: 480px) {
 main{
  padding-top: 8%;
 }
  main #intro div {
    width: 90%;
  }
  main #intro div h1 {
    margin-top: 10%;
    font-size: 2rem;
    line-height: 2rem;
  }
  main #intro div h2 {
    margin-top: 2%;
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  main #intro div #buttons {
    width: 100%;
  }
  main #intro div #buttons a {
    width: 300px;
  }
}
#newsPage {
  padding-top: 3%;
  min-height: 80vh;
  display: flex;
  position: relative;
}
#newsPage #actualityContent {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5%;
}
#newsPage #actualityContent #entryInfo {
  width: 90%;
}
#newsPage #actualityContent #entryInfo #actualityOpen {
  padding-bottom: 0.5%;
  display: flex;
  flex-direction: row;
}
#newsPage #actualityContent #entryInfo #actualityOpen #preNameOfActuality {
  font-weight: 500;
}
#newsPage #actualityContent #entryInfo #actualityOpen #preNameOfActuality span {
  font-weight: 300;
}
#newsPage #actualityContent #entryInfo #actualityOpen #nameOfActuality {
  font-weight: 300;
}
#newsPage #actualityContent #entryInfo #publishDate {
  color: #808080;
  font-weight: 500;
}
#newsPage #actualityContent #entryInfo #headingNameOfActuality {
  padding-bottom: 0.5%;
  font-size: 1.5rem;
  padding-top: 0.5%;
  color: #14480d;
}
#newsPage #actualityContent #actualityDivider {
  width: 100%;
  height: 5px;
  margin-bottom: 1%;
  border-bottom: solid;
  border-width: 1px;
  border-color: #d4d4d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
#newsPage #actualityContent #mainSectionGrid {
  margin-top: 1%;
  width: 90%;
  min-height: 70vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
#newsPage #actualityContent #mainSectionGrid #photoGrid {
  grid-area: 1/1/4/3;
  background-color: #fafafa;
  height: 280px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#newsPage #actualityContent #mainSectionGrid #photoGrid img {
  height: 100%;
  
  
}
#newsPage #actualityContent #mainSectionGrid #textGrid {
  grid-area: 4/1/6/4;
  background-color: #fafafa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#newsPage #actualityContent #mainSectionGrid #textGrid h3 {
  padding-left: 1%;
  padding-top: 0.5%;
  font-weight: 500;
  font-size: 1.1rem;
  color: #14480d;
}
#newsPage #actualityContent #mainSectionGrid #textGrid p {
  padding-left: 1%;
}
#newsPage #actualityContent #mainSectionGrid #importantInfoGrid {
  grid-area: 6/1/8/4;
  background-color: #fafafa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#newsPage #actualityContent #mainSectionGrid #importantInfoGrid h3 {
  padding-left: 1%;
  padding-top: 0.5%;
  font-weight: 500;
  font-size: 1.1rem;
  color: #14480d;
}
#newsPage #actualityContent #mainSectionGrid #importantInfoGrid p {
  padding-left: 1%;
}
#newsPage #actualityContent #mainSectionGrid #clipsOnGrid {
  grid-area: 1/4/8/5;
  background-color: #fafafa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#newsPage #actualityContent #mainSectionGrid #clipsOnGrid #newsClipHeader {
  padding-left: 3%;
  padding-top: 2%;
}
#newsPage #actualityContent #mainSectionGrid #clipsOnGrid #newsClipHeader h3 {
  font-weight: 500;
  font-size: 1.1rem;
  color: #14480d;
}
#newsPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}

@media (max-width: 768px) {
  #newsPage{
    padding-top: 5%;
  }
  #newsPage #actualityContent #mainSectionGrid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  #newsPage #actualityContent #mainSectionGrid #photoGrid {
    grid-area: 1/1/3/5;
   
  }
  #newsPage #actualityContent #mainSectionGrid #textGrid {
    grid-area: 3/1/5/5;
    
  }
  #newsPage #actualityContent #mainSectionGrid #importantInfoGrid {
    grid-area: 5/1/7/5;
    
  }
  #newsPage #actualityContent #mainSectionGrid #clipsOnGrid {
    grid-area: 7/1/9/5;
    margin-bottom: 5%;
  }
}
#membershipPage {
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  
}
#membershipPage #membershipGrid {
  width: 90%;
  padding-top: 5%;
  padding-bottom: 5%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
#membershipPage #membershipGrid #membershipHeader {
  grid-area: 1/1/2/4;
  background-color: #fafafa;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#membershipPage #membershipGrid #membershipHeader h2 {
  font-weight: 300;
  font-size: 2.5rem;
  padding-left: 2%;
}
#membershipPage #membershipGrid #membershipPrices {
  grid-area: 2/1/4/4;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#membershipPage #membershipGrid #membershipPrices #membershipPricesTable {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 6px 0;
}
#membershipPage #membershipGrid #membershipPrices #membershipPricesTable table {
  width: 90%;
  height: 90%;
  text-align: left;
}
#membershipPage #membershipGrid #membershipPrices #membershipPricesTable table thead {
  border-bottom: 1px solid #dededf;
  color: #14480d;
}
#membershipPage #membershipGrid #membershipPrices #membershipPricesTable table tbody {
  border-bottom: 1px solid #dededf;
}
#membershipPage #membershipGrid #membershipPaymentGenerator {
  grid-area: 6/1/7/4;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #credentials {
  width: 30%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px;
  margin-right: 30px;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #credentials input {
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  border: 1px solid #14480d;
  background-color: #8cb369;
  color: #d4d4d4;
  padding: 2px 14px;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #checkmarks {
  width: 30%;
  display: flex;
  flex-direction: column;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #checkmarks input {
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #14480d;
  background-color: #8cb369;
  color: #d4d4d4;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #createqrButton {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #createqrButton button {
  background-color: #14480d;
  color: #ececec;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  width: 50%;
  height: 50%;
}
#membershipPage #membershipGrid #membershipPaymentGenerator #createqrButton:hover {
  transform: scale(1.1);
  transition-duration: 0.75s;
}
#membershipPage #membershipGrid #membershipBenefits {
  grid-area: 4/1/6/4;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#membershipPage #membershipGrid #membershipBenefits h3 {
  padding-left: 2%;
  padding-top: 0.5%;
  font-weight: 500;
  color: #14480d;
}
#membershipPage #membershipGrid #membershipBenefits p {
  padding-left: 2%;
  padding-top: 0.5%;
}
#membershipPage #membershipGrid #membershipPaymentGenerator {
  grid-area: 6/1/7/4;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#membershipPage #membershipGrid #membershipHowToPay {
  grid-area: 1/4/4/6;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#membershipPage #membershipGrid #membershipHowToPay h3 {
  padding-left: 2%;
  padding-top: 1%;
  font-weight: 500;
  color: #14480d;
}
#membershipPage #membershipGrid #membershipHowToPay p {
  padding-left: 2%;
  padding-top: 0.5%;
}

#membershipPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}

@media (max-width: 768px) {
  #membershipPage{min-height: 120vh;}
  #membershipPage #membershipGrid {
    padding-top: 10%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  #membershipPage #membershipGrid #membershipHeader {
    grid-area: 1/1/2/5;
  }
  #membershipPage #membershipGrid #membershipPrices {
    grid-area: 2/1/4/5;
  }
  #membershipPage #membershipGrid #membershipBenefits {
    height: 300px;
    grid-area: 4/1/6/5;
  }
  #membershipPage #membershipGrid #membershipPaymentGenerator {
    grid-area: 8/1/9/5;
  }
  #membershipPage #membershipGrid #membershipHowToPay {
    grid-area: 6/1/8/5;
  }
}
@media (max-width: 480px) {
   #membershipPage #membershipGrid {
    padding-top: 15%;
   
  }
  #membershipPage #membershipGrid #membershipPrices #membershipPricesTable table thead {
    font-size: 0.75rem;
  }
  #membershipPage #membershipGrid #membershipPrices #membershipPricesTable table tbody {
    font-size: 0.75rem;
  }
}

#trainingOffers {
  min-height: 100vh;
  width: 100%;
  display: flex;
  padding-top: 2%;
  align-items: center;
  position: relative;
  padding-top: 5%;
 
}
#trainingOffers #whatDoWeOffer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  width: 90%;
  
  margin-top: 3%;
  
  
}
#trainingOffers #whatDoWeOffer #generalInfo {
  grid-area: 1/1/4/4;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#trainingOffers #whatDoWeOffer #generalInfo h3 {
  font-weight: 500;
  padding-top: 0.5%;
  padding-left: 1%;
  color: #14480d;
}
#trainingOffers #whatDoWeOffer #generalInfo p {
  padding-left: 1%;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule {
  grid-area: 1/4/4/6;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule table {
  margin-left: 4%;
  width: 80%;
  height: 35%;
  text-align: left;
  margin-top: 10px;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule table thead {
  border-bottom: 1px solid #dededf;
  font-size: 1.25rem;
  color: #14480d;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule table tbody {
  border-bottom: 1px solid #dededf;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule h3 {
  margin-left: 4%;
  margin-top: 1%;
  font-weight: 500;
  color: #14480d;
}
#trainingOffers #whatDoWeOffer #groupTrainingSchedule p {
  margin-left: 4%;
}
#trainingOffers #whatDoWeOffer #trainingBasicInfo {
  grid-area: 4/1/6/6;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#trainingOffers #whatDoWeOffer #trainingBasicInfo h3 {
  margin-left: 1%;
  margin-top: 0.5%;
  font-weight: 500;
  color: #14480d;
}
#trainingOffers #whatDoWeOffer #trainingBasicInfo p {
  margin-left: 1%;
}
#trainingOffers #sportsCatalog {
  margin-top: 1%;
  min-height: 300px;
  width: 90%;
}
#trainingOffers #sportsCatalog h2 {
  font-weight: 500;
  color: #14480d;
  background-color: white;
  width: 10%;
  border-radius: 20px;
}
#trainingOffers #sportsCatalog #sports {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#trainingOffers #sportsCatalog #sports .sportCard {
  width: 400px;
  height: 200px;
  
  margin: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  
  background-position: center;
  background-size: cover;
}
#trainingOffers #sportsCatalog #sports .sportCard .filter {
  background-color: rgba(5, 13, 40, 0.5019607843);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
#trainingOffers #sportsCatalog #sports .sportCard .filter .sportName {
  border-bottom: 1px solid white;
  color: white;
  font-size: 1.5rem;
  width: 200px;
  text-align: center;
  font-weight: 300;
}
#trainingOffers #sportsCatalog #sports .sportCard:hover {
  transform: scale(1.05);
  transition-duration: 0.75s;
  box-shadow: 0 4px 16px rgb(4, 73, 13);
}

#trainingOffers::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1000px) {
   #trainingOffers{
    padding-top: 10%;
   }
}

@media (max-width: 768px) {
  #trainingOffers #whatDoWeOffer {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(9, 1fr);
    margin-bottom: 5%;
  }
  #trainingOffers #whatDoWeOffer #generalInfo {
    grid-area: 1/1/3/5;
  }
  #trainingOffers #whatDoWeOffer #groupTrainingSchedule {
    grid-area: 3/1/7/5;
  }
  #trainingOffers #whatDoWeOffer #trainingBasicInfo {
    grid-area: 7/1/10/5;
  }
}
@media (max-width: 640px) {
   #trainingOffers {
    padding-top: 15%;
   }
  }
@media (max-width: 480px) {
   #trainingOffers {
    padding-top: 20%;

   }
  #trainingOffers #whatDoWeOffer #generalInfo h3 {
    font-size: 0.9rem;
  }
  #trainingOffers #whatDoWeOffer #generalInfo p {
    font-size: 0.85rem;
  }
  #trainingOffers #whatDoWeOffer #groupTrainingSchedule table thead {
    font-size: 0.85rem;
  }
  #trainingOffers #whatDoWeOffer #groupTrainingSchedule table tbody {
    font-size: 0.85rem;
  }
  #trainingOffers #whatDoWeOffer #groupTrainingSchedule h3 {
    font-size: 0.9rem;
  }
  #trainingOffers #whatDoWeOffer #groupTrainingSchedule p {
    font-size: 0.85rem;
  }
  #trainingOffers #whatDoWeOffer #trainingBasicInfo h3 {
    font-size: 0.9rem;
  }
  #trainingOffers #whatDoWeOffer #trainingBasicInfo p {
    font-size: 0.85rem;
  }
  #trainingOffers #sportsCatalog h2 {
    font-size: 1rem;
    width: 60%;
  }
  #trainingOffers #sportsCatalog #sports .sportCard .filter .sportName {
    width: 80%;
  }
}
#photoAlbum {
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 3%;
  position: relative;
  
}
#photoAlbum #photoAlbumContent {
  width: 90%;
  margin-top: 2%;
}
#photoAlbum #photoAlbumContent h1 {
  font-weight: 500;
  background-color: #ffffff;
  width: 10%;
  color: #14480d;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper {
  margin: 20px;
  background-color: #ececec;
  border-radius: 10px;
  width: 600px;
  height: 150px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo {
  width: 40%;
  height: 100%;
  margin-left: 2%;
  margin-top: 0.5%;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .albumName {
  font-size: 1.5rem;
  width: 100%;
  font-weight: 500;
  margin-bottom: 5px;
  color: #14480d;
  word-break: break-word;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .publishDate {
  font-size: 0.75rem;
  color: #808080;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .amountOfPhotos {
  margin-top: 25%;
  color: #3f4040;
  opacity: 0.6;
  font-size: 0.8rem;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink a {
  background-image: url("../assets/img/foto.png");
  background-position: center;
  background-size: cover;
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  border-radius: 10px;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink a .filter {
  background-color: rgba(5, 13, 40, 0.5019607843);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #d4d4d4;
}
#photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink a:hover {
  transform: scale(1.05);
  transition-duration: 0.75s;
  box-shadow: 0 4px 16px rgb(4, 73, 13);
}

#photoAlbum::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1300px) {
  #photoAlbum{
    padding-top: 7%;
  }
}
@media (max-width: 960px) {
  #photoAlbum{
    padding-top: 10%;
  }
}

@media (max-width: 620px) {
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo {
    width: 20%;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .albumName {
    font-size: 1.25rem;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .publishDate {
    font-size: 0.7rem;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .amountOfPhotos {
    margin-top: 30%;
    font-size: 0.8rem;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink {
    width: 80%;
  }
}
@media (max-width: 480px) {
 #photoAlbum{
    padding-top: 16%;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo {
    width: 40%;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumInfo .albumName {
    font-size: 1rem;
  }
  #photoAlbum #photoAlbumContent #photoAlbumsContainer .albumWrapper .albumLink {
    width: 60%;
  }
}
#actions {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 3%;
  position: relative;
}
#actions #actionsContent {
  width: 90%;
  margin-top: 2%;
}
#actions #actionsContent h1 {
  font-weight: 500;
  background-color: #ffffff;
  width: 10%;
  color: #14480d;
}
#actions #actionsContent #actionsContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
#actions #actionsContent #actionsContainer .actionWrapper {
  margin: 20px;
  background-color: #ececec;
  border-radius: 10px;
  width: 600px;
  height: 150px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
#actions #actionsContent #actionsContainer .actionWrapper .actionInfo {
  width: 40%;
  margin-left: 2%;
  margin-top: 0.5%;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionInfo .actionName {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #14480d;
  word-break: break-word;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionInfo .publishDate {
  font-size: 0.75rem;
  color: #808080;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionLink a {
  background-image: url("../assets/img/foto.png");
  background-position: center;
  background-size: cover;
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  border-radius: 10px;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionLink a .filter {
  background-color: rgba(5, 13, 40, 0.5019607843);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #d4d4d4;
}
#actions #actionsContent #actionsContainer .actionWrapper .actionLink a:hover {
  transform: scale(1.05);
  transition-duration: 0.75s;
  box-shadow: 0 4px 16px rgb(4, 73, 13);
}

#actions::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1300px) {
  #actions{
    padding-top: 7%;
  }
}
@media (max-width: 960px) {
  #actions{
    padding-top: 10%;
  }
}

@media (max-width: 620px) {
  #actions #actionsContent #actionsContainer .actionWrapper .actionInfo {
    width: 20%;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionInfo .actionName {
    font-size: 1.25rem;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionInfo .publishDate {
    font-size: 0.7rem;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionLink {
    width: 80%;
  }
}
@media (max-width: 480px) {
  #actions{
    padding-top: 16%;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionInfo {
    width: 40%;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionInfo .actionName {
    font-size: 1rem;
  }
  #actions #actionsContent #actionsContainer .actionWrapper .actionLink {
    width: 60%;
  }
}
#singleSportPage {
  width: 100%;
  min-height: 100vh;
  display: flex;
padding-top: 3%;
  align-items: center;
  position: relative;
}
#singleSportPage #singleSportPageGridBox {
 padding-top: 5%;
  width: 80%;
  min-height: 80vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
#singleSportPage #singleSportPageGridBox #sportWelcomeBanner {
  grid-area: 1/1/4/5;
  background-color: #f4f4f6;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background-image: url("../assets/img/foto.png");
  background-position: center;
  background-size: cover;
}
#singleSportPage #singleSportPageGridBox #sportWelcomeBanner #filter {
  background-color: rgba(5, 13, 40, 0.5019607843);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #ffffff;
}
#singleSportPage #singleSportPageGridBox #sportWelcomeBanner #filter h1 {
  font-weight: 300;
  font-size: 4rem;
}
#singleSportPage #singleSportPageGridBox #sportInfo {
  grid-area: 4/1/6/3;
  background-color: #f4f4f6;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleSportPage #singleSportPageGridBox #sportInfo h2 {
  font-weight: 500;
  color: #14480d;
  margin-left: 1%;
  margin-top: 1%;
}
#singleSportPage #singleSportPageGridBox #sportInfo p {
  margin-left: 1%;
  font-size: 1.1rem;
}
#singleSportPage #singleSportPageGridBox #stuffToTake {
  grid-area: 4/3/6/5;
  background-color: #f4f4f6;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleSportPage #singleSportPageGridBox #stuffToTake h2 {
  font-weight: 500;
  color: #14480d;
  margin-left: 1%;
  margin-top: 1%;
}
#singleSportPage #singleSportPageGridBox #stuffToTake p {
  margin-left: 1%;
  font-size: 1.1rem;
}
#singleSportPage #singleSportPageGridBox #importantSportInfo {
  grid-area: 6/1/8/3;
  background-color: #f4f4f6;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleSportPage #singleSportPageGridBox #importantSportInfo h2 {
  font-weight: 500;
  color: #14480d;
  margin-left: 1%;
  margin-top: 1%;
}
#singleSportPage #singleSportPageGridBox #importantSportInfo p {
  margin-left: 1%;
  font-size: 1.1rem;
}
#singleSportPage #singleSportPageGridBox #contactsButton {
  grid-area: 6/3/8/5;
  background-color: #f4f4f6;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  justify-content: center;
  display: flex;
  align-items: center;
}
#singleSportPage #singleSportPageGridBox #contactsButton a {
  background-color: #14480d;
  width: 50%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
#singleSportPage #singleSportPageGridBox #contactsButton a p {
  color: #ffffff;
  font-size: 1.5rem;
}
#singleSportPage #singleSportPageGridBox #contactsButton a:hover {
  transform: scale(1.1);
  transition-duration: 0.75s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

#singleSportPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 900px) {
  #singleSportPage{
    padding-top: 10%;
  }
}

@media (max-width: 768px) {
  #singleSportPage #singleSportPageGridBox {
    min-height: 120vh;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(10, 1fr);
    margin-bottom: 5%;
    margin-top: 5%;
  }
  #singleSportPage #singleSportPageGridBox #sportWelcomeBanner {
    grid-area: 1/1/3/5;
  }
  #singleSportPage #singleSportPageGridBox #sportInfo {
    grid-area: 3/1/5/5;
  }
  #singleSportPage #singleSportPageGridBox #stuffToTake {
    grid-area: 5/1/7/5;
  }
  #singleSportPage #singleSportPageGridBox #importantSportInfo {
    grid-area: 7/1/9/5;
  }
  #singleSportPage #singleSportPageGridBox #contactsButton {
    grid-area: 9/1/11/5;
  }
}
@media (max-width: 480px) {
  #singleSportPage{
    padding-top: 17%;
  }
  #singleSportPage #singleSportPageGridBox #sportInfo h2 {
    font-size: 1.1rem;
  }
  #singleSportPage #singleSportPageGridBox #sportInfo p {
    font-size: 1rem;
  }
  #singleSportPage #singleSportPageGridBox #stuffToTake h2 {
    font-size: 1.1rem;
  }
  #singleSportPage #singleSportPageGridBox #stuffToTake p {
    font-size: 1rem;
  }
  #singleSportPage #singleSportPageGridBox #importantSportInfo h2 {
    font-size: 1.1rem;
  }
  #singleSportPage #singleSportPageGridBox #importantSportInfo p {
    font-size: 1rem;
  }
  #singleSportPage #singleSportPageGridBox #contactsButton a {
    width: 80%;
  }
  #singleSportPage #singleSportPageGridBox #contactsButton a p {
    font-size: 1rem;
  }
}
#singlePhotoAlbumPage {
  min-height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  padding-top: 3%;
}
#singlePhotoAlbumPage #photoAlbumWelcomeBanner {
  width: 80%;
  background-image: url(../assets/img/foto.png);
  min-height: 35vh;
  margin-top: 2%;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  
}
#singlePhotoAlbumPage #photoAlbumWelcomeBanner #filter {
  width: 100%;
  min-height: 35vh;
  border-radius: 15px;
  background-color: rgba(5, 13, 40, 0.5019607843);
}
#singlePhotoAlbumPage #photoAlbumWelcomeBanner #filter p {
  font-size: 2rem;
  color: #ffffff;
  margin-left: 5%;
  padding-top: 5%;
}
#singlePhotoAlbumPage #photoAlbumContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
}
#singlePhotoAlbumPage #photoAlbumContainer .photos {
  width: 350px;
  height: 20%;
  border-radius: 15px;
  margin: 20px;
 
}

#singlePhotoAlbumPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1600px) {
  #singlePhotoAlbumPage  {
    padding-top: 5%;
  }
}
@media (max-width: 1100px) {
  #singlePhotoAlbumPage  {
    padding-top: 10%;
  }
}

@media (max-width: 680px) {
  #singlePhotoAlbumPage  {
    padding-top: 17%;
  }
  #singlePhotoAlbumPage #photoAlbumWelcomeBanner {
    height: 25vh;
  }
}
@media (max-width: 400px) {
  #singlePhotoAlbumPage  {
    padding-top: 20%;
  }
}
#singleActionPage {
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 3%;
}
#singleActionPage #actionWelcomeBanner {
  width: 80%;
  background-image: url(../assets/img/foto.png);
  min-height: 25vh;
  margin-top: 2%;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
#singleActionPage #actionWelcomeBanner #filter {
  width: 100%;
  min-height: 25vh;
  border-radius: 15px;
  background-color: rgba(5, 13, 40, 0.5019607843);
}
#singleActionPage #actionWelcomeBanner #filter p {
  font-size: 2rem;
  color: #ffffff;
  margin-left: 5%;
  padding-top: 5%;
}
#singleActionPage #actionGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 65%;
  min-height: 45vh;
  margin-top: 1%;
  padding-bottom: 3rem;
}
#singleActionPage #actionGrid #actionInformations {
  grid-area: 1/1/4/3;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleActionPage #actionGrid #actionInformations h2 {
  font-weight: 500;
  color: #14480d;
  margin-top: 1%;
  margin-left: 3%;
}
#singleActionPage #actionGrid #actionInformations #actionInfoHolder {
  margin-left: 3%;
  width: 100%;
}
#singleActionPage #actionGrid #actionInformations #actionInfoHolder div {
  margin-top: 3%;
  width: 100%;
  height: 20%;
  display: flex;
}
#singleActionPage #actionGrid #actionInformations #actionInfoHolder div p {
  margin-left: 5%;
  font-weight: 500;
}
#singleActionPage #actionGrid #actionInformations #actionInfoHolder div img {
 width: 32px;
}
#singleActionPage #actionGrid #actionIlustrationPhoto {
  grid-area: 4/1/6/3;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);

  background-position: center;
  background-size: cover;
}
#singleActionPage #actionGrid #actionMainPoints {
  grid-area: 1/3/3/5;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleActionPage #actionGrid #actionMainPoints h2 {
  font-weight: 500;
  color: #14480d;
  margin-top: 1%;
  margin-left: 3%;
}
#singleActionPage #actionGrid #actionMainPoints ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 3%;
}
#singleActionPage #actionGrid #actionMainPoints ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  margin-top: 10px;
}
#singleActionPage #actionGrid #actionMainPoints ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f4d1c;
  font-size: 26px;
  line-height: 1;
}
#singleActionPage #actionGrid #actionDescription {
  grid-area: 3/3/6/5;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#singleActionPage #actionGrid #actionDescription h2 {
  font-weight: 500;
  color: #14480d;
  margin-top: 1%;
  margin-left: 3%;
}
#singleActionPage #actionGrid #actionDescription p {
  margin-top: 1%;
  margin-left: 3%;
}

#singleActionPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1600px) {
  #singleActionPage  {
    padding-top: 5%;
  }
}



@media (max-width: 1100px) {
  #singleActionPage{
    padding-top: 10%;
  }
  #singleActionPage #actionGrid {
    width: 80%;
  }
}
@media (max-width: 780px) {
  #singleActionPage #actionGrid {
    height: 100vh;
    margin-bottom: 5%;
    margin-top: 5%;
    grid-template-rows: repeat(10, 1fr);
  }
  #singleActionPage #actionGrid #actionInformations {
    grid-area: 1/1/4/5;
  }
  #singleActionPage #actionGrid #actionInformations h2 {
    margin-bottom: 2%;
    font-size: 1rem;
  }
  #singleActionPage #actionGrid #actionInformations #actionInfoHolder div p {
    font-size: 0.8rem;
  }
  #singleActionPage #actionGrid #actionIlustrationPhoto {
    grid-area: 4/1/6/5;
  }
  #singleActionPage #actionGrid #actionMainPoints {
    grid-area: 6/1/9/5;
  }
  #singleActionPage #actionGrid #actionMainPoints h2 {
    font-size: 1rem;
  }
  #singleActionPage #actionGrid #actionMainPoints p {
    font-size: 0.8rem;
  }
  #singleActionPage #actionGrid #actionDescription {
    grid-area: 9/1/11/5;
  }
  #singleActionPage #actionGrid #actionDescription h2 {
    font-size: 1rem;
  }
  #singleActionPage #actionGrid #actionDescription p {
    font-size: 0.8rem;
  }
}
@media (max-width: 680px) {
  #singleActionPage  {
    padding-top: 17%;
  }
}
@media (max-width: 400px) {
  #singleActionPage  {
    padding-top: 20%;
  }
}
#contactsPage {
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 3%;
}
#contactsPage #contactsWelcomeBanner {
  width: 80%;
  background-image: url(../assets/img/foto.png);
  height: 25vh;
  margin-top: 2%;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
#contactsPage #contactsWelcomeBanner #filter {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(5, 13, 40, 0.5019607843);
}
#contactsPage #contactsWelcomeBanner #filter h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-left: 5%;
  padding-top: 5%;
  font-weight: 500;
}
#contactsPage #contactsGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 65%;
  margin-bottom: 5%;
  margin-top: 1%;
}
#contactsPage #contactsGrid #phone {
  grid-area: 1/1/2/3;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
#contactsPage #contactsGrid #phone #contactLineOne {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: center;
  margin-left: 10%;
  margin-top: 2%;
}
#contactsPage #contactsGrid #phone #contactLineOne img {
  width: 32px;
  margin-right: 2%;
}
#contactsPage #contactsGrid #phone #contactLineOne p {
  font-size: 1.2rem;
  color: #14480d;
  font-weight: 500;
}
#contactsPage #contactsGrid #phone #contactLineTwo {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: flex-start;
  margin-left: 10%;
}
#contactsPage #contactsGrid #phone #contactLineTwo P {
  color: #14480d;
  font-weight: 500;
  opacity: 0.8;
}
#contactsPage #contactsGrid #mail {
  grid-area: 1/3/2/5;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#contactsPage #contactsGrid #mail #contactLineOne {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: center;
  margin-left: 10%;
  margin-top: 2%;
}
#contactsPage #contactsGrid #mail #contactLineOne img {
  width: 32px;
  margin-right: 2%;
}
#contactsPage #contactsGrid #mail #contactLineOne p {
  font-size: 1.2rem;
  color: #14480d;
  font-weight: 500;
}
#contactsPage #contactsGrid #mail #contactLineTwo {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: flex-start;
  margin-left: 10%;
}
#contactsPage #contactsGrid #mail #contactLineTwo P {
  color: #14480d;
  font-weight: 500;
  opacity: 0.8;
}
#contactsPage #contactsGrid #address {
  grid-area: 1/5/2/7;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#contactsPage #contactsGrid #address #contactLineOne {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: center;
  margin-left: 10%;
  margin-top: 2%;
}
#contactsPage #contactsGrid #address #contactLineOne img {
  width: 32px;
  margin-right: 2%;
}
#contactsPage #contactsGrid #address #contactLineOne p {
  font-size: 1.2rem;
  color: #14480d;
  font-weight: 500;
}
#contactsPage #contactsGrid #address #contactLineTwo {
  display: flex;
  flex-direction: row;
  height: 50%;
  width: 100%;
  align-items: flex-start;
  margin-left: 10%;
}
#contactsPage #contactsGrid #address #contactLineTwo P {
  color: #14480d;
  font-weight: 500;
  opacity: 0.8;
}
#contactsPage #contactsGrid #sendMessage {
  grid-area: 3/1/7/4;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#contactsPage #contactsGrid #sendMessage h2 {
  margin-top: 2%;
  margin-left: 4%;
  color: #14480d;
}
#contactsPage #contactsGrid #sendMessage form {
  margin-top: 2%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#contactsPage #contactsGrid #sendMessage form label {
  font-size: 1.1rem;
  color: #333;
  margin-left: 5%;
}
#contactsPage #contactsGrid #sendMessage form label input {
  width: 80%;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  font-size: 15px;
  transition: all 0.2s ease;
}
#contactsPage #contactsGrid #sendMessage form label textarea {
  width: 80%;
  margin-left: 9%;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}
#contactsPage #contactsGrid #sendMessage form button {
  align-self: center;
  border: none;
  padding: 12px 50px;
  border-radius: 15px;
  background: #14480d;
  color: #fff;
  margin-bottom: 5%;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
#contactsPage #contactsGrid #map {
  grid-area: 3/4/7/7;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
#contactsPage #contactsGrid #map iframe {
  width: 90%;
  height: 90%;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#contactsPage #contactsGrid #instagram {
  grid-area: 2/2/3/4;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
#contactsPage #contactsGrid #instagram a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contactsPage #contactsGrid #instagram a p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 2%;
  color: #14480d;
}
#contactsPage #contactsGrid #facebook {
  grid-area: 2/4/3/6;
  background-color: #f4f4f6;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
#contactsPage #contactsGrid #facebook a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contactsPage #contactsGrid #facebook a p {
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 2%;
  color: #14480d;
}

#contactsPage::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}
@media (max-width: 1600px) {
  #contactsPage  {
    padding-top: 5%;
  }
}

@media (max-width: 1100px) {
  #contactsPage  {
    padding-top: 10%;
  }

  #contactsPage #contactsGrid {
    width: 80%;
  }
}
@media (max-width: 930px) {
  #contactsPage #contactsGrid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(11, 1fr);
  }
  #contactsPage #contactsGrid #phone {
    grid-area: 1/1/2/4;
  }
  #contactsPage #contactsGrid #mail {
    grid-area: 1/4/2/7;
  }
  #contactsPage #contactsGrid #address {
    grid-area: 2/2/3/5;
  }
  #contactsPage #contactsGrid #sendMessage {
    grid-area: 7/1/11/7;
  }
  #contactsPage #contactsGrid #map {
    grid-area: 4/1/7/7;
  }
  #contactsPage #contactsGrid #instagram {
    grid-area: 3/1/4/4;
  }
  #contactsPage #contactsGrid #facebook {
    grid-area: 3/4/4/7;
  }
}
@media (max-width: 650px) {
  #contactsPage {
    padding-top: 15%;
  }
}

@media (max-width: 580px) {
  #contactsPage #contactsGrid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(13, 1fr);
  }
  #contactsPage #contactsGrid #phone {
    grid-area: 1/1/2/7;
  }
  #contactsPage #contactsGrid #mail {
    grid-area: 2/1/3/7;
  }
  #contactsPage #contactsGrid #address {
    grid-area: 3/1/4/7;
  }
  #contactsPage #contactsGrid #sendMessage {
    grid-area: 10/1/14/7;
  }
  #contactsPage #contactsGrid #map {
    grid-area: 6/1/10/7;
  }
  #contactsPage #contactsGrid #instagram {
    grid-area: 4/1/5/7;
  }
  #contactsPage #contactsGrid #facebook {
    grid-area: 5/1/6/7;
  }
}
@media (max-width: 430px) {
  #contactsPage {
    padding-top: 20%;
  }
}
#aboutUs {
  min-height: 120vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 3%;
}
#aboutUs #aboutUsWelcomeBanner {
  width: 80%;
  background-image: url(../assets/img/foto.png);
  min-height: 25vh;
  margin-top: 2%;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
#aboutUs #aboutUsWelcomeBanner #filter {
  width: 100%;
  min-height: 25vh;
  border-radius: 15px;
  background-color: rgba(5, 13, 40, 0.5019607843);
}
#aboutUs #aboutUsWelcomeBanner #filter h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-left: 5%;
  padding-top: 5%;
  font-weight: 500;
}
#aboutUs #aboutUsSection {
  width: 60%;
  min-height: 500px;
  margin-top: 2%;
}
#aboutUs #aboutUsSection .aboutUsBox {
  background-color: #f4f4f6;
  display: flex;
  flex-direction: row;
  width: 95%;
  min-height: 300px;
  margin-left: 2%;
  margin-top: 2%;
  margin-bottom: 5%;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsText {
  width: 55%;
  margin: 5px;
 
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsText div {
  display: flex;
  flex-direction: row;
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsText div h2 {
  color: #14480d;
  font-weight: 500;
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsText div img {
  width: 5%;
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsPhoto {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
}
#aboutUs #aboutUsSection .aboutUsBox .aboutUsPhoto img {
  width: 90%;
  border-radius: 15px;
  height: 85%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

#aboutUs::before {
  overflow: hidden;
  content: "";
  position: absolute;
  inset: 0px;
  background-image: url("../assets/icons/backGroundPatern.svg");
  background-repeat: repeat, repeat, repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-size: 140px, 80px, 60px;
  background-position: 0 0, 60px 90px;
  z-index: -2;
}

@media (max-width: 1000px) {
  #aboutUs {
    
    padding-top: 10%;
   
  }
  #aboutUs #aboutUsSection {
    width: 80%;
  }
}
@media (max-width: 700px) {
  #aboutUs {
    min-height: 220vh;
    padding-top: 25%;
   
  }
  #aboutUs #aboutUsWelcomeBanner {
    height: 20vh;
  }
  #aboutUs #aboutUsSection {
    width: 80%;
    height: 800px;
  }
  #aboutUs #aboutUsSection .aboutUsBox {
    flex-direction: column;
    width: 100%;
    min-height: 400px;
  }
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsText {
    width: 100%;
    
    font-size: 0.9rem;
  }
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsText div h2 {
    font-size: 1.25rem;
  }
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsText div img {
    width: 5%;
  }
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsPhoto {
    width: 100%;
    height: 45%;
  }
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsPhoto img {
    width: 60%;
    height: 100%;
    margin-bottom: 25px;
  }
}
@media (max-width: 400px) {
  #aboutUs #aboutUsSection .aboutUsBox .aboutUsPhoto img {
    width: 90%;
  }
}
/* Layouty */
header {
  width: 100%;
  min-height: 4vh;
  height: 70px;
  background-color: #f4f4f6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
 position: fixed;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);

  /* logo */
}
header div {
  width: 20%;
  margin-left: 5%;
  margin-right: 10%;
}
header div a img {
  height: 60px;
}

header nav {
  position: relative;
  margin-right: 10%;
}
header nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 3rem;
}
header nav ul li {
  font-size: 1.5rem;
  height: 45px;
  width: 140px;
  /* odkazy uvnitř li */
}
header nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
header nav ul li a:hover {
  color: #14480d;
  scale: 1.1;
  transition-duration: 1s;
}
header nav ul li {
  /* speciální item Rezervace */
}
header nav ul li#reservation a {
  background-color: #14480d;
  color: #ffffff;
  border-radius: 10px;
}
header nav #hamburger {
  display: none;
  cursor: pointer;
}

@media (max-width: 1320px) {
  header div {
    width: 10;
    margin-left: 2%;
    margin-right: 5%;
  }
  header div a img {
    height: 40px;
  }
  header nav {
    margin-right: 10%;
  }
  header nav ul {
    gap: 2rem;
  }
  header nav ul li {
    font-size: 1.25rem;
    height: 40px;
  }
}
@media (max-width: 1100px) {
  header div a img {
    height: 30px;
  }
  header nav {
    margin-right: 10%;
  }
  header nav ul {
    gap: 1rem;
  }
  header nav ul li {
    font-size: 1rem;
    height: 30px;
  }
}
@media (max-width: 1000px) {
  header nav ul {
    display: none;
  }
  header nav #hamburger {
    display: block;
    font-size: 32px;
  }
  header .active ul {
    display: flex;
    position: absolute;
    top: 58px;
    right: 10px;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 14px;
    gap: 10px;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 20;
  }
}
footer {
  width: 100%;
  height: 250px;
}
footer section {
  height: 80%;
  display: flex;
  width: 100%;
}
footer section #usefullLinks {
  width: 50%;
  background-color: #3f4040;
  color: #ececec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer section #usefullLinks h2 {
  padding-bottom: 30px;
}
footer section #usefullLinks div a {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.25rem;
  font-weight: 100;
}
footer section #sponsorShip {
  width: 50%;
  display: flex;
  flex-direction: column;
  background-color: #8cb369;
  justify-content: center;
  align-items: center;
}
footer section #sponsorShip img {
  padding-top: 15px;
  padding-bottom: 15px;
}
footer section #sponsorShip p {
  font-size: 1.25rem;
  font-weight: 500;
}
footer #owner {
  height: 50px;
  background-color: #ececec;
  display: flex;
  width: 100%;
  align-items: center;
}
footer #owner div {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
footer #owner div p {
  font-weight: 500;
  width: 100%;
  text-align: right;
}
footer #owner div p span {
  color: gray;
  margin-right: 5%;
  width: 100%;
}

@media (max-width: 1000px) {
  footer {
    height: 340px;
  }
  footer section {
    height: 90%;
    flex-direction: column;
  }
  footer section #usefullLinks {
    width: 100%;
    height: 40%;
  }
  footer section #usefullLinks h2 {
    padding-bottom: 10px;
  }
  footer section #usefullLinks div a {
    font-size: 1rem;
  }
  footer section #sponsorShip {
    width: 100%;
    height: 60%;
  }
  footer section #sponsorShip img {
    padding-top: 0;
    padding-bottom: 0;
  }
  footer section #sponsorShip p {
    font-size: 1.25rem;
  }
  footer #owner {
    height: 10%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  footer {
    height: 340px;
  }
  footer section {
    height: 90%;
    flex-direction: column;
  }
  footer section #usefullLinks {
    width: 100%;
    height: 40%;
  }
  footer section #usefullLinks h2 {
    padding-bottom: 10px;
    font-size: 1.25rem;
  }
  footer section #sponsorShip {
    width: 100%;
    height: 60%;
    justify-content: center;
    align-items: center;
  }
  footer section #sponsorShip img {
    padding-top: 0;
    padding-bottom: 0;
    width: 180px;
  }
  footer section #sponsorShip p {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }
  footer #owner {
    height: 10%;
    width: 100%;
  }
  footer #owner div p {
    font-size: 0.75rem;
  }
}
/* base */
/* Box sizing border-box všude */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Zrušení default marginů */
* {
  margin: 0;
  padding: 0;
}

/* HTML & Body základ */
html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: #000;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Obrázky, videa atd. = responzivní */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form prvky dědí font */
input,
button,
textarea,
select {
  font: inherit;
}

/* Odkazy */
a {
  color: inherit;
  text-decoration: none;
}

/* Tabulky */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*# sourceMappingURL=style.css.map */
