body {
  padding: 0;
  margin: 0;
}

#section1 {
  padding: 4vh;
  min-height: 100vh;
  background: linear-gradient(to bottom, #DE323C, #6F4D60);
}

#section2 {
  padding: 4vh;
  height: 255vh;
  background: linear-gradient(to bottom, #6F4D60, #006883, #00785E);
}

#section4 {
  padding: 4vh;
  min-height: 80vh;
  background: linear-gradient(to bottom, #00785E, #A54D7D, #A93E57);
}

#section6 {
  padding: 4vh;
  height: 70vh;
  background: linear-gradient(to bottom, #A93E57, #1E3A8A);
}

#section6 h1 {
  margin-top: 20vh;
}
#section7 {
  padding: 4vh;
  padding-bottom: 10vh;
  min-height: 60vh;
  background: linear-gradient(to bottom, #1E3A8A, #3f8d38);
  display: grid;
  gap: 10px;
}

h1 {
  font-family: "Roboto Mono", monospace;
  font-size: 3.8vh;
  color: white;
  margin-top: 1vh;
  margin-bottom:1vh ;
}

#section4 .h1 {
  margin-top: 15vh;
}

h2 {
  font-family: "Roboto Mono", monospace;
  font-weight: normal;
  color:white;
  font-size:2.6vh;
  margin-bottom: -1.8vh;
}

h3 {
  font-family: "Roboto Mono", monospace;
  font-weight: normal;
  color:white;
}

p {
  font-family: "Roboto Mono", monospace;
  color:white;
  margin-top: 2.5vh;
}

ul {
  font-family: "Roboto Mono", monospace;
  color:white;
  margin-top: 2.5vh;
}

#BurgerIcon {
  height: 25px;
  width: 30px;
  display:flex;
  justify-content: space-between;
  flex-direction: column;
  position: absolute;
  top: 27px;
  right: 25px;
}

.bar {
  height: 4px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
}

.Dropdowns {
  border:none;
  width: 100%;
  height: 100%;
}

#Dropdowns{
  position: absolute;
  display: none;
  background: linear-gradient(to bottom, #DE323C, #6F4D60);
  border:none;
  width: 100%;
  height: 100%;
}

#Dropdowns li {
  width: 100%;
}

#Dropdowns ul{
  background:transparent;
}
#Dropdowns a{
  color: white;
  text-decoration:none;
  padding:15px;
  display:block;
  text-align:left;
  width: 100%;
  font-size: 30px;
  margin-top:15px;
  margin-left: 3vh;
  font-family: 'Roboto Mono', monospace;
  font-weight: bold;
  background:transparent;
}

#cancelButton {
  top: 2vh;
  right: 3.5vh;
  color:white;
  opacity: 100%;
  border:none;
  font-size: 30px;
  position: absolute;
  display: block;
  background:transparent;
}

.close-button {
  display: block;
  text-align: right;
  margin-bottom: 50px;
}

.NavBtn {
  border: 0.35vh solid white;
  outline: none;
  border-radius: 7px;
  background-color: transparent;
  color: white;
  width: 40vh;
  height: 7.5vh;
  font-family: 'Roboto Mono', monospace;
  margin: 2vh;
  font-size: 2.5vh;

}

.NavBtn strong {
  animation: textSizeChanger 16s linear infinite;
}

#NavBtns {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 6vh;
}


#WelcomeText {
  margin-top: 4vh;
}


