@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Butonun konumu ve görünümü */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #333;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

    /* Ok çizimi (CSS pseudo-element ile) */
    #scrollTopBtn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        border-left: 3px solid white;
        border-top: 3px solid white;
        transform: translate(-50%, -35%) rotate(45deg);
    }

    /* Hover efekti */
    #scrollTopBtn:hover {
        background-color: #555;
    }

    /* Görünür hale gelince */
    #scrollTopBtn.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }


.contactMapArea {
    padding: 0;
    border-radius: 8px;
    border: solid 1px #d6d6d6;
    background-color: #fcfcfc;
}


.contactFormArea {
    padding: 40px 100px;
    border-radius: 8px;
    border: solid 1px #d6d6d6;
    background-color: #fcfcfc;
}

    .contactFormArea .form-floating > .form-control-plaintext:focus,
    .contactFormArea .form-floating > .form-control-plaintext:not(:placeholder-shown),
    .contactFormArea .form-floating > .form-control:focus,
    .contactFormArea .form-floating > .form-control:not(:placeholder-shown) {
        padding: 1rem .75rem;
    }

        .contactFormArea .form-floating > .form-control-plaintext ~ label,
        .contactFormArea .form-floating > .form-control:focus ~ label,
        .contactFormArea .form-floating > .form-control:not(:placeholder-shown) ~ label,
        .contactFormArea .form-floating > .form-select ~ label {
            color: rgba(var(--bs-body-color-rgb), .65);
            transform: scale(0.85) translateY(-1.8rem) translateX(0.15rem);
        }

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control:focus {
    box-shadow: none;
}

.form-floating > label {
    color: #6e7174;
}

.btnSend {
    border-color: #68bd49;
    background-color: #68bd49;
    color: #fff;
    width: 100%;
    padding: 18px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Ubuntu", sans-serif;
}

a,
p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: normal;
    font-family: "Ubuntu", sans-serif;
    text-decoration: none;
}

p {
    line-height: 1.8;
}

a {
    transition: all 0.3s ease-in-out;
}

.greenTitle {
    color: #68bd49;
}

.title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.borderBox {
    padding: 20px;
    padding-bottom: 0;
    margin-bottom: 20px;
    border-radius: 8px;
    border: solid 1px #d6d6d6;
}

.darkText {
    color: #1e2022;
}

.link01,
.link02,
.link03 {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    color: #f7fbff;
}

.link01 {
    transition: none;
}

    .link01:hover {
        font-weight: bold;
    }

    .link01::after,
    .link02::after,
    .link03::after {
        content: "";
        display: inline-block;
        background: url(../images/iconmonstr-arrow-left-lined.svg) center right no-repeat;
        width: 18px;
        height: 14px;
        margin-left: 14px;
    }

.link02,
.link03 {
    display: table;
    padding: 20px 26px 20px 26px;
    border-radius: 6px;
    border: solid 1px #fff;
}

.link03 {
    color: #68bd49;
    border-color: #68bd49;
}

    .link03::after {
        background: url(../images/iconmonstr-arrow-left-lined-green.svg) center right no-repeat;
    }

    .link01:hover::after,
    .link02:hover::after,
    .link03:hover::after {
        animation: arrowMove 0.5s infinite alternate ease-in-out;
    }

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(5px);
        /* Oku 5px sağa kaydır */
    }
}

.lnkd {
    font-size: 16px;
    font-weight: 500;
    color: #1e2022;
    display: flex;
    justify-content: end;
    align-items: center;
}

    .lnkd:before {
        content: "";
        display: inline-block;
        background: url(../images/linked-in-icon-svg.png) center right no-repeat;
        width: 34px;
        height: 34px;
        margin-right: 14px;
    }

.line1 {
    padding: 20px 0;
    line-height: 28px;
    border-bottom: 1px solid #ffffff36;
}

    .line1:nth-last-child(-n+3) {
        border-bottom: none;
    }

.line2 {
    border-right: 1px solid #ffffff36;
}

    .line2:nth-child(3n) {
        border-right: none;
    }

.refSelect {
    width: 100%;
    max-width: 374px;
}
/****************************/

.header {
    position: fixed;
    height: 100px;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 9;
    align-items: baseline;
    padding-top: 20px;
}

