/*
@import url("https://fonts.googleapis.com/css?family=Archivo|Lexend+Exa|Montserrat|Questrial|Quicksand|Saira|Varela|Varela+Round&display=swap");
*/

@font-face {
  font-family: OpenSans;
  src: local("font/OpenSans-Light"), url(../font/OpenSans-Light.ttf);
}
@font-face {
  font-family: OpenSans-Bold;
  src: local("font/OpenSans-Bold"), url(../font/OpenSans-Bold.ttf);
}
@font-face {
  font-family: Montserrat;
  src: local("font/Montserrat-Medium"), url(../font/Montserrat-Medium.ttf);
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0px;
  font-family: "OpenSans";
  font-weight: normal;
  font-size: 24px;
  color: #777;
  overflow: none;
  overflow-x: hidden;
}

/***
*
* Head Navigation Definitions
*
***/

.sticky_nav {
  position: fixed;
  top: 0;
  background: rgba(128, 159, 255, 0.8);
  margin: 0;
  z-index: 10;
  width: 100vw;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}

.headline {
  display: grid;
  grid-template-columns: 20% auto 20%;
}

.titleLogo {
  grid-column: 1;
  max-width: 60%;
  min-width: 20%;
  margin-left: 1%;
}

.titleText {
  grid-column: 2;
  align-self: center;
  text-align: center;
  font-family: "OpenSans";
  font-size: min(6vw, 40px);
  font-weight: bolder;
  color: rgba(21, 21, 214, 0.8);
}

/*****
   Normal Nav
   ***/

nav {
  background-color: #003399;
  border-top: solid #949596;
}

#navBlock {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#navBlock input {
  display: none;
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
}

#menu a {
  text-decoration: none;
  display: block;
  color: rgb(235, 230, 230);
  transition: all 2s ease-out;
  font-size: min(4.4vw, 30px);
  text-align: center;
  padding: 14px 16px;
  font-weight: 500;
}

#menu li {
  list-style-type: none;
}

#menu a:hover {
  color: tomato;
  font-weight: 900;
}

/***
Background-Image Parts
**/
.bgimg {
  position: relative;
  opacity: 0.8;
  background: rgba(128, 159, 255, 0.9);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw;
}

.img-2,
.img-3,
.img-4,
.img-5,
.img-6,
.img-7 {
  -webkit-animation: bgiAnim 5s; /* Chrome, Safari, Opera */
  animation: myfirst 5s;
}

.img-1 {
  background-image: url("../img/TSC_Opener_Top.jpg");
  min-height: 100%;
}

.img-2 {
  background-image: url("../img/TSC_Contact.jpg");
  min-height: 400px;
}

.img-3 {
  background-image: url("../img/TSC_UnserVerein.jpg");
  min-height: 400px;
}

.img-4 {
  background-image: url("../img/FormularBgrd2.jpg");
  min-height: 400px;
}

.img-5 {
  background-image: url("../img/TSC_Contact2.jpg");
  min-height: 400px;
}

.img-6 {
  background-image: url("../img/TSC_DatenSchutz_TopS.jpg");
  min-height: 100%;
}

.img-7 {
  background-image: url("../img/TSC_404_TopS.jpg");
  min-height: 100%;
}

.img-8 {
  background-image: url("../img/TSC_Training.jpg");
  opacity: 0.8;
  min-height: 600px;
}

.caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
}

/*
Design nur für die Error-Page
*/

.caption .border3 {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 18px;
  font-size: 1.5rem;
  letter-spacing: 10px;
  color: rgba(10, 10, 10, 0.863);
  text-align: center;
  margin: auto;
}

.anchor {
  margin-top: 50px;
}

.vspace {
  margin-top: 150px;
}

.bgimg .caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #0853e8;
  padding: 18px;
  font-family: "OpenSans-Bold";
  font-size: 3.5rem;
  letter-spacing: 10px;
  background-color: transparent;
}

.border-news {
  position: absolute;
  vertical-align: middle;
  text-align: center;
  margin-top: 40vh;
  margin-left: 20%;
  margin-right: 20%;
  padding: 18px;
  font-size: 2.5vw;
  letter-spacing: 5px;
  font-family: "OpenSans-Bold";
  font-style: italic;
  font-variant: small-caps;
  background-color: rgba(255, 255, 255, 0.5);
  color: #a10a51;
  transform: rotate(-20deg);
}