@keyframes appear {
  from {
    opacity:0;
    scale: 0.75;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes slide {
  from {
    opacity:0;
    transform: translate(-50px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}

.h1 {
  animation: slide linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

i{
  animation: blink 1.5s linear infinite;
}

@keyframes  blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
@keyframes  textSizeChanger {
  0% {
    opacity: 0.75
  }
  3% {
    opacity: 0.875;
  }
  5%, 20% {
    opacity: 1;
  }
  25%, 45% {
    opacity: 0;
  }
  50%, 70% {
    opacity: 1;
  }
  75%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes  imgSizeChanger {
  0% {
    opacity: 0.25;
  }
  3% {
    opacity: 0.125;
  }
  5%, 20% {
    opacity: 0;
  }
  25%, 45% {
    opacity: 1;
  }
  50%, 70% {
    opacity: 0;
  }
  75%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
*/

#calendarImg {
  height: 6vh;
  width: 6vh;
  position: absolute;
  top: -1.25vh;
  right: 0;
}

.navImg {
  height: 3.25vh;
  width: 3.25vh;
  margin:auto;
  display: flex;
  animation: imgSizeChanger 16s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navLink {
  list-style-type: none;
}

/*Slideshow*/
.card .logo {
  height:4.5vh;
  width: 20vh;
}

.logo img {
  height: 100%;
  width: 100%;
}

.section5 {
  display: flex;
  gap: 2vh;
  width: 100%;
  background: linear-gradient(to bottom, #A93E57, #AC2E31, #A93E57);
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  box-shadow:0 15px 25px rgba(0, 0, 0, 0.1);
  height: 100vh;
  max-width: 100%;
}

.section5 .card {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  padding: 2vh;
  border-radius: 12px;
  background: linear-gradient(to bottom, #b49ebd, #b79fad, #798086);
  box-shadow:0 15px 25px rgba(0, 0, 0, 0.5);
  scroll-snap-align: center;
  max-width: 39vh;
  min-height: 90vh;
  max-height: 90.1vh;
}

.card h2 {
  margin-top: 2vh;
  font-weight: 600;
  font-size: 0;
}

#migro {
  height: 7.5vh;
  width: 30vh;
}
#migroText{
  margin-top:1vh;
}

.section5::-webkit-scrollbar{
  height:2.5vh;
  display: block;
}
.section5::-webkit-scrollbar-thumb
{
  border: 3px solid rgba(255, 255, 255, 0.17);
  background: #798086;
  border-radius: 0.75vh;
  width: 10vh;
  box-shadow:0 0.5vh 1vh rgba(0, 0, 0, 0.75);
}

.section5::-webkit-scrollbar-track
{
  background: #868e96;
}

.cardText {
  text-align: left;
  font-size: 1.5vh;
  color: #000000;
}

.firstCard {
  margin-left: 30px;
}

.lastCard {
  margin-right: 30px;
}

.card a {
  text-decoration: none;
  display: block;
  margin-top: 0.5vh;
  height: 4vh;
  width: 18vh;
  background: linear-gradient(135deg, #A93E57, #C95D76);
  border-radius: 1.5vh;
  color: #000000;
  align-content: center;
  text-align: center;
  box-shadow:0 0.5vh 1vh rgba(0, 0, 0, 0.75);
}

/**/

footer {
  background-color: #3f8d38;
  padding: 3vh;
  text-align: center;
  color: white;
  height: 20vh;
}

#Wlanscreen {
  position: fixed;
  display: none;
  background:linear-gradient(to bottom, #FFFFFFFF, #778da9, #415a77);
  width: 100%;
  height: 100%;
  padding: 5vh;
  padding-top: 12.5vh;
  z-index:100;
}

#Wlanscreen h1 {
  font-size: 7.5vh;
  margin-bottom: 5vh;
}

#Wlancancel {
  top: 2vh;
  right: 3.5vh;
  color:#778da9;
  border:none;
  font-size: 30px;
  position: absolute;
  background:transparent;
}

.wifiName {
  font-size: 30px;
  margin-top: -2.5vh;
}

#fragescreen {
  position: fixed;
  display: none;
  background:linear-gradient(to bottom, #c9ada7, #e9edc9);
  width: 100%;
  height: 100%;
  z-index:100;
}

#fragecancel {
  top: 2vh;
  right: 3.5vh;
  color: #e9edc9;
  border:none;
  font-size: 30px;
  position: absolute;
  background:transparent;
}

.QR {
  height: 30vh;
  width: 30vh;
  margin: 0 auto;
  display: flex;
  top: 15vh;
  position: relative;
}

.QR-04 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  opacity: 0;
}

.QR-12 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  opacity: 0;
}

.weiterleitenBtn-fragerunde {
  position: absolute;
  opacity: 1;
}

.weiterleitenBtn-fragerunde-QR-12 {
  transform: translate(0%, 500%);
}

.weiterleitenBtn-fragerunde-QR-04 {
  transform: translate(0%, 600%);
}

.weiterleitenText-fragerunde {
  position: absolute;
  transform: translate(-1.6%, 675%);
}

.weiterleitenBtn {
  position: relative;
  margin: 0 auto;
  top: 32.5vh;
  height: 5vh;
  width: 15vh;
  border-radius: 1.5vh;
  text-align: center;
  display: block;
  background: transparent;
  border: 0.35vh solid white;
  outline: none;
  text-decoration: none;
  align-content: center;
  color:white;
  left: -0.5%;
}


.weiterleitenText {
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
  top: 30vh;
}

.scanTitel {
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
  top: 10vh;
}

#feedbackscreen{
  position: fixed;
  display: none;
  background:linear-gradient(to bottom, #aec3b0, #415a77);
  width: 100%;
  height: 100%;
  z-index:100;
}

#feedbackcancel {
  top: 2vh;
  right: 3.5vh;
  color: #415a77;
  border:none;
  font-size: 30px;
  position: absolute;
  background:transparent;
}

#presiscreen {
  position: fixed;
  display: none;
  background:linear-gradient(to bottom, #d6ccc2, #f5ebe0, #d5bdaf);
  width: 100%;
  height: 100%;
  z-index:100;
}

#presicancel {
  top: 2vh;
  right: 3.5vh;
  color: #f5ebe0;
  border:none;
  font-size: 30px;
  position: absolute;
  background:transparent;
}

/*WICHTIGE DATEN*/
#event1{
  margin-top: 7.5vh;
  overflow: hidden;
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height:10vh;
  width: 35vh;
  border-top: 0.275vh solid white;
}

