body {
    font-family: 'Space Grotesk', sans-serif !important;
}

.logo {
    width: 200px;
}

.a1 {
    font-size: 14px !important;
    color: #222222 !important;

}

.a2 {
    border: 1px solid #FFAD06;
    border-radius: 10px;
    padding: 30px;
    display: block;
    font-size: 20px;
}

.a3 {
    color: #fb5b5f;
}

.a4 {
    border: 1px solid #FFAD06 !important;
    border-radius: 20px !important;
    padding: 20px !important;
    display: block !important;
    font-size: 20px !important;
}
.a5 {    font-size: 14px !important;}


.a6 {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 18px 4px rgb(170 167 167 / 26%);
    margin: 20px 30px 30px 30px;
    border-radius: 7px;
}

.textBgRed {
    color: #fff !important;
    background-color: #FB5B5F !important;
    font-family: "Bricolage Grotesque", sans-serif;

    padding: 8px;
}


.bg {
    align-items: center;
    background: linear-gradient(180deg, #80808012 0%, #d0a36e1a 100%);
    border-radius: 16px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 90%;
    padding: 40px 20px 20px;
    position: relative;
    width: 90%;
}

.bg1 {
    background: #e2dcd6;
}

.bg2 {
    background-image: url(images/bg.svg);
    background-repeat: no-repeat;
    background-size: 100% 110%;
    padding-top: 3rem;
    padding-bottom: 4rem;
}





.menu-button {
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.menu-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #22222200;
    /* Şeffaf başlar */
    transition: background-color 0.3s ease;
    /* Alfa değeri değişimi */
}

.menu-button:hover::after {
    background-color: #222222;
    /* Alfa değeri 1 olur */
}




.tool-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.tool-marquee .all-tools {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    will-change: transform;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.tool-marquee .all-tools:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}
/****
.tool-marquee .all-tools span {
    font-size: 30px;
    padding-right: 30px;
    position: relative;
    font-weight: 100;
    border-radius: 16px;
    width: 150px;
}****/

.tool-marquee .all-tools span {
    background: #fff;
    box-shadow: 0px 0px 18px 4px rgb(170 167 167 / 26%);
    margin: 20px 30px 30px 30px;
    /* text-align: center; */
    border-radius: 7px;
}

.logoR {
    width: 54%;
}

.tool-marquee .all-tools span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 16px;
    width: 15px;
    border: 0px solid #000;
    border-radius: 7px;
    transform: translateY(-50%);
}