body {
  background: #c1c1c3;
  background-image: url('/img/background/bTovEQ.jpg');
 
  background-repeat: no-repeat;
  background-size:cover;
  margin: 0;
  padding: 0 !important;
  font-size: 13px;
  font-family: Tahoma, Geneva, sans-serif;
}

.poloska {
  position: absolute;
  background-color: rgb(17, 17, 70);
  height: 12%;
  width: 100%;
  top: 10%;
  color: #000;
}

.logoimg {
  position: absolute;
  top: 0;
  left: 1%;
  height: 100%;
}

nav {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  display: block;
  text-decoration: none;
  outline: none;
  transition: 0.6s ease-in-out;
}

.topmenu {
  backface-visibility: hidden;
  padding-right: 3.7%;
}
.topmenu > li {
  display: inline-block;
  position: relative;
}
.topmenu > li > a {
  font-family: "Exo 2", sans-serif;
  height: 70px;
  line-height: 70px;
  padding: 0 5px;
  font-weight: bold;
  color: rgb(17, 17, 70);
  text-transform: uppercase;
}

.down:after {
  content: "\25bc";
  margin-left: 8px;
  font-family: FontAwesome;
}
.topmenu li a:hover {
  color: #1d1ae0b4;
}
.submenu {
  background: #c1c1c3;
  border: 1px solid rgba(17, 5, 63, 0.2);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
  padding: 5px;
  text-align: left;
  transform: perspective(300px) rotateX(-90deg);
  transform-origin: 0% 0%;
  transition: 0.7s ease-in-out;
}
.topmenu > li:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: perspective(300px) rotateX(0deg);
}
.submenu li a {
  color: #13094e;
  font-size: 12px;
  line-height: 26px;
  padding: 0.2px;
  text-align: center;
  font-family: "Kurale", serif;
  font-weight: bold;
}

#carousel {
  position: absolute;
  touch-action: none;
  height: 65%;
  left: 45%;
  top: 30%;
  perspective: 800px;
  transform-style: preserve-3d;
  /* bottom: 10px; */
 }
#drag-container,
#spin-container {
  position: relative;
  display: flex;
  margin: auto;
  transform-style: preserve-3d;
  transform: rotateX(-10deg);
}
#drag-container a {
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  top: 5%;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 10px 16px rgba(0, 0, 0, 0.1);
  border: 8px solid #bfe2ff;
}
#drag-container img {
  width: 100%;
  height: 100%;
  filter: grayscale(50%) contrast(0.8);
  transition: filter 0.3s;
}
#drag-container a:hover img {
  filter: grayscale(0) contrast(1);
}
#drag-container p {
  line-height: 1;
  font-size: 300%;
  font-weight: bold;
  text-align: center;
  font-family: Serif;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(90deg);
  color: #337ab7;
  font-family: Verdana, sans-serif;
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spinRevert {
  from {
    transform: rotateY(360deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
/* Footer */

.footer {
  position: absolute;
  top: 83%;
  left: 0;
  width: 100%;
  height: 15%;
  background-color: #d0daee;
}

.footer-content-right {
  padding-right: 4%;
  margin-top: 1%;
  float: right;
}

.footer-content-left {
  padding-left: 2%;
  margin-top: 0;
  float: left;
  font-size: 1em;
}

p{
  font-weight:bold;
}

.copyright {
  position: absolute;
  top: 62%;
  right: 4%;
}
.icon-style {
  height: 30px;
  margin-left: 20px;
  margin-top: 5px;
  border-radius: 50%;
  transition: 2s;
}

.icon-style:hover {
  background-color: rgba(17, 0, 255, 0.575);
  padding: 2px;
  box-shadow: 0 0 0.5em rgb(19, 6, 92);
  opacity: 1;
  transform: rotate(-360deg);
}

