@media only screen and (max-width: 499.99px) {
    .sy-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .sy-header-logo-wrapper {
        width: 200px;
        padding-left: 0.75rem;
    }
    .sy-sticky-header {
        position: sticky !important;
        top: 0;
    }
    .not-mobile {
        display: none;
    }

    #sy-footer-contact-wrapper {
        display: block !important;
    }
    #sy-footer-contact-wrapper #sy-footer-contact-right {
        padding-top: 1.75rem;
    }
    #sy-footer-contact-wrapper #sy-footer-contact-right a {
        text-align: left !important;
    }
    #sy-hero-text-title-wrapper h1 {
        font-size: 3.5rem !important;
    }
    #sy-mobile-menu-paths button {
        padding: 1rem 0.7rem !important;
    }
    .sy-icon-item {
        width: 45vw;
    }
}
@media only screen and (min-width: 500px) {
    .sy-container {
        padding-left: 3rem;
        padding-right: 3rem;
        width: calc(100% - 6rem);
        max-width: 1100px;
        margin: 0 auto;
    }
    .sy-header-logo-wrapper {
        width: 220px;
    }
    .only-mobile {
        display: none;
    }
    .sy-icon-item {
        width: 160px;
    }
}


.sy-chapter-title,
.sy-chapter-title-dark {
    padding: 3rem 0 2rem;
    width: fit-content;
}
.sy-chapter-title h2, 
.sy-chapter-title-dark h2 {
    margin: 0;
    padding: 0.25rem 0.75rem;
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: 'Geist', sans-serif;
}
.sy-chapter-title-dark h2 {
    background-color: #00000044;
    color: var(--pallete-text-primary);
}
.sy-chapter-title h2 {
    background-color: #00000012;
    color: var(--pallete-brand-dark);
}

.sy-chapter-content {
    padding: 0.25rem 0.5rem 2.5rem;
}

.sy-chapter-text p {
    font-size: 1.3rem;
    line-height: 2.5rem;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
    font-weight: 200;
}

.sy-icon-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 3.5rem;
    padding-top: 1rem;
}
.sy-icon-item {
    background-color: #e7e7e7;
    transition: all 0.3s;
    box-shadow: 0 3px 10px -5px #66666644;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    & svg {
        transition: color 0.3s;
    }
}
.sy-icon-item:hover {
    transform: scale(1.15);
    background-color: #ececec;
    box-shadow: 3px 10px 13px -10px #66666644;
    & svg {
        color: var(--pallete-brand-primary);
    }
}

.sy-icon-item-holder {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sy-icon-item-holder svg {
    width: 55%;
    height: auto;
    color: var(--pallete-brand-dark);
    opacity: 0.9;
}
.sy-icon-item-title {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 100;
    padding: 0.1rem 0.4rem;
}
