:root {
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-bullet-inactive-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'WT Gothic';
    box-sizing: border-box;
}

p {
    line-height: 1.7;
    font-size: 1.1rem;
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arti-head>h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #7244F7;
}

.arti-second-head {
    font-size: 1.5rem;
    color: #402775;
}

.bolder {
    font-weight: bold;
    margin-top: 20px;
}

.brief-section,
.solution-section {
    text-align: center;
    height: 100vh;
    width: 100%;
}

.brief-head-text,
.solution-head-text {
    font-size: 2rem;
    padding: 50px 0;
}

.dot-icon {
    margin: -55px 0 20px 0;
    font-size: 1.2rem;
}

.btn-container {
    display: flex;
    flex-direction: column;
    width: 250px;
    /* height: 100px; */
    justify-content: space-between;
    margin-bottom: 50px;
}

.btn-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* justify-content: center; */
    width: 550px;
    height: auto;
    margin: 5% auto 0 auto;
    padding-bottom: 5%;
    position: relative;
}

.btn-container>a,
.btn-bottom>a {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    width: 200px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-container>.watch {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.btn-bottom>.watch {
    background-color: #F3DDFF;
    color: #000000;
    border: 1px solid #000000;
}

.btn-container>.visit {
    background-color: none;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-bottom>.visit {
    background-color: #F3DDFF;
    color: #000000;
    border: 1px solid #000000;
}

.btn-container > a:hover{
    background-color: #FFFFFF;
    color: #402775;
    transition: all 0.3s linear;
}

.btn-container>.watch .hove::before {
    content: 'Watch Case Stady';
    color: #FFFFFF;
    display: grid;
    place-content: center;
    font-weight: bold;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    border-radius: 20px;
    background: rgb(243, 221, 255);
    animation: hover 0.3s linear;
}

.btn-container>.watch:hover .hove::before {
    transform: translateX(100%);
    color: #000000;
    transition: all 0.4s ease-out;
}

.btn-bottom>.watch .hove::before {
    content: 'Watch Case Stady';
    color: #000000;
    display: grid;
    place-content: center;
    font-weight: bold;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    border-radius: 20px;
    background: rgb(0, 0, 0);
    animation: hover 0.3s linear;
}

.btn-bottom>.watch:hover .hove::before {
    transform: translateX(100%);
    color: #FFFFFF;
    transition: all 0.4s ease-out;
}

@keyframes hover {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/*====================================================== HERO ======================================================*/

.hero-section {
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    color: #FFFFFF;
}

.hero-section>.hero-background>.hero>img,
.hero-section>.hero-background>.rec>img,
.hero-section>.hero-background>.rec-2>img {
    position: absolute;
    z-index: 0;
}

.hero-section>.hero-background>.hero>img,
.hero-section>.hero-background>.rec>img {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-section>.hero-background>.hero>img {
    top: -10%;
}

.hero-section>.hero-background>.rec-2>img {
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-section>.logo>picture>img {
    position: relative;
    z-index: 1;
    padding: 20px 30px 0 30px;
    height: auto;
}

.hero-section>.hero-article-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 75%;
    width: 80%;
    padding: 0 0 0 55px;
    margin: 0 auto;
    max-width: 600px;
    margin-top: 20px;
}

.name {
    font-size: 3rem;
    width: 350px;
    margin-bottom: 40px;
}

.com-desc {
    margin-bottom: 20px;
}

.com-year {
    display: flex;
    width: 400px;
    margin-bottom: 70px;
}

.com-year>.year {
    margin: 0 30px;
    padding-left: 30px;
    border-left: 2px solid white;
}

.small-text {
    font-size: 0.9rem;
}

@media only screen and (max-width: 480px) {
    .hero-section>.hero-background>.hero>img {
        top: 5%;
        object-position: 72.5%;
    }

    .hero-section>.logo>picture>img {
        position: relative;
        z-index: 1;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
    }

    .hero-section>.hero-background>.rec-2>img {
        display: none;
    }

    .hero-section>.hero-article-container {
        justify-content: flex-start;
        padding: 0 5%;
        width: 100%;
    }

    .name {
        width: 90%;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }

    .com-desc {
        margin-bottom: 30px;
    }

    .com-year {
        display: flex;
        width: initial;
        margin-bottom: 30px;
    }

    .com-year>.year {
        margin: 0 20px;
        padding-left: 20px;
    }

    .btn-container {
        width: initial;
        align-items: center;
    }
}

/* @media only screen and (max-height: 767px) {
    .hero-section {
        height: 150vh;
    }
} */

@media only screen and (max-height: 600px) {
    .hero-section {
        height: 150vh;
    }
}

@media only screen and (max-height: 420px) {
    .hero-section {
        height: 220vh;
    }

    .name,
    .com-year {
        margin-bottom: 40px;
    }
}

/*====================================================== BRIEF ======================================================*/

.brief-section {
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
    height: auto;
}



.brief-section > .brief-article-container {
    position: relative;
}

.brief-section > .brief-article-container > .brief-text{
    min-height: 40vh;
}

.brief-section > .brief-article-container > .mock-container {
    position: relative;
    top: 0;
    min-height: 90vh;
}

.brief-section > .brief-article-container > .mock-container > .mock > img {
    position: absolute;
    display: block;
    bottom: 0;
    height: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.brief-section > .brief-article-container > .mock-container > .mock-text > img {
    position: absolute;
    display: block;
    bottom: 50%;
    height: 25%;
    left: 100%;
    transform: translateX(-50%);
    z-index: 0;
    animation: slide 13s linear infinite;
}


.brief-section > .brief-article-container >.brief-text {
    z-index: 1;
    position: relative;
    padding: 0 20%;
}

.brief-section>.brief-background>img {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}



@media only screen and (max-width: 991px) {

    p {
        font-size: 1.2rem;
    }

    .brief-section > .brief-article-container >.brief-text {
        padding: 0 10%;
    }

  

    .brief-section > .brief-article-container > .mock-container > .mock-text > img {
        bottom: 50%;
        height: 20%;
    }

    .btn-bottom {
        display: flex;
        flex-direction: column;
        width: 250px;
        /* height: 100px; */
        justify-content: space-between;
        margin: 5% auto 0 auto;
        align-items: center;
    }
}


@media only screen and (max-width: 480px) {

    p {
        font-size: 1rem;
    }

    .brief-section > .brief-article-container > .mock-container {
        min-height: 70vh;
    }
    
    
    .brief-section > .brief-article-container > .mock-container > .mock-text > img {
        bottom: 50%;
        height: 20%;
    }

    .brief-section > .brief-article-container >.brief-text {
        padding: 0 7%;
    }

    .brief-section>.mock>img {
        height: 50%;
    }

    .brief-section>.mock-text>img {
        height: 12%;
        top: 55%;
    }

    .btn-bottom {
        display: flex;
        flex-direction: column;
        width: 250px;
        height: 180px;
        justify-content: space-between;
        padding-bottom: 15%;
    }
}



/*====================================================== SOLUTION ======================================================*/
/* SOLUTION */


.solution-section {
    position: relative;
    color: #000000;
    overflow-x: clip;
    height: auto;
}

.solution-section>.solution-background>img {
    position: absolute;
    width: 125%;
    height: 100%;
    margin-left: -7.5%;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

.solution-text {
    position: relative;
    padding: 0 25%;
}

.article-wrapper {
    position: relative;
    padding: 60px 0;
}

.right,
.left {
    position: relative;
}

.article {
    display: flex;
    align-items: center;
}

.right>.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.swiper-slide>.image {
    order: 0;
    width: 110%;
    padding: 0 0 0 10%;
}

.swiper-slide>.image>picture>img {
    width: 100%;
}

.swiper-slide>.article-container {
    width: 100%;
    text-align: start;
}

.right>.swiper-slide>.article-container {
    order: 1;
    padding-right: 5%;
}

.article-container>.arti-head {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 3px solid #FFFFFF;
}

.article-container>.arti-head>h2 {
    width: 100%;
}

.article-container>.arti-second-head {
    margin-bottom: 15px;
}

.left>.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
}

.left>.swiper-slide>.article-container {
    order: 0;
    padding-left: 5%;
}

.right>.image {
    order: 0;
    width: 110%;
    padding: 0 5%;
}

.right>.image>picture>img {
    width: 100%;
}

.right>.article-container {
    order: 1;
    width: 90%;
    text-align: start;
    padding-right: 5%;
}

.left>.image {
    order: 1;
    width: 110%;
    padding: 0 5%;
}

.left>.image>picture>img {
    width: 100%;
}

.left>.article-container {
    order: 0;
    width: 90%;
    text-align: start;
    padding-left: 5%;
}


.swiper-container1,
.swiper-container2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    position: relative;
    /* margin-top: 100px; */
}

.nut-image, .leaf-image, .nut1-image {
    position: absolute;
    bottom: 0;
}

.leaf-image {
    left: 20%;
}

.nut1-image {
    left: 10%;
}

.swiper-container2 {
    flex-direction: row;
}

.swiper-container1>.solution-1-text,
.swiper-container2>.solution-2-text {
    width: 200%;
    margin: 5%;
}

.pagination {
    margin-top: 7%;
    padding: 0;
}

.pagination1 {
    margin-top: 7%;
    padding: 0;
    margin-left: 2%;
}

.pagination>.swiper-pagination,
.pagination>.swiper-pagination2 {
    display: flex;
    height: 25px;
    position: relative;
    bottom: 0;
}

.swiper-pagination-bullet-active {
    width: 40px !important;
    height: var(--swiper-pagination-bullet-height);
    border-radius: 20px;
    background-color: #402775 !important;
    box-shadow: 2px 3px 5px rgba(64, 39, 117, 0.5) !important;
    transition: width 0.3s ease-in;
}

.swiper-pagination-bullet {
    width: 10px;
    height: var(--swiper-pagination-bullet-height);
    border-radius: 20px;
    opacity: 1;
    transition: width 0.4s ease-in-out;
}

.swiper-pagination-bullet {}

.solution-1,
.solution-2 {
    width: 200%;
    height: auto;
    margin: auto 0;
}

.swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide,
.swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide {
    display: flex;
    align-items: center;
    height: auto;
    place-content: center;
}

.swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image,
.swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image {
    margin: 0 auto;
    width: 100%;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image {
    padding: 0 0 0 10%;
}

.swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image {
    padding: 0 10% 0 0;
}

.swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image>picture>img,
.swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image>picture>img {
    margin: auto;
    width: 100%;
    display: grid;
    place-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.noswiper-article {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}

.noswiper-article>.image {
    padding: 0 3.5% 0 3.5%;
    width: 100%;
}

.noswiper-article>.image>picture>img {
    margin: auto;
    width: 90%;
    display: grid;
    place-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
    position: relative;
    zoom: 1;
}

.noswiper-article>.article-container {
    width: 100%;
    margin: 5% 0;
    padding-right: 7%;
    text-align: start;
}


@media only screen and (max-width: 991px) {

    .nut-image {
        bottom: -90px;
        right: 0;
    }

    .leaf-image {
        bottom: -70px;
        left: 60%;
    }

    .nut1-image {
        bottom: -50px;
        right: 0;
    }

    .btn-container>.watch,
    .btn-bottom>.watch {
        background-color: #000000;
        color: #FFFFFF;
        border: 1px solid #000000;
    }


    .solution-section {
        position: relative;
        color: #000000;
        overflow-x: clip;
        height: auto;
    }

    .solution-section>.solution-background>img {
        position: absolute;
        width: initial;
        height: 100%;
        margin-left: -55%;
        z-index: 0;
        top: 0;
        bottom: 0;
        left: 0;
    }

    .solution-text {
        position: relative;
        padding: 0 10%;
    }

    .article-wrapper {
        position: relative;
        padding: 60px 0;
    }

    .right>.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .swiper-slide>.image {
        order: 0;
        width: 110%;
        padding: 0 0 0 10%;
    }

    .swiper-slide>.image>picture>img {
        width: 100%;
    }

    .swiper-slide>.article-container {
        width: 100%;
        text-align: start;
    }

    .right>.swiper-slide>.article-container {
        order: 1;
        padding: 3% 10% 0 10%;
    }

    .article-container>.arti-head {
        padding-bottom: 25px;
        margin-bottom: 30px;
        border-bottom: 3px solid #FFFFFF;
    }

    .article-container>.arti-head>h2 {
        width: 100%;
    }

    .article-container>.arti-second-head {
        margin-bottom: 15px;
    }

    .left>.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 100px;
    }

    .left>.swiper-slide>.article-container {
        order: 0;
        padding-left: 5%;
    }

    .right>.image {
        order: 0;
        width: 100%;
        padding: 0;
    }

    .right>.image>picture>img {
        width: 80%;
    }

    .right>.article-container {
        display: flex;
        width: initial;
        text-align: start;
        padding: 0 10%;
        flex-direction: column;
    }

    .left>.image {
        order: 1;
        width: 110%;
        padding: 0 5%;
    }

    .left>.image>picture>img {
        width: 100%;
    }

    .left>.article-container {
        order: 0;
        width: 90%;
        text-align: start;
        padding-left: 5%;
    }

    .pagination {
        margin-top: 7%;
        padding: 0;
        margin-bottom: 70px;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal {
        position: relative;
    }

    .pagination>.swiper-pagination,
    .pagination>.swiper-pagination2 {
        /* display: flex; */
        padding: 0 10%;
    }

    .swiper-container1,
    .swiper-container2 {
        flex-direction: column-reverse;
    }

    .solution-1,
    .solution-2 {
        width: 100%;
    }

    .swiper-container1>.solution-1-text,
    .swiper-container2>.solution-2-text {
        width: 100%;
        margin: 0;
    }

    .swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image,
    .swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image {
        padding: 0;
    }

    .swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image>picture>img,
    .swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image>picture>img {
        width: 100%;
    }

    .noswiper-article {
        flex-wrap: wrap;
    }

    .noswiper-article>.image {
        padding: 0;
        width: 100%;
    }

    .noswiper-article>.image>picture>img {
        width: 80%;
    }

    .noswiper-article>.article-container {
        padding: 3% 10% 0% 10%;
    }
}

@media only screen and (max-width: 480px) {
    .nut-image {
        bottom: -90px;
        right: 0;
    }

    .leaf-image {
        bottom: -30px;
        right: 0;
    }

    .nut1-image {
        top: 35%;
        left: 0;
    }

    .brief-section>.brief-background>img {
        width: initial;
    }

    .solution-section {
        position: relative;
        color: #000000;
        overflow-x: clip;
        height: auto;
    }

    .solution-section>.solution-background>img {
        position: absolute;
        width: 102%;
        height: 100%;
        margin-left: -1%;
        z-index: 0;
        top: 0;
        bottom: 0;
        left: 0;
    }

    .solution-text {
        position: relative;
        padding: 0 5%;
    }

    .article-wrapper {
        position: relative;
        padding: 60px 0;
    }

    .right>.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .swiper-slide>.image {
        order: 0;
        width: 110%;
        padding: 0 0 0 10%;
    }

    .swiper-slide>.image>picture>img {
        width: 100%;
    }

    .swiper-slide>.article-container {
        width: 90%;
        text-align: start;
    }

    .right>.swiper-slide>.article-container {
        order: 1;
        padding: 0;
    }

    .article-container>.arti-head {
        padding-bottom: 25px;
        margin-bottom: 30px;
        border-bottom: 3px solid #FFFFFF;
    }

    .article-container>.arti-head>h2 {
        width: 100%;
        font-size: 2.2rem;
    }

    .article-container>.arti-second-head {
        margin-bottom: 15px;
    }

    .left>.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 100px;
    }

    .left>.swiper-slide>.article-container {
        order: 0;
        padding-left: 5%;
    }

    .right>.image {
        order: 0;
        width: 100%;
        padding: 0;
    }

    .right>.image>picture>img {
        width: 80%;
    }

    .right>.article-container {
        display: flex;
        width: initial;
        text-align: start;
        padding: 0 10%;
        flex-direction: column;
    }

    .left>.image {
        order: 1;
        width: 110%;
        padding: 0 5%;
    }

    .left>.image>picture>img {
        width: 100%;
    }

    .left>.article-container {
        order: 0;
        width: 90%;
        text-align: start;
        padding-left: 5%;
    }

    .pagination {
        margin-top: 10%;
        padding: 0;
    }

    .pagination>.swiper-pagination,
    .pagination>.swiper-pagination2 {
        /* display: initial; */
        padding: 0 5%;
        /* margin-top: 15px; */
        position: relative;
        /* bottom: -15px; */
    }

    .pagination>.swiper-pagination {
        bottom: 0px;
        left: 0;
        width: 100%;
    }


    .swiper-container1,
    .swiper-container2 {
        flex-direction: column-reverse;
    }

    .solution-1,
    .solution-2 {
        width: 100%;
    }

    .swiper-container1>.solution-1-text,
    .swiper-container2>.solution-2-text {
        width: 100%;
        margin: 0;
    }

    .swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image,
    .swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image {
        padding: 0;
    }

    .swiper-container1>.solution-1>.swiper-wrapper>.swiper-slide>.image>picture>img,
    .swiper-container2>.solution-2>.swiper-wrapper>.swiper-slide>.image>picture>img {
        width: 100%;
    }

    .noswiper-article {
        flex-wrap: wrap;
    }

    .noswiper-article>.image {
        padding: 0;
        width: 100%;
    }

    .noswiper-article>.image>picture>img {
        width: 120%;
        margin-left: -8%;
    }

    .noswiper-article>.article-container {
        padding: 3% 5% 0 5%;
    }

}


/*====================================================== END ======================================================*/

@keyframes slide {

    0% {
        transform: translateX(0%);
        right: 0%;
    }

    100% {
        transform: translateX(-100%);
        left: -100%;
    }
}