:target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

.text {
  padding: 80px;
  text-align: left;
  display: grid;
  grid-gap: 10px;
  line-height: 1.2em;
}

.light {
  color: #777;
  background-color: white;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}

.dark {
  color: #ddd;
  background-color: #282e34;
  grid-auto-columns: repeat(3, minmax(300px, 1fr));
}

.light h2,
.dark h2 {
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.8em;
}

.light h3,
.dark h3 {
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.light > h2 {
  grid-column: span 3;
  color: rgb(35, 30, 30);
}

.dark > h2 {
  grid-column: span 3;
  color: rgb(235, 230, 230);
}

.light > h3 {
  grid-column: span 3;
  color: rgb(35, 30, 30);
}

.dark > h3 {
  grid-column: span 3;
  color: rgb(235, 230, 230);
}

.dark .item,
.light .item {
  padding: 10px;
  border-style: solid;
  border-width: 3px;
  min-height: 10rem;
}

.light .item {
  border-color: rgba(229, 241, 252, 0.109);
}

.dark .item {
  border-color: rgba(44, 50, 55, 0.65);
}

.light .firstCol,
.dark .firstCol {
  grid-column: 1;
}

.light .twoCol,
.dark .twoCol {
  grid-column: span 2;
}

.light .threeCol {
  grid-column: span 3;
}

.dark .secondCol {
  grid-column: 2;
}

.dark .thirdCol {
  grid-column: 3;
}

.dark .threeCol {
  grid-column: span 3;
}

.dark a {
  color: #ccc;
}

.light a {
  color:#282e34;
}

.trainer {
  font-size: 1.0rem;
}

.mySlides {
  display: none;
}

iframe {
  border-style: solid;
  border-width: 1px;
  border-color: #777;
  width: 95%;
  height: 70vh;
  grid-column: span 3;
  overflow: hidden;
  font-family: Montserrat;
}

.inline_img {
  border-radius: 0.25em;
  margin: 0em auto;
  opacity: 0;
  -webkit-transform: translateY(4em) rotateZ(-5deg);
  transform: translateY(200px);
  -webkit-transition: opacity 0.3s 0.25s ease-out,
    -webkit-transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1);
  transition: opacity 0.3s 0.25s ease-out,
    -webkit-transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1);
  transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1),
    opacity 0.3s 0.25s ease-out;
  transition: transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1),
    opacity 0.3s 0.25s ease-out,
    -webkit-transform 4s 0.25s cubic-bezier(0, 1, 0.3, 1);
  object-fit: cover;
  width: 90%;
  will-change: transform, opacity;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(4em);
  transform: translate(0px);
}

/* Slideshow container */
.impress {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
  grid-gap: 10px;
}


#ourLocation {
  padding: 10px;
  grid-column: 1 / 4;
  grid-row: 2 / 2;
  min-height: 15rem;
}

.ol-popup {
  position: absolute;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 280px;
}

.ol-popup:after,
.ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
	  

.ol-popup:before {
  border-top-color: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}

.ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 8px;
}

.ol-popup-closer:after {
  content: "✖";
}


.slideshow-container {
  grid-column: span 3;
  position: relative;
  padding-top: 0%;
  padding-bottom: 0%;
  padding-left: 0%;
  padding-right: 0%;
  margin-bottom: 150px;
}

