/* Landing */
.landing {
    height: 70vh;
    margin-top: calc(90px + 10vh);
    margin-bottom: calc(10px + 10vh);
}
@media screen and (max-width: 991px) {
    .landing {
        height: 70vh;
        margin-top: calc(50px + 10vh);
        margin-bottom: calc(50px + 10vh);
    }
}
.landing .container {
    height: 100%;
    width: 100%;
}
.landing .landing-slider {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.landing .landing-slider .landing-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    transform: scale(1.3);
    transition: opacity 2s ease-in-out, transform 8s ease;
    overflow: hidden;
}
.landing .landing-slider .landing-slide.active {
    opacity: 1;
    transform: scale(1);
}
.landing .landing-slider .landing-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
/* Products */
section .container {
    padding-top: calc(9% - (10vh + 10px));
}
@media (max-width: 1024px) {
    section .container {
        padding-top: calc(8% - (10vh + 10px));
    }
}
@media (max-width: 767px) {
    section .container {
        padding-top: calc(20% - (10vh + 10px));
    }
}
.filters {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}
.filter-button {
    padding: 8px 12px;
    margin: 0 10px;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    opacity: 0.65;
}
.filter-button:hover {
    opacity: 1;
}
.filter-button.active {
    /* background-color: #000;
    color: #fff; */
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    opacity: 1;
}
.childs-arrows {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}
.childs-arrows button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 0 10px #999;
    border-radius: 8px;
    transition: 0.5s;
}
@media screen and (min-width: 768px) {
    .childs-arrows button:hover {
        background-color: #fff;
        color: #000;
    }
}
.childs-arrows button a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .childs-arrows button:hover a {
        color: #000;
    }
}
.childs-arrows button a span {
    font-size: 22px;
    margin-top: -4px;
    display: flex;
    justify-content: center;
}
section.news  {
    padding-top: 100px;
}
section.news .container .inside .parent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
section.news .container .inside .parent .child {
    margin-bottom: 30px;
    width: 100%;
    height: max-content;
}
@media screen and (min-width: 551px) {
    section.news .container .inside .parent .child {
        margin-bottom: 10px;
        width: calc(100% / 2 - (20px / 2));
    }
}
@media screen and (min-width: 991px) {
    section.news .container .inside .parent .child {
        margin-bottom: 20px;
        width: calc(100% / 3 - (40px / 3));
    }
}
section.news .container .inside .parent .child .box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
section.news .container .inside .parent .child .box a {
    text-decoration: none;
    color: #000;
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
}
section.news .container .inside .parent .child .box a .bg {
    width: 100%;
    height: 100%;
}
section.news .container .inside .parent .child .box a .bg .img {
    width: 100%;
    height: 100%;
}
section.news .container .inside .parent .child .box a .bg .img img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
section.news .container .inside .parent .child .box a .bg .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 9px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    z-index: 1;
    /* opacity: 0; */
    border-radius: 12px;
}
/* @media screen and (max-width: 991px) {
    section.news .container .inside .parent .child .box a .bg .overlay {
        opacity: 1;
    }
}
section.news .container .inside .parent .child .box a:hover .overlay {
    opacity: 1;
} */
section.news .container .inside .parent .child .box a .content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
    color: #fff;
    transition: 0.5s all ease-in;
}
section.news .container .inside .parent .child .box a .content .blog-name {
    padding-inline-start: 20px;
    transition: 0.5s all ease-in;
    /* transform: translateY(100px);
    opacity: 0; */
}
/* @media screen and (max-width: 991px) {
    section.news .container .inside .parent .child .box a .content .blog-name {
        transform: translateX(0);
        opacity: 1;
    }
} */
/* section.news .container .inside .parent .child .box a:hover .blog-name {
    transform: translateY(0);
    opacity: 1;
} */
section.news .container .inside .parent .child .box a .content .blog-name h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}
section.news .container .inside .parent .child .box a .content .read-more {
    padding-inline-start: 20px;
    padding-bottom: 30px;
}
section.news .container .inside .parent .child .box a .content .read-more p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}