/* home start */

.color-red {
    color: #ea1c24 !important;
}

.color-blue {
    color: #06065c !important;
}

form.custom input,
form.custom select,
form.custom textarea {
    border: none;
    border-bottom: 2px solid black;
    border-radius: 0;
    padding: 10px 0;
    color: black;
    font-size: 24px;
    font-weight: bold;
}

form.custom input::placeholder,
form.custom select::placeholder,
form.custom textarea::placeholder {
    color: black;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.6;
}

form.custom input:focus,
form.custom select:focus,
form.custom textarea:focus {
    border-bottom: 2px solid black;
    box-shadow: none;
}

.link-wrapper.submit-btn {
    margin-left: auto;
    margin-right: auto;
    border-top: 0;
    background-color: #08bb50;
    padding: 15px 40px;
    width: 200px;
    border-radius: 20px;
    z-index: 19;
}

.link-wrapper.submit-btn a {
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.link-wrapper.submit-btn a:hover {
    color: white;
    text-decoration: none;
}

.link-wrapper.submit-btn a::after {
    font-size: 36px;
    top: 117%;
    right: -35%;
}

.program .top-banner .link-wrapper.submit-btn {
    padding: 10px 20px;
    border-radius: 10px;
    width: 180px;
}

.program .top-banner .link-wrapper.submit-btn a {
    font-size: 22px;
}

.program .top-banner .link-wrapper.submit-btn a::after {
    font-size: 34px;
    top: 120%;
    right: -30%;
}

select.custom {
    padding: 15px 60px;
    appearance: none;
    background-color: #eff0f1;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
}

select.custom:focus-visible {
    outline: none;
}

.navbar {
    position: fixed;
    z-index: 999;
    height: 100px;
    background-color: white;
    top: 0;
}

.navbar .navbar-brand img {
    height: 65px;
}

.navbar .nav-item {
    font-size: 18px;
    margin-left: 25px;
}

.navbar .nav-item .nav-link {
    font-weight: 600;
    color: #000;
}

.navbar .nav-item .nav-link:hover {
    color: #ea1c24;
}

.navbar .nav-item .nav-link.active {
    color: #ea1c24;
    font-weight: bold;
}

.navbar .nav-item .nav-link i {
    margin-right: 5px;
}

.navbar .dropdown-menu {
    border: none;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    width: 180px;
}

.dropdown-menu[data-bs-popper] {
    left: -80%;
}

.navbar .dropdown-item:focus,
.dropdown-item:hover {
    background-color: white;
    color: #ea1c24;
    font-weight: bold;
}

.home {
    margin-top: 100px;
}

.home .banner .swiper {
    height: 600px;
    width: 100%;
}

.home .banner .swiper .swiper-slide {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home .banner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 50px);
    left: auto;
    color: white;
}

.home .banner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 50px);
    right: auto;
    color: white;
}

.home .banner .swiper .big-title h1,
.home .banner .swiper .big-title {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    color: white;
    padding-left: 25px;
    white-space: nowrap;
}

.home .banner .swiper .subtitle {
    font-size: 28px;
    font-weight: bold;
    color: white;
    padding-left: 25px;
    white-space: nowrap;
}

.home .banner .swiper .description {
    font-size: 18px;
    color: white;
    padding-left: 25px;
    padding-top: 15px;
}

.home .banner .swiper .link-wrapper {
    border-top: 1px solid #ea1c24;
    margin-left: 25px;
    margin-top: 30px;
    width: 195px;
}

.home .banner .swiper .link-wrapper a {
    position: relative;
    font-size: 25px;
    color: #ea1c24;
    text-decoration: none;
}

.home .banner .swiper .link-wrapper a::after {
    content: "\2197";
    font-size: 40px;
    position: absolute;
    top: 125%;
    right: -25%;
    transform: translateY(-100%);
    transition: transform 1s;
}

.home .banner .swiper .link-wrapper a:hover::after {
    animation: arrowAnimation 1s forwards;
}

@keyframes arrowAnimation {
    0% {
        transform: translateY(-100%);
    }
    25% {
        transform: translateY(-150%);
        opacity: 0;
    }
    50% {
        transform: translateY(-100%);
        opacity: 0;
    }
    51% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(-100%);
        opacity: 1;
    }
}

