| import styled from "styled-components";
export const StyledBlogSection = styled.div`
  width: 100%;
  height: auto;
  max-width: 1280px;
  padding: 45px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
 
  .container-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  .title-blog {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-decoration-line: underline;
    color: var(--white);
  }
  h4 {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: var(--white);
  }
  span {
    background: var(--primary-color);
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .content-center {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  @media (max-width: 1024px) {
    padding: 40px 5vw;
 
  .container-blog {
    gap: 24px;
  }
  .title-blog {
    font-size: 14px;
    line-height: 14px;
  }
  h4 {
    font-size: 32px;
    line-height: 42px;
  }
  .content-center {
    gap: 18px;
  }
  }
`;
export const ContainerCarousel = styled.div`
  width: 100%;
  height: auto;
  .content {
    width: 100vw;
  }
  .swiper {
    width: 100%;
    height: 550px;
  }
  .swiper-slide {
    background-position: center;
    background-size: cover;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
  }
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev:not(:hover),
  .swiper-button-next:not(:hover) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-color-2);
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all ease 0.3s;
    border-radius: 4px;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    filter: sepia(100%) brightness(200%) saturate(0%) contrast(1000%);
    font-size: 20px;
  }
  .swiper-pagination-bullet {
    border-radius: 4px;
    margin: 0 8px 0 8px !important;
    padding: 0;
    width: 32px;
    height: 6px;
    border: 0.;
    background: var(--secondary-color);
    transition: all ease 0.3s;
    opacity: .5;
  }
  .swiper-pagination-bullet-active {
    border: 0;
    opacity: 1;
    background: var(--primary-color);
  }
  @media (max-width: 1024px)  {
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev:not(:hover),
  .swiper-button-next:not(:hover) {
    width: 30px;
    height: 30px;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 10px;
  }
  .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
  }
  .swiper-slide div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  }
`;
 |