/* Intro */

.intro {
    height: 486px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* display: flex; */
    align-items: center;
}

html[dir="ltr"] .intro {
    padding-left: 140px;
    background-image: url(../images/intro_bg.svg);
}

html[dir="rtl"] .intro {
    padding-left: 0px;
    background-image: url(../images/intro_bg_rtl.svg);
}

.intro::after {
    content: '';
    background-image: url(../images/anim_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 105%;
    position: absolute;
    width: 1180px;
    height: 1160px;
    top: -785px;
    right: 170px;
    animation-name: anim_rotate;
    animation-duration: 20s;
    animation-iteration-count: infinite;

}

.intro::before {
    content: '';
    background-image: url(../images/anim_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 105%;
    position: absolute;
    width: 1180px;
    height: 1160px;
    top: -60px;
    left: -400px;
    transform: rotate(120deg);
    animation-name: anim_rotate_1;
    animation-duration: 20s;
    animation-iteration-count: infinite;

}

.intro .anim-img02::after {
    content: '';
    background-image: url(../images/anim_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 105%;
    position: absolute;
    width: 1180px;
    height: 1160px;
    right: -250px;
    bottom: -710px;
    transform: rotate(110deg);
    animation-name: anim_rotate_2;
    animation-duration: 20s;
    animation-iteration-count: infinite;

}


.intro .container {
    padding: 0;
}

html[dir="ltr"] .intro .container {
    margin: 0;
}

html[dir="rtl"] .intro .container {
    margin: auto;
}

.intro .row {
    height: 403px;
}

.custom-video {
    position: relative;
    top: 0;
}

.custom-video__container {
    position: relative;
    top: 0;
    height: auto;
}

.custom-video__video {
    border-radius: 0.2em;
    cursor: pointer;
}

.custom-video__control {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    padding: 1em;
    display: flex;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1em;
    font-weight: 400;
    width: 3em;
    height: 3em;
    white-space: nowrap;
    line-height: 0;
}

#play-pause {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

video::-webkit-media-controls {
    position: relative;
    z-index: 1;
}

.intro .video figure {
    margin: 0;
    width: 562px;
    height: 315px;
}

.intro .video figure img {
    height: 100%;
    width: 100%;
}


.intro .content small {
    font-size: 14px;
    font-weight: 400;
}

.intro .content h2 {
    font-weight: 400;
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
}

.intro .content h2 span {
    color: var(--color01);
}

.intro .content p {
    font-size: 14px;
    font-weight: 400;
    width: 460px;

}


.intro .content a {
    margin-right: 15px;
    color: var(--color01);
    font-weight: bold;
    transition: 500ms;
}

.intro .content a:hover {
    color: var(--color02);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    opacity: 1;
    background-color: #F0F1FA;
}

.swiper-pagination-bullet-active {
    background-color: var(--color01);
    width: 16px;
    height: 8px;
}

.swiper-pagination {
    bottom: 25px !important;
}

.intro .content h2,
.intro .content p,
.intro .content small,
.intro .content .links,
.intro video {
    opacity: 0;
    transform: translateY(50px);
    transition: 2s;
}

.intro img {
    opacity: 0;
    transform: translateY(200px);
    transition: 2s;
}


.intro .swiper-slide-active .content h2,
.intro .swiper-slide-active .content p,
.intro .swiper-slide-active .content small,
.intro .swiper-slide-active .content .links,
.intro .swiper-slide-active img,
.intro .swiper-slide-active video {
    opacity: 1;
    transform: none;

}

.intro .swiper-slide-active .content small {
    transition-delay: 0.5s;
}

.intro .swiper-slide-active .content h2 {
    transition-delay: 1s;
}

.intro .swiper-slide-active .content p {
    transition-delay: 1.5s;
}


.intro .swiper-slide-active .content .links {
    transition-delay: 2s;
}


.intro .swiper-slide-active video {
    transition-delay: 2.5s;
}

.intro .swiper-slide-active img {
    transition-delay: 3s;
}


/* Section-00 */

.section-00 {
    padding: 40px 140px;
}

.section-00 .box-item {
    border: 2px solid #F6F6F6;
    border-radius: 15px;
    padding: 30px 20px;
    padding-bottom: 15px;
}

.section-00 figure {
    width: 64px;
    height: 64px;
    margin: 0;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-00 figure img {
    width: 100%;
    height: 100%;
    animation-name: tran-down;
    animation-duration: 1.5s;
}

.section-00 h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 10px;
}

.section-00 p {
    font-size: 13px;
    line-height: 2;
    margin: 0;
    margin-bottom: 25px;
    max-height: 5.6em;
    overflow: hidden;
}

.section-00 .box-item a {
    font-size: 13px;
    color: var(--color01);
    display: block;
    animation-name: tran-zoom;
    animation-duration: 1.5s;
}

/* Section-01 */

.section-01 {
    position: relative;
    padding-left: 140px;
    padding-right: 140px;
    overflow: hidden;
}

#sec-01-content {
    padding: 0 30px;
    height: 461px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../images/section_01_content_bg.svg);
    background-repeat: no-repeat;
    background-size: 107%;
    background-position-x: -50px;
    background-position-y: 15px;
    z-index: 2;
}

.section-01::before {
    content: '';
    background-image: url(../images/section_01_icon01.svg);
    position: absolute;
    height: 109px;
    width: 105px;
    z-index: -1;
    left: 40px;
    top: 35px;
    background-repeat: no-repeat;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.section-01::after {
    content: '';
    background-image: url(../images/section_01_icon01.svg);
    position: absolute;
    height: 109px;
    width: 105px;
    z-index: -1;
    right: 70px;
    bottom: 100px;
    background-repeat: no-repeat;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.section-01 .img-content {
    position: relative;
}

.section-01 .img-content::before {
    content: '';
    background-image: url(../images/c_2.svg);
    background-position: center;
    background-size: cover;
    position: absolute;
    height: 87px;
    width: 87px;
    z-index: -2;
    top: 35%;
    left: -90px;
    background-repeat: no-repeat;
    animation-name: anim_path;
    animation-duration: 60s;
    animation-iteration-count: infinite;
}

.section-01 .img-content::after {
    content: '';
    background-image: url(../images/c_3.svg);
    background-position: center;
    background-size: cover;
    position: absolute;
    height: 55px;
    width: 55px;
    z-index: -2;
    top: 10%;
    left: 260px;
    background-repeat: no-repeat;
    offset-path: path("M20,20 C20,-521 393,1036 700,-131");
    animation: anim_path_loop 40000ms infinite alternate ease-in-out;
}

.section-01 .c-3-after::after {
    content: '';
    background-image: url(../images/c_1.svg);
    background-position: center;
    background-size: cover;
    position: absolute;
    height: 55px;
    width: 55px;
    z-index: -2;
    bottom: 10%;
    left: 260px;
    background-repeat: no-repeat;
    offset-path: path("M 20 20 C 20 -365 1080 -200 1080 80");
    animation: anim_path_loop 40000ms infinite alternate ease-in-out;
}


.section-01 figure {
    /*width: 440px;*/
     width: 90%;
    height: 461px;
    position: relative;
}

#g-1 {
    display: block;
    position: absolute;
    /*width: 35%;*/
    /*height: auto;*/
    /*top: 13%;*/
    /*left: 18%;*/
    width: 36%;
    height: auto;
    top: 1%;
    left: 17%;
    animation-name: anim_rotate_360;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

#g-2 {
    display: block;
    position: absolute;
    width: 42%;
    height: auto;
    /*top: 30%;*/
    top: 25%;
    left: 59%;
    animation-name: anim_rotate_360;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

#g-3 {
    display: block;
    position: absolute;
    /*width: 38%;*/
    /*height: auto;*/
    /*bottom: 12%;*/
    /*left: 17%;*/
     width: 37%;
    height: auto;
    bottom: 2%;
    left: 18%;
    animation-name: anim_rotate_360;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}


.section-01 figure img {
    width: 100%;
    height: 100%;
}

.section-01 .content small {
    font-size: 13px;
    font-weight: 400;
    display: none;
    margin-bottom: 10px;
}

.section-01 .content h2 {
    font-size: 26px;
    font-weight: 400;
}

.section-01 .content p {
    font-size: 14px;
    font-weight: 300;
    width: 480px;
    display: block;
    margin: 0;
    margin-bottom: 70px;
}

.section-01 a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color01);
}


