

/*#region Fair */

.sf {
    padding: 20px 20px 200px;
    background: #fff;
    position:relative;
}

.sf__box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 34px 44px;
    border: 2px solid #0b7a43;
    border-radius: 26px;
    background: #fff;
    position:relative;
    z-index:10;
}

.sf__ttl {
    margin: 0 0 28px;
    text-align: center;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b7a43;
}

    .sf__ttl span {
        color: #333;
    }

.sf__hero {
    width: 1000px;
    margin:0 auto 28px;
}

    .sf__hero img {
        width: 100%;
        height: auto;
        border-radius: 28px;
    }

    .sf__name {
        margin: 0 0 22px;
        font-size: 34px;
        line-height: 1.1;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    }

.sf__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 176px;
    height: 46px;
    padding: 0 20px;
    border: 2px solid #0a5130;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6dc8d 0%, #e5c05d 100%);
    font-size: 22px;
    font-weight: 700;
    color: #093d2f;
}

.sf__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 14px 26px 8px;
    border-radius: 999px;
    background: #edf6ef;
}

.sf__meta-item {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006838;
}

    .sf__meta-item:last-child {
        color: #333;
    }

.sf__meta-line {
    width: 1px;
    height: 22px;
    background: #0b7a43;
}

.sf__desc {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
    font-size: 20px;
    line-height: 1.55;
    color: #3d3d3d;
}

.sf__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 266px;
    height: 40px;
    margin: 0 auto;
    padding: 12px 48px 8px;
    border: 1.5px solid #0b7a43;
    border-radius: 59px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2f2f2f;
    text-decoration: none;
}

    .sf__btn:hover {
        background: #0b7a43;
        color: #fff;
    }

.img-scroll {
    width:100%;
    height: 600px;
    overflow: hidden;
    position:absolute;
    bottom: 0;
    left:0;
    right: 0;
    margin:0 auto;
    z-index:1;
}

.img-wrap {
    display: flex;
    flex-direction: column;
    animation: imgUp 60s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

    .img-wrap img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        border: 0;
        vertical-align: top;
    }

        .img-wrap img + img {
            margin-top: -1px;
        }

.img-scroll::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0, rgba(255,255,255,0) 300px), linear-gradient(to top, rgba(255,255,255,1) 0, rgba(255,255,255,0) 300px), linear-gradient(to right, rgba(255,255,255,1) 0, rgba(255,255,255,0) 300px), linear-gradient(to left, rgba(255,255,255,1) 0, rgba(255,255,255,0) 300px);
    background-repeat: no-repeat;
    background-size: 100% 300px, 100% 300px, 300px 100%, 300px 100%;
    background-position: top, bottom, left, right;
}

.scroll-overlay{position:absolute;
                background:#fff;
                z-index: 5; width: 100%; height: 50px;left: 0; right: 0;
                bottom: 592px;
}

@keyframes imgUp {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, -50%, 0);
    }
}

/*#endregion */

/*#region Partner */

.sc {
    width: 1200px;
    margin: 0 auto 40px;
}

.sc-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    
}

    .sc .sc-title {
        margin: 40px 0;
        text-align: center;
        color: #006838;
        font-size: 50px;
        font-weight: 700;
        line-height: 1.1;
        text-transform: uppercase;
    }

.sc-item {
    color: #333;
}

.sc-logo {
    height: 210px;
    border: 1.5px solid #00703c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: #fff;
}

    .sc-logo img {
        max-width: 100%;
        max-height: 120px;
        object-fit: contain;
        display: block;
    }

.sc-item h3 {
    margin: 18px 0 8px;
    color: #00703c;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.sc-item p {
    margin: 0;
    color: #333;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .sc-list {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }
}

@media (max-width: 575px) {
    .sc-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-logo {
        height: 160px;
    }
}

/*#endregion */

/*#region Difference */