/* Caption text */
.capt {
  color: #f2f2f2;
  font-size: 3vw;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1vw;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */

.active {
  background-color: #717171;
}

/*
Video styling
*/

.video-block {
  background-color: #ccc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  margin: 1em auto;
  padding: 0.5em 1em;
  max-width: 100%;
  grid-column: span 3;
}

.video-block > .video-item {
  overflow: hidden;
  margin: 1em auto;
}

.video-block > .video-item > video {
  max-width: 60%;
  padding: 0.5em 1em;
}

.video-block > .video-item > .info {
  color: rgb(35, 30, 30);
  flex: 0 0 auto;
}

.cloud:link,
.cloud:visited {
  background-color: rgb(65, 68, 241);
  color: rgb(247, 238, 238);
  border: 2px solid rgb(26, 13, 87);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.cloud:hover,
.cloud:active {
  background-color: rgb(187, 216, 243);
  color: rgb(39, 36, 63);
}

/*

Sicherung
.video-block {
  background-color: #ccc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-between;
  margin: 1em auto;
  padding: 0.5em 1em;
  max-width: 100%;
  grid-column: span 3;
}


.video-item {
  overflow: hidden;
  margin: 1em auto;
  flex: 1 0;
}

.video-block>.video-item>video {
  max-width: 30%;
  max-height: fit-content;
  padding: 0.5em 1em;
}

.video-block>.video-item>.info {
  color:rgb(35, 30, 30);
  flex: 0 0 auto;
}

*/

/* Fading animation */
.fade {
  -webkit-animation: flickerAnimation 1s infinite;
  animation: fade 6s 2s infinite;
}

@-webkit-keyframes fade {
  100% {
    right: 0;
  }
}

@keyframes fade {
  100% {
    right: 0;
  }
}



/* ----  ::TODO::  --- */

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

.controls-button, .slide-side-text, .slide-content-cta {
  font-family: "Montserrat";
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.12rem;
  font-size: 0.7rem;
  line-height: 1;
}

[v-cloak] {
  opacity: 0;
}

body {
  cursor: default;
}
body ::-moz-selection {
  background-color: rgba(46, 49, 52, 0.7);
  color: #f5f5f1;
}
body ::selection {
  background-color: rgba(46, 49, 52, 0.7);
  color: #f5f5f1;
}
body ::-moz-selection {
  background-color: rgba(46, 49, 52, 0.7);
  color: #f5f5f1;
}

.wrapper {
  height: calc(100vh - 50px);
  min-height: 36rem;
  position: relative;
}
@media (max-width: 630px) {
  .wrapper {
    height: 100vh;
    min-height: 0;
  }
}

.slide-wrapper {
  background-size: cover;
  height: 100%;
  background-position: center center;
  position: absolute;
  width: 100%;
  background-blend-mode: darken;
}
.slide-wrapper:nth-child(1) {
  background-color: rgba(115, 129, 153, 0.4);
}
.slide-wrapper:nth-child(1):before {
  background-color: rgba(115, 129, 153, 0.25);
}
.slide-wrapper:nth-child(1) .slide-content-text {
  text-shadow: 2px 5px 45px rgba(85, 96, 113, 0.25);
}
.slide-wrapper:nth-child(2) {
  background-color: rgba(144, 171, 184, 0.7);
}
.slide-wrapper:nth-child(2):before {
  background-color: rgba(144, 171, 184, 0.3);
}
.slide-wrapper:nth-child(2) .slide-content-text {
  text-shadow: 2px 5px 45px rgba(121, 142, 152, 0.2);
}
.slide-wrapper:nth-child(3) {
  background-color: rgba(86, 125, 156, 0.5);
}
.slide-wrapper:nth-child(3):before {
  background-color: rgba(86, 125, 156, 0.2);
}
.slide-wrapper:nth-child(3) .slide-content-text {
  text-shadow: 2px 5px 55px rgba(57, 83, 103, 0.4);
}
.slide-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}
.slide-bg-text {
  font-family: "Playfair Display";
  color: #000;
  font-size: 42vh;
  line-height: 0.8;
  opacity: 0.03;
  font-weight: 900;
  margin-top: -4rem;
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}
.slide-bg-text > p:last-child {
  padding-left: 4rem;
}
.slide-content {
  color: #fff;
  margin-top: 5rem;
  position: absolute;
  top: 50%;
  left: calc(13vw + (.7) * 48vh);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .slide-content {
    left: calc(13vw + 1rem);
  }
}
@media (max-height: 730px) {
  .slide-content {
    top: 30%;
    transform: translateY(-30%);
    left: calc(9vw + (.7) * 16vw);
  }
}
.slide-content-text {
  font-family: "Playfair Display";
  font-size: 9rem;
  letter-spacing: 0.2rem;
  line-height: 0.87;
  font-weight: 700;
  will-change: auto;
}
@media (max-height: 790px) {
  .slide-content-text {
    font-size: 7rem;
  }
}
@media (max-width: 1150px) {
  .slide-content-text {
    font-size: 7rem;
  }
}
@media (max-width: 840px) {
  .slide-content-text {
    font-size: 5.5rem;
  }
}
@media (max-width: 630px) {
  .slide-content-text {
    margin-bottom: 5.5rem;
  }
}
@media (max-width: 500px) {
  .slide-content-text {
    font-size: 3.5rem;
  }
}
.slide-content-text > p:last-child {
  padding-left: 3rem;
}
.slide-content-cta {
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4.5rem;
  margin-left: calc((.3) * 48vh + 4.5rem);
  padding: 0.9rem 2.2rem;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: 0.18s ease-in-out;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .slide-content-cta {
    background-color: rgba(255, 255, 255, 0.3);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 630px) {
  .slide-content-cta {
    display: none;
  }
}
.slide-content-cta:hover {
  color: #000;
  background-color: #fff;
}
.slide-rect {
  height: 62vh;
  width: 48vh;
  border-image-slice: 10%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 13vw;
  border-width: 5vh;
  border-style: solid;
  box-shadow: 2px 2px 90px 30px rgba(41, 50, 61, 0.22);
  will-change: auto;
}
@media (max-height: 790px) {
  .slide-rect {
    left: 9vw;
    height: 20vw;
    width: 16vw;
    border-width: 5vh;
  }
}
@media (max-height: 730px) {
  .slide-rect {
    top: 30%;
    transform: translateY(-30%);
  }
}
.slide-rect-filter {
  filter: brightness(110%) contrast(110%) saturate(110%);
}
.slide-side-text {
  position: absolute;
  left: calc(13vw - 3rem);
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  top: calc((50% - (62vh / 2)) + (5vh / 2));
}
@media (max-height: 790px) {
  .slide-side-text {
    left: calc(9vw - 3rem);
    top: calc((50% - (20vw / 2)) + (5vh / 2));
  }
}
@media (max-height: 730px) {
  .slide-side-text {
    top: calc((40% - (20vw / 2)) + (5vh / 2));
  }
}
.slide-side-text > span:first-child {
  font-weight: 700;
}
.slide-side-text:after {
  content: "";
  width: 1px;
  background-color: #fff;
  height: 40px;
  display: block;
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
}

.controls-container {
  position: absolute;
  z-index: 200;
  display: flex;
  bottom: 0;
  right: 0;
  align-items: flex-end;
}
@media (max-width: 630px) {
  .controls-container {
    display: none;
  }
}
.controls-button {
  cursor: pointer;
  background-color: rgba(208, 206, 204, 0.32);
  border: 0;
  padding: 1.6rem 2.2rem;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 15rem;
  transition: 0.25s ease-in-out;
  outline: 0;
}
@media (max-width: 730px) {
  .controls-button {
    padding: 1.2rem 1.4rem;
    min-width: 13rem;
  }
}
.controls-button:not(.active):hover {
  color: #000;
  background-color: #fff;
}
.controls-button.active {
  cursor: default;
  font-weight: 700;
  background-color: #3b3e45;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
  margin-bottom: -0.3rem;
  position: relative;
}
@media (max-width: 730px) {
  .controls-button.active {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    margin-bottom: -0.15rem;
  }
}
.controls-button.active:after {
  content: "";
  background-color: #e3e3e3;
  height: 5px;
  width: calc(100% - 8px);
  position: absolute;
  top: 100%;
  left: 4px;
}
.controls-button:not(.active) + .controls-button {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pagination-container {
  position: absolute;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 920px) {
  .pagination-container {
    display: none;
  }
}
.pagination-item {
  width: 30px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: 0.18s ease-in-out;
}
.pagination-item + .pagination-item {
  margin-top: 1rem;
}
.pagination-item.active {
  background-color: #fff;
  position: relative;
  transform: translateX(-0.6rem);
  width: 35px;
}
.pagination-item.active:after {
  content: "";
  height: 4px;
  width: 2px;
  border-radius: 35%;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(0.6rem) translateY(-50%);
}
.pagination-item:not(.active) {
  cursor: pointer;
}
.pagination-item:not(.active):hover {
  background-color: #fff;
  width: 35px;
}

@-webkit-keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slideRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes cutTextUp {
  from {
    -webkit-clip-path: inset(0 0 -10% 0);
            clip-path: inset(0 0 -10% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}
@keyframes cutTextUp {
  from {
    -webkit-clip-path: inset(0 0 -10% 0);
            clip-path: inset(0 0 -10% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}
@-webkit-keyframes cutTextDown {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  to {
    -webkit-clip-path: inset(-10% 0 -20% 0);
            clip-path: inset(-10% 0 -20% 0);
    opacity: 1;
  }
}
@keyframes cutTextDown {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  to {
    -webkit-clip-path: inset(-10% 0 -20% 0);
            clip-path: inset(-10% 0 -20% 0);
    opacity: 1;
  }
}
@-webkit-keyframes cutTextDownFromTop {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 -30% 0);
            clip-path: inset(0 0 -30% 0);
    opacity: 1;
  }
}
@keyframes cutTextDownFromTop {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 -30% 0);
            clip-path: inset(0 0 -30% 0);
    opacity: 1;
  }
}
@-webkit-keyframes rectMovement {
  0% {
    transform: translateX(0) rotate(0) translateY(-50%);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-50%);
    opacity: 0;
  }
}
@keyframes rectMovement {
  0% {
    transform: translateX(0) rotate(0) translateY(-50%);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-50%);
    opacity: 0;
  }
}
@media (max-height: 730px) {
  @-webkit-keyframes rectMovement {
    0% {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
    60% {
      opacity: 1;
    }
    100% {
      transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-30%);
      opacity: 0;
    }
  }
  @keyframes rectMovement {
    0% {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
    60% {
      opacity: 1;
    }
    100% {
      transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-30%);
      opacity: 0;
    }
  }
}
@-webkit-keyframes rectMovementFromRight {
  0% {
    transform: translateX(calc(48vh)) rotate(12deg) translateY(-50%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0) translateY(-50%);
    opacity: 1;
    @media (max-height: 730px) {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
  }
}
@keyframes rectMovementFromRight {
  0% {
    transform: translateX(calc(48vh)) rotate(12deg) translateY(-50%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0) translateY(-50%);
    opacity: 1;
    @media (max-height: 730px) {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
  }
}
@media (max-height: 730px) {
  @-webkit-keyframes rectMovementFromRight {
    0% {
      transform: translateX(calc(48vh)) rotate(12deg) translateY(-30%);
      opacity: 0;
    }
    60% {
      opacity: 1;
    }
    100% {
      transform: translateX(0) rotate(0) translateY(-30%);
      opacity: 1;
    }
  }
  @keyframes rectMovementFromRight {
    0% {
      transform: translateX(calc(48vh)) rotate(12deg) translateY(-30%);
      opacity: 0;
    }
    60% {
      opacity: 1;
    }
    100% {
      transform: translateX(0) rotate(0) translateY(-30%);
      opacity: 1;
    }
  }
}
@-webkit-keyframes rectMovementRight {
  0% {
    transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-50%);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0) translateY(-50%);
    opacity: 1;
    @media (max-height: 730px) {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
  }
}
@keyframes rectMovementRight {
  0% {
    transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-50%);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0) translateY(-50%);
    opacity: 1;
    @media (max-height: 730px) {
      transform: translateX(0) rotate(0) translateY(-30%);
    }
  }
}
@media (max-height: 730px) {
  @-webkit-keyframes rectMovementRight {
    0% {
      transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-30%);
    }
    40% {
      opacity: 1;
    }
    100% {
      transform: translateX(0) rotate(0) translateY(-30%);
      opacity: 1;
    }
  }
  @keyframes rectMovementRight {
    0% {
      transform: translateX(calc(-48vh + -13vw)) rotate(12deg) translateY(-30%);
    }
    40% {
      opacity: 1;
    }
    100% {
      transform: translateX(0) rotate(0) translateY(-30%);
      opacity: 1;
    }
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




