@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@media (min-width: 500px) {
    .banner{
      margin: 0px -20px
    }
  }
  
  @media (max-width: 499px){
    .banner{
      margin: 0px -10px;
    }
  }
  .banner .owl-carousel{
    margin-bottom: 0;
  }
  .cover {
    object-fit: cover;
    height: auto;
    width: 100%;
  }
  .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    background: none;
    display: flex;
    justify-content: center;
  }
  .owl-stage {
    position: relative;
  }
  .owl-dot {
    display: block;
    height: 10px;
    width: 10px;
    margin: 4px;
    background: none !important;
    border: 2px solid #f3f3f3 !important;
    border-radius: 50%;
    outline: none;
  }
  .owl-dot span{
    display: none;
  }
  .owl-dot.active {
    transform: scale(1.15);
    background: #f3f3f3 !important;
  }
  .trends {
    display: flex;
    margin: 1rem 0;
    padding: 3rem 0;
    align-items: center;
    background-color: #ffeeee;
  }
  .trends a{
    font-size: 1rem;
  }
  @media (min-width: 500px) {
    .trends{
      flex-direction: row;
      justify-content: center;
    }
    .trends__emall{
      margin-left: 2rem;
    }
  }
  @media (max-width: 499px) {
    .trends{
      flex-direction: column;
      gap: 1rem;
    }
  }
  .trendsbtn {
    color: #ff4545;
    background-color: transparent;
    outline: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid #ff4545;
  }
  @media (hover:hover){
    .trends .trendsbtn:hover,
    .trends .trendsbtn:active{
      background-color: #ff4545;
      color: rgb(247, 247, 247);
    } 
  }
  .new{
    padding-bottom: 3rem;
  }
  .newh2 {
    font-weight: 500;
    user-select: none;
    text-align: center;
    margin: 0;
    padding: 30px;
    font-size: 1.1rem;
  }
  .new__posts p{
    text-align: center;
  }
  .new__posts img{
    user-select: none;
  }
  .collage{   
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    box-sizing: border-box;
    gap: 0.4rem;
  }
  .collage img{
    width: 100%;
    height: 100%;

  }
  .collage__link{
    position: relative;
    display: flex;
    overflow: hidden;
  }
  .collage__link,
  .collage__link img{
    transition: all 200ms ease;
  } 
  .collage__itemname{
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline;
    font-family: 'Open Sans';
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    margin-bottom: 0;
    color: #383838;
    z-index: 100;
  }
  .collage__link:hover img{
    filter: blur(0);
    transform: scale(1.1);
  }
    @media (max-width:499px) {
    .collage{
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 500px) and (max-width: 719px) {
    .collage{
      grid-template-columns: 1fr 1fr 1fr;
    }
  }