.difference {
    width: 1200px;
    height: 510px;
    margin: 0 auto 40px;;
    border: solid 2px #009344;
    border-radius: 20px;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    swiper-slide img {
        display: sw </swiper-slidek;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    border-bottom: solid 1px #009344;
}

swiper-slide {
    background-size: cover;
    background-position: center;
}

    swiper-slide.swiper-slide-active {
        opacity: 1 !important;
        visibility: visible;
        pointer-events: auto;
        z-index:2;
    }
    swiper-slide:not(.swiper-slide-active) {
        z-index: 1;
    }

    .mySwiper {
        height: 80%;
        width: 100%;
    }

.mySwiper2 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    border: 0;
}

    .mySwiper2 swiper-slide {
        width: 25%;
        height: 100%;
    }

    .mySwiper2 .swiper-slide-thumb-active span {
        background: #E9F4EB;
    }

    .mySwiper2 span {
        display: block;
        padding: 10px 30px 7px;
        border-radius: 30px;
        border: solid 1px #009344;
        text-transform: uppercase;
        font-size: 15px;
        cursor: pointer;
    }

swiper-slide img {
    display: sw </swiper-slidek;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ft {
    display: flex;
    align-items: center;
    gap: 70px;
}

.ft-img {
    width: 328px;
    flex-shrink: 0;
}

    .ft-img img {
        width: 100%;
        display: block;
        border-radius: 16px;
    }

.ft-txt {
    flex: 1;
    position: relative;
    text-align: right;
    color: #333;
    width:700px;
    background:#fff;
}

.ft-txt h2 {
    position: relative;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    z-index: 1;
    text-transform:uppercase;
}

    .ft-txt h2 span {
        display: block;
        color: #006b3f;
    }

.ft-sep {
    width: 640px;
    height: 1px;
    margin: 26px 0 30px auto;
    background: #006b3f;
}

.ft-txt p {
    max-width: 640px;
    margin: 0 0 0 auto;
    color: #14572f;
    font-size: 20px;
    line-height: 1.45;
}

.ft-txt strong {
    font-weight: 700;
}
.diff-title{
    display:block; width:1200px;margin:0 auto;padding-bottom:20px;
}
    .diff-title .hb-s {
        color:#006838;
        font-size: 50px; text-transform: uppercase;
    }

    .diff-title .hb-price {
        color: #333;
        font-size: 20px;
        text-transform: uppercase;
        border:solid 1px #009344;
        padding: 10px;
        border-radius: 20px;
    }

    .diff-title .hb-r{
        text-align:right;
    }
    /*#endregion */
    /*#region Press */
.pr {
    padding: 10px 0 0;
    background: #fff;
    width: 1200px;
    margin: 0 auto 40px;
}

.pr-head {
    text-align: center;
    margin: 20px 0 40px;
}

    .pr-head h2 {
        margin: 0;
        color: #00703c;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.1;
    }

    .pr-head p {
        margin: 4px 0 0;
        color: #333;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.1;
    }

.pr-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pr-card {
    min-height: 198px;
    padding: 28px 20px 18px;
    border: 1.5px solid #00703c;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    min-height:234px;
}

.pr-logo {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .pr-logo img {
        max-width: 155px;
        max-height: 55px;
        object-fit: contain;
        display: block;
    }

.pr-card h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

.pr-card h4{
    line-height:15px;
}

.pr-card h4 a {
    margin: 0 0 14px;
    color: #00703c;
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
}

.pr-card > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 22px;
    padding: 5px 14px 3px;
    border-radius: 999px;
    background: #00703c;
    color: #fff !important;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
}

.pr-more {
    margin-top: 24px;
    text-align: center;
}

    .pr-more a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 288px;
        height: 42px;
        padding: 0 34px;
        border: 1.5px solid #00703c;
        border-radius: 999px;
        color: #333;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        background: #fff;
    }


/*#endregion */

/*#region Vtv */

.vtv {
    background: #2ca32d;
    color: #fff;
    padding: 50px 0;
    margin-top: 60px;
}

.vtv_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.vtv .content {
    width: 600px;
}

.vtv h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.vtv p {
    font-size: 20px;
    font-style: italic;
}

.vtv_img {
    width: 650px;
    height: 350px;
    position: absolute;
    top: -120px;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
}

    .vtv_img img {
        width: 650px;
        height: auto;
    }

/*#endregion */

