/* COMPONENT */
.btn-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'm-sb';
    font-size: 13px;
    line-height: 100%;
    color: #fff;
    background-color: #88C337;
    border-radius: 100px;
    padding: 10px 25px;
    transition: all 0.2s;
}

.btn-round:hover {
    background-color: #a0d15d;
}

.btn-round:hover .btn-round__icon .arrow {
    transform: translateX(2px);
}

.btn-round__icon {
    width: 27px;
    height: 27px;
}

.btn-round__icon .arrow {
    transform: translateX(0);
    transition: all 0.2s;
}

/*----*/
.container {
    max-width: 1480px;
}

@media (max-width: 450px) {
    .container {
        padding: 0 12px;
    }
}

/*---*/

@media screen and (min-width: 1660px) {
    body {
        zoom: unset;
    }
}

/*---*/

.h2 {
    font-family: 'm-m';
    font-weight: 500;
    font-size: 34px;
    line-height: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .h2 {
        font-size: 24px;
    }
}

/*----*/

/* BRAND BANNER START */

.brand-banner {
    margin-bottom: 120px;
}

.brand-banner__container {
    background: var(--bg-color);
}

.brand-banner__inner {
    min-height: 500px;
    display: flex;
    position: relative;
    padding-top: 142px;
    padding-bottom: 85px;
    overflow: hidden;
}

.brand-banner__content {

    max-width: 600px;
}

