.color-green {
    color: #3EBA79;
    display: inline-block;
}
.color-gradient {
    color: #2e7ce5;
    background-image: -webkit-linear-gradient(97.91deg, #44BDB6 7.66%, #235AFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.mobile-show {
    display: none;
}
.btn {
    display: flex;
    width: fit-content;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 19px 9px;
    border: 2px solid transparent;
    text-decoration: none;
    border-radius: 12px;
}
.btn-primary {
    border-color: #fff;
    color: #2e7ce5;
    transition: background-color .2s, border-color .2s;
}
.btn-primary:hover {
    border-color: #2e7ce5;
    color: #2e7ce5;
}
.btn-primary span {
    background: linear-gradient(97.91deg, #44BDB6 7.66%, #235AFF 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-secondary {
    border-color: #2e7ce5;
    background-color: #2e7ce5;
    color: #ffffff;
}
.btn-secondary:hover {
    border-color: #2e7ce5;
    background-color: #2e7ce5;
    color: #ffffff;
}
.btn-white {
    font-weight: 800;
    color: #fff;
    border-color: #fff;
}
.btn-white:hover {
    font-weight: 800;
    color: #fff;
    border-color: #fff;
}
.list-logo a {
    position: relative;
    background-color: #636363;
    border: none;
}
.list-logo a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(97.91deg, #44BDB6 7.66%, #235AFF 100%);
    transition: opacity .9s;
    border-radius: 16px;
}

.list-logo a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #000;
    transition: opacity .9s;
    border-radius: 16px;
}
.list-logo a:hover {
    border-color: transparent !important;
}
.list-logo a:hover:before {
    opacity: 1;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;

}

.list-logo a img {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .desktop-show {
        display: none;
    }
    .mobile-show {
        display: block;
    }
}
h2 {
    margin-top: 0;
}
.post-date {
    font-size: 18px;
    line-height: 29px;
}
.hero {
    height: 500px;
    position: relative;
    width: 100%;
}
.hero-bg__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero h1 {
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    color: #fff;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -1px;
}
.blog .hero p {
    position: absolute;
    top: 210px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    max-width: 1024px;
    text-align: center;
}
@media (max-width: 768px) {
    .blog .hero p {
        left: 0;
        transform: unset;
        font-size: 16px;
        padding: 0 15px;
        margin-top: 24px;
    }
}

.hero-bg__wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.featured-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #DFDFDF;
    position: relative;
    transition: border-color .3s;
}
.featured-wrapper:hover {
    border-color: #2e7ce5;
}
.featured {
    margin-top: -65px;
}
.featured-banner {
    position: relative;
    width: 100%;
    height: 380px;
}
.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 430px;
    object-fit: contain;
}
.featured-separator {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.featured-separator:before,
.featured-separator:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    display: block;
    width: 40px;
    height: 90px;
    background-color: #ffffff;
    transform: rotate(-45deg);
}
.featured-separator:after {
    left: auto;
    right: 0;
    transform: rotate(45deg);
}
.featured-separator img {
    width: 100%;
    height: 33px;
    object-fit: cover;
    object-position: center;
    padding-top: 60px;
}
.featured-content__wrapper {
    display: flex;
    flex-direction: column;
    padding: 35px;
    row-gap: 10px;
}
.featured-content__wrapper .btn {
    border-color: #2e7ce5;
}
.featured-content__wrapper h2 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 0;
}

