/*-----------------*/
/* Animace Loga */
.animace1 {
    animation: zoom-in-zoom-out 10s  ease-in-out  infinite;
    animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
    
    -webkit-animation: zoom-in-zoom-out 10s  ease-in-out  infinite;
    -webkit-animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
  
    -moz-animation: zoom-in-zoom-out 10s  ease-in-out  infinite;
    -moz-animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
  
    -o-animation: zoom-in-zoom-out 10s  ease-in-out  infinite;
    -o-animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
  
    -ms-animation: zoom-in-zoom-out 10s  ease-in-out  infinite;
    -ms-animation-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1s);
  }

  @keyframes zoom-in-zoom-out {
    0% {transform: scale(1); opacity: 1;}
    50% {transform: scale(0.6); opacity: 0.7;}
    100% {transform: scale(1); opacity: 1;}
  }

  @-webkit-keyframes zoom-in-zoom-out {
    0% {-webkit-transform: scale(1); opacity: 1;}
    50% {-webkit-transform: scale(0.6); opacity: 0.7;}
    100% {-webkit-transform: scale(1); opacity: 1;}
  }

  @-moz-keyframes zoom-in-zoom-out {
    0% {-moz-transform: scale(1); opacity: 1;}
    50% {-moz-transform: scale(0.6); opacity: 0.7;}
    100% {-moz-transform: scale(1); opacity: 1;}
  }

  @-o-keyframes zoom-in-zoom-out {
    0% {-o-transform: scale(1); opacity: 1;}
    50% {-o-transform: scale(0.6); opacity: 0.7;}
    100% {-o-transform: scale(1); opacity: 1;}
  }

  @-ms-keyframes zoom-in-zoom-out {
    0% {-ms-transform: scale(1); opacity: 1;}
    50% {-ms-transform: scale(0.6); opacity: 0.7;}
    100% {-ms-transform: scale(1); opacity: 1;}
  }
/* End Animace Loga */
/*-----------------*/




/*
 * Dummy devices (replace them with your own or something else entirely!)
 */









/* Featurettes
------------------------- */
/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */
