﻿@media(max-width:1200px){

    .ecosystem-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .ecosystem-grid{

        grid-template-columns:1fr;

    }

    .ecosystem-core{

        width:240px;

        height:240px;

    }

}
@media(max-width:1200px) {

    .ecosystem-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-core {
        width: 240px;
        height: 240px;
    }
}