#top {
    margin: 0;
    position: relative;
    z-index: 0;
}
#top .content {
    display: grid;
    grid-template-columns: 5fr 4fr;
    background: linear-gradient(0.57deg, rgba(249, 249, 247, 1),rgba(255, 255, 255, 0) 100%);
    border-radius: var(--border-radius);
}
#top .main-content {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em;
    gap: 1em;
}
#top .main-content__item {
    overflow: hidden;
}

#top a[href] {
    font-size: 15px;
    font-weight: 400;
    color: var(--colorMain);
    transition: all 0.2s ease-in;
    text-decoration-line: underline;
}
#top a[href]:hover {
    color: var(--colorMainHover)
}
#top h1 {
    text-align: left;
}
#top button {
    transition: all 0.3s ease-in;
    height: fit-content;
    padding: 0.6em 0.9em;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    border: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 30px 0 #0000001f;
    background-color: var(--colorMain);
}
#top .content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.2s ease-in;
    border-radius: var(--border-radius);
}
#top .content img:hover {
    box-shadow: 0 0 10px 1px #0002;
}


#top .top-text {
    color: var(--colorLightPrimary);
    font-size: 18px;
    font-weight: 400;
}
#top .bottom {
    align-items: center;
    display: flex;
    gap: 0.7em;
}
#top .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
}
#top .swiper-container {
    position: relative;
    width: 100%;
    height: 200px;
}
#top .swiper-pagination-bullet {
    border: 0.5px solid rgba(163, 163, 163, 1);
    background: rgba(217, 217, 217, 1);
    width: 10px;
    height: 10px;
}
#top .swiper-pagination-bullet-active {
    background-color: var(--colorPrimary);
}

#top .text {
    color: #58595b;
    font-size: 18px;
    font-weight: 400;
}
#top .types {
    font-size: 14px;
    font-weight: 400;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5em;
}
#top .types a {
    padding: 0.5em 1em;
    text-decoration: none;
    border: 1px solid #c4c4c4;
    border-radius: 10px;
}
#top .types a.active {
    border-color: var(--colorMain);
    background-color: var(--colorMain);
    color: #fff;
}

@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
    #top .content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}