.home .title {
    font-size: 45px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.home .description {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.home .explore .description {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.link-wrapper {
    border-top: 1px solid #ea1c24;
    margin-top: 30px;
    width: 170px;
}

.link-wrapper a {
    position: relative;
    font-size: 25px;
    color: #ea1c24;
    text-decoration: none;
    font-weight: 600;
}

.link-wrapper a::after {
    content: "\2197";
    font-size: 40px;
    position: absolute;
    top: 125%;
    right: -25%;
    transform: translateY(-100%);
    transition: transform 1s;
    font-weight: normal;
}

.link-wrapper a:hover::after {
    animation: arrowAnimation 1s forwards;
}

.link-wrapper.apply-now {
    border-top: none;
    background-color: #08bb50;
    padding: 15px 40px;
    width: 230px;
    border-radius: 15px;
    margin-top: 50px;
    z-index: 19;
}

.link-wrapper.apply-now a {
    color: white;
    font-size: 24px;
}

.link-wrapper.apply-now a::after {
    font-size: 36px;
    top: 120%;
    right: -30%;
}

.link-wrapper.apply-now:hover {
    color: white;
}

.link-wrapper.apply-now {
    cursor: pointer;
}

.home .explore iframe {
    width: 100%;
    height: 350px;
    border-radius: 25px;
}

.swiper-container-free-mode {
    overflow-x: hidden;
}

.swiper-container-free-mode .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.home .channel .swiper-container-free-mode .swiper-slide {
    width: 220px;
    height: 210px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 25px;
    border-radius: 20px;
}

.home .channel .swiper-container-free-mode .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 20px;
}

.home .channel .swiper-container-free-mode .swiper-slide .name {
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 9;
    text-align: center;
    line-height: 1.1;
}

.home .membership {
    background-color: #06065c;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    padding-bottom: 120px !important;
}

.home .membership .title {
    margin-top: 100px;
    color: white;
    text-align: center;
}

.home .membership .table-wrapper {
    padding: 75px 50px;
    background-color: white;
    border-radius: 25px;
}

.home .membership .table-wrapper .top-row {
    border: none;
}

.home .membership .table-wrapper .top-row th {
    border: none;
}

.home .membership .table-wrapper .top-row .popular {
    font-size: 14px;
    text-align: center;
    background-color: #ea1c24;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 5px 0;
}

.home .membership .table-wrapper table thead tr th {
    font-size: 22px;
    font-weight: bold;
    color: #06065c;
    padding: 10px 15px;
    white-space: nowrap;
}

.home .membership .table-wrapper table thead tr th:first-child {
    border-left: none;
}

.home .membership .table-wrapper table thead tr th:last-child {
    border-right: none;
}

.home .membership .table-wrapper table tbody tr.category {
    background-color: #06065c;
}

.home .membership .table-wrapper table tbody tr td {
    font-size: 18px;
    color: black;
    font-weight: 400;
    padding: 10px 15px;
}

.home .membership .table-wrapper table tbody tr td:not(:first-child) {
    font-weight: bold;
}

.home .membership .table-wrapper table tbody tr.category {
    cursor: pointer;
}

.home .membership .table-wrapper table tbody tr.category td {
    font-weight: bold;
    color: white;
    font-size: 22px;
}

.home .membership .table-wrapper table tbody tr td:first-child {
    border-left: none;
}

.home .membership .table-wrapper table tbody tr td:last-child {
    border-right: none;
}

.home .membership .table-wrapper table tbody .fa-circle-check {
    color: rgb(63, 236, 63);
    font-size: 28px;
}

.home .membership .table-wrapper table tbody .fa-circle-xmark {
    color: lightgrey;
    font-size: 28px;
}

.home .membership .table-wrapper table tfoot tr,
.home .membership .table-wrapper table tfoot td {
    border: none;
}

.home .membership .table-wrapper table tfoot td {
    padding: 50px 25px;
    padding-bottom: 0;
}

.home .membership .table-wrapper table tfoot .btn {
    background-color: #309acc;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 45px;
    border-radius: 10px;
}

.home .membership .table-wrapper table tfoot .btn:hover {
    background-color: #ea1c24;
}

.home .event .link-wrapper {
    margin-top: 50px;
    width: 115px;
}

.home .event .link-wrapper a::after {
    right: -40%;
}

.home .event .event-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.home .card {
    border: none;
    height: 100%;
    background-color: #eff0f1;
    border-radius: 25px;
}

.home .card .card-body {
    padding: 0;
}

.home .card .image-wrapper {
    width: 100%;
    height: 280px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: relative;
    overflow: hidden;
}

.background-image-blur {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    /* width: 100%; */
    height: 100%;
    filter: blur(10px);
}

.home .card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: absolute;
    top: 0;
}

.home .card .details-wrapper {
    padding: 25px;
    padding-bottom: 35px;
}

.home .card .details-wrapper .name {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    margin-top: 20px;
}

.home .card .details-wrapper .link-wrapper {
    width: 165px;
    margin-top: 20px;
}

.home .card .details-wrapper .link-wrapper a::after {
    right: -25%;
}

.home .experts {
    background-color: #e5e5e5;
    border-top-left-radius: 12%;
    border-top-right-radius: 12%;
}

.home .experts .container {
    padding-top: 100px;
}

.home .experts .title ~ .link-wrapper {
    margin-top: 20px;
    width: 115px;
}

.home .experts .title ~ .link-wrapper a::after {
    right: -40%;
}

.home .experts .experts-wrappper {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.home .experts .experts-wrappper .link-wrapper {
    border-top: 1px solid rgb(63, 236, 63);
    width: 100px;
}

.home .experts .experts-wrappper .link-wrapper a {
    color: rgb(63, 236, 63);
}

.home .experts .experts-wrappper .link-wrapper a::after {
    right: -30%;
}

.home .experts hr {
    margin-top: 100px;
    margin-bottom: 100px;
    border: 1px solid #000;
}

.home .experts .partners-wrapper .title {
    margin-bottom: 10px;
}

.home .experts .partners-wrapper .link-wrapper {
    margin-top: 50px;
}

.home .experts .partners-wrapper .logo-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 700px;
}

.home .experts .partners-wrapper .logo-wrapper .item {
    height: 150px;
    width: 25%;
    border-radius: 15px;
    background-color: white;
    padding: 50px 30px;
}

.home .experts .partners-wrapper .logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.home .experts .partners-wrapper .logo-wrapper .item-2,
.home .experts .partners-wrapper .logo-wrapper .item-5 {
    width: 40%;
}

.home .blogs {
    background-color: #4b4b4b;
}

.home .blogs .title {
    color: white;
}

.home .blogs .blog-card {
    border: none;
    border-radius: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    width: 100%;
    position: relative;
    padding: 50px;
}

.home .blogs .blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 25px;
}

.home .blogs .blog-card .card-body {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
    align-content: flex-end;
}

.home .blogs .blog-card .details {
    border-top: 2px solid white;
    z-index: 9;
    padding-top: 15px;
    width: 100%;
    position: relative;
}

.home .blogs .blog-card .details::after {
    content: "\2197";
    font-size: 60px;
    position: absolute;
    top: -10%;
    right: 5%;
    color: white;
}

.home .blogs .blog-card .details .title {
    z-index: 9;
    font-size: 20px;
    margin-bottom: 5px;
}

.home .blogs .blog-card .details .description {
    z-index: 9;
    font-size: 18px;
    color: white;
    margin-bottom: 0;
}

.home .story .story-details ul li::marker {
    color: #ea1c24;
    font-size: 32px;
}

.home .story .story-details .name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.home .story .story-details .fields {
    font-size: 24px;
    font-weight: 600;
    color: #ea1c24;
    margin-bottom: 15px;
}

.home .story .story-details .company-logo {
    margin: 10px 0;
}

.home .story .story-details .company-logo img {
    width: 100%;
    height: 100%;
}

