@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    outline-style: none !important;
}

html {
    scroll-behavior: smooth;
}

.inter {
    font-family: 'Inter', sans-serif !important; 
}

.sora {
    font-family: 'Sora', sans-serif !important;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.box-shadow {
    box-shadow: rgba(122, 117, 149, 0.15) 0px 48px 100px 0px;
}

.box-shadow2 {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 0px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 4px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}


.accordion-item.activeClick .accordion-content {
    max-height: 1000px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.activeClick .accordion-icon {
    transform: rotate(45deg);
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-gradient {
    background: linear-gradient(to right, #1EC1E4, #7D55E5, #7D55E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left !important;
}

.new-style-button:active,
.new-style-button:hover {
    color: #fff;
}

@media screen and (max-width:768px) {
    .text-gradient {
        text-align: center !important;
    }
}

@media screen and (max-width:1024px) {
    .menuTransition {
        transition: all .5s;
        width: 250px;
    }
}