.full-screen {
    padding-bottom: 0px;
}
.counter-section {
    position: relative;
    animation: gradient 20s ease infinite;
    padding: 0 0 80px;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
   }
    50% {
        background-position: 100% 50%;
   }
    100% {
        background-position: 0% 50%;
   }
}
.counter-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.counter-section .sec-title {
    text-align: center;
    margin-bottom: 2rem;
}
.counter-section .sec-title .title {
    color: #545454;
    font-size: 40px;
    font-weight: 600;
}
.counter-section .row {
    width: 100%;
}
.counter-section .item {
    position: relative;
    border-radius: 10px;
    height: 100%;
    border: 2px solid #eee;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 300ms;
}
.counter-section .item .outer {
    margin: 0.125rem;
    height: calc(96%);
    width: calc(96%);
    border-radius: 10px; 
}
.counter-section .item .outer::before, .counter-section .item .outer::after {
    position: absolute;
    z-index: -1;
    height: 0;
    width: 0;
    border-radius: 10px;
    border-color: inherit;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 300ms;
    content: '';
}
.counter-section .item .outer::before {
    left: 0;
    top: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}
.counter-section .item .outer::after {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}
.counter-section .item .wrap {
    margin: 0.125rem;
    height: calc(96%);
    width: calc(96%);
    border-radius: 10px; 
}
.counter-section .item .inner {
    margin: 0.125rem;
    height: calc(96%);
    width: calc(96%);
    border-radius: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
}
.counter-section .item .inner::before, .counter-section .item .inner::after {
    position: absolute;
    z-index: -1;
    height: 0;
    width: 0;
    border-radius: 10px;
    border-color: inherit;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 300ms;
    content: '';
}
.counter-section .item .inner::before {
    right: 0;
    top: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}
.counter-section .item .inner::after {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}
.counter-section .item .fa-solid{
    color: #258dd1;
    font-size: 32px;
}
.counter-section .item .icon-bg {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 9999px;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 300ms;
}
.counter-section .item strong {
    margin: 32px 0 16px;
    font-size: 18px;
    color: #000000;
}
.counter-section .item p {
    color: #5b616a;
    font-size: 16px;
}
.counter-section .item:hover {
    border-color: transparent;
}
.counter-section .item:hover .outer::before, .counter-section .item:hover .outer::after, .counter-section .item:hover .inner::before, .counter-section .item:hover .inner::after {
    height: 5rem;
    width: 5rem;
    opacity: 1;
}
.counter-section .item:hover .icon-bg {
    height: 4rem;
    width: 4rem;
    left: 54%;
}
.counter-section .item.blue .outer::before {
    border-top: 2px solid #264668;
    border-left: 2px solid #264668;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.blue .outer::after {
    border-bottom: 2px solid #264668;
    border-right: 2px solid #264668;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.blue .inner::before {
    border-top: 2px solid #264668;
    border-right: 2px solid #264668;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.blue .inner::after {
    border-bottom: 2px solid #264668;
    border-left: 2px solid #264668;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.yelloww .outer::before {
    border-top: 2px solid #258dd1;
    border-left: 2px solid #258dd1;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.yelloww .outer::after {
    border-bottom: 2px solid #258dd1;
    border-right: 2px solid #258dd1;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.yelloww .inner::before {
    border-top: 2px solid #258dd1;
    border-right: 2px solid #258dd1;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.yelloww .inner::after {
    border-bottom: 2px solid #258dd1;
    border-left: 2px solid #258dd1;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.greenn .outer::before {
    border-top: 2px solid #f58346;
    border-left: 2px solid #f58346;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.greenn .outer::after {
    border-bottom: 2px solid #f58346;
    border-right: 2px solid #f58346;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.greenn .inner::before {
    border-top: 2px solid #f58346;
    border-right: 2px solid #f58346;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.greenn .inner::after {
    border-bottom: 2px solid #f58346;
    border-left: 2px solid #f58346;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.gray .outer::before {
    border-top: 2px solid #888787;
    border-left: 2px solid #888787;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.gray .outer::after {
    border-bottom: 2px solid #888787;
    border-right: 2px solid #888787;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}
.counter-section .item.gray .inner::before {
    border-top: 2px solid #888787;
    border-right: 2px solid #888787;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}
.counter-section .item.gray .inner::after {
    border-bottom: 2px solid #888787;
    border-left: 2px solid #888787;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.side-box{
    position: fixed;
    width: 171px;
    height: 100%;

}

.side-nav{
    height: 100% !important;  
}

.side-nav .social{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 200px;
}

.side-nav .social p{
    margin-bottom: auto !important;
    margin-top: 38vh !important;
    padding-left: 0px;
}


.side-box{
    position: fixed;
    height: 100%;
    min-height: 100vh;
    width: 107px;
    display: flex;
    flex-direction: column;
    z-index: 0;
    top: 0;
    left: 0;
    background-color: var(--sidenav-color);
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 20px;
    border: 1px solid var(--sidenav-border);
    margin-left: -15px !important;
}

.side-box .side-nav a{
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 14px;
    color: var(--sidenav-a-color);
    display: block;
}