.brand-banner__title {
    font-family: 'm-sb';
    margin-top: 0;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.brand-banner__logo {
    height: 80px;
    display: block;
    margin-bottom: 24px;
}

.brand-banner__logo img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-banner__text {
    font-family: 'm-m';
    font-size: 14px;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-banner__btn {
    margin-top: 26px;
}

.brand-banner__images {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 58px;
    top: 142px;
    right: 0;
    height: calc(100% - 142px);
}

.img-text{
max-width: 400px;
}

.img-text p {
    font-family: "Pliant", sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}

.brand-banner__images img {
    object-fit: contain;
}

.brand-banner__img-2 {
    height: 100%;
    width: auto;
}

.brand-banner__img-1 {

}

@media (max-width: 1024px) {
    .brand-banner__container {
        background: none;
    }

    .brand-banner__inner {
        flex-direction: column;
        padding: 0;
    }

    .brand-banner__content {
        background: var(--bg-color);
        max-width: 100%;
        padding: 30px 20px 33px;
    }

    .brand-banner__images {
        position: relative;
        padding: 30px 20px 110px;
        top: 0;
        height: auto;
    }

    .brand-banner__img-2 {
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(-20px) rotate(-20deg) translateX(28%);
    }

    .brand-banner__logo{
        height: 60px;
    }
}

@media (max-width: 768px) {

    .brand-banner__title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .brand-banner__logo{
        margin-bottom: 15px;
        height: auto;
        max-width: 400px;
    }

    .brand-banner__img-1 {

    }

    .img-text{
        max-width: calc(100% - 100px);
    }

    .img-text p {
        font-size:5vw;
        margin-bottom: 20px;
    }

    .brand-banner__img-2 {
        max-width: 50%;
    }

    .brand-banner__btn {
        margin-top: 20px;
    }
}

@media (max-width: 450px) {

    .brand-banner {
        margin-bottom: 0;
    }

    .brand-banner__img-1 {
        max-width: 156px;
    }

    .brand-banner__img-2 {
        max-width: 200px;
        transform: translateY(0) rotate(-20deg) translateX(50%);
    }

    .brand-banner__content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-banner__images {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-banner__text {
        gap: 8px;
    }

    .brand-banner__text, .brand-banner__text p {
        font-size: 15px;
    }
}

/* BRAND BANNER END */


/* SECURITY START */

.security {
    margin-bottom: 120px;
}

.security__title {

    margin-bottom: 30px;
}

.security__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security__item {
    border: 1px solid #88C337;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
    padding-left: 176px;
    min-height: 158px;
}

.security__item-icon {
    width: 96px;
    height: 90px;
    object-fit: contain;
    flex: none;
    position: absolute;
    top: 30px;
    left: 30px;
}

.security__item-title {
    font-family: 'm-b';
    font-size: 28px;
    line-height: 1;
    margin-bottom: 19px;
}

.security__item-text p {
    font-size: inherit;
    line-height: inherit;
}

.security__item-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000;
}

@media (max-width: 768px) {
    .security {
        margin-bottom: 47px;
    }

    .security__title {

        margin-bottom: 20px;
    }

    .security__list {
        gap: 12px;
    }

    .security__item {
        padding: 20px 15px;
    }

    .security__item-icon {
        position: static;
        width: 60px;
        height: 60px;
    }

    .security__item-head {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
    }

    .security__item-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .security__item-text {
        font-size: 15px;
        line-height: 140%;
    }
}

/* SECURITY END */

/* DIRECTION START */

.direction {
    margin-bottom: 120px;
}

.direction__inner {
}

.direction__title {
    margin-bottom: 30px;
}

.direction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.direction-item__img {
    width: auto;
    height: 223px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.direction-item__text p {
    font-size: inherit;
    line-height: inherit;
}

.direction-item__text {
    font-family: 'm-m';
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #000;
    padding: 0 22px;
}


@media (min-width: 1024px) {
    .direction__slider .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 100px;
    }

    .direction__slider .swiper-pagination {
        display: none;
    }


    .direction-item:hover .direction-item__img {
        transform: scale(1.1) translateY(-10px);
    }
}


@media (max-width: 1024px) {

    .direction__slider .swiper {
        position: relative;
        padding-bottom: 30px;
    }

    .direction__slider .swiper-pagination {
        bottom: 0;
    }

    .direction__slider .swiper-pagination .swiper-pagination-bullet-active {
        background: #88C337;
    }
}

@media (max-width: 768px) {

    .direction-item__text {
        padding: 0;
    }

    .direction {
        margin-bottom: 79px;
    }

    .direction-item__img {
        height: 183px;
    }
}

/* DIRECTION END */

/* APP PAY START */

.app-pay {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 500px;
    margin-bottom: 120px;
}

.app-pay__container {
}

.app-pay__content {
    padding: 113px 0;
    max-width: 886px;
}

.app-pay__title {
    margin-bottom: 30px;
}

.app-pay__text p {
    font-size: inherit;
    line-height: inherit;
}

.app-pay__text {
    font-family: 'm-r';
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 30px;
    color: #000;
}

.app-pay__btn {
    height: 47px;

}

.app-pay__btn {
    height: 47px;
    width: auto;
    object-fit: contain;
}


@media (max-width: 768px) {


    .app-pay {
        min-height: 200px;
        margin-bottom: 108px;
    }

    .app-pay__content {
        padding: 41px 0 37px;
    }

    .app-pay__title {
        margin-bottom: 15px;
    }

    .app-pay__text {
        font-size: 17px;
        margin-bottom: 15px;
    }
}

/* APP PAY END */


/* DIRECTION CARD START */

.direction-card {
    margin-bottom: 120px;
}

.direction-card__title {
    margin-bottom: 30px;
}

.direction-card__wrap {
    display: flex;
    gap: 82px;
}

.direction-card__content {
    max-width: 663px;
}

.direction-card__text p, .direction-card__text ol li {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.direction-card__text {
    font-family: 'm-r';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #000;
}

.direction-card__text a {
    color: #88C337;
    text-decoration: underline;
}

.direction-card__text a:hover {
    text-decoration: none;
}

.direction-card__text ol li:before {
    color: #000;
    font-family: 'm-b';
    font-size: 20px;
}

@media (max-width: 1024px) {

    .direction-card__content {
        max-width: 100%;
    }

    .direction-card__wrap {
        flex-direction: column-reverse;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .direction-card {
        margin-bottom: 64px;
    }
}

@media (max-width: 450px) {
    .direction-card__picture img {
        width: 100%;
        object-fit: contain;
    }

    .direction-card__text {
        font-size: 15px;
    }
}


/* DIRECTION CARD END */

/* DIRECTION VIDEO START */

.direction-video {
    margin-bottom: 120px;
}


.direction-video__title {
    margin-bottom: 30px;
}

.direction-video__text p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.direction-video__text a {
    color: #88C337;
    text-decoration: underline;
}

.direction-video__text a:hover {
    text-decoration: none;
}

.direction-video__text {
    margin-bottom: 30px;
    font-family: 'm-r';
    font-size: 18px;
    line-height: 1.4;
}

.direction-video__box {
    width: 100%;
    max-width: 987px;
    height: 537px;
    object-fit: contain;
}

@media (max-width: 768px ) {

    .direction-video {
        margin-bottom: 58px;
    }

    .direction-video__text {
        margin-bottom: 22px;
    }

    .direction-video__title {
        margin-bottom: 13px;
    }

    .direction-video__box {
        width: 100%;
        max-width: 987px;
        height: 50vw;
        object-fit: contain;
    }
}

/* DIRECTION VIDEO END */


/* SUPPORT APP START */

.support-app {
    background: linear-gradient(93.43deg, #F5F5F5 5.8%, #F7F7F7 98.01%);
    padding: 96px 0;
    margin-bottom: 120px;
}

.support-app__container {
}

.support-app__inner {
}

.support-app__title {
    margin-bottom: 40px;
}

.support-app__list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 55px;
}

.support-app__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-app__item:hover .support-app__item-icon {
    transform: rotateY(360deg);
    transition: all 0.6s;
}

.support-app__item:hover .support-app__item-text p {
    color: #88C337;
}

.support-app__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #88C33766;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;

}

.support-app__item-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}


.support-app__item-text {
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.support-app__item-text span {
    font-family: 'm-m';
    color: #989898;
    font-size: 14px;
}

.support-app__item-text p {
    color: inherit;
    line-height: inherit;
    font-size: inherit;
    font-family: 'm-sb';
    transition: all 0.2s;
}

@media (max-width: 768px) {

    .support-app {
        padding: 40px 0 20px;
        margin-bottom: 45px;
    }

    .support-app__list {
        flex-direction: column;
    }
}

/* SUPPORT APP END */

/* DOP INFO START */


.dop-info {
    margin-bottom: 120px;
}

.dop-acc {
}

.dop-acc__el {
}

.dop-acc__head {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.dop-acc__head-title {
}

[data-acc-trigger]._active .dop-acc__head-icon svg {
    transform: rotateX(0);
}

.dop-acc__head-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.dop-acc__head-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
    transform: rotateX(180deg);
}

[data-acc-panel] {
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s 0s;
    overflow: hidden;
}

[data-acc-panel]._active {
    grid-template-rows: 1fr;
}

.questions-acc__panel {

}

[data-acc-panel]._active .questions-acc__content {
    padding-top: 30px;
    transition: padding-top 0.3s 0s;
}

.questions-acc__content {
    min-height: 0;

    transition: padding-top 0.3s 0.1s;

}

.questions-acc__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #000;
}


.questions-acc__text ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-family: 'm-r';

}

.questions-acc__text ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    font-family: 'm-r';

}

.questions-acc__text ol li, .questions-acc__text ul li {
    position: relative;
    padding: 0;
    padding-left: 34px;
    margin: 0;
    color: #000;
}

.questions-acc__text ol li:before {
    position: static;
    display: inline-block;
    transform: translate(0, 0);
    font-size: 16px;
    font-family: 'm-sb';
    color: #000;
    margin-right: 4px;
}

.questions-acc__text ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #88C337;
}

@media (max-width: 768px) {

    .dop-acc {
        margin-bottom: 45px;
    }

    .dop-acc__head {
        gap: 10px;
        justify-content: space-between;
    }

    .questions-acc__text {
        gap: 10px;
    }

    .questions-acc__text ol li, .questions-acc__text ul li {
        padding-left: 20px;
    }

    .questions-acc__text ul li:before {
        top: 4px;
    }


    .questions-acc__text ol, .questions-acc__text ul {
        font-size: 15px;
    }
}

/* DOP INFO END */