@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@1,800&family=Special+Elite&display=swap');

body {
  height:100%;
  font-family: "Special Elite", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: black;
  color: black;
  margin: 0;
  padding: 0;
  background: black url('/images/crime/bg.jpg') bottom no-repeat;
  background-size: cover;
}
main {
  position: relative;
  z-index: 10;
}
.container {
  margin: 0 auto;
  max-width: 940px;
  width:100%;
  z-index: 10;
  position: relative;
  /*border:1px solid red;*/
}
.top {
  background: url('/images/crime/top-banner2.png') center no-repeat;
  height: 250px;
}
.top-stripe {
  background: url('/images/crime/pruh.jpg') center;
  background-repeat: repeat-x;
  height: 40px;
  width:100%;
  background-size: auto 100%;
}
.grid-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
h1,h2 {
  font-weight: 400;
  margin: 10px 0;
}
h1 {
  font-size:4rem;
}
h2 {
  font-size:3.3rem;
}
p {
  font-size:1.3rem;
  line-height: 2rem;
  margin:0;
}
.milan {
  margin: 50px 0;
  align-items: center;
}
.milan img {
  max-width: 100%;
}
.top-del {
  margin: 0 auto;
  height: 50px;
  width: 235px;
  border-top: 6px solid #707070;
}

.left {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 3fr;
  gap:24px;
  margin-bottom: 48px;
  border-bottom: 6px solid #FF4C01;
  padding-bottom: 24px;
  z-index: 10;
}
.right {
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 2fr;
  gap:24px;
  margin-bottom: 48px;
  border-bottom: 6px solid #FF4C01;
  padding-bottom: 24px;
  z-index: 10;
}
.left h2,.right h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  margin-top: 48px;
}
.left p,.right p {
  margin-top: 48px;
}
.novinka {
  padding: 5px 10px;
  color: white;
  text-transform: uppercase;
  background: #ff4d00;
  font-family: "Arial";
  font-size: 22px;
  border-radius: 10px;
}
.name {
  text-align: right;
}
.sub {
  margin-top: 0 !important;
}
.no {
  border-bottom: none;
}
footer {
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.3);
  background: #ff4c00;
  font-family: "arial";
  color: white;
}
footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px 0;
}
footer .container p {
  font-size: 16px;
  line-height: 24px;
}

footer .container  a {
  color: white;
}
footer .container  a:hover {
  text-decoration: none;
}
footer .container div{
  display: flex;
  gap: 24px;
  align-items: center;
}
.left-bl {
  background: url('/images/crime/skvrna.png') left no-repeat;
}
.zabijak-skvrna {
  width: 300px;
  height: 830px;
  position: absolute;
  overflow: hidden;
  bottom: -110px;
  left: 0;
}
.zabijak-skvrna::before {
  content: "";
  position: absolute;
  background: url(/images/crime/skvrna.png) -930px no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 20px;
}
.zabijak-skvrna2 {
  width: 300px;
  height: 830px;
  position: absolute;
  overflow: hidden;
  top: 1320px;
  left: 0;
  rotate: -180deg;
}
.zabijak-skvrna2::before {
  content: "";
  position: absolute;
  background: url(/images/crime/skvrna.png) -300px no-repeat;
  width: 100%;
  height: 100%;
  right: 0px;
  bottom: 0px;
}
.zabijak-skvrna3 {
  width: 300px;
  height: 830px;
  position: absolute;
  overflow: hidden;
  bottom: 26%;
  right: 0;
}
.zabijak-skvrna3::before {
  content: "";
  position: absolute;
  background: url(/images/crime/skvrna.png) -300px no-repeat;
  width: 100%;
  height: 100%;
  right: 0px;
  bottom: 0px;
}

@media screen and (max-width: 1200px) {
  .left, .right  {
    margin-left:110px;
    margin-right:110px;
  }
}

@media screen and (max-width: 960px) {
  .left, .right  {
    margin-left:50px;
    margin-right:50px;
  }
  .left  {
    display: flex;
    flex-direction: column-reverse;
  }
  .right  {
    display: flex;
    flex-direction: column;
  }
  .grid-50 {
    padding-left:50px;
    padding-right:50px;
    display: flex;
    flex-direction: column;
    gap:24px;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  .left h2, .right h2 {
    font-size: 2rem;
  }
  .left p, .right p {
    font-size: 1.2rem;
    margin-top: 24px;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

}
h2 a {
  text-decoration: none;
  color: inherit;
}
h2 a:hover {
  text-decoration: underline;
  color: #FF4D00;
}
a:hover img {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}