@import url('https://fonts.googleapis.com/css?family=Oleo+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Racing+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');
body {
    background: #fff;
}
.background-wrapper {
    position: absolute;
    left: 0;
    height: 100%;
    background-image: url('../img/symphony.webp');
    background-position: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    z-index: -1;
}
.background-opacity {
    position: absolute;
    left: 0;
    height: 100%;
    background:rgba(0,0,0,.5);
    background-image: url('../04.png');
    z-index: -1;
}

.title {
    font-family: 'Racing Sans One', cursive;

}
.top {
    padding-top: 1%;
    padding-bottom: 40px;
}
.logo {
    padding-bottom: 30px;
}

.item .icon {

    border: 5px solid #ddd;
    border-radius: 75px;
    background: #fff;
    transition: all 0.7s ease !important;
    -webkit-transition: all 0.7s ease !important;
}
.item .icon img {
    height: 100%;
    width: 100%;
}
.item:hover {
    text-decoration: none;
    background-color: #17BAF5 ;
}
.item:hover .icon {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.item .desc {
    font-weight: 600;
    font-size: 18px;
}
.font-oleo {
    font-family: 'Oleo Script', cursive;
}
.font-indie {
    font-family: 'Indie Flower', cursive;
}

.boxed {
    position: relative;
    /* margin: 40px auto;
    width: 400px;
    height: 350px;
    background: #fff; */
    border-radius: 2px;
  }
  
  .boxed::before,
  .boxed::after {
    content: '';
    position: absolute;
    bottom: 13px;
    width: 40%;
    height: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,.7);
    z-index: -1;
    transition: all .3s ease-in-out;
  }
  
  .boxed::before {
    left: 15px;
    transform: skew(-5deg) rotate(-5deg);
  }
  
  .boxed::after {
    right: 15px;
    transform: skew(5deg) rotate(5deg);
  }
  
  /* .boxed:hover::before,
  .boxed:hover::after {
    box-shadow: 0 2px 14px rgba(0,0,0,.4);
  }
  
  .boxed:hover::before {
    left: 5px;
  }
  
  .boxed:hover::after {
    right: 5px;
  } */


#public-5 .table td {
    border-top: 1px solid #EDE2E0;  
}
#public-5 #login {
    border-top: 3px solid #17AEF5;
}
#public-5 .content-container {
    overflow-y: auto;
}
@media (min-width: 1081px) {
    .title {
        font-size: 45px;
    }
    #public-5 #login {
        position: fixed;
        width:330px;
    }
    #public-5 .content-container {
        height: calc(100vh - 100px);
    }
    .item .icon img {
        height: 30px;
        width: 30px;
    }
}
@media (max-width: 1080px) {
    #public-5 .content-container {
        height: calc(100vh - 60px);
    }
}