#event2{
  margin-top: 17.5vh;
  overflow: hidden;
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height:10vh;
  width: 35vh;
  border-top: 0.275vh solid white;
  border-bottom: 0.275vh solid white;
}

#event3{
  margin-top: 27.5vh;
  overflow: hidden;
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height:10vh;
  width: 35vh;
  border-bottom: 0.275vh solid white;
}

#event4{
  margin-top: 37.5vh;
  overflow: hidden;
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height:10vh;
  width: 35vh;
  border-bottom: 0.275vh solid white;
}

.importantDatesMark{
  position: absolute;
  transform: translate(-50%, -50%);
  left: 1%;
  top: 50%;
  background-color: #b49ebd;
  height: 7.5vh;
  width: 0.5vh;
}

.date{
  color: #ffffff;
  font-family: 'Roboto Light', sans-serif;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: -1vh;
  left: 5%;
  top: 20%;
  font-size: 2vh;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.day{

}

.month{

}

.year{

}

.title{
  font-size: 2.55vh;
  position: absolute;
  transform: translate(-0%, 32.5%);
  left: 25%;
  font-weight: 600;
  color: #ffffff;
}

.wichtigeDatenTitel {
  font-size: 2vh;
  position: absolute;
  transform: translate(-0%, 32.5%);
  left: 25%;
  font-weight: 600;
  color: #ffffff;
}

.subText{
  font-size: 2vh;
  position: absolute;
  transform: translate(-0%, 130%);
  left: 25%;
  font-weight: 600;
  color: #ffffff;
}

.linkBtn{
  border-radius:2vh;
  height: 10vh;
  font-size: 2.25vh;
  padding: 1vh;
  border: 0.35vh solid white;
  outline: none;
  background-color: transparent;
  color: white;
}

#timeline{
  position: relative;
  left: 15%;
  margin-top: 20vh;
  height: 185vh;
  width: 0.8vh;
  background-color: black;
  border-radius: 1vh;
  justify-content: center;
  align-items: center;
}

.timelineCircles{
  height: 7vh;
  width: 7vh;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 2;
}

.timelineCircles::before,
.timelineCircles::after{
  position: absolute;
  display: flex;
  z-index: 10;
  content: "";
  height: 7vh;
  width: 7vh;
  border-radius: 50%;
  background-image: conic-gradient(#a93e57, #a93ea7, #a5a93e,#a93e57);
  animation:rotate 2s linear infinite;
}

.timelineCircles::after{
  filter: blur(0.5rem);
  opacity: 1;
}

.timelineMiniCircles{
  height: 6vh;
  width: 6vh;
  position: absolute;
  background-color: black;
  z-index: 11;
  border-radius: 50%;
}

@keyframes rotate {
  from{
    rotate: 0deg;
  }
  to{
    rotate: 360deg;
  }
}

#timelineCircle1{
  top:0%
}

#timelineCircle2{
  top: 33%;
}

#timelineCircle3{
  top:66%;
}