/* Section-02 */


.section-02 .titel {
    padding: 0 45px;
}

.section-02 .swiper-slide {
    width: auto !important;
}

.section-02 figure {
    width: 355px;
    height: 316px;
    margin-right: 15px;
    overflow: hidden;

}

.section-02 figure {
    border: 1px solid #fff;
    border-radius: 15px;
}

.section-02 figure img {
    height: 100%;
    width: 100%;
    transition: transform 0.2s;
    border-radius: 15px;
}

.section-02 figure:hover img {
    transform: scale(1.2);
    border-radius: 15px;
}


.section-02 .swiper-pagination-sec-02 {
    display: flex;
    justify-content: center;
}

.section-02 .small-text {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-bottom: 6px;
}

.section-02 .head-block h3 {
    font-size: 23px;
    font-weight: 400;
    width: auto;
    color: #000;
    margin: 0;
}

.section-02 .head-block {
    margin-bottom: 20px;
}

.section-02 a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color01);
}

/* Section-03 */

.section-03 {
    position: relative;
    padding-left: 140px;
    padding-right: 140px;
    padding-bottom: 150px;
}

.section-03::before {
    content: '';
    background-image: url(../images/section_03_icon01.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 105px;
    height: 109px;
    left: 20px;
    top: 475px;
    z-index: -1;
    background-size: contain;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.section-03::after {
    content: '';
    background-image: url(../images/section_03_icon01.svg);
    position: absolute;
    height: 109px;
    width: 105px;
    z-index: -1;
    right: 30px;
    bottom: 470px;
    background-repeat: no-repeat;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.section-03 .small-text {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-bottom: 6px;
}

.section-03 .head-block h3 {
    font-size: 23px;
    font-weight: 400;
    width: auto;
    color: #000;
    margin: 0;
}

.section-03 .head-block {
    margin-bottom: 50px;
}

.section-03 a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color01);
}

.section-03 figure {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.section-03 figure:hover {
    transform: scale(1.08);
}

.section-03 .content h3 {
    font-size: 15px;
    font-weight: 500;
}

.section-03 .content p {
    font-size: 14px;
    font-weight: 400;
    color: #67727B;
}

.section-03 .item {
    height: 100%;
    width: 100%;
    border: 2px solid #F6F6F6;
    padding: 20px;
    border-radius: 10px;
}

.section-03 .col-md-6 {
    padding: 0;
    /* width: 280px;
    height: 310px; */
    position: relative;
    padding: 10px;
}

.section-03 .row {
    justify-content: space-between;
}

#btn-sec-03 {
    position: absolute;
    right: 25px;
    bottom: 25px;
}

/* Section-04 */

.section-04 {
    position: relative;
    padding-left: 140px;
    padding-right: 140px;
    background-color: #d7d7d738;
}


.section-04 .small-text {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-bottom: 6px;
}

.section-04 .head-block h3 {
    font-size: 15px;
    font-weight: 400;
    width: auto;
    color: #000;
    margin: 0;
}

.section-04 .head-block {
    margin-bottom: 50px;
}

.section-04 .row {
    justify-content: space-around;
}

.section-04 .item {
    width: 145px;
    height: 145px;
    border: 3px solid #F6F6F6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
}

.section-04 figure {
    width: 88px;
    height: 88px;
    margin: 0;
    transition: transform 0.2s;
}

.section-04 figure:hover {
    transform: scale(1.1);
    overflow: hidden;
}

.section-04 figure img {
    width: 100%;
    height: 100%;
}

.section-04 .swiper-pagination-sec-04 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Section-05 */

.section-05 {
    padding-left: 140px;
    padding-right: 140px;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.section-05::before {
    content: '';
    background-image: url(../images/section_05_icon01.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 285px;
    height: 293px;
    left: -180px;
    top: -20px;
    z-index: -1;
    background-size: contain;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.section-05::after {
    content: '';
    background-image: url(../images/section_05_icon01.svg);
    position: absolute;
    height: 109px;
    width: 105px;
    z-index: -1;
    right: 45px;
    bottom: 175px;
    background-repeat: no-repeat;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}


.section-05 .small-text {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    margin-bottom: 6px;
}

.section-05 .head-block h3 {
    font-size: 23px;
    font-weight: 400;
    width: auto;
    color: #000;
    margin: 0;
}

.section-05 .head-block {
    margin-bottom: 50px;
}

.section-05 a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color01);
}

.section-05 .date small {
    font-size: 14px;
    font-weight: 400;
}

.section-05 .content h3 {
    font-size: 14px;
    margin: 0;
    margin-bottom: 18px;
}

.section-05 .content p {
    font-size: 14px;
    font-weight: 400;
    color: #67727B;
    margin: 0;
    margin-bottom: 18px;
}

.section-05 .date {
    margin-bottom: 18px;
}

.section-05 figure {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.section-05 figure img {
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}

.section-05 figure:hover img {
    transform: scale(1.2);
}


/* Section-06 */

.section-06 {
    height: 484px;
    padding-left: 150px;
    padding-right: 150px;
    background-image: url(../images/section_06_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

#app-img figure {
    width: 484px;
    height: 555px;
    content: '';
    position: absolute;
    z-index: 1;
    top: -35px;
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
}

html[dir="ltr"] #app-img figure {
    right: 175px;
}

html[dir="rtl"] #app-img figure {
    left: 175px;
}

#app-img figure img {
    width: 100%;
    height: 100%;
}


.btn-sec-06 {
    align-items: center;
}

html[dir="ltr"] .section-06 .app-store {
    margin-right: 15px;
}

html[dir="rtl"] .section-06 .app-store {
    margin-left: 15px;
}

.section-06 .btn-sec-06 figure {
    margin: 0;
}

.section-06 .content small {
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-bottom: 18px;
}

.section-06 .content h3 {
    font-size: 23px;
    font-weight: 400;
    width: 390px;
    margin: 0;
    margin-bottom: 18px;
}

.section-06 .content p {
    font-size: 14px;
    font-weight: 400;
    width: 310px;
    margin: 0;
}

.section-06 .content {
    margin-bottom: 40px;
}




.animate {
    animation-name: tran-zoom;
    animation-duration: 4s;
    animation-iteration-count: initial;
}

@keyframes tran-zoom {
    0% {
        transform: scale(0.1);

    }

    100% {
        transform: none;
    }
}

.animate {
    animation-name: tran-down;
    animation-duration: 4s;
    animation-iteration-count: initial;
}

@keyframes tran-down {
    0% {
        transform: translateY(-150px);

    }

    100% {
        transform: none;
    }
}




/* Animations */

.animate {
    animation-name: anim_up_down;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_up_down {
    0% {
        transform: translateY(0);

    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}


.animate {
    animation-name: anim_rotate;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_rotate {
    0% {
        transform: rotate(0);

    }

    50% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(0);
    }
}

.animate {
    animation-name: anim_rotate_1;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_rotate_1 {
    0% {
        transform: rotate(120deg);

    }


    50% {
        transform: rotate(210deg);
    }


    100% {
        transform: rotate(120deg);
    }
}

.animate {
    animation-name: anim_rotate_2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_rotate_2 {
    0% {
        transform: rotate(110deg);

    }

    50% {
        transform: rotate(200deg);
    }

    100% {
        transform: rotate(110deg);
    }
}

.animate {
    animation-name: anim_rotate_360;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_rotate_360 {
    0% {
        transform: rotate(0);

    }


    100% {
        transform: rotate(360deg);
    }
}

.animate {
    animation-name: anim_path;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_path {
    0% {
        transform: translateX(-90px);
        top: 0%;

    }

    25% {
        transform: translateX(-250px);
        top: 50%;
    }

    35% {
        transform: translateX(500px);
        top: 50%;
    }

    50% {
        transform: translateX(1380px);
        top: 10%;
    }

    80% {
        top: 30%;
        transform: scale(0.5);
    }

    90% {
        top: 100%
    }

    100% {
        transform: translateX(-90px);
        top: 0%;
    }
}

.animate {
    animation-name: anim_path_loop;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes anim_path_loop {
    0% {
        offset-distance: 0%;
    }

    30% {
        offset-distance: 50%;
    }

    50% {
        offset-distance: 30%;
    }

    70% {
        offset-distance: 50%;
    }

    80% {
        offset-distance: 70%;
    }

    100% {
        offset-distance: 100%;
    }
}


@media (min-width: 1350px) and (max-width: 1440px) {
    .intro::before {
        top: -30px;
        left: -548px;
    }
}

@media (min-width: 1300px) and (max-width: 1350px) {
    .intro::before {
        width: 1088px;
        height: 1088px;
        top: -90px;
        left: -480px;
    }

    .intro .anim-img02::after {
        width: 1088px;
        height: 1088px;
        right: -210px;
        bottom: -595px;
    }

    .intro::after {
        width: 1088px;
        height: 1088px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .intro::before {
        width: 1000px;
        height: 1000px;
        top: -60px;
        left: -493px;
    }

    .intro .anim-img02::after {
        width: 1000px;
        height: 1000px;
        right: -140px;
        bottom: -535px;
    }

    .intro::after {
        width: 1000px;
        height: 1000px;
        top: -690px;
        right: 220px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .intro::before {
        width: 1000px;
        height: 1000px;
        top: 50px;
        left: -551px;
    }

    .intro .anim-img02::after {
        width: 1000px;
        height: 1000px;
        right: -300px;
        bottom: -441px;
    }

    .intro::after {
        width: 1000px;
        height: 1000px;
        top: -690px;
        right: 220px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .intro::before {
        width: 1000px;
        height: 1000px;
        top: 95px;
        left: -562px;
    }

    .intro .anim-img02::after {
        width: 1000px;
        height: 1000px;
        right: -416px;
        bottom: -404px;
    }

    .intro::after {
        width: 1000px;
        height: 1000px;
        top: -690px;
        right: 220px;
    }
}



@media(min-width:1600px) {
    .intro .container {
        margin: auto;
    }
}

@media (max-width:1200px) {


    .intro .video figure {
        width: 470px;
        height: 280px;
    }

    .intro {
        padding-left: 80px;
        background-size: cover;
    }

    .intro .content p {
        width: 425px;
    }

    .section-00 {
        padding: 40px 80px;
    }

    .section-00 .box-item {
        padding: 10px;
    }

    .section-01 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .section-01::before {
        z-index: 1;
    }

    .section-01 figure {
        width: auto;
        height: auto;
    }

    .section-01 .content p {
        font-size: 13px;
        width: 360px;
        margin-bottom: 50px;
    }

    #g-1 {
        top: 0%;
        left: 18%;
        width: 36%;
    }

    #g-2 {
        top: 24%;
        left: 59%;
        width: 42%;
    }

    #g-3 {
        bottom: -1%;
        left: 17%;
        width: 38%;
    }

    .section-02 figure {
        width: 255px;
        height: 216px;
    }

    .section-03 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .section-03 .col-md-3 {
        margin-bottom: 20px;
    }

    .section-04 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .section-04 .item {
        width: 130px;
        height: 130px;
    }

    .section-05 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .section-06 {
        padding-left: 80px;
        padding-right: 80px;
        height: 384px;
    }

    #app-img figure {
        width: 41%;
        height: 100%;
        top: -10px;
    }

    html[dir="ltr"] #app-img figure {
        right: 25px;
    }

    html[dir="rtl"] #app-img figure {
        left: 25px;
    }

}

@media (max-width:992px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 960px;
    }

    .intro {
        padding-left: 40px;
        height: 340px;
    }

    .intro .video figure {
        width: 370px;
        height: 230px;
    }

    .intro .content h2 {
        font-size: 40px;
    }

    .intro .content p {
        font-size: 13px;
        width: auto;
    }

    .section-00 {
        padding: 40px 80px;
    }

    .section-00 {
        padding: 40px 40px;
    }

    .section-00 .box-item {
        margin-bottom: 20px;
    }

    .section-01 {
        padding: 30px 40px;
    }

    .section-01::before {
        z-index: 1;
        top: 30px;
    }

    .section-01 .content p {
        width: auto;
    }

    .section-02 {
        padding: 25px 0px;
    }

    .section-02 .titel {
        padding: 0 20px;
    }

    .section-02 figure {
        width: 215px;
        height: 180px;
    }

    .section-03 {
        padding: 30px 40px;
    }

    .section-03 .head-block h3 {
        font-size: 20px;
    }

    .section-02 .head-block h3 {
        font-size: 20px;
    }

    .section-03 a {
        font-size: 12px;
    }

    .section-02 a {
        font-size: 12px;
    }

    .section-04 {
        padding: 30px 40px;
    }

    .section-04 .head-block h3 {
        font-size: 20px;
    }

    .section-04 .item {
        width: 105px;
        height: 105px;
    }

    .section-04 figure {
        width: 55px;
        height: 55px;
    }

    .section-05 {
        padding: 30px 40px;
    }

    .section-05 .head-block h3 {
        font-size: 20px;
    }

    .section-05 a {
        font-size: 12px;
    }

    .section-06 {
        padding: 30px 40px;
        height: 300px;

    }

    #app-img figure {
        top: -25px;
        width: 280px;
        height: 335px;
    }

    html[dir="ltr"] #app-img figure {
        right: 26px;
    }

    html[dir="rtl"] #app-img figure {
        left: 26px;
    }

}

@media(max-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 710px;
    }

    html[dir="ltr"] .intro {
        padding-left: 35px;
    }

    html[dir="rtl"] .intro {
        padding-right: 35px;
    }



    .intro #col-v {
        order: -1;
        margin-bottom: 15px;
    }

    .intro .custom-video__container .custom-video__video {
        position: unset;
        display: block;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 100%;

    }

    html[dir="ltr"] .intro .custom-video__container .custom-video__video {
        padding-right: 40px;
    }

    html[dir="rtl"] .intro .custom-video__container .custom-video__video {
        padding-left: 40px;
    }

    .intro {
        height: auto;
        padding-top: 70px;
        padding-bottom: 20px;
    }



    .intro .swiper {
        height: 657px;
    }

    .intro .content h2 {
        font-size: 30px;
    }

    .intro .content p {
        width: auto;
    }

    .section-01 figure {
        width: 460px;
        height: 390px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .section-01 {
        padding: 20px 40px;
    }

    .section-01::before {
        z-index: 1;
    }

    .section-01 .img-content::after {
        left: 125px;
    }

    .section-01 .c-3-after::after {
        left: 125px;
    }

    #g-1 {
        top: 3%;
        left: 18%;
        width: 36%;
    }

    #g-3 {
        bottom: 3%;
        left: 17%;
        width: 38%;
    }

    .section-02 {
        padding: 0px 0px;
    }

    .section-03 .head-block h3 {
        font-size: 17px;
    }

    .section-02 .head-block h3 {
        font-size: 17px;
    }

    .section-02 .titel {
        padding: 0px 30px;
    }

    .section-04 {
        padding: 25px 40px;
    }

    .section-04 .col-xl-2 {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
        width: 20%;
    }

    .section-04 .swiper-wrapper {
        height: 100px;
    }

    .section-04 .item {
        width: 80px;
        height: 80px;
    }

    .section-04 figure {
        width: 35px;
        height: 35px;
    }

    .section-05 .head-block h3 {
        font-size: 17px;
    }

    .section-05 .item {
        margin-bottom: 30px;
    }

    #app-img figure {
        display: none;
    }

    .section-04 .head-block h3 {
        font-size: 17px;
    }

    .intro::before {
        width: 1000px;
        height: 1000px;
        top: 95px;
        left: -562px;
    }

    .intro .anim-img02::after {
        width: 1000px;
        height: 1000px;
        right: -550px;
        bottom: -281px;
    }

    .intro::after {
        width: 1000px;
        height: 1000px;
        top: -660px;
        right: 15px;
    }
}

