@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@500&display=swap");

* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-decoration: none;
  padding: 0;
}

html {
  background: #000;
  overflow-y: scroll;
  scrollbar-width: 1px;
  overflow-x: hidden;
  margin: 0;
}

body {
  margin: 0;
  background: #000;
  -ms-overflow-style: none;
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
  transition: 1.25s cubic-bezier(0.13, 1.27, 0.86, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.done {
  top: -100%;
  transition: 1.25s cubic-bezier(0.13, 1.27, 0.86, 0.04);
  /* border-bottom: 70px solid #20B2AA; */
  z-index: -1;
}

.letter {
  position: absolute;
  font-size: 100px;
  color: #20b2aa;
  font-family: "Dosis", sans-serif;
  transition: all 0.5s;
  opacity: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.done .letter {
  opacity: 0;
  display: none;
}

.smi {
  font-size: 100px;
  color: #20b2aa;
  font-family: "Dosis", sans-serif;
  transition: all 0.5s;
  opacity: 0;
  display: none;
  visibility: hidden;
}

.done .smi {
  opacity: 1;
  display: block;
  font-size: 180px;
  letter-spacing: 100px;
  margin-top: 450px;
  margin-left: 110px;
  color: transparent;
  -webkit-text-stroke: 3px #20b2aa;
  visibility: visible;
}

.box,
.smi {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.letter,
.smi {
  flex: none;
  -webkit-flex: none;
  -moz-flex: none;
  -ms-flex: none;
  -o-flex: none;
}

.letter,
.smi {
  align-self: center;
  -webkit-align-self: center;
  -moz-align-self: center;
  -o-align-self: center;
  -ms-align-self: center;
}

.pulse-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  padding: 10px;
  background: #000;
  position: fixed;
  bottom: 50px;
  right: 3%;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  transition: all 1s ease;
  font-family: "Dosis", sans-serif;
  border: none;
}

.pulse-button h1 {
  position: absolute;
  color: #20b2aa;
}

.pulse-button h1::first-letter {
  color: #0093af;
}

.hidepu {
  opacity: 0;
}

.info {
  position: fixed;
  left: 1.5%;
  bottom: 25px;
  z-index: 998;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  color: #20b2aa;
  background: #000;
  border: none;
  cursor: pointer;
  font-family: "Dosis", sans-serif;
}

.popup {
  opacity: 0;
  font-size: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(150%);
  padding: 20px;
  background: #fff;
  border: 3px solid #000;
  z-index: 0;
  border-radius: 20px;
  transition: transform 0.9s ease;
  font-family: "Dosis", sans-serif;
}

.firt {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  z-index: 0;
  opacity: 0;
  transition: all 0.9s ease;
}

.popup-content {
  text-align: center;
}

.close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
}

#menu-toggle {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 50;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 0px 10px 10px 0px;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}

#menu-toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#menu-toggle:focus {
  outline: none;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 15;
  font-family: "Dosis", sans-serif;
}

#mobile-menu.openik {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

#menu-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 55px;
  color: #0093af;
}

#menu-close:focus {
  outline: none;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.menu-links li {
  margin-bottom: 10px;
  width: 100%;
}

.menu-links a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  display: block;
  position: relative;
  transition: all 0.5s ease;
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
}

.logo {
  background: #000;
  position: fixed;
  right: 20px;
  top: 15px;
  width: 200px;
  height: 50px;
  border-radius: 30px;
  justify-content: center;
  text-align: center;
  z-index: 1;
  color: #0093af;
  font-weight: 1000;
  transition: all 0.5s ease;
  z-index: 6;
  overflow: hidden;
}

.logo:hover {
  transform: scale(0.9);
}

.logo h1 {
  position: absolute;
  left: 52%;
  top: 8%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  letter-spacing: 5px;
  font-family: "Dosis", sans-serif;
}

.logo h1::first-letter {
  color: #fff;
  font-size: 35px;
}

.logo h1::after {
  content: "R";
  color: #fff;
}