#timelineCircle4{
  top:99%;
}

#kurzPresiH1 {
  position: relative;
  top: 4%;
  left:0;
}


/*CIRCLE1*/
#timelineRechteck1 {
  width: 27vh;
  height:0vh;
  border-radius:1vh;
  background:linear-gradient(to bottom, #a93ea7, #a5a93e);
  border: 0;
  transition: 1s ease-in-out;
  margin-left: 6vh;
  opacity: 1;
  position: absolute;
  top: -0.4%;
  overflow: hidden;
}

#timelineLine1 {
  height:0.8vh;
  width:0vh;
  transition: 0.75s ease-in-out;
  border-radius:1vh;
  background-color: black;
  position: absolute;
  top: -0.4%;
  z-index: 1;
}

#timelineZeit1 {
  position: absolute;
  right: 4.5vh;
  top: -3.66vh;
  text-align: center;
}

#timelineRechteck1Content1 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 22vh;
  left: 7%;
  transition: 1s ease-in-out;
  opacity: 0;
  font-family: "Roboto Mono", monospace;
  color: white;
  font-size: 1.6vh;
}

#timelineRechteck1Content2 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 22vh;
  left: 7%;
  top:30%;
  /*border-bottom: 0.275vh solid #ffffff;*/
  transition: 1s ease-in-out;
  opacity: 0;
}


/*CIRCLE2*/
#timelineRechteck2 {
  width: 27vh;
  height:0vh;
  border-radius:1vh;
  background:linear-gradient(to bottom, #a93ea7, #a5a93e);
  border: 0;
  transition: 1s ease-in-out;
  margin-left: 6vh;
  opacity: 1;
  overflow: scroll;
  position: absolute;
  top: 32.65%;
}

#timelineLine2 {
  height:0.8vh;
  width:0vh;
  transition: 0.75s ease-in-out;
  border-radius:1vh;
  background-color: black;
  position: absolute;
  left: 0vh;
  top: 32.65%;
  z-index: 1;
}

#timelineZeit2 {
  position: absolute;
  right: 4.5vh;
  top: 57.33vh;
  text-align: center;
}

#timelineRechteck2Content1 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 22vh;
  left: 7%;
  transition: 1s ease-in-out;
  opacity: 0;
  font-family: "Roboto Mono", monospace;
  color: white;
  font-size: 1.6vh;
}

#timelineRechteck2Content2 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 22vh;
  left: 7%;
  top:30%;
  transition: 1s ease-in-out;
  opacity: 0;
}

/*CIRCLE3*/
#timelineRechteck3 {
  width: 27vh;
  height:0vh;
  border-radius:1vh;
  background:linear-gradient(to bottom, #a93ea7, #a5a93e);
  border: 0;
  transition: 1s ease-in-out;
  margin-left: 6vh;
  opacity: 1;
  overflow: scroll;
  position: absolute;
  top: 65.65%;
}

#timelineLine3 {
  height:0.8vh;
  width:0vh;
  transition: 0.75s ease-in-out;
  border-radius:1vh;
  background-color: black;
  position: absolute;
  left: 0vh;
  top: 65.65%;
  z-index: 1;
}

#timelineZeit3 {
  position: absolute;
  right: 4.5vh;
  top: 118.33vh;
  text-align: center;
}

#timelineEinfuehrung3 {
  opacity: 0;
  transition: 1s ease-in-out;
}

