.main_page-small_banner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-height: 200px;
  position: relative; }
  .main_page-small_banner > a {
    cursor: pointer;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .main_page-small_banner > a:not(:last-child) {
      margin-right: 30px; }
    .main_page-small_banner > a > img {
      width: 100%;
      height: auto;
      max-width: 100%;
      margin-bottom: 0; }

@media screen and (max-width: 1000px) {
  .main_page-small_banner > a:not(:last-child) {
    margin-right: 15px; } }

@media screen and (max-width: 600px) {
  .main_page-small_banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: none; }
    .main_page-small_banner > a {
      width: 100%;
      margin-right: 0;
      max-height: 200px; }
      .main_page-small_banner > a:not(:last-child) {
        margin-bottom: 10px; } }

@media screen and (max-width: 600px) {
  .main_page-small_banner {
    visibility: hidden;
    display: none;
  }
}