.white-header {
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.header .navbar-nav {
    width: 100%;
    max-width: 800px;
    justify-content: space-between;
}

.header .navbar-brand {
    display: block;
    width: 144px;
    height: 56px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
}

.header .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
}

    /* 
.header .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.header .nav-link:hover::after {
    width: 100%;
}

.header .nav-link:not(:hover)::after {
    width: 0;
} */

    .header .nav-link:hover {
        font-weight: bold;
    }

    .header .nav-link.active {
        color: #fff;
        font-weight: bold;
    }

.header .lng a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    padding: 6px;
}

    .header .lng a.active {
        color: #1e2022;
        font-weight: bold;
        background-color: #fff;
    }

.header.white-header .navbar-brand {
    background-position: top center;
    background-repeat: no-repeat;
}

.header.white-header .nav-link {
    color: #1e2022;
}

    .header.white-header .nav-link::after {
        background-color: #000;
    }

.header.white-header .lng a {
    color: #1e2022;
}

    .header.white-header .lng a.active {
        color: #fff;
        font-weight: bold;
        background-color: #1e2022;
    }

.header:not(.white-header) .navbar-toggler {
    border-color: white;
}

.header:not(.white-header) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.headerSpace {
    padding-top: 100px;
    margin-bottom: 40px;
}

/* Hover ile mega menüyü aç */
.header .dropdown:hover .dropdown-menu {
    display: block;
}

.header .dropdown-toggle::after {
    border: none;
}

/* Mega Menü */
.mega-menu {
    position: absolute;
    top: 62px;
    left: 22px;
    background: white;
    width: 260px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    padding: 8px;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

    .mega-menu::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 12px;
        display: block;
        width: 24px;
        height: 12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid white;
    }

/* ul.submenu::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    display: block;
    border-right: 1px solid #e1e1e1;
    height: calc(40px + 100%);
} */

ul.submenu li:hover > .submenu-trigger::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    display: block;
    width: 20px;
    height: 13px;
    background: url(../images/ok.PNG) no-repeat;
}

/* Sağ menü (iç blok) */
.submenu-box {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    display: none;
}

    /* Hover edildiğinde ilgili sağ menüyü göster */
    .submenu-trigger:hover + .submenu-box,
    .submenu-box:hover {
        display: block;
    }

.dropdown-item {
    white-space: normal;
}

    /* Hover efekti */
    .dropdown-item.active,
    .dropdown-item:active,
    .dropdown-item:hover {
        position: relative;
        background: none;
        color: #68bd49;
    }

/* Mobilde düz görünüm */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 20px;
        margin-top: 10px;
    }

        .mega-menu::before {
            display: none;
        }

    .submenu-box {
        position: static;
        width: 100%;
        padding-left: 20px;
    }

    .header .navbar-nav {
        max-width: 100%;
    }

    .header .nav-link {
        justify-content: flex-start;
        padding-left: 10px;
        height: 30px;
    }
}

