html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.header-offset {
    scroll-margin-top: 90px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 0 80px !important;
}

@media (max-width: 768px) {
    .swiper {
        padding: 0 50px !important;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: black !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #055F86 !important;
}

.mission-item {
    border-radius: 7px;
    background-color: #3B6E651F;
    width: 64px;
    height: 64px;
    justify-content: center;
    padding: 17px;
    text-align: center;
}

.strategy-item {
    border: 2px solid white;
    border-radius: 14px;
    padding: 24px;
}


.icon-container {
    background: linear-gradient(94.24deg, #3A6E66 3.3%, #065F85 97.41%);
    width: 313px;
    height: 255px;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.icon-border {
    background-color: white;
    width: 104px;
    height: 104px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.initiative-card-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.container {
    transition: all 0.5s ease-in-out;
}

.card {
    width: 313px;
    min-height: 351px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: visible;
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.card .icon-container {
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.card .card-title {
    position: absolute;
    width: 100%;
    transform: translateY(283px);
    transition: all 0.5s ease-in-out;
}

.card .content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.card.expanded {
    width: 1200px;
    height: 500px;
}

.card.expanded .icon-container {
    width: 313px;
    height: 255px;
    border-radius: 10px;
    z-index: 3;
    transform: translate(43px, -100px);
    transition: all 0.5s ease-in-out;
}

:dir(rtl) .card.expanded .icon-container {
    transform: translate(-43px, -100px)
}

.card-title{
    padding: 0px 10px;
}

.card.expanded .card-title {
    left: 350px;
    width: 100%;
    position: relative;
    transform: translateY(150px);
    transition: all 0.5s ease-in-out;
}

:dir(rtl) .card.expanded .card-title {
    left: auto;
    right: 350px;
}

.card.expanded .content {
    opacity: 1;
    padding: 38px;
    width: 100%;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}

.card.hidden {
    opacity: 0;
}

.card.zoom-in {
    animation: zoomIn 1s forwards;
}

.social-icon {
    width: 39px;
    height: 39px;
    text-align: center;
    align-content: center;
    border-radius: 3px;
    background-color: #FFFFFF14;
}

.back-button,
.member-card {
    max-width: 95rem;
}

.zoom-in {
    animation: zoomIn 0.4s ease-out forwards;
}

.zoom-out {
    animation: zoomOut 0.4s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: all 0.3s linear;
    position: relative;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg);
    top: -10px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    padding-top: 60px;
}

.mobile-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.display-mobile-menu {
    display: flex;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        opacity: 1;
    }

    .logo {
        order: 2;
    }

    .mobile-logo{
        display: block;
    }
}

.rtl-rotate {
    transform: rotate(180deg);
}

html,
body {
    overflow-x: hidden;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .strategy-item {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .title {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .card.expanded .icon-border {
        width: 75px;
        height: 75px;

        img {
            padding: 14px;
        }
    }

    .card.expanded .icon-container {
        width: 170px;
        height: 150px;
        transform: translate(20px, -50px);
    }

    :dir(rtl) .card.expanded .icon-container {
        transform: translate(-20px, -50px);
    }


    :dir(rtl) .card.expanded .card-title {
        left: auto;
        right: 170px;
    }

    .card.expanded .card-title {
        left: 180px;
        transform: translateY(100px);
    }
}