@media (max-width: 575.98px) {


    .intro .content p {
        width: auto;
        font-size: 12px;
    }


    .intro .swiper-pagination {
        bottom: 15px !important;
    }

    .section-01 .img-content::before {
        top: 167px;
    }

    .section-01 .img-content::after {
        left: -40px;
        top: 80px;
    }

    .section-01 .c-3-after::after {
        left: -40px;
        top: 315px;
    }

    .section-01 figure {
        width: auto;
        height: auto;
    }

    #g-1 {
        top: 0%;
        left: 18%;
        width: 35%;
    }

    #g-3 {
        bottom: 0%;
        left: 18%;
        width: 38%;
    }

    .section-04 .swiper {
        height: 70px;
    }

    .section-04 .col-xl-2 {
        width: 20%;
        padding: 0;
    }

    .section-04 figure {
        width: 30px;
        height: 30px;
    }

    .section-04 .row {
        padding: 0px 10px;
    }

    .section-04 .item {
        width: 60px;
        height: 60px;
    }

    .section-06 .content h3 {
        width: auto;
    }

    .section-06 .content p {
        width: auto;
    }

    .section-06 .btn-sec-06 figure img {
        width: 100%;
    }

    .intro::before {
        width: 1000px;
        height: 1000px;
        top: 95px;
        left: -744px;
    }

    .intro .anim-img02::after {
        width: 1000px;
        height: 1000px;
        right: -677px;
        bottom: -281px;
    }

    .intro::after {
        width: 1000px;
        height: 1000px;
        top: -660px;
        right: -157px;
    }

    .intro {
        padding-left: 20px;
    }

    .section-01 {
        padding: 20px 20px;
    }

    #sec-01-content {
        padding: 0;
    }

    .section-02 .titel {
        padding: 0 5px;
    }

    .section-03 {
        padding: 30px 5px;
    }

    .section-04 {
        padding: 25px 5px;
    }

    .section-05 {
        padding: 30px 5px;
    }

    .section-06 {
        padding: 30px 5px;
    }

    .intro .swiper {
        height: 570px;
    }
}

@media(max-width:425px) {
    .intro .swiper {
        height: 465px;
    }


}

.section-00 .box-item{
    height: 300px;
}

.section-00 p{
    height: 90px;
    max-height: 90px;
}