.home .story .story-details .description {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.home .story .story-details .image-wrapper {
    width: 300px;
    height: 350px;
}

.home .story .story-details .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .map {
    height: 600px;
    width: 100%;
    margin: 100px 0;
    background-color: #d9d9d9;
    padding: 30px 0;
}

.home .map .background {
    height: 100%;
    background-position: 300px 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.home .map .background .global-member-box {
    position: absolute;
    top: 40px;
    left: 80px;
    background-color: rgb(255, 255, 255, 0.4);
    border: 2px solid black;
    border-radius: 15px;
    height: 250px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}

.home .map .background .global-member-box i {
    font-size: 40px;
    color: #ea1c24;
}

.home .map .background .global-member-box .count {
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
}

.home .map .background .global-member-box .text {
    padding-top: 15px;
    font-size: 18px;
    font-weight: 500;
}

.home .member-benefits .image-wrapper {
    width: 100%;
    height: 100%;
    padding: 0 70px;
}

.home .member-benefits .image-wrapper img {
    width: 100%;
    height: 100%;
}

.home .member-benefits .benefit {
    font-size: 20px;
    font-weight: 600;
    padding: 40px 0;
    border-bottom: 1px solid grey;
    position: relative;
}

.home .member-benefits .benefit::after {
    content: "\2192";
    font-size: 50px;
    position: absolute;
    top: 15%;
    right: 0;
    font-weight: normal;
    color: #ea1c24;
}

.home .join {
    padding-top: 50px;
    padding-bottom: 300px;
    position: relative;
}

.home .join .description {
    font-weight: 600;
}

.home .join .link-wrapper {
    margin: auto;
    margin-top: 60px;
    width: 120px;
}

.footer {
    background-color: #d9d9d9;
    padding: 80px 0;
}

.footer .logo-wrapper {
    height: 100%;
    width: 300px;
    text-align: center;
}

.footer .logo-wrapper img {
    width: 180px;
    height: 180px;
}

.footer .logo-wrapper .name {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
}

.footer .logo-wrapper .info {
    font-size: 14px;
    font-weight: 600;
}

.footer .details {
    padding: 0 30px;
}

.footer .details .title {
    color: #06065c;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.footer .details .subtitle {
    color: #06065c;
    font-size: 16px;
    font-weight: bold;
}

.footer .details .description {
    font-size: 18px;
    color: #363535;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer .details .image-wrapper {
    font-size: 18px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.footer .details .image-wrapper img {
    margin-right: 10px;
    height: 30px;
    width: 30px;
}

.footer .details .small-description {
    padding-top: 20px;
    font-size: 12px;
    color: #363535;
    font-weight: 500;
}

.home .footer {
    padding-top: 450px;
}

.home .float {
    position: absolute;
    bottom: -350px;
    left: 0;
    height: 550px;
    width: 100%;
}

.home .float .block {
    width: 100%;
    height: 100%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: start;
    padding: 50px 100px;
    padding-right: 300px;
    display: flex;
    align-items: center;
}

.home .float .block .title {
    color: white;
}

.home .float .block .description {
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.home .float .block .link-wrapper {
    margin-left: 0;
    border: none;
    background-color: #08bb50;
    width: 235px;
    padding: 15px 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.home .float .block .link-wrapper a {
    color: white;
}

/* home end */

/* aboutus start */

.top-banner {
    width: 100%;
    height: 550px;
    margin-top: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
    padding: 100px 0;
}

.top-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.top-banner h1 {
    color: white;
    font-size: 72px;
    z-index: 9;
    position: relative;
}

h2.title {
    font-size: 42px;
    font-weight: bold;
}

.aboutus .about {
    padding-bottom: 200px;
    padding-top: 50px;
    position: relative;
}

.aboutus .about .float-video {
    position: absolute;
    bottom: -500px;
    right: 0;
    height: 600px;
    width: 100%;
}

.aboutus .about .float-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.aboutus .description {
    font-weight: 600;
    color: #363535;
    font-size: 20px;
}

.aboutus .vision {
    background-color: #06065c;
    padding-top: 600px;
    padding-bottom: 80px;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
}

.aboutus .vision .image-wrapper {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.aboutus .vision .image-wrapper img {
    width: 100%;
    height: 100%;
}

.aboutus .vision .content {
    padding: 30px;
}

.aboutus .vision .content .title {
    color: white;
    font-size: 36px;
    font-weight: bold;
    padding-top: 20px;
}

.aboutus .vision .content .description {
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
}

.aboutus .vision .content .subtitle {
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 10px;
}

.aboutus .vision .content .subtitle img {
    margin-right: 15px;
}

.aboutus .differently .image-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.aboutus .differently .image-wrapper img {
    width: 100%;
    height: 100%;
}

.aboutus .differently .block {
    padding: 30px 45px;
    background-color: #d9d9d9;
    border-radius: 20px;
    margin-bottom: 20px;
}

.aboutus .differently .block td:first-child {
    display: flex;
    margin-top: 10px;
}

.aboutus .differently .block td:not(:first-child) {
    font-size: 22px;
    font-weight: 400;
    padding-left: 20px;
}

.aboutus .focus .content .title {
    font-size: 32px;
    font-weight: bold;
}

.aboutus .focus .content .details {
    padding: 100px 80px;
}

.aboutus .focus .content .business {
    background-color: #eff0f1;
}

.aboutus .focus .content .business .title {
    color: #ea1c24;
}

.aboutus .focus .content ul {
    list-style: none;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 500;
    padding-left: 40px;
}

.aboutus .focus .content ul li {
    position: relative;
}

.aboutus .focus .content ul li:before {
    content: "\2192";
    position: absolute;
    top: -13px;
    left: -40px;
    font-size: 36px;
}

.aboutus .focus .content .business ul li:before {
    color: #ea1c24;
}

.aboutus .focus .content .market {
    background-color: #363535;
    color: white;
}

.aboutus .focus .content .funding {
    background-color: #06065c;
    color: white;
}

.community .power-teams {
    background-color: #d9d9d9;
    border-bottom-left-radius: 10%;
    border-bottom-right-radius: 10%;
    padding-bottom: 150px;
}

.community .power-teams .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.community .power-teams .card-wrapper .card {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #d9d9d9;
    border: none;
    perspective: 1000px;
    /* padding: 60px 30px; */
    /* text-align: center;
    display: flex;
    justify-content: end; */
}

/* .community .power-teams .card-wrapper .card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 25px;
} */

.community .power-teams .card-wrapper .card .name {
    font-size: 36px;
    font-weight: bold;
    color: white;
    z-index: 9;
}

.aboutus .partners {
    margin-top: 100px;
    margin-bottom: 100px;
}

.aboutus .partners .logo-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin-top: 100px;
}

.aboutus .partners .logo-wrapper .logo {
    width: 100%;
    height: 75px;
}

.aboutus .partners .logo-wrapper .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aboutus .gallery .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.aboutus .gallery .gallery-wrapper .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.aboutus .gallery .gallery-wrapper .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aboutus .gallery .gallery-wrapper .image img:hover {
    transform: scale(1.1);
}

.testimonial .story-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial .story-wrapper .card {
    border: none;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.testimonial .story-wrapper .details .image-wrapper {
    width: 100%;
    height: 300px;
}

.testimonial .story-wrapper .details .image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: contain;
}

.testimonial .story-wrapper .details h3 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 25px;
}

.testimonial .story-wrapper .details p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
}

.testimonial .story-wrapper .link-wrapper {
    margin-top: 10px;
}

.story .details-wrapper {
    width: 800px;
    padding-top: 100px;
}

.story .details-wrapper .main-image {
    width: 100%;
    height: 100%;
    text-align: center;
}

.story .details-wrapper .main-image img {
    width: 320px;
    height: 320px;
    border-radius: 25px;
}

.story .details-wrapper .main-image h2 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
}

.story .details-wrapper .main-image p {
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
}

.story .details-wrapper .description {
    text-align: justify;
}

.aboutus .team-wrapper,
.community .team-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.aboutus .team-wrapper .card,
.community .team-wrapper .card {
    border: none;
    margin-top: 50px;
}

.aboutus .team-wrapper .image-wrapper,
.community .team-wrapper .image-wrapper {
    width: 100%;
    height: 300px;
}
.community .first-team-wrapper .image-wrapper img,
.aboutus .team-wrapper .image-wrapper img,
.community .team-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: contain;
    object-position: bottom;
    background-color: #b2c4d2;
}

.aboutus .team-wrapper h3,
.community .first-team-wrapper h3,
.community .team-wrapper h3 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 25px;
}

