/*clanek*/

.new-clanky-content{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  width: 70%;
  margin-top: 30px;
  margin: auto;
  overflow: hidden;
  background: linear-gradient(to top right, var(--main-color), var(--second-color));
  border-radius: 0px 0px 50px 50px;
  padding: 30px 20px 50px 20px;
  transition: 1s ease;
}
 .info-new-clanky-port{
  margin-bottom: 20px;
  justify-content: center;
  text-align: center;
}
.new-clanky-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    justify-content: bottom;
    align-items: flex-end;
    transition: 1s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.157);
}
.new-clanky-box:hover {
    scale: 1.1;
}
.new-clanky-box img{
    width: 100%;
     height: 100%;
    object-fit: cover;
    object-position: center;
    justify-content: flex-end;

}
.heading {
    text-align: left;
    background: linear-gradient(to bottom right, var(--main-color), var(--second-color));
    border-radius: 50px;
    width: 70%;
    margin: auto;
    overflow: hidden;
    padding: 20px 40px;
    transition: 1s ease;
    margin-bottom: 20px;
}
.heading p {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 300;
}
.heading h2 {
    letter-spacing: 10px;
    -webkit-text-stroke: 0.5px #ffffff;
    color: transparent;
    font-weight: 1000;
    font-size: 50px;
    transition: 1s ease;
}
@media (max-width: 1700px) {
  .new-clanky-content{
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 991px) {
  .heading {
    border-radius: 30px;
    padding: 10px 20px;
    text-transform: uppercase;
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .new-clanky-content{
    grid-template-columns: repeat(2,1fr);
  }
  .heading h2 {
    font-size: 40px;
}
}
@media (max-width: 1300px) {
  .new-clanky-content{
    grid-template-columns: repeat(1,1fr);
  }

}
@media (max-width: 600px) {
  .new-clanky-content{
    grid-template-columns: repeat(1,1fr);
  }
}
@media (max-width: 991px) {
  .new-clanky-content{
    width: 100%;
  }
  .heading h2 {
    width: 100%;
}
  .new-clanky-content{
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 600px) {
  .new-clanky-content{
    grid-template-columns: repeat(1,1fr);
  }
}
@media (max-width: 350px) {

.heading h2 {
    font-size: 30px;
}
}
