/* MAIN */
#fsm-main>div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

#fsm-circuit-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#fsm-main-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 0;
    background: radial-gradient(ellipse at 55% 50%, #0d2050 0%, #080f28 55%, #050a1a 100%);
    overflow: hidden;
}

#fsm-main-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(15, 40, 120, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 15% 80%, rgba(10, 20,  80, 0.3) 0%, transparent 50%);
}

@keyframes heroGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


#fsm-main-mouse-icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

#fsm-main-div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

#fsm-main-div h1 {
    color: var(--bg-color);
    font-size: 7rem;
    line-height: 1.1;
    font-family: Inter-ExtraBold;
    line-height: 6rem;
}

#fsm-main-div p {
    color: var(--bg-color);
    font-size: 1.25rem;
    width: 50%;
    font-family: Inter-Medium;
    opacity: .75;
    margin-top: 20px;
}

.fsm-hero-btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: Inter-Medium;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(60, 140, 255, 0.55);
    box-shadow: 0 0 14px rgba(30, 100, 255, 0.2), inset 0 0 14px rgba(30, 100, 255, 0.05);
}

.fsm-hero-btn-pdf:hover {
    background-color: rgba(30, 90, 220, 0.18);
    border-color: rgba(100, 180, 255, 0.85);
    box-shadow: 0 0 22px rgba(60, 140, 255, 0.4), inset 0 0 18px rgba(30, 100, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

/* TYPEWRITER CURSOR */
.hero-cursor {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    margin-left: 6px;
    vertical-align: middle;
    animation: cursorBlink 0.75s step-end infinite;
}

.hero-cursor--done {
    animation: cursorFadeOut 1s ease forwards;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

@keyframes cursorFadeOut {
    0%   { opacity: 1; }
    100% { opacity: 0; width: 0; margin: 0; }
}

/* SERVICES */
#fsm-services-main {
    width: 100%;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fsm-service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    min-height: 220px;
}

.fsm-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.fsm-service-card:hover::after {
    transform: scaleX(1);
}

.fsm-service-card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-5px) scale(1.02);
}

.fsm-service-card-inner {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.fsm-service-card-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.fsm-service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(45%) saturate(900%) hue-rotate(195deg) brightness(85%) contrast(100%);
    transition: filter 0.25s ease;
}

.fsm-service-card:hover .fsm-service-card-icon img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(60%) saturate(1200%) hue-rotate(195deg) brightness(75%) contrast(110%);
}

.fsm-service-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fsm-service-card-body h3 {
    font-family: Inter-SemiBold;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

.fsm-service-card-body p {
    font-family: Inter-Regular;
    font-size: 0.88rem;
    color: var(--text-color);
    opacity: 0.65;
    line-height: 1.6;
    margin: 0;
}

/* SECTION HEIGHTS - sadece hero 100vh, diğerleri içerik kadar */
#fsm-news,
#fsm-services,
#fsm-about,
#fsm-activity {
    min-height: unset !important;
    padding-top: 80px;
    padding-bottom: 80px;
}

#fsm-main {
    padding: 0 !important;
    max-width: 100% !important;
    min-height: 100vh;
}

/* SECTION ALTERNATING BACKGROUNDS */
#fsm-news,
#fsm-about {
    background-color: #e8edf5;
}

#fsm-services {
    background-color: #f0f4fa;
}

/* NEWS */
#fsm-news-swiper-wrap {
    width: 100%;
    padding: 20px 0 36px;
    box-sizing: border-box;
    margin-top: 28px;
    overflow: clip;
    overflow-clip-margin: 40px;
}

#fsm-news-swiper {
    width: 100%;
    height: 510px;
    overflow: visible !important;
}

#fsm-news-swiper .swiper-wrapper {
    align-items: stretch;
    height: 100%;
}

#fsm-news-swiper .swiper-slide {
    height: auto;
}

#fsm-news-swiper .swiper-button-next,
#fsm-news-swiper .swiper-button-prev {
    background: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
    top: 40%;
}

#fsm-news-swiper .swiper-button-next::after,
#fsm-news-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#fsm-news-swiper .swiper-button-next:hover,
#fsm-news-swiper .swiper-button-prev:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.25);
}

#fsm-news-swiper .swiper-button-next:hover::after,
#fsm-news-swiper .swiper-button-prev:hover::after {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fsm-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.fsm-news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.fsm-news-card:hover::after {
    transform: scaleX(1);
}

.fsm-news-card:hover {
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1), 0 20px 55px rgba(15, 23, 42, 0.18), 6px 0 30px rgba(15, 23, 42, 0.08), -6px 0 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-10px);
}

.fsm-news-card-image {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    overflow: hidden;
}

.fsm-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fsm-news-card:hover .fsm-news-card-image img {
    transform: scale(1.05);
}

.fsm-news-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 24px;
    flex: 1;
    overflow: hidden;
}

