body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: linear-gradient(45deg, rgb(255, 255, 255) 30%, rgb(219, 219, 219) 50%, rgb(255, 255, 255) 70%);
  background-repeat: no-repeat;
}

* {
  outline: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #ba1cc2;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.6);
}

.backToTop {
  opacity: 0;
}
.backToTop img {
  width: 100px;
  position: fixed;
  z-index: 1000000;
  bottom: 3vh;
  right: 2vw;
  background-color: #ba1cc2;
  padding: 2rem;
  border-radius: 1000px;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background-image: url(../../img/backgrounds/projectsHero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px #000;
  position: relative;
}
.hero h1 {
  font-size: 15rem;
  font-family: "PT Serif";
}
.hero p {
  font-family: consolas;
  font-size: 4rem;
  letter-spacing: 1px;
}
.hero .scrollIndicatorLink img {
  width: 3%;
  position: absolute;
  left: 49%;
  bottom: 4vh;
  z-index: 100;
  transition: bottom 0.3s ease-in-out;
}
.hero .scrollIndicatorLink img:hover {
  bottom: 3vh;
}
.hero .goBackContainer {
  display: inline;
  position: absolute;
  top: 3vh;
  left: 2vw;
}
.hero .goBackContainer svg {
  width: 10%;
  fill: #fff;
  transition: 0.2s ease-in-out;
}
.hero .goBackContainer p {
  text-align: left;
  font-size: 2rem !important;
}
.hero .goBackContainer p a {
  transition: 0.2s ease-in-out;
  color: #fff;
  text-decoration: none;
}
.hero .goBackContainer:hover a {
  color: #ba1cc2;
}
.hero .goBackContainer:hover svg {
  fill: #ba1cc2;
}
.hero .globe {
  position: absolute;
  color: #fff;
  top: 3%;
  right: 2%;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.hero .globe:hover {
  color: #d403df;
}
.hero #google_translate_element {
  position: absolute;
  top: 2%;
  right: 2%;
  display: inline;
}
.hero #google_translate_element .goog-te-gadget-simple {
  background-color: transparent;
  border: 0;
}
.hero #google_translate_element .goog-te-menu-value {
  display: none;
}
.hero #google_translate_element img {
  display: none;
}

