h1 {
    color: rgb(136, 255, 0);
    background-color: rgb(30, 255, 0);
    /*border: 2px solid red; */
    border: 2px solid rgb(189, 190, 190);
    border-radius: 10px;
    scroll-padding-top: 10;
}

a{
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #2196f3;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  font-size: 24px;
  overflow: hidden;
  transition: 0.2s;
}
a:hover{
  color: #255784;
  background: #2196f3;
  box-shadow: 0 0 10px #2196f3,0 0 40px #2196f3,0 0 80px #2196f3;
  transition-delay: 1s;
}
a span{
  position: absolute;
  display: block;
}
a span:nth-child(1){
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,transparent,#2196f3);
}
a:hover span:nth-child(1){
  left: 100%;
  transition: 1s;
}
a span:nth-child(3){
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg,transparent,#2196f3);
}
a:hover span:nth-child(3){
  right: 100%;
  transition: 1s;
  transition-delay: 0.5s;
}
a span:nth-child(2){
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,transparent,#2196f3);
}
a:hover span:nth-child(2){
  top: 100%;
  transition: 1s;
  transition-delay: 0.25s;
}
a span:nth-child(4){
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg,transparent,#2196f3);
}
a:hover span:nth-child(4){
  bottom: 100%;
  transition: 1s;
  transition-delay: 0.75s;
}
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body 
{
    color: rgb(255, 255, 255);
    background-image: url("image/panel-radiosokolata.png");
    background-size: 100% 100%;
    background-attachment: fixed;
    font-family: sans-serif;
}
.menu-bar
{background-color: var(rgb(255, 255, 255));
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}
 .logo {
    color: var(--color-white);
    font-size: 30px;
}

.logo span {
    color: var(--color_primary);
}

.menu-bar ul {
    list-style: none;
    display: flex;
}
.menu-bar ul li
{
    padding: 10px 30px;
}
.menu-bar ul li a {
    color: var(--color-red);
    text-decoration: none;
    font-size: 20px;

    transition: all 0.3s;
}
.actve, .menu-bar ul li:hover
{
    background: none;
    border-radius: 3px;
}
.menu-bar .fa
{
    margin-right: 9px;
}
.sub-menu-1
{
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--color-black);
}
.menu-bar ul ul
{
    display: block;
    margin-left: -15px;
}

  
  /*css for manual slide navigation*/
  
  .navigation-manual{
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
  }
  
  .manual-btn{
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover{
    background: #40D3DC;
  }
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  #radio4:checked ~ .first{
    margin-left: -60%;
  }
  
  /*css for automatic navigation*/
  
  .navigation-auto{
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
  }
  
  .navigation-auto div{
    border: 2px solid #40D3DC;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background: #40D3DC;
  }
  
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background: #40D3DC;
  }
  
  #radio3:checked ~ .navigation-auto .auto-btn3{
    background: #40D3DC;
  }
  
  #radio4:checked ~ .navigation-auto .auto-btn4{
    background: #40D3DC;
  }

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    height: 100px;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: rgb(199, 199, 199);
}
.container-footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: 1rem 0 3rem 0;
}
-socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}
.socials a:honer i{
    color: rgb(22, 37, 255);
}

.footer-botton{
    background: #000;
    width: 100vm;
    padding: 20px 0;
    text-align: center;
}
.footer-botton p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-botton span{
    text-transform: uppercase;
    opacity: 4;
    font-weight: 200;
}
.footer{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;  
    padding: 20px;
}

.copyright{
    color: #C7C7C7;
}

.copyright a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.information a{
    text-decoration: none;
    color: #ffffff;
}