/* Main Style*/
  body{
    background-color: #18181b;
  }
  html{
    scrollbar-color: var(--scroll-thumb-color, grey) var(--scroll-track, transparent);
    scrollbar-width: thin;
  }
  html::-webkit-scrollbar {
    width: var(--scroll-size, 10px);
    height: var(--scroll-size, 10px);
  }
  html::-webkit-scrollbar-track {
    background-color: var(--scroll-track, transparent);
  }
  html::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color, grey);
    background-image: var(--scroll-thumb, none);
    border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
  }
  html {
    --scroll-size: 15px;
    --scroll-radius: 20px;
    --scroll-track: rgb(48, 48, 50, 255);
    --scroll-thumb: linear-gradient(45deg, #00aeff, #a68eff);
  }
  .text-align-center{text-align: center;}
  .pcolor p{
    color: #6d6c83;
    text-align: middle;
    padding-left: 20px;
    font-size: 1.2em;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .button {
    border-radius: 30px;
    height: 60px;
    background-color: #2e1cff;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s all 0s;
  }
  .button:hover {
    border-radius: 20px;
    background-color: #6D6C83;
    color: #fff;
  }
  p{margin-bottom: 0px!important; text-align: center; vertical-align: middle;}
  .rounded-50px{border-radius: 50px;}.rounded-25px{border-radius: 25px;}
  .icon-container img{
    height: 60px;
    margin: 10px;
  }
  a.animpadding{
    padding: 0;
    transition: 0.5s ease-in-out all 0s;
  }
  a.animpadding:focus{
    padding: 0 5px;
  }
  .hoverbradius-10{
    transition: 0.5s ease-in-out border-radius 0s;
  }
  .hoverbradius-10:hover{
    border-radius: 10px;
  }
  a.hoveruplight{
    backdrop-filter: brightness(1);
    transition: 0.4s all 0s;
  }
  a.hoveruplight:hover{
    backdrop-filter: brightness(3);
  }
  a.hoverdownlight{
    background-color: transparent;
    transition: 0.4s all 0s;
  }
  a.hoverdownlight:hover{
    background-color: #00000040;
  }
/* END Main Style*/


/* arrow scrollto top animation */
  .arrow {
    width: 1.8rem;
    height: 1.25rem;
    display: inline-block;
    position: relative;
  }
  .arrow span {
    top: 0.5rem;
    position: absolute;
    width: 1.2rem;
    height: 0.4rem;
    background-color: #efefef;
    display: inline-block;
    transition: 0.5s all 0s;
    border-radius: 50px;
  }
  .arrow span:first-of-type {
    left: 0;
    transform: rotate(-45deg);
  }
  .arrow span:last-of-type {
    right: 0;
    transform: rotate(45deg);
  }
  .arrow:hover span {
    transform: rotate(0deg);
    width: 1rem;
  }
/* END arrow scrollto top animation */

/* underline animation */
  .underlined {
    position: relative;
    color: #fff;
    display: inline-block;
  }
  .darkunderlined.underlined::before {
    background-color: #2F2C4F;
  }
  .containerUnderlined:hover{text-decoration: none !important;}
  .containerUnderlined:hover .underlined::before, .containerUnderlined:focus .underlined::before {transform: scaleX(1);}
  .underlined::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: transform 0.3s ease;
    transform: scaleX(0);
  }
/* END underline animation */

/* contact bar */
    .socialcard {
        width: fit-content;
        height: fit-content;
        background-color: rgb(238, 238, 238);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px 25px;
        gap: 20px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
    }
    .socialContainer {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background-color: rgb(44, 44, 44);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition-duration: .3s;
    }
    .socialContainer:active {
        transform: scale(0.9);
        transition-duration: .3s;
    }
    .socialSvg {width: 17px;}
    .socialSvg path {fill: #fff;}
    .socialContainer:hover .socialSvg {animation: slide-in-top 0.3s both;}
    .socialhover:hover {
        background-color: #00000000;
        transition-duration: .3s;
    }
  
    @keyframes slide-in-top {
        0% {
            transform: translateY(-50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
/* END contact bar */