.fsm-news-card-tag {
    font-family: Inter-SemiBold;
    font-size: 0.8rem;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.fsm-news-card-body h3 {
    font-family: Inter-SemiBold;
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fsm-news-card-body p {
    font-family: Inter-Regular;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.6;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#fsm-news-button {
    margin: 0;
    margin-left: auto;
}

#fsm-news-button-mobile {
    display: none;
    margin: 28px auto 0;
}

/* ABOUT */
#fsm-about-stats {
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 44px 32px;
    margin-top: 24px;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

#fsm-about-stats::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#fsm-about-stats::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(34, 103, 191, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fsm-about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 1 1 120px;
    position: relative;
    z-index: 1;
}

.fsm-about-stat-item img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.fsm-about-stat-number {
    font-family: Inter-SemiBold;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.3;
}

.fsm-about-stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

#fsm-about-bottom {
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 24px;
    margin-top: 24px;
    box-sizing: border-box;
}

#fsm-about-bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.fsm-about-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: Inter-SemiBold;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    width: fit-content;
    transition: opacity 0.2s ease;
    letter-spacing: 0.02em;
}

.fsm-about-more-btn:hover {
    opacity: 0.85;
}

#fsm-about-bottom-left p {
    font-family: Inter-Regular;
    font-size: 1rem;
    color: var(--text-color);
    opacity: .8;
    line-height: 1.7;
}

#fsm-about-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

#fsm-about-bottom-right h3 {
    font-family: Inter-SemiBold;
    font-size: 1.1rem;
    color: var(--text-color);
}

#fsm-about-certs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

#fsm-about-certs a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

#fsm-about-certs a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

#fsm-about-certs a img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 4px;
}

/* ACTIVITY - Bento Grid */
#fsm-activity-bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 18px;
    margin-top: 40px;
    height: 600px;
}

#fsm-activity-bento-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fsm-activity-bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.fsm-activity-bento-large {
    height: 100%;
}

#fsm-activity-bento-right .fsm-activity-bento-card {
    flex: 1;
}

.fsm-activity-bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.fsm-activity-bento-card:hover img {
    transform: scale(1.07);
}

.fsm-activity-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 14, 28, 0.95) 0%,
        rgba(8, 14, 28, 0.55) 45%,
        rgba(8, 14, 28, 0.1) 100%
    );
    transition: background 0.4s ease;
}

.fsm-activity-bento-card:hover .fsm-activity-bento-overlay {
    background: linear-gradient(
        to top,
        rgba(8, 14, 28, 0.98) 0%,
        rgba(8, 14, 28, 0.7) 55%,
        rgba(8, 14, 28, 0.25) 100%
    );
}

.fsm-activity-bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
    z-index: 2;
}

.fsm-activity-bento-content span {
    display: block;
    font-family: Inter-Bold;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fsm-activity-bento-content h3 {
    font-family: Inter-Bold;
    font-size: 1.35rem;
    color: #ffffff;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.fsm-activity-bento-large .fsm-activity-bento-content h3 {
    font-size: 1.65rem;
}

.fsm-activity-bento-content p {
    font-family: Inter-Regular;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

.fsm-activity-bento-card:hover .fsm-activity-bento-content p {
    max-height: 120px;
    opacity: 1;
}

/* Number badge accent line */
.fsm-activity-bento-content::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #4e8cff, #a78bfa);
    border-radius: 2px;
    margin-bottom: 16px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s ease, transform 0.35s ease;
}

.fsm-activity-bento-card:hover .fsm-activity-bento-content::before {
    opacity: 1;
    transform: scaleX(1);
}

/* PRODUCTS */
#fsm-products {
    background-image: url('/images/extras/shiny2.svg'); 
    background-size: cover;
}

#fsm-products .fsm-card {
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

#fsm-products-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 50px 25px;
    overflow: hidden;
    box-sizing: border-box;
}

#fsm-products-main span {
    font-family: Inter-Light;
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: .5;
    margin: 0px;
}

#fsm-products-main .products-main-swiper {
    width: 100%;
}

#fsm-products-main h3 {
    font-family: Inter-SemiBold;
    font-size: 2rem;
    color: var(--text-color);
}

#fsm-products-main p {
    font-family: Inter-Medium;
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: .75;
    margin: 15px 0px;
}
.products-slider-radio-active {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

/* SOLUTIONS */
#fsm-solutions {
    background-image: url('/images/extras/shiny1.svg'); 
    background-size: cover;
}

#fsm-solutions .fsm-card {
    background-color: var(--bg-color);
}

#fsm-solutions-main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-around;
    padding: 25px;
    position: relative;
}

#fsm-solutions-category-menu {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    gap: 15px;
}

#fsm-solutions-category-menu> button.solutions-slider-radio-active {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

#fsm-solutions-category-menu>button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    background-color: transparent;
    color: var(--text-color);
    border-radius: 50%;
    font-family: Inter-SemiBold;
    font-size: 16px;
    text-align: center;
    margin: 0;
    padding: 0;
    transition-duration: 150ms;
    cursor: pointer;
}