#timelineRechteck3Content1 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 23vh;
  left: 7%;
  top:32%;
  border-top: 0.275vh solid #ffffff;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck3Content2 {
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck3Content3 {
  transform: translate(-0%, 55%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck3Content4 {
  transform: translate(-0%, 158%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck3Content5 {
  transform: translate(-0%, 260%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

/*CIRCLE4*/
#timelineRechteck4 {
  width: 27vh;
  height: 0vh;
  border-radius:1vh;
  background:linear-gradient(to bottom, #a93ea7, #a5a93e);
  border: 0;
  transition: 1s ease-in-out;
  margin-left: 6vh;
  opacity: 1;
  overflow: scroll;
  position: absolute;
  top: 98.65%;
}

#timelineLine4 {
  height:0.8vh;
  width:0vh;
  transition: 0.75s ease-in-out;
  border-radius:1vh;
  background-color: black;
  position: absolute;
  left: 0vh;
  top: 98.65%;
  z-index: 1;
}

#timelineZeit4 {
  position: absolute;
  right: 4.5vh;
  top: 179.5vh;
}

#timelineRechteck4Content1 {
  transform: translate(-0%, 20%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 23vh;
  left: 7%;
  top:32%;
  border-top: 0.275vh solid #ffffff;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck4Content2 {
  transform: translate(-0%, -50%);
  position: absolute;
  background-color: transparent;
  height: 7.5vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck4Content3 {
  transform: translate(-0%, 55%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck4Content4 {
  transform: translate(-0%, 158%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineRechteck4Content5 {
  transform: translate(-0%, 260%);
  position: absolute;
  background-color: transparent;
  height: 7vh;
  width: 23vh;
  left: 7%;
  top:53.5%;
  border-bottom: 0.275vh solid #ffffff;
  transition: 1s ease-in-out;
  opacity: 0;
}

#timelineEinfuehrung4 {
  opacity: 0;
  transition: 1s ease-in-out;
}
/**/
.timelineTitel {
  font-size:23px;
}

.timelineTitelKurzpresis {
  font-size:17px;
  margin-left:17px;
  margin-top:15px;
}

.timelineTextKurzpresis {
  font-size:13.5px;
  margin-left:17px;
  margin-top: -2px;
  margin-bottom: 90px;
}

.mark {
  background-color: rgb(202, 167, 214);
  height: 6vh;
  width: 0.4vh;
  position: absolute;
}

.job {
  color: #ffffff;
  font-family: 'Roboto Light', sans-serif;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: -1vh;
  font-size: 10px;
  font-weight: 750;
  margin: 0;
  line-height: 1;
  width:50px;
  overflow: hidden
}

.place {
  color: #ffffff;
  font-family: 'Roboto Light', sans-serif;
  position: absolute;
  font-size: 10px;
  font-weight: 800;
  margin: 0;
}

.company {
  font-size: 10px;
  position: absolute;
  font-weight: 750;
  color: #ffffff;
  font-family: 'Roboto Light', sans-serif;
}

.mark-abraxas {
  left:1%;
  top: 0%;
  transform: translate(0,11%);
}

.job-abraxas {
  left: 5%;
  top: 27%;
}

.place-abraxas {
  left: 35.5%;
  top: 32%;
  line-height:9.5px;
}

.company-abraxas {
  left: 35.5%;
  top: 17%;
}

.mark-innosolv {
  left:1%;
  top: 5%;
  transform: translate(0,11%);
}

.job-innosolv {
  left: 5%;
  top: 31%;
}

.place-innosolv {
  left: 35.5%;
  top: 34.5%;
}

.company-innosolv {
  left: 35.5%;
  top: 23%;
}

.mark-abacus {
  left:1%;
  top: -5%;
  transform: translate(0,11%);
}

.job-abacus {
  left: 5%;
  top: 27%;
}

.place-abacus {
  left: 33.49%;
  top: 27.5%;
}

.company-abacus {
  left: 34%;
  top: 16%;
}

.mark-ar {
  left:1%;
  top:-2%;
  transform: translate(0,11%);
}

.job-ar {
  left: 5%;
  top: 25%;
}

.place-ar {
  left: 31.53%;
  top: 29%;
  font-size: 9.75px;
}

.company-ar {
  left: 34.75%;
  top: 16%;
}

.mark-raiffeisen {
  left:1%;
  top: -5%;
  transform: translate(0,11%);
}

.job-raiffeisen {
  left: 5%;
  top: 27%;
}

.place-raiffeisen {
  left: 35%;
  top: 28%;
  font-size: 9.75px;
}

.company-raiffeisen {
  left: 35%;
  top: 15%;
}

.LinkBtns {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap:10px;
  margin-top: 10vh;
}

.linkBtnLeft {
  border-radius:2vh;
  height: 10vh;
  font-size: 2.25vh;
  padding: 1vh;
  border: 0.35vh solid white;
  outline: none;
  background-color: transparent;
  color: white;
  width: 90%;
  justify-self: start;
}

.linkBtnRight {
  border-radius:2vh;
  height: 10vh;
  font-size: 2.25vh;
  padding: 1vh;
  border: 0.35vh solid white;
  outline: none;
  background-color: transparent;
  color: white;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
}

