.slow-up{
    display: block;
    animation-name: slideup;
    animation-timing-function: linear;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes slideup {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.height-full{
    display: block;
    height: fit-content;
    transition: height 0.3s;
}

@media only screen and (max-width:1050px) {
    .whole-links{
        display: none;
    }
    .toggle-sidebar-button{
        display: flex;
    }
    .sidebar{
        display: flex;
    }
}
.swiper .slider-wrapper .slide{
    height: 90vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width:calc(100% - 2px);
    border-right: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    animation-name: slide;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* overflow: hidden; */
}
@keyframes slide {
    0%{
       background-size: 100% auto;
    }
    100%{
       background-size: 150% auto;

    }
}

@media only screen and (max-width:556px) {
    @keyframes slide {
        0%{
           background-size: 200% auto;
        }
        100%{
           background-size: 300% auto;
    
        }
    }
    
}

.swiper .slider-wrapper .slide:hover{
    cursor: grab;
}

.swiper .slider-wrapper .slide:active{
    cursor: grabbing;
}

.slider-wrapper .swiper-pagination-bullet{
    background:#ffbb38;
    height: 1rem;
    width: 1rem;
}

.slider-wrapper .swiper-silde-button{
    --swiper-navigation-size:18px;
    top: var(--swiper-navigation-top-offset, calc(50% - 18px));
    height: 2rem;
    width: 2rem;
    background-color: #133E5D;
    border-radius: 10rem;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.227);
    color: white;
    padding: 1.5rem;
    transition: background-color 0.5s;
}
.slider-wrapper .swiper-silde-button:hover{
    background-color: #ffbb38;
}

.progress{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: white;
    background: #ffbb38 linear-gradient(to right, transparent 50%,var(--clr) 0);
}

.progress h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    font-weight: 500;
    font-size: 1.5rem;
}

.progress h3 span{
    font-weight: 400;
    font-size: 0.65em;
}

.progress::before{
    content: '';
    display: block;
    height: 100%;
    margin-left: 50%;
    transform-origin: left;
    border-radius: 0 100% 100% 0/50%;
}

.progress::after{
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background:  #ffbb38;
}

.progress::before{
    background: var(--clr);
    transform: rotate(calc(((var(--i) - 50) * 0.01turn )));
}

/* if value is less than 50%, then */
.progress.less::before{
    background-color: #ffbb38;
    transform: rotate(calc(((var(--i) - 0) * 0.01turn )));
}

@media only screen and (max-width:925px) {
   .width-unset-at-925px{
    width: unset;
   }
}
@media only screen and (max-width:605px) {
    footer > div{
        flex-direction: column;
        gap: 4rem;
        text-align: center;
        align-items: center;
    }
}

@media only screen and (max-width:605px) {
    .progresses{
        flex-direction: column;
    }
    .hide-at-605px{
        display: none;
    }
    .progresses{
        align-items: center;
        gap: 2rem;
    }
}

@media only screen and (max-width:572px) {
    .hide-at-572px{
        display: none;
    }
    .w-full-at-572px{
        width: 100%;
    }
}

@media only screen and (max-width:528px) {
    .flex-at-528px{
        display: flex;
    }
}

@media only screen and (max-width:708px) {
    .flex-col-at-708px{
        flex-direction: column;
    }
}

@media only screen and (max-width:852px) {
   .small-heading-at-852px{
    font-size: 3rem;
   }
   .small-text-at-852px{
    font-size: 1rem;
   }
   .less-small-text-at-852px{
    font-size: 1.3rem;
   }
}

.sidebar-link-container{
    height: 2.2rem;
}

.sidebar-link-container-hidden{
    height: fit-content;
}


.sidebar-link-container-img{
    transform: rotate(180deg);
}

.sidebar{
    left: 0;
    transition: left 0.5s;
}

.sidebar-close{
    left: -100%;
}

.slider-bg-image{
    animation-name: slideimage;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes slideimage {
    0%{
    background-size: 200% 0rem  !important;
    }
    100%{
    background-size: 300% !important;
    }
}

@media only screen and (max-width:1412px) {
    .img-change-size-1412px{
        width: 20rem;
    }
}

@media only screen and (max-width:1106px) {
    .img-change-size-1412px{
        width: 15rem;
    }
}

@media only screen and (max-width:1027px) {
    .img-change-size-1412px{
        width: 50rem;
    }
}