.logo h1::before {
  content: "V";
  color: #fff;
  position: absolute;
  left: 51.45%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.welomp {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 85px;
  background: linear-gradient(to bottom, #20b2aa 50%, #000 50%);
  color: transparent;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  transition: 0.5s ease-out;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.contentwel {
  position: absolute;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.contentwel h2 {
  color: #fff;
  font-size: 180px;
  position: absolute;
}

.stav {
  height: 600px;
  width: 100%;
  background: none;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}

.stavbox {
  position: absolute;
  width: 500px;
  height: 60%;
  right: 0;
  top: 360px;
  background: transparent;
  padding: 70px;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  font-size: 38px;
  overflow: hidden;
  transform: translate(-0%, -50%);
  z-index: 2;
  align-items: center;
  justify-content: center;
  justify-items: center;
  display: flex;
}

.stavbox p {
  font-family: "Dosis", sans-serif;
  position: absolute;
  z-index: 3;
}

.imsta {
  position: absolute;
  left: 0;
  top: 0;
  width: 800px;
  height: 600px;
  z-index: 1;
}

.srosti {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: 50px;
  margin-bottom: 100px;
  display: flex;
  background: #000;
  color: #20b2aa;
  justify-content: center;
  align-items: center;
  justify-items: center;
  font-family: "Dosis", sans-serif;
  overflow: hidden;
  white-space: nowrap;
  font-size: 30px;
}

.glbsas {
  position: absolute;
  max-width: 100%;
  background: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  height: 500px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  border-radius: 20px;
}

.glbsas li {
  text-decoration: none;
  margin-top: 40px;
}

.glbsas li a {
  color: #fff;
  transition: all 0.5s ease;
}

.glbsas li a:hover {
  letter-spacing: 20px;
}

#main {
  position: relative;
  bottom: 10px;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 400vh;
  width: 100%;
  overflow: hidden;
  font-family: "Dosis", sans-serif;
}

.slides {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
  max-height: 500px;
}

.slides .list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.slides .slide {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-items: center;
}

.slide .background {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  will-change: transform;
  background-size: cover;
}

.slide .content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  width: 100%;
  /* padding: 3rem; */
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  position: absolute;
  /* align-items: center; */
  text-transform: uppercase;
  /* line-height: 1.25em; */
  font-weight: 500;
}

.mainpro {
  font-size: 300px;
  color: white;
}

.mainpropa {
  font-size: 200px;
  color: #20b2aa;
}

.progis {
  font-size: 90px;
  color: white;
}

.lita {
  font-size: 50px;
  letter-spacing: 5px;
}

.lastsli {
  font-size: 50px;
  color: white;
}

.text-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  top: 90px;
  color: #0093af;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 300px;
  font-family: "Dosis", sans-serif;
  z-index: 3;
}

.text-wrapper h1 {
  position: relative;
  font-size: 11em;
  letter-spacing: 10px;
}
.text-wrapper h1:before,
.text-wrapper h1:after {
  content: attr(data-text);
}
.text-wrapper h1:before {
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  text-shadow: 1px 1px, 2px 2px, 3px 3px, 4px 4px, 5px 5px, 6px 6px, 7px 7px,
    8px 8px, 9px 9px, 10px 10px;
  -webkit-mask: repeating-linear-gradient(
    45deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.5) 0 6px
  );
  mask: repeating-linear-gradient(
    45deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.5) 0 6px
  );
}

.alho {
  position: relative;
  font-family: "Dosis", sans-serif;
  width: 100%;
  height: 200px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 32px;
  white-space: nowrap;
  font-size: 30px;
}

.im {
  position: relative;
  font-family: "Dosis", sans-serif;
  width: 100%;
  height: 640px;
  z-index: 3;
  margin-top: 220px;
  margin-bottom: 150px;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: flex;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  transform: rotateX(7.0262deg) rotateY(23.8494deg);
}
#me {
  position: relative;
  bottom: 460px;
}

.im h1 {
  position: absolute;
  top: -130px;
  font-size: 60px;
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
  letter-spacing: 80px;
  z-index: 4;
  text-shadow: 1px 1px 2px #000;
}

.im p {
  z-index: 1;
}

.im h1,
i {
  color: #0093af;
}

.allabim {
  position: absolute;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, #0093af, #20b2aa);
  transition: all 0.5s ease;
  z-index: 3;
  border-radius: 20px;
}

.bioim {
  top: 0%;
  left: 0%;
}

.likim {
  right: 0%;
  bottom: 0%;
}

.allabim h2 {
  position: absolute;
  font-size: 35px;
  left: 50%;
  top: -15%;
  transform: translate(-50%, -10%);
  color: #000;
}

.allabim p {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  max-width: 650px;
  font-size: 25px;
  color: #000;
}

.anoh {
  width: 100%;
  height: 1700px;
  background: #000;
  text-align: center;
  font-family: "Dosis", sans-serif;
  position: relative;
  margin-top: 150px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  display: flex;
}

.anh {
  position: absolute;
  color: #20b2aa;
  font-size: 240px;
  white-space: nowrap;
  z-index: 3;
  transform: rotate(-90deg);
}

.anmy1,
.anmy2 {
  position: absolute;
  width: 430px;
  height: 100%;
  top: 125px;
  z-index: 2;
  color: transparent;
  text-shadow: 0px 0px 15px #0093af;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 35px;
}

.anmy1 {
  left: 0;
}

.anmy2 {
  right: 0;
}

.paskakon {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("images/conta.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: -10px;
  margin-bottom: 100px;
  top: 200px;
  z-index: 3;
}

.contaks {
  position: relative;
  width: 100%;
  height: 400px;
  background: transparent;
  font-family: "Dosis", sans-serif;
  z-index: 4;
  align-items: center;
  text-align: center;
  justify-items: center;
  display: flex;
  transition: all 1s ease;
  border-radius: 100px 100px 0px 0px;
}

#footer-img {
  height: 100%;
  width: 100%;
  position: absolute;
}

.contaks p {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%);
  font-weight: 500;
  color: #0093af;
}

.contai {
  width: 100%;
  height: 100px;
  background: transparent;
  position: absolute;
  left: 50%;
  top: 73%;
  transform: translate(-50%, -50%);
}

.contaks a {
  text-decoration: none;
  position: relative;
  background: transparent;
  font-size: 85px;
  transition: all 1s;
  z-index: 8;
}

.contai svg {
  opacity: 1;
  transition: all 0.9s;
}

.contai svg:hover {
  transform: translateY(-20px);
  opacity: 0.7;
}

.conha {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 120px;
  left: 50%;
  transform: translate(-50%);
  justify-content: center;
  align-items: center;
  display: flex;
}

.contaks h1 {
  position: absolute;
  color: #20b2aa;
  font-size: 100px;
  letter-spacing: 5px;
  text-shadow: 1px 1px 0 #20b2aa;
}