.banner {
    height: 220px;
    padding: 20px;
    color: #fff;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-image: linear-gradient(to right, rgba(41, 146, 152, 0.8), rgba(102, 222, 166, 0.8));
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item a:hover,
.breadcrumb-item.active,
.breadcrumb-item::before,
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

    .breadcrumb-item.active {
        font-weight: bold;
    }

.sliderIndex {
    /* background: url(../images/bg2.png) top center no-repeat;
    background-size: cover; */
}

.sliderArea {
    height: 600px;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-bottom: 0 !important;
}

.sliderArea .img-fluid {
    max-height: 382px;
}

    .sliderArea .slick-dots {
        width: 100%;
        height: 34px;
        bottom: 30px;
        text-align: left;
        left: 8px;
    }

        .sliderArea .slick-dots li {
            width: 50px;
            height: 12px;
        }

            .sliderArea .slick-dots li button {
                width: 50px;
                height: 12px;
                padding: 0;
            }

                .sliderArea .slick-dots li button:before {
                    content: "";
                    border-radius: 13px;
                    border: solid 1px #fff;
                    width: 50px;
                    height: 12px;
                    opacity: 1;
                }

            .sliderArea .slick-dots li.slick-active button:before {
                opacity: 1;
                background-color: #fff;
            }

    .sliderArea .slick-list,
    .sliderArea .slick-track {
        height: 100%;
    }

    .sliderArea .sliderTitle {
        font-size: 44px;
        font-weight: normal;
        line-height: 44px;
        margin-bottom: 20px;
        color: #fff;
    }

    .sliderArea .sliderText {
        font-size: 22px;
        font-weight: 300;
        color: #fff;
    }

.sectionOne {
    height: 500px;
    background: url(../images/bg.png) top center no-repeat;
    background-size: cover;
}

.style01 {
    font-size: 54px;
    font-weight: 300;
    color: #1e2022;
}

.style02 {
    font-size: 54px;
    font-weight: 500;
    color: #1e2022;
}

    .style02 span.green {
        color: #68bd49;
    }

    .style02 .numberText {
        font-size: 64px;
        font-weight: bold;
    }

        .style02 .numberText span {
            display: block;
            font-size: 18px;
            font-weight: 300;
        }

.counter {
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.sectionTwo {
    padding-bottom: 20px;
    border-radius: 16px;
    background-image: linear-gradient(120deg, #004e3e 1%, #0c3741 101%);
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    color: #fff;
}

    .sectionTwo img {
        max-width: 128px;
        max-height: 64px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

.linkBox a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 24px;
    height: 82px;
}

.linkBox img {
    width: 136px;
    height: 82px;
    object-fit: contain;
}

.absoluteTextArea {
    position: absolute;
    top: 16%;
    right: 228px;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
}

.absoluteTextAreaTwo {
    position: absolute;
    top: 24%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: column;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
}

.linksArea {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.accordion-nuevo .accordion-button {
    font-weight: bold;
    outline: none;
    box-shadow: none;
    background: none;
    color: #000;
}

    .accordion-nuevo .accordion-button::after {
        background: url(../images/downSmall.svg) center center no-repeat;
    }

    .accordion-nuevo .accordion-button:not(.collapsed)::after {
        background: url(../images/upSmall.svg) center center no-repeat;
    }

    .accordion-nuevo .accordion-button.collapsed {
        font-weight: 300;
    }


.accordion-nuevoTwo .accordion-button {
    outline: none;
    box-shadow: none;
    height: 108px;
    background-color: #fcfcfc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 24px;
    color: #1e2022;
}

    .accordion-nuevoTwo .accordion-button.collapsed {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .accordion-nuevoTwo .accordion-button::after {
        background: url(../images/down.png) center center no-repeat;
        width: 44px;
        height: 44px;
    }

    .accordion-nuevoTwo .accordion-button:not(.collapsed)::after {
        background: url(../images/up.png) center center no-repeat;
    }

.accordion-nuevoTwo .accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
}

    .accordion-nuevoTwo .accordion-item:not(:first-of-type) {
        border-top: 1px solid #dee2e6;
    }

.accordion-nuevoTwo .accordion-body {
    background-color: #fcfcfc;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.management-item {
    background: #fcfcfc;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 26px;
}

    .management-item .managementHeader {
        margin-bottom: 40px;
        font-size: 24px;
        font-weight: 400;
    }

    .management-item img {
        max-width: 250px;
        width: 100%;
        border-radius: 250px;
        height: auto;
    }

.contact {
    background: url(../images/bg3.png) top center no-repeat;
    background-size: cover;
    padding: 40px 0;
    min-height: 532px;
}

.footParts {
    height: 100%;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 16px;
}

    .footParts .footHeader {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .footParts .footBody {
    }

.location {
    background: url(../images/location.svg) top left no-repeat;
    padding-left: 30px;
    margin-bottom: 20px;
}

.phone {
    background: url(../images/phone.svg) top left no-repeat;
    padding-left: 30px;
    margin-bottom: 20px;
}

.mail {
    background: url(../images/mail.svg) top left no-repeat;
    padding-left: 30px;
    margin-bottom: 20px;
}

.greenButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
    padding-left: 46px;
    border-radius: 6px;
    border: solid 1px #68bd49;
    font-size: 13px;
    font-weight: normal;
    color: #68bd49;
    text-align: center;
}

    .greenButton.active {
        box-shadow: 0 16px 30px 0 rgba(153, 218, 122, 0.56);
        background-color: #68bd49;
        color: #fff;
    }

.terminal {
    background: url(../images/terminal-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .terminal.active {
        background: url(../images/terminal.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.smartphones {
    background: url(../images/smartphones-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .smartphones.active {
        background: url(../images/smartphones.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.smartphone {
    background: url(../images/smartphone-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .smartphone.active {
        background: url(../images/smartphone.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.sharepoint {
    background: url(../images/sharepoint-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .sharepoint.active {
        background: url(../images/sharepoint.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.user {
    background: url(../images/user-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .user.active {
        background: url(../images/user.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.apps {
    background: url(../images/apps-green.svg) center left no-repeat;
    background-position-x: 16px;
}

    .apps.active {
        background: url(../images/apps.svg) center left no-repeat #68bd49;
        background-position-x: 16px;
    }

.ref {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    height: 158px;
}

    .ref img {
        max-width: 80px;
    }

    .ref .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 16px;
        background: rgba(0, 0, 0, 0.7);
        /* Siyah saydam kaplama */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 18px;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .ref:hover .overlay {
        opacity: 1;
    }



.success {
    position: relative;
    display: block;
    width: 100%;
    height: 256px;
}

    .success img {
        object-fit: cover;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

    .success .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        /* Siyah saydam kaplama */
        color: white;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: end;
        font-size: 18px;
        opacity: 0.7;
        transition: opacity 0.3s ease-in-out;
    }

    .success:hover span {
        text-decoration: underline;
    }

.projectSlider {
    position: relative;
    padding-bottom: 64px;
}

    .projectSlider .slider .slide {
        height: 400px;
        padding: 0 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .projectSlider .slider .slide img,
        .projectSlider .slider .video-wrapper video {
            height: 400px;
            width: 100%;
            object-fit: cover;
            max-width: 100%;
        }

    .projectSlider .video-wrapper {
        position: relative;
        height: 400px;
        width: 100%;
        padding: 0;
        /* 16:9 oranı kalktı */
    }

        .projectSlider .video-wrapper video {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .projectSlider .slick-prev, .projectSlider .slick-next {
        width: auto;
        height: auto;
    }

        .projectSlider .slick-prev:before, .projectSlider .slick-next:before {
            font-size: 30px;
            color: #68bd49;
        }

    .projectSlider .slick-prev {
        right: 42px;
        left: inherit;
        bottom: 0;
        top: inherit;
    }

    .projectSlider .slick-next {
        right: 0px;
        bottom: 0;
        top: inherit;
    }

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 114px;
    border-top: 1px solid #d6d6d6;
    background-color: #fff;
    color: #929497;
    font-size: 12px;
}

@media screen and (max-width: 1240px) {

    .contactFormArea {
        padding: 40px 10px;
    }

    .absoluteTextArea,
    .absoluteTextAreaTwo {
        font-size: 12px;
    }

    .link01,
    .link02,
    .link03 {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media screen and (max-width: 991px) {

    .container {
        max-width: inherit;
    }

    .header .navbar-nav {
        background-color: #fff;
        margin-top: 20px;
        padding: 20px 0px;
    }

        .header .navbar-nav .nav-item {
            margin-bottom: 16px;
        }

        .header .navbar-nav .nav-link,
        .header .navbar-nav .nav-link.active,
        .header .navbar-nav .nav-link.show {
            color: #000;
        }

    .header .navbar-toggler {
        order: 2;
    }

        .header .navbar-toggler:focus {
            box-shadow: none;
        }

    .header .lng {
        order: 1;
        margin-left: 50%;
    }

    .navbar-collapse {
        position: absolute;
        width: 100%;
        top: 80px;
        left: 0px;
    }

    .sliderArea {
        height: 100%;
    }

        .sliderArea .sliderText {
            font-size: 14px;
            margin-bottom: 22px;
        }

        .sliderArea .sliderTitle {
            font-size: 34px;
        }

        .sliderArea .slick-dots {
            bottom: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            left: 0;
        }

    .title,
    .style01,
    .style02 {
        font-size: 30px;
    }

        .style02 .numberText {
            font-size: 18px;
        }

    .managementTitle {
        font-size: 16px;
    }

    .footer div {
        justify-content: center !important;
        text-align: center;
        margin-top: 8px;
        font-size: 10px;
    }
}

@media screen and (max-width: 767px) {

    .header .lng {
        order: 1;
        margin-left: 16%;
    }

        .header .lng a {
            padding: 4px;
        }

    .accordion-nuevo {
        flex-flow: column;
    }

    .absoluteTextArea {
        position: absolute;
        top: 32%;
        right: 60px;
    }

        .absoluteTextArea p {
            display: none;
        }

    .absoluteTextAreaTwo {
        top: 8%;
    }

    .link01::after, .link02::after, .link03::after {
        width: 14px;
        height: 8px;
    }

    .sectionTwo {
        font-size: 14px;
    }

    .line1,
    .line2 {
        border: none;
    }

        .line1 img {
            max-width: 128px;
            max-height: 64px;
            width: auto;
            height: auto;
            object-fit: contain;
        }
}

/* Loading Overlay */
.ai-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.ai-loading-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ai-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #28a745;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