.aboutus .team-wrapper p,
.community .first-team-wrapper p,
.community .team-wrapper p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
}

.program .pathway {
    background-color: #d9d9d9;
    border-radius: 15px;
    padding: 30px 50px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.program .pathway .right {
    padding-left: 20px;
}

.program .pathway .left {
    display: flex;
    margin-top: 10px;
}

.program .pathway .left img {
    width: 35px;
    height: 28px;
}

.program .mission {
    background-color: #06065c;
    padding-top: 100px;
    padding-bottom: 200px;
    border-bottom-right-radius: 8%;
}

.program .mission .subtitle {
    color: white;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}

.program .mission .rating-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.program .mission .rating-wrapper .card {
    width: 100%;
    height: 300px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.program .mission .rating-wrapper .card .star i {
    font-size: 48px;
    color: #ed1c24;
}

.program .mission .rating-wrapper .card .tier-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 50px;
}

.program .mission .rating-wrapper .card .arr {
    font-size: 24px;
    font-weight: 400;
}

.program-wrapper .col-6 {
    padding: 0;
}

.program-wrapper .image-wrapper {
    width: 100%;
    height: 500px;
}

.program-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.program-wrapper .image-wrapper img.left {
    border-bottom-right-radius: 0;
}

.program-wrapper .image-wrapper img.right {
    border-top-left-radius: 0;
}

.program-wrapper .details {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.program-wrapper .details.right {
    padding-left: 70px;
}

.program-wrapper .details.left {
    padding-right: 70px;
}

.program-wrapper .details .title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 25px;
}

.program-wrapper .details .description {
    font-size: 22px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.2;
}

.program-wrapper .details .link-wrapper {
    margin-top: 100px;
}

.program .signup-block .card {
    background-color: #363535;
    padding: 50px 70px;
    border-radius: 25px;
}

.program .signup-block .card .title {
    color: white;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.program .signup-block .card .description {
    color: white;
    font-size: 28px;
    font-weight: 400;
    margin-top: 20px;
}

.program .signup-block .card .button-wrapper {
    display: flex;
    width: 100%;
}

.program .signup-block .card .button-wrapper .link-wrapper {
    border-top: none;
    background-color: #ea1c24;
    margin-right: 30px;
    padding: 15px 20px;
    border-radius: 15px;
}

.program .signup-block .card .button-wrapper .link-wrapper a {
    color: white;
}

.program .signup-block .card .button-wrapper .link-wrapper.non-member {
    width: 235px;
}

.program .signup-block .card .button-wrapper .link-wrapper.member {
    background-color: #08bb50;
}

.program .signup-block .card .button-wrapper .link-wrapper.member a::after {
    right: -35%;
}

.program .signup-block .card .image-wrapper {
    width: 100%;
    height: 550px;
    padding-left: 50px;
}

.program .signup-block .card .image-wrapper img {
    width: 100%;
    height: 100%;
}

.program .signup-form .title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 50px;
    text-align: center;
}

.program .signup-form .subtitle {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}

.program .signup-form form .required {
    border-bottom: 2px solid red;
}

.program .signup-form form .required::placeholder {
    color: red;
}

.pd-footer {
    padding: 70px 0;
    background-color: #06065c;
}

.pd-footer .title {
    color: white;
    font-size: 45px;
    font-weight: bold;
    line-height: 1.2;
}

.pd-footer .description {
    color: white;
    font-size: 28px;
    font-weight: 400;
    margin-top: 20px;
}

.pd-footer .button-wrapper {
    display: flex;
    width: 100%;
}

.pd-footer .button-wrapper .link-wrapper {
    border-top: none;
    background-color: #ea1c24;
    margin-right: 30px;
    padding: 15px 20px;
    border-radius: 15px;
}

.pd-footer .button-wrapper .link-wrapper a {
    color: white;
}

.pd-footer .button-wrapper .link-wrapper.non-member {
    width: 180px;
}

.pd-footer .button-wrapper .link-wrapper.member {
    background-color: #08bb50;
}

.pd-footer .button-wrapper .link-wrapper.member a::after {
    right: -35%;
}

.pd-footer .image-wrapper {
    width: 100%;
    height: 550px;
    padding-left: 50px;
}

.pd-footer .image-wrapper img {
    width: 100%;
    height: 100%;
}

.program .focused-industries {
    padding: 150px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    border-top-left-radius: 20%;
    border-top-right-radius: 20%;
}

.program .focused-industries .title {
    font-size: 45px;
    font-weight: bold;
    color: #363535;
    margin-bottom: 20px;
    font-style: italic;
}

.program .focused-industries .logo-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program .focused-industries .logo-wrapper .logo {
    height: 110px;
    width: 100%;
}

.program .focused-industries .logo-wrapper .logo img {
    width: 110px;
    height: 100%;
}

.program .focused-industries .logo-wrapper .title {
    font-size: 22px;
    font-weight: 600;
    color: #363535;
    font-style: normal;
    line-height: 1.2;
    padding-top: 10px;
}

.program .tier {
    padding: 150px 0;
    background-color: #06065c;
    border-top-left-radius: 13%;
    border-top-right-radius: 13%;
}

.program .tier .button-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.program .tier .button-wrapper .tier-btn {
    color: white;
    margin: 10px;
    font-size: 26px;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 200px;
    border-radius: 25px;
}

.program .tier .button-wrapper .tier-btn:focus {
    box-shadow: none;
}

.program .tier .button-wrapper .tier-btn.active {
    background-color: #ed1c24;
}

.program .tier .tier-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    row-gap: 20px;
    margin-top: 100px;
}

.program .tier .tier-content .block {
    padding: 15px 25px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    min-height: 200px;
}

.program .tier .tier-content .block .step {
    font-size: 28px;
    font-weight: bold;
}

