.button-tilt-effect{
    animation: button-tilt-effect 1s infinite;
    /*background: linear-gradient(90deg, #fbc02d 0%, #ff6f00 100%) !important;*/
    border: none !important;
    color: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-clip: padding-box;
}
.button-tilt-effect:hover{
    animation: none;
}
@keyframes  button-tilt-effect{
    0%{transform: scale(1) rotate(0deg);}
    25%{transform: scale(1.1) rotate(1deg);}
    50%{transform: scale(1) rotate(-1deg);}
    100%{transform: scale(1) rotate(0deg);}
}
.fab-container.bagis{
    bottom: 1.5rem;
}
.fab-container.whatsapp {
    bottom: 6rem;
}
@media (max-width: 767px) {
    .fab-container.bagis{
        bottom: 4rem;
    }
    .fab-container.whatsapp {
        bottom: 8rem;
    }
}
/*Floating İcon*/
.fab-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    cursor: pointer;
}

.fab-icon-holder {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    /*background: #6b6967;*/
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.fab-icon-holder i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 25px;
    color: #ffffff;
}

.yn-fab {
    width: 60px;
    height: 60px;
    /*background: #0191A8;*/
}

.fab-options {
    list-style-type: none;
    margin: 0;
    position: absolute;
    bottom: 65px;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
    transform-origin: 50% bottom;
    padding-left: 2px;
}

.fab:hover+.fab-options,
.fab-options:hover {
    opacity: 1;
    transform: scale(1);
}

.fab-options li {
    display: flex;
    justify-content: flex-start;
    padding: 5px;
}

.fab-label {
    padding: 2px 5px;
    align-self: center;
    user-select: none;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 16px;
    background: #666666;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
}

/* Main Projects */
.project-box {
    /*height: 510px;*/
}
.project-box .project-img {
    width: 100%;
    aspect-ratio: 9 / 16;
    /*height: 500px;*/
    border-radius: 10px;
    /*box-shadow: var(--box-shadow-sm);*/
    background: var(--oxpins-primary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 center;
}
.owl-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - (35px / 2));
    width: 100%;
}
.owl-nav .owl-prev,
.owl-nav .owl-next{
    width: 35px !important;
    height: 35px !important;
    aspect-ratio: 1/1 !important;
    background-color: var(--oxpins-primary) !important;
    color: #fff !important;
    border-radius: 50%;
    position: relative;
    /*top: calc(50% - 45px);*/
}
.owl-nav .owl-prev {
    right: 30px;
}
.owl-nav .owl-next {
    left: 30px;
}
@media (max-width: 780px) {
    .owl-nav .owl-prev,
    .owl-nav .owl-next{left: unset; right: unset}
}
.star {
    font-size: 1.7rem !important;
}
.sg-hover:hover {
    border: 1.5px solid var(--oxpins-primary) !important;
}