
/* Main content styles */
.main_page {
    position: relative;
    margin-top: 0px;
}
.hidden {
    display: none;
}


/* Hero Section */
.hero_wrap .swiper {
    width: 100%;
    position: relative;
}
.hero_wrap .swiper-slide {
    height: calc(100vh);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.hero_wrap .swiper-slide::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero_wrap .swiper-slide .slider_data {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    padding: 30px 60px;
    background: linear-gradient(180deg, rgba(227, 237, 238, 0) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 10;
    color: #fff;
}
.hero_wrap .slider_data{
    opacity: 0; /* Initially hidden */
    transform: translateY(30px); /* Start position */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero_wrap  .swiper-slide-active .slider_data {
    opacity: 1;
    transform: translateY(0);
}
.hero_wrap .swiper-slide .slider_data h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.hero_wrap .swiper-slide .slider_data p {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero_wrap .swiper-slide .slider_data .date{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero_wrap .swiper .swiper-pagination-bullets {
    bottom: 20px;
}
.hero_wrap .swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin: 0 5px;
}
.hero_wrap .swiper .swiper-pagination-bullet-active {
    background: #047aaa;
}
/* End */


/* latest news */
.latest_news {
    padding: 50px 0;
}
.latest_news .row{
    row-gap: 30px;
}

/* Swiper News */
.swiper_news .swiper-wrapper {
    padding-bottom: 10px;
}
.swiper_news_next, .swiper_news_prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #047aaa;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.swiper_news_next {
    right: 0;
}
.swiper_news_prev {
    left: 0;
}
.swiper_news_next svg, .swiper_news_prev svg {
    transition: transform 0.2s;
}
.swiper_news_next:hover svg{
    transform: translateX(5px);
}
.swiper_news_prev:hover svg{
    transform: translateX(-5px);
}
.swiper_news_pagination {
    position: absolute;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    justify-content: center;
}
.swiper_news_pagination .swiper-pagination-bullet {
    background: gray;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin: 0 5px;
}
.swiper_news_pagination .swiper-pagination-bullet-active {
    background: #047aaa;
}
/* End */

/* Banner Image */
.banner_image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 270px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin: 100px 0;
    background-attachment: fixed;
}
.banner_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.banner_image .banner_content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-decoration: none;
    display: block;
}
.banner_image .banner_content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}
.banner_image.qr_code{
    height: 400px;
    overflow: hidden;
}
.banner_image.qr_code .banner_content{
    height: 400px;
}
.banner_image.qr_code::before{
    background: rgba(0, 0, 0, 0.8);
}
.banner_image.qr_code .banner_content h2{
    padding-top: 100px;
    font-size: 38px;
}
.banner_image.qr_code img{
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-top: 14px;
}
/* End */

/* partners card */
.partners_card {
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.3s;
    display: block;
    text-decoration: none;
    height: 100%;
    text-align: center;
}
.partners_card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    max-width: 285px;
    border-radius: 10px;
    margin: 0 auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.partners_card img:hover {
    opacity: 1;
}
/* End */
.section-header {
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: #047aaa;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-header h2 {
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #9195a2;
}
.subscribe {
    padding: 50px 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.subscribe:before {
    content: "";
    background: rgba(6, 12, 34, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.subscribe .section-header h2,
.subscribe p {
    color: #fff;
}

.subscribe input {
    background: #fff;
    color: #060c22;
    border: 0;
    outline: none;
    margin: 0;
    padding: 9px 20px;
    border-radius: 5px;
    font-size: 13px;
}

.subscribe button {
    border: 0;
    padding: 4px 25px;
    cursor: pointer;
    background: #047aaa;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
}
.subscribe .form-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.subscribe button:hover {
    background: #035473;
}

@media only screen and (min-width: 768px) {
    .subscribe input {
        min-width: 400px;
    }

}
