@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    min-height: 100vh;
}

.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #FF5F00;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FF5F00, #ff4400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.logo-subtitle {
    color: #FF5F00;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}
.active{

    color: #FF5F00 !important;
}
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF5F00;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF5F00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    overflow: hidden;
    padding-top: 100px;
    justify-content: center;
    background-color: #FF6700;
}

.banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ban {
    margin-bottom: 2rem;
}

.ban-text {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ban-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.kick-highlight {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.social-item:hover .social-icon {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .ban-text {
        font-size: 2.5rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .banner {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ban-text {
        font-size: 2rem;
    }

    .ban-subtitle {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .social-container {
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}




.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 20px;
    max-width: 100%;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.card-date {
    font-size: 0.9rem;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.card-title a {
    text-decoration: none;
    color: #fff;
}
.card-content {
    padding: 1.5rem;
}

.card-text {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.card-highlight {
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4ecdc4;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-top: 1rem;
}



.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF6700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 2.5rem;
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
#blog{
    background-color: #ff8c0b;
}



.profil {
    color:#fff;
    width: 350px;
    border-radius: 10px;
    background: linear-gradient(145deg, #ff8c0b, #FF6700);
    box-shadow:  20px 20px 60px #ff8c0b,
    -20px -20px 60px #ff8c0b;
    border: none
}

.neo-button {
    width: 40px;
    height: 40px;
    outline: 0 !important;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    border: none;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff8c0b, #FF6700);
    box-shadow: inset 20px 20px 60px #FF6700,
    inset -20px -20px 60px #ff8c0b;
}

.num{

    color:#eee !important;
}

.line{
    color:#fff;
}

.neo-button:active {
    border-radius: 50%;
    background: #ff8c0b;
    box-shadow:  28px 28px 57px #FF6700,
    -28px -28px 57px #ff8c0b;
}

.fa-facebook {
    color: #3b5998
}

.fa-linkedin {
    color: #0077b5
}

.fa-google {
    color: #dc4e41
}

.fa-youtube {
    color: #cd201f
}

.fa-twitter {
    color: #55acee
}

.profile_button{
    color:#fff;
    padding:10px;
    border:none;
    outline:0 !important;
    border-radius: 50px;
    background: #ff8c0b;
    box-shadow:  28px 28px 57px #ff8c0b,
    -28px -28px 57px #cd201f;

}



.slots-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.025em;
}

.hero-subtitle {
    font-size: 1rem;
    color: #D1D5DB;
    margin-bottom: 40px;
    font-weight: 400;
}

.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: #9CA3AF;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.search-input:focus {
    border-color: #8B5CF6;
    background: rgba(55, 65, 81, 0.9);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

/* Top Picks */
.top-picks {
    padding: 60px 0;
}

.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.slot-card {
    background: #ff8c0b;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.slot-card:hover {
    transform: translateY(-4px);
}

.slot-card.featured {
    position: relative;

}

.slot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.slot-info {
    padding: 16px;
}

.slot-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.slot-info p {
    font-size: 0.875rem;
    color: #004dd7;
    margin: 0;
}

/* Interest Sections */
.interest-sections {
    padding: 60px 0;
    background: rgba(31, 41, 55, 0.3);
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.interest-card {
    background: rgba(55, 65, 81, 0.8);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #E5E7EB;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.slot-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slot-item img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.slot-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin: 0 0 2px 0;
}

.slot-details p {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

/* Featured Providers */
.featured-providers {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-btn {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    color: #D1D5DB;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: rgba(75, 85, 99, 0.8);
    color: white;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.provider-card {
    background: rgba(55, 65, 81, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.provider-header {
    padding: 16px;
    background: rgba(75, 85, 99, 0.5);
    text-align: center;
}

.provider-header h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 0.05em;
}

.provider-games {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(75, 85, 99, 0.3);
}

.provider-games img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s;
}

.provider-games img:hover {
    transform: scale(1.05);
}

/* All Reviews */
.all-reviews {
    padding: 60px 0;
    background: rgba(31, 41, 55, 0.3);
}

.filter-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.filter-btn {
    background: rgba(139, 92, 246, 0.8);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B5CF6;
}

.filter-search {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    outline: none;
    width: 200px;
}

.filter-search::placeholder {
    color: #9CA3AF;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.all-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.slot-review-card {
    background: rgba(55, 65, 81, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(75, 85, 99, 0.3);
    position: relative;
    cursor: pointer;
}

.slot-review-card:hover {
    transform: translateY(-4px);
}

.rating {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(139, 92, 246, 0.9);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.slot-review-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.slot-review-card h4 {
    padding: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .top-picks-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .interest-grid {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }

    .filter-search {
        width: 100%;
    }

    .all-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .slots-hero {
        padding: 60px 0 40px;
    }

    .top-picks-grid {
        grid-template-columns: 1fr;
    }

    .all-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slot-review-card img {
        height: 100px;
    }
}
.slots{
    background-color: #FF5F00;
}
#faq{
    background: #ff8800;
    padding: 84px 0px 144px 134px;
    display: flex;
    flex-direction: column;
}
.faq-heading{
    display: flex;
    flex-direction: column;
    padding-left: 46px;
    margin-bottom: 24px;
}
.faq-heading h3{
    font-weight: 700;
    font-size: 45.25px;
    line-height: 57px;
    color: #7550cb;
    text-transform: uppercase;
}
.faq-heading p{
    font-weight: 400;
    font-size: 13.175px;
    line-height: 20px;
    color: #0032ff;
    max-width: 461px;
}
.faq-content{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    width: 100%;
    align-items: flex-start;
}
.faq-box{
    padding: 35px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #FFFFFF;
    box-shadow: 14px 14px 60px rgba(59, 42, 130, 0.06);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}
.faq-box:last-child{
    margin-bottom: 0px;
}
.faq-box-question{
    display: grid;
    grid-template-columns: 1fr 30px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-box-question h4{
    font-weight: 700;
    font-size: 22.625px;
    line-height: 31px;
    color: #7550cb;
}
.faq-box-answer{
    max-height: 0px;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.faq-box-answer p{
    font-weight: 400;
    font-size: 13.175px;
    line-height: 20px;
    color: #0032ff;
    padding-top: 20px;
}
.faq-img{
    width: 100%;
    overflow: hidden;
    border-radius: 27px 0px 0px 27px;
    display: flex;
    box-shadow: 14px 14px 60px rgba(59, 42, 130, 0.06);
}
.faq-box-container{
    margin-right: 40px;
}
.faq-img img{
    width: 100%;
    object-fit: contain;
    object-position: right;
}

.faq-box-icon{
    display: block;
    position: relative;
    height: 3px;
    transition: background 0.2s ease-out;
    width: 23px;
    margin-left: auto;
}
.faq-box-icon::before,
.faq-box-icon::after{
    background: #382B7D;
    content: '';
    position: absolute;
    height: 100%;
    transition: all ease-out 0.2s;
    width: 100%;
    border-radius: 3px;
}

.faq-box-icon::before{
    top: 0px;
}
.faq-box-icon::after{
    transform: rotate(90deg);
    top: 0px;
}
.faq-box-question.active h4{
    color: #FF3067;
}
.faq-box-question.active .faq-box-icon::after{
    transform: rotate(0deg);
}
@media(max-width:1200px){
    #faq{
        padding: 84px 0px 144px 20px;
    }
}
@media(max-width:800px){
    #faq{
        padding: 84px 0px 144px 20px;
    }
    .faq-content{
        grid-template-columns: 1fr;
    }
    .faq-box-container{
        margin-right: 0px;
        padding-right: 20px;
    }
    .faq-img{
        margin-top: 25px;
    }
}
@media(max-width:724px){
    #faq{
        padding: 82px 0px 80px 20px;
    }
    .faq-img{
        border-radius: 18.0651px 0px 0px 18.0651px;
    }
    .faq-heading{
        padding: 0px 20px;
    }
    .faq-heading h3{
        font-weight: 700;
        font-size: 26.2px;
        line-height: 33px;
    }
    .faq-box-question h4{
        font-weight: 700;
        font-size: 19px;
        line-height: 26px;
    }
    .faq-box{
        padding: 24px 21px;
    }
    .faq-box-icon{
        width: 16px;
    }
    .faq-box-question{
        grid-template-columns: 1fr 16px;
    }
}
/* Casino Section */
.casino-section {
    padding: 64px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 32px;
}

.section-note {
    color: #9CA3AF;
    margin-bottom: 32px;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.casino-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-card:hover {
    background: rgba(31, 41, 55, 0.6);
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.casino-logo {
    flex-shrink: 0;
    width: 80px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.casino-details h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.casino-offers {
    display: flex;
    gap: 32px;
    margin-bottom: 8px;
}

.offer-item {
    text-align: center;
}

.offer-value {
    font-size: 20px;
    font-weight: bold;
    color: white;
    display: block;
}

.offer-label {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
}

.casino-features {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.feature-item {
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-item::before {
    content: "✓";
    color: #10B981;
}

.claim-btn {
    background: white;
    color: #1F2937;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.claim-btn:hover {
    transform: scale(1.05);
}
.mb-2{margin-bottom:0.5rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.flex{display:flex}
.grid{display:grid}
.flex-grow{flex-grow:1}
.flex-col{flex-direction:column}
.items-center{align-items:center}
.justify-center{justify-content:center}
.gap-8{gap:2rem}
.rounded-lg{border-radius:0.5rem;
}
.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81 / var(--tw-bg-opacity, 1))}
.bg-gray-800{--tw-bg-opacity:1;background-color:  rgb(255 103 0)}
.bg-green-500{--tw-bg-opacity:1;background-color: #FFC107}
.p-6{padding:1.5rem}
.px-2{padding-left:0.5rem;padding-right:0.5rem}
.py-1{padding-top:0.25rem;padding-bottom:0.25rem}
.py-3{padding-top:0.75rem;padding-bottom:0.75rem}
.text-center{text-align:center}
.text-2xl{font-size:1.5rem;line-height:2rem}
.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-xs{font-size:0.75rem;line-height:1rem}
.font-bold{font-weight:700}
.font-medium{font-weight:500}
.text-green-400{--tw-text-opacity:1;color: #673AB7}
.text-orange-400{--tw-text-opacity:1;color:rgb(32 32 32)}
@media (min-width: 640px){.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-24{padding-top:6rem;padding-bottom:6rem}}
@media (min-width: 768px){.md\:block{display:block}.md\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.md\:flex-row{flex-direction:row}.md\:justify-start{justify-content:flex-start}.md\:gap-12{gap:3rem}.md\:gap-6{gap:1.5rem}.md\:text-left{text-align:left}.md\:text-6xl{font-size:3.75rem;line-height:1}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}}
@media (min-width: 1024px){.lg\:col-span-2{grid-column:span 2 / span 2}.lg\:col-span-3{grid-column:span 3 / span 3}.lg\:w-4\/5{width:80%}.lg\:grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
.with{
    width: 110px;
}
.width{
    width: 200px;
}