.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 840px;
    margin: 0 auto;
    padding: 80px 20px;
    overflow: hidden;
}

    .hero-section::after {
        content: "";
        position: absolute;
        width: 130%;
        height: 500px;
        left: 50%;
        bottom: -350px;
        transform: translateX(-50%);
        background: #009344;
        border-radius: 50%;
        z-index: 0;
    }

.hero-background {
    position: absolute;
    top: 200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.UzhbZ {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: visible;
}

.xolYY {
    width: 3000px;
    height: 3000px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0));
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.kKSsWI {
    width: 3000px;
    height: 3000px;
    position: relative;
    transform-origin: center center;
    animation: 120s linear 0s infinite normal none running kromiG;
}

.cpfndG {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center top;
    min-width: 1px;
    min-height: 1px;
}

.ksRmQT {
    display: flex;
    width: 200px;
    height: 150px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    border-radius: 32px;
    overflow: hidden;
    animation: 6s ease-in-out 0s infinite normal none running jkMhgL;
    will-change: transform;
    transform-origin: center center;
}

    .ksRmQT img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 32px;
    }

@keyframes kromiG
{
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.ia {
    padding: 32px 12px 0;
    position:relative; 
    z-index: 999;
}

.ia__wrap {
    max-width: 1000px;
    margin: 0 auto;
    position:relative;
    z-index:999;
}

.ia__head {
    text-align: center;
    padding-bottom: 28px;
    background:#fff;
}

.ia__sub {
    margin: 0 0 6px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
}

.ia__ttl {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: #006838;
    text-transform: uppercase;
}

.ia__stat {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient( to right, rgba(255,255,255,0) 0, #fff 60px, #fff calc(100% - 60px), rgba(255,255,255,0) 100% );
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 0 35px;
}

.ia__item:nth-child(1){
    width: 209px;
}
.ia__item:nth-child(2) {
    width: 290px;
}
.ia__item:nth-child(3) {
    width: 180px;
}
.ia__item:nth-child(4) {
    width: 280px;
}

.ia__item {
    padding: 26px 18px 24px;
    text-align: center;
    position: relative;
}

    .ia__item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 22%;
        right: 0;
        width: 1px;
        height: 56%;
        background: rgba(0, 0, 0, 0.5);
    }

.ia__num {
    margin-bottom: 8px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: #007b43;
}

.ia__txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    color: #007b43;
    text-transform: uppercase;
}

.scholarship-ctn {
    background: linear-gradient(to bottom, #009344, #006838);
    padding-bottom: 40px;
}

    .scholarship-ctn .section-title {
        margin: 0;
        padding: 30px 0;
        color:#fff;
    }

.ac2 {
    padding: 80px 0 72px;
    background: #fff;
}

.ac2 .container {width: 1200px;}

.ac2__hd {
    margin-bottom: 96px;
    text-align: center;
}

.ac2__sub {
    margin: 12px 0px;
    color: #353535;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.ac2__ttl {
    margin: 0;
    color: #05813f;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.ac2__lst {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.ac2__it {
    position: relative;
    background: #fff;
    border: 2px solid #0a7a3b;
    border-radius: 28px;
    padding: 20px 20px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ac2__it:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.ac2__tag {
    position: absolute;
    top: -12px;
    left: -18px;
    min-width: 95px;
    padding: 10px 5px;
    border-radius: 14px;
    background: #0a7a3b;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.ac2__tag-lb {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.ac2__tag-vl {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.ac2__img {
    display: block;
    aspect-ratio: 1 / 0.66;
    overflow: hidden;
    background: #dfe9dd;
    border-radius: 18px;
}

.ac2__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ac2__bd {
    padding: 18px 6px 0;
}

.ac2__name {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.ac2__name a {
    color: #333;
    text-decoration: none;
}

.ac2__txt {
    min-height: 36px;
    margin: 0 0 10px;
    color: #000;
    font-size: 13px;
    line-height: 1.4;
}

.ac2__res {
    color: #0a7a3b;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.ac2__more:hover {
    
}

.ac2__ft {
    margin-top: 32px;
    text-align: center;
}

.ac2__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 10px 36px;
    border-radius: 999px;
    background:#fff;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: solid 1px #0c8a3d;
    cursor: pointer;
}

.ac2__more:disabled {
    opacity: 0.8;
    cursor: wait;
}



