.accreditation * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;

}

.accreditation .container { 
    margin: auto;
    padding: 60px 20px !important;
}

.accreditation .badge {
    background: transparent;
    white-space: normal;
    color: #000;
    text-align: left;
    font-weight: normal;
}
.accreditation .badge p {
    margin-bottom: 0;
}

/* HEADER */
.accreditation .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.accreditation .title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.accreditation .title-row__content {
    box-sizing: border-box;
    padding-left: 30px;
    border-left: 2px solid #2f6df6;
}

@media screen and (max-width: 1279px) {
  .accreditation   .title-row__content {padding-left: 20px;}
}

.accreditation .title-icon {
    width: 112px;
}

@media screen and (max-width: 767px) {
 .accreditation    .title-icon {display: none;}
}

.accreditation .h_title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.accreditation .h_title span {
    color: #2f6df6;
}

.accreditation .subtitle {
    margin-top: 16px;
    color: #6b7280;
    max-width: 600px;
}

.accreditation .badge {
    gap: 12px;
    border: 1px solid #2f6df6;
    border-radius: 14px;
    padding: 20px;
    max-width: 280px;
    display: flex;
    font-size: 15px;
    position: relative;
    line-height: 1.1;
}

.accreditation .badge img {width: 48px;}

.accreditation .header__right {
    background: #e5e9f242;
    border-radius: 14px;
}

@media screen and (max-width: 1279px) {
    .accreditation .header__right { display: none;}
}

/* ===== CARDS + SWIPER ===== */ 
.accreditation .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #e5e9f2;
}

.accreditation .card {
    padding: 30px 20px;
    text-align: center;
    background-color: #ffffff;
}

.accreditation .card_head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.accreditation .card_head img { width: 56px;}

.accreditation .card > img {
    height: 120px;
    margin-bottom: 20px;
}

.accreditation .card h3 {
    font-size: 19px;
    padding: 20px 0;
    font-weight: 600;
}

.accreditation .card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.2;
    text-align: left;
}


.accreditation .swiper-pagination {
    display: none;
}

.accreditation .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 5px !important;
    transition: background 0.3s;
}

.accreditation .swiper-pagination-bullet-active {
    background: #2f6df6;
}

/* ===== FEATURES ===== */
.accreditation .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 30%;
    margin-top: 30px;
    align-items: center;
    border: 1px solid #e3e8f2;
    border-radius: 17px;
    background: #e5e9f242;
}

@media screen and (max-width: 1279px) {
 .accreditation    .features {
        border: unset;
        border-radius: unset;
        background: unset;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.accreditation .feature {
    display: flex;
    height: 100%;
    gap: 12px;
    padding: 20px;
    position: relative;
}

@media screen and (max-width: 1279px) {
 .accreditation    .feature {
        border: 1px solid #e3e8f2;
        border-radius: 17px;
        background: #e5e9f242;
    }
}

.accreditation .feature::after {
    content: "";
    height: calc(100% - 40px);
    position: absolute;
    right: 0;
    top: 20px;
    width: 1px;
    background-color:  #6b7280;
    box-sizing: border-box;
}

@media screen and (max-width: 1279px) {
  .accreditation   .feature::after {content: unset;}
}

.accreditation .feature:last-child::after {content: unset;}

.accreditation .feature .img {
    width: 48px;
    height: 48px
}

.accreditation .feature .img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.accreditation .feature div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.accreditation .feature h4 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
}

.accreditation .feature p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.2;
}

/* ===== BUTTONS ===== */
.accreditation .actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

@media screen and (max-width: 1279px) {
   .accreditation  .actions {
        flex-direction: row;
        flex-wrap: wrap;
        grid-column-start: 1;
        grid-column-end: 4;
        padding: 20px 0;
    }
}

.accreditation .btn {
    padding: 18px 18px;
    border-radius: 30px;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accreditation .btn::after {
    content:">";
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 0;
    top: -5px;transition:.125s ease-in-out;
}

.accreditation .btn:hover {
-webkit-box-shadow: 0px 0px 11px 0px rgba(47, 109, 246, 0.2);
-moz-box-shadow: 0px 0px 11px 0px rgba(47, 109, 246, 0.2);
box-shadow: 0px 0px 11px 0px rgba(47, 109, 246, 0.2);
}

.accreditation .btn:hover::after {
margin-left:15px;
}

.accreditation .btn.primary::after {
    content:"" !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23fff'  viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
    width: 30px;
    height: 13px;
    background-position: center;
    top: 0;
    color: #fff;
}

.accreditation .btn.outline::after {
    content:"" !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'  fill='%232f6df6' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
    width: 30px;
    height: 13px;
    background-position: center;
    top: 0;
    color: #fff;
}
.accreditation .primary {
    background: #2f6df6;
    color: #fff;
    border: none;
}

.accreditation .primary::after {
    color: #fff;
}

.accreditation .outline {
    border: 1px solid #2f6df6;
    color: #2f6df6;
    background: #fff;
}

.accreditation .outline::after {
    color: #2f6df6;
}

@media (max-width: 1024px) {
  .accreditation   .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .accreditation .header {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
  .accreditation   .h_title {
        font-size: 24px;
    }
  .accreditation   .features {
        grid-template-columns: 100%;
    }
 .accreditation    .actions {
        grid-column-start: 1;
        grid-column-end: 1;
    }
}

@media (max-width: 767px) {
  .accreditation   .h_title {
        font-size: 22px;
    }

  .accreditation   .cards-swiper {
        overflow: hidden;
    }

   .accreditation  .cards-swiper .swiper-wrapper {
        display: flex;
        gap: 0;
        background-color: #e5e9f2;
    }

  .accreditation   .cards-swiper .swiper-slide {
        width: 85vw;
        flex-shrink: 0;
        height: auto;
    } 
   .accreditation  .cards-swiper .swiper-slide.card {
        width: 100%;
        height: 100%;
        margin: 0;
    }

  .accreditation   .swiper-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        margin-top: 20px;
        height: auto;
    }
}

@media (max-width: 600px) {
   .accreditation  .features {
        grid-template-columns: 100%;
    }
}

@property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg; 
}

@property --i {
    syntax: "<number>";
    inherits: false;
    initial-value: 1; 
}

.accreditation .badge {
    display: flex;
    align-items: flex-start;
    mask: 
        conic-gradient(#000 0 0) content-box,
        linear-gradient(calc(mod(var(--a),180deg)*var(--i) + var(--_a,45deg)),
            #0000 30%,#2f6df6 40% 60%,#0000 70%) subtract,
        conic-gradient(#000 0 0) padding-box;
    transition: --i 0s, --a 10s linear;
    animation: rotate 10s linear infinite;
}

.accreditation .badge.alt {
    --_a: -45deg;
}

@keyframes rotate {
    from {
        --a: 0deg;
    }
    to {
        --a: 360deg;
    }
}