#fsm-solutions-category-menu>button:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.solutionsSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
} 

.solutionsSwiper img {
    width: 100%;
    height: 100%;
}

.fsm-solutions-category {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0;
    position: absolute;
    z-index: 2;
}

.fsm-solutions-category ul {
    width: 100%;
    height: fit-content;
    border-radius: 15px;
    padding: 0px 50px;
    box-sizing: border-box;
}

.fsm-solutions-category a {
    text-decoration: none;
    font-family: Inter-Regular;
}

.fsm-solutions-category li {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 10px 0px 10px 10px;
    border-radius: 15px;
    margin-bottom: 15px;
    opacity: 1;
    text-align: center;
}

.fsm-solutions-category li:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.solutionsSwiper {padding: 15px 0px;}

.solutionsSwiper .swiper-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid var(--text-color);
}


.solutionsSwiper .swiper-slide h3 {
    text-align: center;
}

.solutionsSwiper .swiper-slide .img-wrapper {
    width: 100%;
    height: 700px;
    transform: scale(1.3);
    transition: 0.5s;
    position: relative;
    filter: blur(10px);
}

.solutionsSwiper .swiper-slide-active .img-wrapper {
    transform: scale(1);
    filter: none;
}

.solutionsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    filter: grayscale(1);
    z-index: -1;
    position: absolute;
}


.solutionsSwiper .swiper-slide-active img {
    filter: grayscale(0)
}

/*---------- RESPONSIVE --------*/

/* Mobile */
@media (max-width: 576px) {
    /* Main */
    #fsm-main-div > h1 {
        font-size: 3rem !important;
        line-height: 3rem !important;
    }

    #fsm-main-div > p {
        width: 75% !important;
    }

    /* News */
    #fsm-news-button-mobile {
        display: flex !important;
    }

    #fsm-news-button {
        display: none !important;
    }

    /* Services */
    #fsm-services-main {
        grid-template-columns: 1fr !important;
    }

    /* About */
    #fsm-about-bottom {
        grid-template-columns: 1fr !important;
    }

    .fsm-about-stat-divider {
        display: none !important;
    }

    #fsm-about-certs {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Activity */
    #fsm-activity-bento {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .fsm-activity-bento-large {
        height: 340px !important;
    }

    #fsm-activity-bento-right .fsm-activity-bento-card {
        height: 220px !important;
        flex: unset !important;
    }

    /* Products */
    #fsm-products-main {
        padding: 0 !important;
    }

    /* Solutions */
    #fsm-solutions-main {
        padding: 0px !important;
    }
    
    #fsm-solutions-main>button {
        font-size: 1rem !important;
    }

    .fsm-solutions-category ul {
        padding: 0px 5px !important;
    }

    .fsm-solutions-category a {
        font-size: 14px !important;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    /* Main */
    #fsm-main-div > h1 {
        font-size: 4rem !important;
        line-height: 4rem !important;
    }

    #fsm-main-div > p {
        width: 75% !important;
    }

    /* News */
    #fsm-news-button-mobile {
        display: flex !important;
    }

    #fsm-news-button {
        display: none !important;
    }

    /* About */
    #fsm-about-bottom {
        grid-template-columns: 1fr !important;
    }

    .fsm-about-stat-divider {
        display: none !important;
    }

    /* Activity */
    #fsm-activity-bento {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .fsm-activity-bento-large {
        height: 360px !important;
    }

    #fsm-activity-bento-right .fsm-activity-bento-card {
        height: 240px !important;
        flex: unset !important;
    }

    /* Products */
    #fsm-products-main {
        padding: 0 !important;
    }

    /* Solutions */
    #fsm-solutions-main {
        padding: 0px !important;
    }

    #fsm-solutions-main>button {
        font-size: 1rem !important;
    }
}

/* Laptops */
@media (min-width: 769px) and (max-width: 992px) {
    /* Main */
    #fsm-main-div > h1 {
        font-size: 4rem !important;
        line-height: 4rem !important;
    }

    #fsm-main-div > p {
        width: 75% !important;
    }

    /* News */
    #fsm-news-button-mobile {
        display: none !important;
    }

    /* About */
    #fsm-about-vector {
        display: none !important;
    }

    #fsm-about-bottom {
        grid-template-columns: 1fr !important;
    }

    /* Activity */
    #fsm-activity-bento {
        height: 480px !important;
    }

     /* Solutions */
    #fsm-solutions-main>button {
        font-size: 1rem !important;
    }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1200px) {
    /* Main */
    #fsm-main-div > h1 {
        font-size: 5rem !important;
    }

    /* News */
    #fsm-news-button-mobile {
        display: none !important;
    }

    /* Solutions */
    #fsm-solutions-main>button {
        font-size: 1rem !important;
    }
}

/* Extra Large Screens */
@media (min-width: 1201px) {
    /* News */
    #fsm-news-button-mobile {
        display: none !important;
    }
}