@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #5C32AA;
}

* {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

button {
    cursor: pointer;
}

.main-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 20px;
}

.shad {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.side-header {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.side-header.open {
    transform: translateX(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-content.open {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    max-height: 500px;
}

@media screen and (max-width:767px) {
    .main-container {
        padding-inline: 16px;
    }
}

@media screen and (max-width:499px) {
    .main-container {
        padding-inline: 12px;
    }
}