body {
    background: #c1c1c3;
    background-image: url('/img/background/1.jpg');
   
    background-repeat: no-repeat;
    background-size:cover;
    margin: 0;
    padding: 0 !important;
    font-size: 13px;
    font-family: Tahoma, Geneva, sans-serif;
    color: #564b4b;
  }
  
  .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;
    /* background: #c1c1c3; */
    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;
  }

  .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);
  }
  
  