.bannerHome {
    position: relative;
    width: 100%;
    height: 100vh;
}
.swiper-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #000000ad;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide {
    height: 100vh !important;
    cursor: pointer;
}
.swiper-slide > img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bannerText {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    z-index: 4;
}
.bannerText > a > p {
    padding-right: 3rem;
    font-size: 35px;
    font-weight: 900;
    color: #fff;
}
.bannerText > a > p:hover {
    color: #2ecc71;
}
.bannerText > a > span {
    margin-right: 3rem;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background-color: #2ecc71;
    padding: 10px 20px;
    border-radius: .25rem;
}
.bannerText > a > span:hover {
    background-color: #1e9c52;
}
.flexCont {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 25px;
    grid-auto-flow: row;
}
.contImgCard > img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: .25rem .25rem 0 0;
}
.cantCardBody > h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    padding-top: 6px;
}
.btnMore {
    /* background-image: linear-gradient(to left, #0f496c, #2f5a93, #0f89a7); */
    background-color: #2ecc71 !important;
    color: #fff;
    padding: 10px 30px;
}
.btnMore:hover {
    background-color: #2ab967;
    color: #fff;
}
.adsGif > img {
    width: 100%;
    border-radius: 0.25rem;
}
.cont-galleryImg {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.galleryImg {
    display: block;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    max-height: 300px;
    cursor: pointer;
}
.galleryImgCenter {
    display: block;
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    max-height: 600px;
    cursor: pointer;
}
.gImg {
    position: relative;
}
.gImg::after {
    position: absolute;
    content: "";
    width: 100%;
    right: 0;
    bottom: 0;
    height: 65px;
    background-image: linear-gradient(to top,#000,#000000bf,#0000006e,#0000006e);
    z-index: 1;
    cursor: pointer;
}
.galleryImgTitle {
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: #fff;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
    cursor: pointer;
}
.newsInCont {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #eee;
    border-radius: .25rem;
    margin: 4px 0;
}
.contImgInNews {
    width: 320px;
    height: 100%;
}
.contImgInNews > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 .25rem .25rem 0;
}
.contNewsInInfo {
    width: 100%;
    padding: 10px 20px;
}
.contNewsInInfo > a > h5 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #353535;
}

.contNewsInInfo > a > p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #353535;
}
.contNewsInInfo > a > span {
    color: #8e8e8e;
}
.newsBtn {
    background-color: #2ecc71;
    color: #fff;
    padding: 6px 12px;
    text-align: center;
    border-radius: .25rem;
    width: 150px;
    margin-right: auto;
}
.newsBtn:hover {
    background-color: #2ab967;
}
.flexArticlesCont {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 25px;
    grid-auto-flow: row;
}
.articlesBtn {
    display: block;
    background-color: #2ecc71;
    color: #fff;
    padding: 10px 12px;
    text-align: center;
    border-radius: .25rem;
    margin: 10px 0;
}
.articlesBtn:hover {
    background-color: #2ab967;
}