.posts {
    margin-top: 76px;
    margin-bottom: 76px;
}
.posts-lists {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 32px;
    justify-content: flex-start;
}
.posts-item {
    position: relative;
    width: calc(25% - 22px);
    border: 2px solid #DFDFDF;
    border-radius: 24px;
    overflow: hidden;
    transition: border-color .3s;
}
.post-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.posts-item:hover {
    border-color: #2e7ce5;
}
.post-banner__wrapper {
    height: 160px;
    position: relative;
}
.post-banner__wrapper .post-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.post-banner__wrapper .post-logo {
    position: absolute;
    max-width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.post-content__wrapper {
    padding: 16px;
}
.post-content__wrapper h2 {
    font-size: 18px;
    line-height: 1.4;
    max-height: 104px;
    overflow: hidden;
    margin-bottom: 10px;
}
.posts-pagination__wrapper {
    padding: 0;
    margin:  89px 0 50px;
    list-style: none;
    display: flex;
    column-gap: 20px;
    justify-content: center;
}
.posts-pagination__wrapper .page-numbers {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #DFDFDF;
    color: #000000;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .3s, color .3s;
}
.posts-pagination__wrapper .page-numbers.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.posts-pagination__wrapper .page-numbers:hover,
.posts-pagination__wrapper .page-numbers.current {
    background-color: #2e7ce5;
    color: #fff;
}
.hero-link__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 86px;
}
.social-link__wrapper {
    display: flex;
    column-gap: 12px;
}
.social-link__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-color: #ffffff;
    transition: background-color .3s, border-color .3s;
}
.social-link__item a img {
    filter: brightness(0);
    transition: filter .3s;
}
.social-link__item a:hover {
    background-color: #2e7ce5;
    border-color: #2e7ce5;
}
.social-link__item a svg {
    display: block;
}
.social-link__item a:hover img {
    filter: brightness(1);
}
.social-link__item a svg path {
    transition: fill .3s;
}
.social-link__item a:hover svg path {
    fill: #fff;
}
.single .hero {
    height: auto;
    margin-bottom: 49px;
}
.single .hero h1 {
    color: #000000;
    position: relative;
    transform: none;
    left: unset;
    top: unset;
    font-size: 42px;
    line-height: 54px;
    margin-top: 40px;
    margin-bottom: 18px;
    letter-spacing: 0px;
}
.banner {
    position: relative;
    height: 500px;
}
.banner:after {
    content: "";
    display: block;
    background: linear-gradient(97.91deg, #44BDB6 7.66%, #235AFF 100%);
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}
.banner .banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    height: 100%;
    max-height: 180px;
    object-fit: contain;
}
.desc {
    margin-top: 80px;
}
.desc__wrapper {
    text-align: center;
}
.desc-content__wrapper {
    max-width: 968px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 29px;
}
.desc-btn__wrapper {
    display: flex;
    justify-content: center;
    margin-top: 39px;
}
.desc-subtitle__wrapper {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    max-width:  772px;
    margin: 29px auto 0;
}
.desc-subtitle__wrapper p {
    margin-top: 0;
    margin-bottom: 16px;
}
.desc-subtitle__wrapper p:last-child {
    margin-bottom: 0;
}
.setup {
    margin-top: 102px;
}
.setup h2 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 800;
}
.setup__wrapper {
    text-align: center;
}
.setup__list {
    display: flex;
    column-gap: 40px;
    margin-top: 54px;
    justify-content: center;
}
.setup__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border: 2px solid #DFDFDF;
    transition: border-color .3s;
    border-radius: 20px;
    height: 300px;
    box-sizing: border-box;
    row-gap: 11px;
}
.setup__item:hover {
    border-color: #2e7ce5;
}
.setup__item svg path,
.setup__item svg {
    transition: fill .3s;
}
.setup__item:hover svg {
    fill: #2e7ce5;
}
.setup__item:hover svg path {
    fill: #2e7ce5;
}
.setup-desc {
    max-width: 240px;
    margin: 0 auto;
}
.setup-desc p {
    margin: 0;
}
.result {
    margin-top: 102px;
    margin-bottom: 33px;
}
.result__wrapper h2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 55px;
    text-align: center;
}
.result__list {
    display: flex;
    margin-top: 63px;
    justify-content: center;
    column-gap: 40px;
}
.result__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 19px;
    justify-content: space-between;
    width: 350px;
}
.result__item span {
    font-size: 30px;
    line-height: 39px;
    color: #2e7ce5;
    text-align: center;
    font-weight: 700;
    max-width: 320px;
}
.result__item img {
    width: 110px;
}
.result__subtitle {
    max-width: 772px;
    margin: 120px auto 0;
    text-align: center;
}
.result__subtitle p {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto 29px;
}
.result__button {
    display: flex;
    justify-content: center;
}
.testimonials {
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
}

.testimonials:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 464px;
    background-color: #000000;
    height: auto;
    z-index: 0;
}
.testimonials-bg {
    position: absolute;
    width: 87%;
    height: 120%;
    border-radius: 24px;
    background: linear-gradient(97.91deg, #44BDB6 7.66%, #235AFF 100%);
    right: 0;
    margin-top: -47px;
    box-shadow: 0px 0px 45px 0px #0000001A;
}
.testimonials .swiper-slide {
    padding: 80px 0;
    opacity: 0 !important;
    transition: opacity .3s;
}
.testimonials .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}
.testimonials-slide__wrapper {
    max-width: 1189px;
    display: flex;
    position: relative;
    column-gap: 55px;
}

.testimonials-profession {
    font-size: 20px;
    line-height: 32px;
    margin: 0;
}
.testimonials-img__wrapper {
    position: relative;
    padding-right: 20px;
}
.testimonials-img__wrapper img {
    width: 222px;
    height: 419px;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    object-fit: contain;
}
.testimonials-content__wrapper {
    position: relative;
}

.testimonials-content {
    font-size: 18px;
    line-height: 29px;
    max-width: 866px;
}
.testimonials-author__wrapper {
    margin-top: 55px;
}

.testimonials__wrapper {
    position: relative;
    padding: 0 40px;
    max-width: 1200px;
}

