@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    display: grid;
    justify-items: center;
    overflow-x: hidden !important;
}

/* Header */
header {
    /* max-width: 1500px; */
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.35);
    user-select: none;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    z-index: 100 !important;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .navbar .menus a {
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1616;
}

header .navbar .menus a:first-child {
    margin: 0 15px 0 0;
}

header .navbar .menus a:last-child {
    margin: 0 0 0 15px;
}

header .navbar .menus a:hover {
    color: #318C89;
}

header .navbar .menus a#page-selected {
    color: #318C89;
}

header .navbar .logo img {
    width: 66px !important;
    height: auto;
}

.languages {
    position: relative;
}

.languages a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.languages a span:first-child {
    margin: 0px 10px 0 10px;
}

.languages a span:last-child {
    margin: 0px 10px 0 10px;
}

.languages a span img {
    transition: all 0.2s ease-in;
}

.languages .all-language {
    display: none;
}

.drop .all-language {
    display: block;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
    opacity: 1;
}

@keyframes drop {
    0% {
        top: 20px;
        opacity: 0.3;
    }

    50% {
        top: 45px;
        opacity: 0.7;
    }

    100% {
        top: 75px;
        opacity: 1;
    }
}

@keyframes backdrop {
    0% {
        top: 75px;
        opacity: 0.7;
    }

    50% {
        top: 45px;
        opacity: 0.3;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.drop a span:last-child>img {
    transform: rotate(180deg);
}

.drop .all-language a {
    padding: 12px 22px;
    text-decoration: none;
    color: #1B1616;
}

.drop .all-language a:hover {
    color: #318C89;
    background-color: rgba(27, 22, 22, 0.05);
}

.mobile-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navbar #icon-language {
    display: grid;
    place-items: center;
    padding: 3px 2px 3px 3px;
    background-color: rgba(27, 22, 22, 0.1);
    border-radius: 50%;
}

.mobile-navbar .languages a img {
    width: 33px;
    height: 33px;
}

.mobile-navbar .drop .all-language {
    left: 60%;
}

.mobile-navbar .logo img {
    width: 70px !important;
    height: 55px !important;
}

.menu-icon {
    background-color: rgba(27, 22, 22, 0.1);
    width: 36px;
    height: 34px;
    border-radius: 5px;
    padding: 5px 3px;
    position: relative;
    cursor: pointer;
}

.menu-icon .line {
    background-color: #1B1616;
    width: 26px;
    height: 3px;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
    transform-origin: right;
    transform: rotate(0deg);
    transition: transform 0.3s linear;
}

.menu-icon .line-2 {
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
}

.menu-icon .line-3 {
    top: auto;
    bottom: 5px;
    width: 26px;
}

.menu-open .line {
    width: 33px;
}

.menu-open .line-1 {
    transform: rotate(-40deg);
}

.menu-open .line-2 {
    visibility: hidden;
}

.menu-open .line-3 {
    transform: rotate(40deg);
}

.mobile-menu {
    width: 100%;
    transform: translateY(-550px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 73px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 20px 20px;
    z-index: 99 !important;
    transition: transform 0.4s ease;
}

.mobile-menu a {
    text-decoration: none;
    color: #1B1616;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.mobile-menu a:hover {
    color: #318C89;
}

.mobile-menu #page-selected {
    color: #318C89;
}

.open {
    transform: translateY(0);
}

@media (min-width: 768px) {
    header .navbar {
        display: flex;
    }

    header .mobile-navbar {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    header .navbar .menus a {
        margin: 0 10px;
    }

    header .navbar .menus a:first-child {
        margin: 0 10px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 10px;
    }
}

@media (max-width: 768px) {
    header .navbar {
        display: none;
    }

    header .mobile-navbar {
        display: flex;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    header .navbar .menus a {
        margin: 0 8px;
    }

    header .navbar .menus a:first-child {
        margin: 0 8px 0 0;
    }

    header .navbar .menus a:last-child {
        margin: 0 0 0 8px;
    }
}

/* READ MORE */

.read-more {
    position: relative;
    /* max-width: 1500px; */
    width: 100%;
    height: 92vh;
    height: 92svh;
    margin: 74px 0 0;
    background-image: url('../../Image/Read-More.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden !important;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #033E42, #043f4317);
    z-index: 0;
}

.read-more h1 {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    text-wrap: wrap;
    margin: 0;
    z-index: 1;
    transform: translateX(-200px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.read-more h1.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.read-more p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    text-wrap: wrap;
    padding: 0;
    margin: 20px 0 0 0;
    line-height: 30px;
    z-index: 1;
}

.read-more a {
    position: relative;
    color: #0B0909;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    padding: 12px 30px;
    background-color: #FFFFFF;
    border-radius: 50px;
    user-select: none;
    margin-top: 25px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.read-more a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    /*animation: read-more-btn 0.8s infinite ease;*/
}

@keyframes read-more-btn {
    0% {
        outline: 0px solid rgba(255, 255, 255, 0.6);
    }

    20% {
        outline: 3px solid rgba(255, 255, 255, 0.6);
        opacity: 1;
    }

    40% {
        outline: 6px solid rgba(255, 255, 255, 0.6);
        opacity: 0.8;
    }

    60% {
        outline: 9px solid rgba(255, 255, 255, 0.6);
        opacity: 0.6;
    }

    80% {
        outline: 12px solid rgba(255, 255, 255, 0.6);
        opacity: 0.4;
    }

    100% {
        outline: 15px solid rgba(255, 255, 255, 0.6);
        opacity: 0.2;
    }
}

.read-more a:active {
    transform: scale(0.98);
}

.read-more a:hover {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .read-more h1 {
        font-size: 2rem;
    }

    .read-more p {
        font-size: 1rem;
    }

    .read-more a {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .read-more h1 {
        font-size: 50px;
    }
}

@media (max-width: 400px) {
    .read-more h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .read-more a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Latest News and Activities */

.latest-news {
    /* max-width: 1500px; */
    width: 100%;
    margin-top: 80px;
    overflow: hidden !important;
}

.latest-news::-webkit-scrollbar {
    display: none;
}

.latest-news h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.large-latest-news a {
    text-decoration: none;
}

.large-latest-news img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 460px;

}

.large-latest-news h3 {
    color: #17181F;
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0;
    line-height: 40px;
}

.large-latest-news p {
    color: #3F4045;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-height: 210px;
    min-height: 210px;
    overflow: hidden;
}

.small-latest-news {
    transform: translateX(200px);
    opacity: 0;
    visibility: none;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.8s ease-in-out;
}

.small-latest-news.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.small-latest-news a {
    text-decoration: none;
}

.small-latest-news .info h4 {
    color: #17181F;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
    padding: 0 10px 0 20px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.small-latest-news .info p {
    color: #3F4045;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin: 20px 0 0 0;
    padding: 0;
    padding: 0 10px 0 20px;
}

.small-latest-news img {
    width: 220px;
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
}

.latest-news hr {
    background-color: #DEDEDE;
    width: 100%;
    height: 1px;
    margin: 25px 0;
    opacity: 0.5;
}

.latest-news .hr-control {
    padding-left: 20px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .large-latest-news h3 {
        font-size: 37px;
    }

    .large-latest-news p {
        font-size: 22px;
    }

    .small-latest-news .info h4 {
        font-size: 25px;
    }

    .small-latest-news .info p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {

    .latest-news {
        margin-top: 40px;
    }

    .first-small-news {
        margin-top: 60px;
    }

    .small-latest-news .info h4 {
        padding: 0 10px 0 0;
        font-size: 30px;
    }

    .small-latest-news .info p {
        padding: 0 10px 0 0;
        font-size: 18px;
    }

    .small-latest-news img {
        width: 180px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .large-latest-news h3 {
        font-size: 30px;
    }

    .large-latest-news p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .latest-news {
        margin-top: 30px;
    }

    .latest-news h2 {
        font-size: 1.5rem;
    }

    .large-latest-news h3 {
        font-size: 1.6rem;
        line-height: 40px;
    }

    .large-latest-news p {
        font-size: 1rem;
    }

    .small-latest-news a {
        flex-direction: column-reverse;
    }

    .latest-news hr {
        display: none;
    }

    .small-latest-news {
        margin-top: 30px;
    }

    .large-latest-news p {
        margin-bottom: 0;
    }

    .first-small-news {
        margin-top: 0;
    }

    .small-latest-news .info h4 {
        font-size: 1.2rem;
        line-height: 35px;
    }

    .small-latest-news .info p {
        font-size: 1rem;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .latest-news {
        margin-top: 20px;
    }

    .large-latest-news h3 {
        font-size: 1.2rem;
        line-height: 32px;
        margin-bottom: 5px;
    }

    .small-latest-news {
        flex-direction: column-reverse;
    }

    .latest-news h2 {
        font-size: 1.4rem;
        line-height: 40px;
        margin: 5px 0 25px;
    }

    .latest-news {
        padding: 0 20px;
    }

    .small-latest-news a {
        flex-direction: row;
    }

    .small-latest-news img {
        width: 100%;
        margin-bottom: 10px;
    }

    .hr-control {
        display: none;
    }

    .small-latest-news .info h4 {
        font-size: 1.1rem;
        line-height: 28px;
    }

    .small-latest-news .info p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 24px;
    }

    .latest-news hr {
        display: block;
    }
}

@media (width >=992px) and (width <=1199px) {
    .small-latest-news {
        height: 210px;
    }

    .latest-news hr {
        width: 100%;
        margin: 5px 0 30px;
    }
}

@media (width >=1200px) and (width <=1399px) {
    .small-latest-news {
        height: 210px;
    }

    .latest-news hr {
        width: 100%;
        margin: 5px 0 30px;
    }
}

@media (width >=1400px) {
    .small-latest-news {
        height: 220px;
    }

    .latest-news hr {
        width: 100%;
        margin: 15px 0 60px;
    }
}

/* Foreign Articles */

.foreign-articles {
    /* max-width: 1500px; */
    width: 100%;
    min-height: 65vh;
    margin-top: 80px;
    overflow: hidden !important;
    padding-left: 4px;
    padding-right: 4px;
}

.foreign-articles::-webkit-scrollbar {
    display: none;
}

.foreign-articles h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.large-article {
    width: 100%;
    background-color: #FFFFFF;
    padding: 15px;
    border: 2px solid #E8E8E9;
    border-radius: 20px;
}

.first-large-article {
    transform: translate(-100px, 100px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.last-large-article {
    transform: translate(100px, 100px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.first-large-article.show,
.last-large-article.show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.large-article a {
    text-decoration: none;
}

.large-article img {
    width: 100%;
    border-radius: 15px;
    height: 380px;
    object-fit: cover;
}

.large-article h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0F0F0F;
    line-height: 35px;
    margin-bottom: 8px;
    text-wrap: wrap;
    height: 100px;
    overflow: hidden;
    margin-top: 5px;
}

.small-article {
    background-color: #FFFFFF;
    padding: 15px;
    border: 2px solid #E8E8E9;
    border-radius: 10px;
    margin-top: 30px;
    transform: translateY(100px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.small-article.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.small-article a {
    text-decoration: none;
}

.small-article img {
    width: 100%;
    border-radius: 10px;
    height: 190px;
    object-fit: cover;
}

.small-article p {
    font-size: 20px;
    font-weight: 600;
    color: #0F0F0F;
    line-height: 20px;
    margin-bottom: 0px;
    height: 100px;
    overflow: hidden;
    margin-top: 10px;
}

.small-article:hover,
.large-article:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .small-article {
        min-height: 340px !important;
    }
}

@media (max-width: 992px) {
    #last-large-article {
        margin-top: 30px;
    }

    .foreign-articles {
        margin-top: 40px;
    }

    .large-article h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .foreign-articles {
        margin-top: 30px;
    }

    .last-small-article {
        display: none;
    }

    .small-article {
        height: auto !important;
    }

    .foreign-articles h2 {
        margin: 5px 0 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {

    .foreign-articles h2 {
        line-height: 40px;
        font-size: 1.4rem;
    }

    .foreign-articles {
        padding: 0 20px;
    }

    .small-article p {
        font-size: 20px;
        margin: auto 0;
    }

    .large-article h3 {
        font-size: 1rem;
        line-height: 30px;
    }
}

@media (max-width: 478px) {
    .small-article p {
        font-size: 16px;
    }
}

/* LOCAL TEAM */

.local-team {
    /* max-width: 1500px; */
    width: 100%;
    margin-top: 80px;
    background-color: #F2F6F6;
    overflow: hidden !important;
}

.local-team::-webkit-scrollbar {
    display: none;
}

.local-team h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 20px;
}

.local-team .team {
    position: relative;
    width: 100%;
    height: 686px;
    background-image: url('../../Image/Team/1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
}

.team-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.team-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.small-team {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.small-team-first {
    transform: translateX(-100px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.small-team-second {
    transform: translateY(50px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.small-team-third {
    transform: translateX(100px);
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.small-team-first.show,
.small-team-second.show,
.small-team-third.show {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.small-team .small-team-img {
    padding: 10px;
    border-radius: 16px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.small-team .small-team-img img {
    width: 100%;
    border-radius: 12px;
    height: 280px;
    object-fit: cover;
}

.small-team p {
    font-size: 28px;
    font-weight: 500;
    color: #111010;
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .small-team p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .local-team h2 {
        font-size: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.4rem;
    }

    .team-info p {
        font-size: 1rem;
        padding-right: 20px;
    }

    .small-team p {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .local-team {
        padding: 0 20px;
    }

    .local-team h2 {
        font-size: 1.4rem;
    }

    .small-team p {
        font-size: 1rem;
    }

    .small-team {
        margin-top: 15px;
    }
}

/* GALLERY */

.gallery {
    /* max-width: 1500px; */
    width: 100%;
    margin-top: 80px;
    overflow: hidden !important;
}

.gallery h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-image {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
}

.zoom {
    opacity: 0;
    visibility: none;
    transition: all 0.8s ease-in-out;
}

.zoom.show {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
    opacity: 1;
    visibility: visible;
}


.gallery-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.gallery .show-more {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.gallery a {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #C8D4D4;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #0B0909;
    transition: all 0.5s ease;
}

.gallery a:hover {
    background-color: #318C89;
    border-color: #318C89;
    color: #FFFFFF;
    transform: scale(0.98);
}

.gallery a:active {
    transform: scale(0.98);
}

@media (min-width: 768px) and (max-width: 992px) {
    .gallery-image img {
        object-fit: cover;
        height: 350px;
    }

    .gallery {
        margin-top: 40px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .gallery-image img {
        object-fit: cover;
        height: 300px;
    }

    .gallery .gallery-image:last-child {
        display: none;
    }

    .gallery {
        margin-top: 30px;
    }

    .gallery h2 {
        font-size: 1.5rem;
    }

    .gallery a {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 0 20px;
    }

    .gallery .gallery-image:last-child {
        display: none;
    }

    .gallery-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .gallery {
        margin-top: 20px;
    }

    .gallery h2 {
        font-size: 1.4rem;
    }

    .gallery a {
        font-size: 0.9rem;
    }

    .gallery .show-more {
        margin-top: 15px;
    }
}

/* MAGAZINE */
.magazine {
    /* max-width: 1500px; */
    width: 100%;
    margin-top: 80px;
    overflow-x: hidden;
}

.magazine h2 {
    display: block;
    color: #010202;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    padding: 10px;
    border-radius: 16px;
    background-color: #DEECEC;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-slide {
    width: auto;
    max-height: 100%;
    height: 380px;
}

.swiper-button-disabled {
    display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-next,
.swiper-button-prev {
    width: auto;
    height: auto;
}

.swiper-button-prev button,
.swiper-button-next button {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 0;
    outline: 0;
    background-color: rgba(24, 61, 62, 0.5);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next button {
    margin-right: 30px;
}

.swiper-button-prev button {
    margin-left: 30px;
}

.swiper-button-prev button img {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .magazine {
        margin-top: 40px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .swiper-slide {
        width: 45%;
    }

    .magazine {
        margin-top: 30px;
    }

    .magazine h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .magazine {
        padding: 0 20px;
        margin-top: 20px;
    }

    .swiper-slide {
        width: 80%;
    }

    .swiper-button-next button {
        margin-right: 10px;
    }

    .swiper-button-prev button {
        margin-left: 10px;
    }

    .magazine h2 {
        font-size: 1.4rem;
    }
}


/* Footer */
footer {
    width: 100%;
    background-color: #FEFEFE;
    overflow-x: clip;
    display: block;
    margin-top: 30px;
    padding: 20px 30px 15px;
    box-shadow: 0 8px 10px 4px rgba(0, 0, 0, 0.35);
}

.gallery-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-height: 150px;
    color: #FFFFFF;
    background-color: #1b1616c4;
    padding: 10px 15px;
    border-radius: 5px;
    line-height: 27px;
    font-size: 1rem;
    font-weight: 400;
    z-index: 30;
    overflow: auto;
}

.gallery-text::-webkit-scrollbar {
    width: 15px;
    background-color: #1b1616;
}

.gallery-text::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 992px) {

    .gallery-text {
        font-size: 0.9rem;
    }
}


@media (min-width: 576px) and (max-width: 768px) {

    .gallery-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {

    .gallery-text {
        font-size: 0.8rem;
    }

}