.program .tier .tier-content .block .description {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.csr .empowers .left {
    padding-right: 50px;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.csr .title {
    font-size: 45px;
    font-weight: bold;
    color: #363535;
}

.csr .subtitle {
    color: #06065c;
    font-size: 26px;
    font-weight: 400;
    /* padding: 25px 0; */
}

.csr .description {
    font-size: 20px;
    font-weight: 400;
    color: #363535;
}

.csr .empowers {
    overflow: visible;
    height: 450px;
}

.csr .empowers img {
    width: 100%;
    height: 600px;
    border-bottom-left-radius: 50px;
    object-fit: cover;
}

.csr .market-rate {
    background-color: #06065c;
    padding: 200px 0;
}

.csr .market-rate .left img {
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.csr .market-rate .right {
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.csr .market-rate table td {
    padding: 15px;
}

.csr .market-rate table td img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.csr .market-rate table td.description {
    font-size: 18px;
    line-height: 1.2;
}

.csr .middle-banner {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: 0 -160px;
}

.csr .goals {
    padding-top: 150px;
    height: 800px;
    background-color: #06065c;
    border-bottom-right-radius: 100px;
}

.csr .goals .goals-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 75px;
}

.csr .goals .goals-wrapper .goal-card {
    background-color: #ea1c24;
    padding: 25px;
    height: 300px;
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.csr .goals .goals-wrapper .goal-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.csr .goals .goals-wrapper .goal-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.csr .goals .goals-wrapper .goal-card .title {
    font-size: 25px;
    font-weight: bold;
    color: white;
    margin-top: 30px;
    text-align: center;
}

.csr .goals .goals-wrapper .goal-card .description {
    font-size: 21px;
    font-weight: 400;
    color: white;
    margin-top: 10px;
    text-align: center;
}

.csr .what-do-we-want {
    padding-top: 300px;
    padding-bottom: 100px;
}

.csr .what-do-we-want .target-wrapper {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.csr .what-do-we-want .target-wrapper .card {
    width: 30%;
    border: none;
    padding: 30px;
}

.csr .what-do-we-want .target-wrapper .card img {
    border-radius: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.csr .what-do-we-want .target-wrapper .card .title {
    font-size: 25px;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
}

.csr .criteria {
    padding: 100px 0;
}

.csr .criteria .left {
    padding: 0 50px;
}

.csr .criteria .left img {
    width: 100%;
    height: 100%;
    min-height: 800px;
}

.csr .criteria .right {
    padding: 0 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.csr .criteria .right .ul-wrapper {
    border-bottom: 2px solid #363535;
    width: 100%;
}

.csr .criteria .right ul {
    margin-bottom: 0;
}

.csr .criteria .right ul li {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
    line-height: 1.2;
}

.csr .provide {
    background-color: #06065c;
    padding: 150px 0;
}

.csr .provide .block {
    background-color: white;
    padding: 25px 50px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.csr .provide .block img {
    width: 35px;
    height: 25px;
}

.csr .provide .block .title {
    font-size: 24px;
    font-weight: bold;
    padding-left: 15px;
}

.csr .provide .block ul {
    font-size: 20px;
    padding-top: 10px;
    font-weight: 400;
}

.csr .provide .block table td:first-child {
    display: flex;
    margin-top: 5px;
}

.csr .our-programs-section {
    padding-top: 100px;
    padding-bottom: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
}

.csr .development-pathway {
    padding: 150px 0;
}

.csr .development-pathway .pathway-wrapper {
    display: table;
    height: 350px;
    width: 100%;
    margin-top: 80px;
    border-collapse: collapse;
    margin-bottom: 150px;
}

.csr .development-pathway .pathway-wrapper .pathway-block {
    display: table-cell;
    height: 100%;
    border: 5px solid #ea1c24;
    padding: 15px 25px;
    text-align: center;
    width: 20%;
}

.csr .development-pathway .pathway-wrapper .pathway-block img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.csr .development-pathway .pathway-wrapper .pathway-block .step-title {
    font-size: 28px;
    font-weight: bold;
    padding-top: 10px;
    color: #ea1c24;
}

.csr .development-pathway .pathway-wrapper .pathway-block .step-description {
    font-size: 22px;
    font-weight: 500;
    padding-top: 10px;
    line-height: 1.2;
}

.blogs .blog-block {
    background-color: #eff0f1;
    width: 100%;
    height: 330px;
    border-radius: 25px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
}

.blogs .blog-block .image-wrapper {
    height: 330px;
    border-radius: 25px;
    position: relative;
    padding: 0;
}

.blogs .blog-block .image-wrapper .label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 50px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
    border-bottom-left-radius: 25px;
    border-top-right-radius: 24px;
    opacity: 0.8;
}

.blogs .blog-block .image-wrapper .label.free {
    background-color: #08bb50;
}

.blogs .blog-block .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.blogs .blog-block .details-wrapper {
    padding: 30px 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.blogs .blog-block .details-wrapper .date {
    font-size: 18px;
    font-weight: 600;
}

.blogs .blog-block .details-wrapper .title {
    font-size: 25px;
    font-weight: bold;
    margin: 15px 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 5px;
}

.blogs .blog-block .details-wrapper .short-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs .blog-details {
    width: 800px;
}

.blogs .blog-details .date {
    font-size: 24px;
    font-weight: 600;
    color: #06065c;
}

.blogs .blog-details h2.title {
    font-size: 40px;
    font-weight: bold;
    color: #06065c;
    padding-top: 10px;
    padding-bottom: 50px;
}

.blogs .blog-details img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 100px;
}

.blogs .blog-details .content {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 100px;
}

.contact .content-wrapper {
    padding: 150px 0;
    background-color: #06065c;
    color: white;
    font-size: 24px;
}

.contact .content-wrapper .details-wrapper {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid white;
    padding-bottom: 100px;
}

.contact .content-wrapper .details-wrapper .icon-wrapper {
    display: flex;
}

.contact .content-wrapper .details-wrapper .icon-wrapper img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.contact .content-wrapper .form-wrapper {
    padding-top: 100px;
}

.contact .content-wrapper .form-wrapper .title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
}

.contact .content-wrapper .form-wrapper .small-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact .content-wrapper .form-wrapper input,
.contact .content-wrapper .form-wrapper textarea {
    background-color: #06065c;
    color: white;
    border-bottom-color: white;
}

.contact .content-wrapper .form-wrapper input:focus,
.contact .content-wrapper .form-wrapper textarea:focus {
    border-bottom-color: white;
}

.contact .content-wrapper .form-wrapper input::placeholder,
.contact .content-wrapper .form-wrapper textarea::placeholder {
    color: white;
}

.register .form-wrapper {
    padding: 150px 0;
    background-color: #06065c;
    color: white;
}

.register .form-wrapper input {
    background-color: #06065c;
    color: white;
    border-bottom-color: white;
}

.register .form-wrapper input:focus {
    border-bottom-color: white;
}

.register .form-wrapper input::placeholder {
    color: white;
}

.register .form-wrapper select {
    background-color: #06065c;
    color: white;
    border-bottom-color: white;
}

.register .form-wrapper select:focus {
    border-bottom-color: white;
}

.contact .contact-footer {
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}

.home .explore .link-wrapper {
    margin-top: 50px;
    width: 150px;
}

.home .explore .link-wrapper a::after {
    content: "";
    font-size: 0;
}

.loading-modal-logo {
    width: 100px;
    height: 100px;
    user-select: none;
}

.loading-modal-logo img {
    width: 100%;
    height: 100%;
    animation: rotate360 2s linear infinite;
}

.apply-now-form .required {
    border-bottom: 2px solid red;
}

.apply-now-form .required::placeholder {
    color: red;
}

@keyframes rotate360 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.csr .sdg-goals .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.csr .sdg-goals .card-wrapper .card {
    flex-direction: row;
    border: none;
}

/* .csr .sdg-goals .card-wrapper .card .image {
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    position: relative;
} */

.csr .sdg-goals .card-wrapper .card .image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 500px;
}

.csr .sdg-goals .card-wrapper .card .image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.csr .sdg-goals .card-wrapper .card .image img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-left: 10px;
    margin-bottom: 10px;
    z-index: 9;
}

.csr .sdg-goals .card-wrapper .card .details {
    width: 50%;
    color: white;
    padding: 15px 15px;
}

.csr .sdg-goals .card-wrapper .card .details .number {
    font-size: 35px;
    font-weight: bold;
    opacity: 0.4;
}

.csr .sdg-goals .card-wrapper .card .details .goal-title {
    font-size: 23px;
    font-weight: bold;
}

.csr .sdg-goals .card-wrapper .card .details .goal-description {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
}

.csr .sdg-goals .card-wrapper .card .details .goal-info {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    margin-top: 5px;
}

.csr .sdg-goals .card-wrapper .card .details .goal-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
}

.csr .sdg-goals .card-wrapper .card .details .button-wrapper {
    text-align: center;
    padding: 30px 0;
}

.csr .sdg-goals .card-wrapper .card .details .more-info {
    border: 1px solid white;
    background-color: transparent;
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
}

.empower-partners .swiper-container-free-mode .swiper-slide {
    width: 220px;
    height: 210px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 25px;
    border-radius: 20px;
}

.power-teams .card-inner {
    width: 100%;
    height: 100%;
    padding: 60px 30px;
    transition: transform 0.7s;
    transform-style: preserve-3d;
    position: relative;
}

.power-teams .card:hover .card-inner {
    transform: rotateY(180deg);
}

.community .power-teams .card-wrapper .card-front::after,
.community .power-teams .card-wrapper .card-back::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 25px;
}

.power-teams .card-front,
.power-teams .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    padding: 60px 30px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.power-teams .card-front {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.power-teams .card-back {
    transform: rotateY(180deg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.player-wrapper {
    max-width: 600px;
    width: 50%;
    z-index: 99;
}

.player-wrapper iframe {
    border-radius: 15px;
}

.empower-title-wrapper {
    width: 50%;
}

.csr .top-banner {
    min-height: 550px;
    height: 100%;
}

.blogs .blog-block .badge{
    background-color:  #06065c !important;
}   

.sign-up-video {
    background-color: #e5e5e5;
    padding-top: 100px;
    padding-bottom: 0;
}
.video-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.video-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.elementor-video {
    width: calc(50% - 30px);
    margin-bottom: 30px;
}

.sign-up-video iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
}

.feature-event-popup .modal-dialog {
    min-width: 800px;
}

.feature-event-popup .modal-dialog img {
    cursor: pointer;
}

@media (max-width: 1200px) {
    .csr .sdg-goals .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar > .container {
        padding: 0;
    }
    .navbar-collapse {
        background-color: white;
    }
    .navbar-brand {
        margin-left: 0.75rem;
    }
    .navbar-toggler {
        margin-right: 0.75rem;
    }
    .navbar .navbar-brand img {
        height: 50px;
    }
    .navbar {
        height: 75px;
    }
    .home .experts .partners-wrapper .logo-wrapper {
        width: 100%;
    }
    .footer {
        padding-top: 50px;
    }
    .footer .logo-wrapper {
        width: 100%;
    }
    .footer .details {
        margin-top: 30px;
    }
    .home .title {
        font-size: 35px;
    }
    .home .explore .description {
        font-size: 18px;
    }
    .home .description {
        font-size: 18px;
    }
    .home .membership .title {
        margin-top: 60px;
    }
    .home .membership .table-wrapper {
        padding: 40px 30px;
    }
    .home .membership .table-wrapper table thead tr th {
        font-size: 18px;
    }
    .home .membership .table-wrapper table tbody tr.category td {
        font-size: 18px;
    }
    .home .membership .table-wrapper table tbody tr td {
        font-size: 15px;
    }
    .home .membership .table-wrapper table tfoot .btn {
        font-size: 16px;
        padding: 8px 20px;
    }
    .home .membership .table-wrapper table tfoot td {
        padding: 20px 10px;
        padding-bottom: 0;
    }
    .home .membership {
        border-bottom-left-radius: 75px;
        border-bottom-right-radius: 75px;
        padding-bottom: 40px !important;
    }
    .home .event .link-wrapper {
        margin-top: 25px;
        margin-bottom: 40px;
    }
    .home .event .event-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .home .experts {
        border-top-left-radius: 85px;
        border-top-right-radius: 85px;
    }
    .home .experts .container {
        padding-top: 0;
    }
    .home .experts .title ~ .link-wrapper {
        margin-top: 0;
    }
    .home .experts .experts-wrappper {
        grid-template-columns: repeat(1, 1fr);
    }
    .home .experts hr {
        margin-top: 15px;
        margin-bottom: 45px;
    }
    .home .experts .partners-wrapper .logo-wrapper {
        margin-top: 40px;
    }
    .home .experts .partners-wrapper .logo-wrapper .item {
        height: 90px;
        padding: 25px 20px;
    }
    .home .map {
        height: 500px;
        margin: 50px 0;
    }
    .home .map .background {
        background-position: 150px 0;
    }
    .home .map .background .global-member-box {
        width: 160px;
        height: 160px;
        padding-left: 20px;
    }
    .home .map .background .global-member-box i {
        font-size: 20px;
    }
    .home .map .background .global-member-box .count {
        font-size: 30px;
    }
    .home .map .background .global-member-box .text {
        padding-top: 5px;
        font-size: 15px;
    }
    .home .member-benefits .image-wrapper {
        padding: 0;
    }
    .home .member-benefits .image-wrapper img {
        height: auto;
        aspect-ratio: 4 / 5;
    }
    .home .member-benefits .benefit {
        font-size: 16px;
        padding: 25px 0;
    }
    .home .member-benefits .benefit::after {
        font-size: 40px;
        top: 7%;
    }
    .home .join {
        padding-top: 0;
        padding-bottom: 230px;
    }
    .home .float .block {
        text-align: center;
        padding: 50px 40px;
        padding-right: 40px;
    }
    .home .float .block .link-wrapper {
        margin-left: auto;
    }
    .home .float .block .link-wrapper {
        margin-left: auto;
        padding: 15px 30px;
        text-align: left;
    }
    .top-banner {
        height: 350px;
        margin-top: 75px;
    }
    .top-banner h1 {
        font-size: 45px;
    }
    h2.title {
        font-size: 35px;
    }
    .aboutus .about .float-video {
        bottom: -150px;
        height: 300px;
    }
    .aboutus .vision {
        padding-top: 200px;
        padding-bottom: 25px;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
    .aboutus .vision .content .title {
        font-size: 25px;
    }
    .aboutus .vision .content .description {
        font-size: 18px;
    }
    .aboutus .differently .block td:not(:first-child) {
        font-size: 18px;
    }
    .aboutus .focus .content .details {
        padding: 40px 50px;
    }
    .aboutus .focus .content .title {
        font-size: 22px;
    }
    .aboutus .focus .content ul {
        font-size: 18px;
    }
    .aboutus .focus .content ul li:before {
        top: -11px;
        left: -35px;
        font-size: 28px;
    }
    .community .power-teams .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .community .power-teams .card-wrapper .card {
        padding: 15px 20px;
    }
    .community .power-teams .card-wrapper .card .name {
        font-size: 20px;
    }
    .community .power-teams {
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
        padding-bottom: 80px;
    }
    .aboutus .partners {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .aboutus .partners .logo-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .aboutus .gallery .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonial .story-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonial .story-wrapper .details .image-wrapper {
        height: auto;
        width: 100%;
    }
    .testimonial .story-wrapper .details h3 {
        font-size: 20px;
        margin-top: 15px;
    }
    .testimonial .story-wrapper .details p {
        font-size: 15px;
        margin-top: 5px;
    }
    .story .details-wrapper {
        width: 90%;
        padding-top: 20px;
    }
    .story .details-wrapper .main-image img {
        width: 280px;
        height: 280px;
    }
    .story .details-wrapper .main-image h2 {
        font-size: 30px;
        margin-top: 20px;
    }
    .story .details-wrapper .main-image p {
        font-size: 18px;
        margin-top: 0px;
    }
    .story .details-wrapper .description {
        font-size: 16px;
    }
    .aboutus .team-wrapper,
    .community .team-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .aboutus .team-wrapper .image-wrapper,
    .community .team-wrapper .image-wrapper {
        height: 300px;
    }
    .aboutus .team-wrapper h3,
    .community .first-team-wrapper h3 ,
    .community .team-wrapper h3 {
        font-size: 20px;
        margin-top: 10px;
    }
    .aboutus .team-wrapper p,
    .community .first-team-wrapper p,
    .community .team-wrapper p {
        font-size: 15px;
        margin-bottom: 0;
    }
    .aboutus .team-wrapper .card,
    .community .team-wrapper .card {
        margin-top: 15px;
    }
    .community h2.title {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .program-wrapper .image-wrapper {
        width: 100%;
        height: 400px;
    }
    .program-wrapper .details.right {
        padding-left: 15px;
    }
    .program-wrapper .details .title {
        font-size: 25px;
        margin-top: 10px;
    }
    .program-wrapper .details .description {
        font-size: 16px;
        margin-top: 10px;
    }
    .program-wrapper .details .link-wrapper {
        margin-top: 40px;
    }
    .program .pathway {
        padding: 15px 25px;
        font-size: 18px;
    }
    .program .pathway .left img {
        width: 28px;
        height: 20px;
    }
    .program .mission {
        padding-top: 50px;
        padding-bottom: 50px;
        border-bottom-right-radius: 90px;
    }
    .program .mission .rating-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .program .signup-block .card .image-wrapper {
        height: 450px;
        padding-left: 0;
    }
    .program .signup-block .card {
        padding: 40px 30px;
    }
    .program .signup-block .card .title {
        font-size: 25px;
        padding-top: 20px;
    }
    .program .signup-block .card .description {
        font-size: 20px;
    }
    .program .signup-block .card .button-wrapper .link-wrapper {
        padding: 10px 15px;
    }
    .program .signup-form .title {
        font-size: 30px;
        margin-top: 20px;
    }
    .program .signup-form .subtitle {
        font-size: 16px;
        margin-top: 10px;
    }
    form.custom input,
    form.custom select,
    form.custom textarea {
        padding: 5px 0;
        font-size: 16px;
    }
    form.custom input::placeholder,
    form.custom select::placeholder,
    form.custom textarea::placeholder {
        font-size: 16px;
    }
    .link-wrapper.submit-btn a {
        font-size: 18px;
    }
    .link-wrapper.submit-btn {
        padding: 10px 25px;
        width: 130px;
        border-radius: 10px;
    }
    .link-wrapper.submit-btn a::after {
        font-size: 30px;
        top: 126%;
        right: -47%;
    }
    .csr .goals .goals-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }
    .csr .goals {
        padding-top: 50px;
        height: 100%;
        border-bottom-right-radius: 80px;
        padding-bottom: 75px;
    }
    .csr .empowers img {
        display: none;
    }
    .csr .what-do-we-want .target-wrapper .card {
        width: 100%;
        border: none;
        padding: 20px;
    }
    .csr .empowers .left {
        padding-right: 0;
        height: 100%;
    }
    .csr .title {
        font-size: 35px;
        padding-top: 30px;
    }
    .csr .subtitle {
        font-size: 20px;
        padding: 15px 0;
    }
    .csr .description {
        font-size: 16px;
    }
    .csr .empowers {
        height: 100%;
        padding-bottom: 50px;
    }
    .csr .market-rate {
        padding: 75px 0;
        padding-top: 30px;
    }
    .csr .market-rate .left img {
        min-height: 500px;
    }
    .csr .market-rate .right {
        padding-left: 15px;
    }
    .csr .market-rate table td.description {
        font-size: 16px;
    }
    .csr .market-rate table td img {
        width: 50px;
        height: 50px;
    }
    .csr .market-rate table td {
        padding: 10px;
    }
    .csr .middle-banner {
        display: none;
    }
    .csr .goals .goals-wrapper .goal-card .title {
        font-size: 25px;
        margin-top: 10px;
        text-align: center;
    }
    .csr .goals .goals-wrapper .goal-card .description {
        font-size: 20px;
        margin-top: 5px;
    }
    .csr .goals .goals-wrapper .goal-card {
        height: 300px;
    }
    .csr .what-do-we-want {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .csr .what-do-we-want .target-wrapper {
        margin-top: 30px;
    }
    .csr .what-do-we-want .target-wrapper .card .title {
        font-size: 25px;
        margin-top: 0px;
        padding-top: 10px;
    }
    .csr .criteria {
        padding: 50px 0;
        padding-right: var(--bs-gutter-x, 0.75rem);
        padding-left: var(--bs-gutter-x, 0.75rem);
    }
    .csr .criteria .left {
        padding: 0 30px;
    }
    .csr .criteria .left img {
        min-height: 500px;
    }
    .csr .criteria .right {
        padding: 0 30px;
    }
    .csr .criteria .right ul li {
        font-size: 18px;
        padding: 15px 0;
    }
    .csr .provide {
        padding: 50px 0;
    }
    .csr .provide .block {
        padding: 20px 30px;
    }
    .csr .provide .block .title {
        font-size: 20px;
        padding-top: 0;
    }
    .csr .provide .block img {
        width: 28px;
        height: 22px;
    }
    .csr .provide .block ul {
        font-size: 16px;
    }
    .link-wrapper.apply-now a {
        font-size: 20px;
    }
    .link-wrapper.apply-now {
        padding: 10px 25px;
        width: 175px;
    }
    .link-wrapper.apply-now a::after {
        font-size: 36px;
        top: 135%;
        right: -30%;
    }
    .csr .our-programs-section {
        padding-top: 20px;
        padding-bottom: 100px;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
    }
    .csr .development-pathway {
        padding: 50px 0;
    }
    .csr .development-pathway .pathway-wrapper .pathway-block {
        display: block;
        width: 100%;
        border: none;
    }
    .csr .development-pathway .pathway-wrapper {
        height: 100%;
        margin-bottom: 50px;
    }
    .pd-footer {
        padding: 30px 0;
        padding-bottom: 70px;
    }
    .pd-footer .image-wrapper {
        height: 500px;
        padding-left: 0;
    }
    .pd-footer .title {
        font-size: 28px;
        padding-top: 20px;
    }
    .pd-footer .description {
        font-size: 22px;
        margin-top: 10px;
    }
    .program .focused-industries {
        padding: 50px 0;
        border-top-left-radius: 100px;
        border-top-right-radius: 100px;
        margin-top: 50px;
    }
    .program .focused-industries .title {
        font-size: 35px;
        margin-bottom: 0px;
    }
    .program .focused-industries .logo-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .program .focused-industries .logo-wrapper .title {
        font-size: 18px;
        padding-bottom: 20px;
    }
    .program .tier {
        padding: 65px 0;
        border-top-left-radius: 85px;
        border-top-right-radius: 85px;
    }
    .program .tier .button-wrapper .tier-btn {
        font-size: 22px;
    }
    .program .tier .tier-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 20px;
    }
    .program .tier .tier-content .block .step {
        font-size: 25px;
    }
    .program .tier .tier-content .block .description {
        font-size: 16px;
        margin-top: 5px;
    }
    .program .tier .tier-content .block {
        min-height: 150px;
    }
    select.custom {
        padding: 12px 24px;
        font-size: 16px;
    }
    .blogs .blog-block {
        width: 100%;
        height: 100%;
        border-radius: 25px;
        margin-bottom: 50px;
    }
    .blogs .blog-block .image-wrapper {
        height: 300px;
    }
    .blogs .blog-block .details-wrapper {
        padding: 20px 30px;
    }
    .blogs .blog-block .details-wrapper .date {
        font-size: 15px;
    }
    .blogs .blog-block .details-wrapper .title {
        font-size: 20px;
    }
    .blogs .blog-block .details-wrapper .short-description {
        font-size: 15px;
        padding-top: 0;
    }
    .blogs .blog-details .date {
        font-size: 18px;
    }
    .blogs .blog-details h2.title {
        font-size: 28px;
        padding-bottom: 40px;
    }
    .blogs .blog-details img {
        margin-bottom: 50px;
    }
    .blogs .blog-details .content {
        font-size: 16px;
    }
    .contact .content-wrapper {
        padding: 50px 0;
        font-size: 20px;
    }
    .contact .content-wrapper .details-wrapper {
        padding-bottom: 15px;
    }
    .contact .content-wrapper .form-wrapper {
        padding-top: 50px;
    }
    .contact .content-wrapper .form-wrapper .title {
        font-size: 32px;
    }
    .contact .content-wrapper .form-wrapper .small-title {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .contact .content-wrapper .form-wrapper .description {
        font-size: 16px;
    }
    .register .form-wrapper {
        padding: 50px 0;
    }
    .home {
        margin-top: 75px;
    }
    .home .banner .swiper {
        height: 400px;
    }
    .home .banner .swiper .big-title h1,
    .home .banner .swiper .big-title {
        font-size: 40px;
    }
    :root {
        --swiper-navigation-size: 25px !important;
    }
    .home .banner .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 10px);
    }
    .home .banner .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 10px);
    }
    .home .banner .swiper .banner-right {
        display: none !important;
    }
    .aboutus .description {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .feature-event-popup .modal-dialog {
        min-width: 600px;
    }

    .csr .sdg-goals .card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 991px) {
    .community .power-teams .card-wrapper .card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .feature-event-popup .modal-dialog {
        min-width: 500px;
    }

    .elementor-video {
        width: 100%;
    }
    .csr .top-banner {
        padding: 60px 0;
    }
    .player-wrapper {
        width: 100%;
    }
    
    .empower-title-wrapper {
        width: 100%;
    }
    .home .map .background {
        background-position: 0;
    }
    .home .map {
        height: 400px;
        margin: 50px 0;
    }
    .home .map .background .global-member-box {
        top: 0;
        left: 30px;
    }
    .community .power-teams .card-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .community .power-teams .card-wrapper .card {
        height: 400px;
    }
    .aboutus .team-wrapper .image-wrapper,
    .community .team-wrapper .image-wrapper {
        height: 250px;
    }
}

@media (max-width: 500px) {
    .feature-event-popup .modal-dialog {
        min-width: 90%;
    }
    .testimonial .story-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .aboutus .partners .logo-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 426px) {
    .aboutus .team-wrapper .image-wrapper,
    .community .team-wrapper .image-wrapper {
        height: 200px;
    }
    .csr .top-banner {
        padding: 40px 0;
    }
}

@media (max-width: 376px) {
    .community .power-teams .card-wrapper .card {
        height: 300px;
    }
    .aboutus .team-wrapper,
    .community .team-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .aboutus .team-wrapper .image-wrapper,
    .community .team-wrapper .image-wrapper {
        height: 250px;
    }
}