.setup__item-img img {
    height: 80px;
    width: auto;
    object-fit: cover;
    filter: grayscale(1);
}
.setup__item-img img {
    height: 80px;
    width: auto;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .3s;
}
.setup__item:hover .setup__item-img img {
    filter: grayscale(0);
}
section.logo-list-section {
    padding: 217px 0 41px;
}
section.logo-list-section h2 {
    font-size: 62px;
    line-height: 76px;
    margin-bottom: 132px;
}
body .logo-list-section:before {
    background: url(/wp-content/uploads/sites/7/2025/08/Accreditations.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
}
section#form-section {
    padding-top: 170px;
}
section#form-section h2.form-title {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 51px;
}
@media (max-width: 1236px) {
    .posts-lists {
        flex-wrap: wrap;
    }
    .posts-item {
        width: calc(50% - 22px);
    }
}
@media (max-width: 1199px) {
    .logo-list-section h2 {
        font-size: 42px;
        line-height: 64px;
    }
    section.logo-list-section {
        padding: 40px 0 41px;
    }
    body .logo-list-section:before {
        height: 226px;
    }
}
@media (max-width: 991px) {
    footer .footer-main .social-links {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 93px;
    }
}
@media (max-width: 768px) {
    .btn-secondary {
        padding: 8px 12px 4px;
        font-size: 14px;
        line-height: 24px;
        border-radius: 8px;
    }
    .single .hero {
        margin-bottom: 32px;
    }
    .single .hero h1 {
        text-align: left;
        padding-left: 19px;
        font-size: 32px;
        line-height: 42px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .banner .banner-bg,
    .banner {
        height: 165px;
    }
    .banner .banner-logo {
        max-width: 170px;
        height: auto;
    }

    .post-date {
        line-height: 26px;
    }
    .single .post-date {
        line-height: 26px;
        padding-left: 19px;
    }
    .hero {
        height: 486px;
    }
    .hero-link__wrapper {
        margin-top: 31px;
        padding-left: 19px;
        padding-right: 5px;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 64px;
        margin: 60px 0 0;
        left: 0;
        transform: translate(0, 0);
        right: 0;
        text-align: center;
    }
    .social-link__wrapper {
        column-gap: 12px;
    }
    .social-link__item a {
        width: 34px;
        height: 34px;
    }
    .featured {
        margin-top: -66px;
    }
    .featured-banner {
        height: 200px;
    }
    .featured-logo {
        max-width: 300px;
    }
    .featured-content__wrapper {
        padding: 20px;
    }
    .featured-content__wrapper h2 {
        font-size: 24px;
        line-height: 29px;
    }
    .featured-separator img {
        padding-top: 41px;
    }

    .posts-item {
        width: 100%;
    }
    .post-banner__wrapper .post-logo {
        max-height: 140px;
    }
    .post-content__wrapper h2 {
        max-height: 130px;
    }
    .setup__list {
        flex-direction: column;
        row-gap: 24px;
    }
    .testimonials-slide__wrapper {
        flex-direction: column;
    }
    .testimonials-img__wrapper {
        width: calc(100% - 64px);
        margin: 0 32px;
        padding-right: 0;
        text-align: center;
    }
    .testimonials .swiper-slide {
        padding: 0 0 38px;
    }
    .testimonials-bg {
        height: calc(100% - 242px);
        bottom: 0;
        right: 16px;
        width: auto;
        left: 16px;
    }
    .testimonials-img__wrapper img {
        width: auto;
        height: auto;
        max-height: 419px;
    }
    .desc {
        margin-top: 31px;
    }
    .desc-content__wrapper {
        font-size: 16px;
        line-height: 24px;
        padding: 0 18px;
    }
    .desc-btn__wrapper {
        margin-top: 26px;
    }
    .desc-subtitle__wrapper {
        margin: 30px auto 0;
        padding: 0 18px;
    }
    .setup {
        margin-top: 72px;
    }
    .setup h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .setup__list {
        padding: 0 18px;
        margin-top: 44px;
        row-gap: 22px;
    }
    .setup__item {
        height: auto;
        padding: 18px;
    }
    .setup__item-img svg {
        height: 40px;
    }
    .setup-desc {
        width: auto;
    }
    .setup-desc p {
        font-size: 14px;
        line-height: 21px;
    }
    .result {
        margin-top: 85px;
    }
    .result__wrapper h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .result__list {
        flex-direction: column;
        row-gap: 41px;
        align-items: center;
        margin-top: 37px;
    }

    .result__item {
        max-width: 320px;
    }
    .result__item span {
        font-size: 24px;
        line-height: 32px;
    }
    .result__item img {
        width: 81px;
    }
    .result__subtitle {
        margin: 81px auto 0;
        padding: 0 18px;
    }

    .testimonials {
        padding-top: 47px;
    }
    .testimonials:after {
        height: auto;
        top: 270px;
    }
    .testimonials-content__wrapper {
        padding: 28px 36px 24px;
    }
    .quote {
        margin-bottom: 22px;
    }
    .testimonials .swiper-pagination {
        top: 500px;
        right: 34px;
    }
    .testimonials__wrapper {
        padding: 0;
    }
    .form-title {
        font-weight: 700;
    }
    section.logo-list-section h2 {
        font-size: 42px;
        line-height: 64px;
        margin-bottom: 70px;
    }
    .testimonials-author__wrapper {
        margin-top:  30px;
    }
    .testimonials-author {
        font-size: 20px;
        line-height: 30px;
    }

    body .logo-list-section:before {
        height: 210px;
        top: 1px;
    }
}
@media (max-width: 430px) {
    .posts-pagination__wrapper .page-numbers {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 360px) {
    .testimonials-img__wrapper {
        width: calc(100% - 32px);
        margin: 0 16px;
    }
    .testimonials-img__wrapper img {
        max-height: 360px;
    }
}