.projects {
  padding-bottom: 5rem;
}
.projects h1 {
  font-family: "PT Serif";
  font-size: 8rem;
  text-align: center;
  padding-top: 8rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.projects h1 span {
  background-image: linear-gradient(#f5b505, #f5b505);
  background-size: 100% 10px;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-position-y: 85%;
}
.projects .cardRow {
  margin: 5rem 8rem 0 8rem;
}
.projects .cardRow .badge {
  font-weight: 400;
}
.projects .cardRow .cardCol {
  display: flex;
  justify-content: center;
}
.projects .cardRow .cardCol .card {
  width: 90% !important;
  overflow: hidden;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}
.projects .cardRow .cardCol .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.7);
}
.projects .cardRow .cardCol .card:hover img {
  transform: scale(1.2);
}
.projects .cardRow .cardCol .card .card-body {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 2rem 3rem;
}
.projects .cardRow .cardCol .card .card-body h5 {
  font-size: 2.5rem;
}
.projects .cardRow .cardCol .card .card-body p {
  font-size: 2rem;
}
.projects .cardRow .cardCol .card .card-body a {
  font-size: 2rem;
  color: #2f2f2f;
  font-family: Roboto;
  font-weight: 700;
}
.projects .cardRow .cardCol .card .card-body a:hover {
  color: #fff;
}
.projects .cardRow .cardCol .card .card-body .videoButton {
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.projects .cardRow .cardCol .card .card-body .videoButton:hover {
  background-color: #e60703;
  box-shadow: 0 0 3px #e60703, 0 0 5px #e60703, 0 0 10px #e60703, 0 0 20px #e60703;
  transition-delay: 1s;
}
.projects .cardRow .cardCol .card .card-body .videoButton:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.projects .cardRow .cardCol .card .card-body .videoButton:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.projects .cardRow .cardCol .card .card-body .videoButton:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.projects .cardRow .cardCol .card .card-body .videoButton:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.projects .cardRow .cardCol .card .card-body .videoButton span {
  position: absolute;
  display: block;
}
.projects .cardRow .cardCol .card .card-body .videoButton span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #e60703);
}
.projects .cardRow .cardCol .card .card-body .videoButton span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #e60703);
}
.projects .cardRow .cardCol .card .card-body .videoButton span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(270deg, transparent, #e60703);
}
.projects .cardRow .cardCol .card .card-body .videoButton span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #e60703);
}
.projects .cardRow .cardCol .card .card-body .webButton {
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.projects .cardRow .cardCol .card .card-body .webButton:hover {
  background-color: #161efc;
  box-shadow: 0 0 3px #161efc, 0 0 5px #161efc, 0 0 10px #161efc, 0 0 20px #161efc;
  transition-delay: 1s;
}
.projects .cardRow .cardCol .card .card-body .webButton:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.projects .cardRow .cardCol .card .card-body .webButton:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.projects .cardRow .cardCol .card .card-body .webButton:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.projects .cardRow .cardCol .card .card-body .webButton:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.projects .cardRow .cardCol .card .card-body .webButton span {
  position: absolute;
  display: block;
}
.projects .cardRow .cardCol .card .card-body .webButton span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #161efc);
}
.projects .cardRow .cardCol .card .card-body .webButton span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #161efc);
}
.projects .cardRow .cardCol .card .card-body .webButton span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(270deg, transparent, #161efc);
}
.projects .cardRow .cardCol .card .card-body .webButton span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #161efc);
}
.projects .cardRow .cardCol .card .card-body .eventButton {
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.projects .cardRow .cardCol .card .card-body .eventButton:hover {
  background-color: #22bdff;
  box-shadow: 0 0 3px #22bdff, 0 0 5px #22bdff, 0 0 10px #22bdff, 0 0 20px #22bdff;
  transition-delay: 1s;
}
.projects .cardRow .cardCol .card .card-body .eventButton:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.projects .cardRow .cardCol .card .card-body .eventButton:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.projects .cardRow .cardCol .card .card-body .eventButton:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.projects .cardRow .cardCol .card .card-body .eventButton:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.projects .cardRow .cardCol .card .card-body .eventButton span {
  position: absolute;
  display: block;
}
.projects .cardRow .cardCol .card .card-body .eventButton span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #22bdff);
}
.projects .cardRow .cardCol .card .card-body .eventButton span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #22bdff);
}
.projects .cardRow .cardCol .card .card-body .eventButton span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(270deg, transparent, #22bdff);
}
.projects .cardRow .cardCol .card .card-body .eventButton span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #22bdff);
}
.projects .cardRow .cardCol .card img {
  transition: 0.3s ease-in-out;
}
.projects .tipSlikaDiv {
  width: 40%;
  margin: 0 auto;
  padding-top: 2rem;
}
.projects .tipSlikaDiv ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.projects .tipSlikaDiv ul li {
  display: inline;
  font-size: 3rem;
  cursor: pointer;
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
.projects .tipSlikaDiv ul li:hover {
  background-color: #800A89;
  box-shadow: 0 0 3px #800A89, 0 0 5px #800A89, 0 0 10px #800A89, 0 0 20px #800A89;
  transition-delay: 1s;
}
.projects .tipSlikaDiv ul li:hover span:nth-child(1) {
  left: 100%;
  transition: 1s;
}
.projects .tipSlikaDiv ul li:hover span:nth-child(2) {
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
.projects .tipSlikaDiv ul li:hover span:nth-child(3) {
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
.projects .tipSlikaDiv ul li:hover span:nth-child(4) {
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
.projects .tipSlikaDiv ul li span {
  position: absolute;
  display: block;
}
.projects .tipSlikaDiv ul li span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #800A89);
}
.projects .tipSlikaDiv ul li span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #800A89);
}
.projects .tipSlikaDiv ul li span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 8px;
  background: linear-gradient(270deg, transparent, #800A89);
}
.projects .tipSlikaDiv ul li span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #800A89);
}
.projects .tipSlikaDiv ul li:hover {
  transition-delay: 1s;
  color: #fff;
}

footer {
  text-align: center;
}
footer .copyright p {
  font-family: Roboto;
  font-weight: 100;
  font-size: 3.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0%;
}
footer .iconsCredits {
  opacity: 0.7;
  font-size: 1.5rem;
}
footer .iconsCredits a {
  text-decoration: none;
  color: #000000;
}/*# sourceMappingURL=projects.css.map */