* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Overused Grotesk';
    src: url("../fonts/OverusedGrotesk-Medium.otf") format("opentype");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Overused Grotesk', sans-serif;
}

.circle-wrapper {
    position: absolute;
    /* bottom: 3rem; */
    right: 2.5rem;
    width: 180px;
    height: 180px;
}

.circle-text {
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

.circle-text text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    fill: #000;
    /* lime color */
    text-transform: uppercase;
}

.logo-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 45px;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move to half to create a seamless effect */
}

.animate-marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spinSlow {
    animation: spinSlow 12s linear infinite;
}


/* portfolio css */
.tab-btn {
    padding: 14px 28px;
    border-radius: 999px;
    background: #232323;
    color: #fff;
    transition: .3s;
    font-weight: 600;
}

.tab-btn:hover {
    background: #a3e635;
    color: #000;
}

.tab-btn.active {
    background: #a3e635;
    color: #000;
}

.portfolio-card {
    transition: .35s;
}

.portfolio-card.hide {
    display: none;
}

/* testimonial */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #a3e635;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonialSwiper .swiper-slide>div {
    height: 100%;
    transition: .3s;
}

.testimonialSwiper .swiper-slide>div:hover {
    transform: translateY(-8px);
}

/* blog css */

article {
    transition: .35s;
}

article:hover {
    transform: translateY(-8px);
}

article img {
    transition: .5s;
}

article:hover img {
    transform: scale(1.08);
}

.cont {
    width: 90%;
    margin: 0 auto;
}