.banner {
    min-height: 500px;
    display: flex;
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 6;
    padding: 80px 0 80px;
    flex-direction: column;
    font-family: var(--pnr);
}

.banner .scrollDown {
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 0);
    will-change: transform;
}

.transition .banner .scrollDown {
    transition: opacity 0.3s 0.8s ease;
}

.banner .playButton {
    cursor: pointer;
    /*position: absolute;
    top: 48%;
    left: 49.5%;*/
    opacity: 1;
    z-index: 1;
    display: block;
    /*transfrom: translate(-50%, 0);*/
}

.banner .playButton.mobile {
    position: relative;
    left: unset;
    top: unset;
    transform: none !important;
    margin: 20px auto 0;
    text-align: center;
    display: none;
}

.transition .banner .playButton {
    transition: opacity 0.6s 0.8s ease;
}

.banner .humanImage {
    position: absolute;
    bottom: unset;
    top: 39%;
    left: 0 !important;
    width: 100% !important;
    pointer-events: none;
}

.transition .banner .humanImage {
    transition: bottom 0.8s ease, left 0.8s ease, width 0.8s ease;
}


.banner .humanImage img {
    width: 100%;
}

.banner .textSection {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
    position: relative;
    /*margin: 80px 0 0;*/
    padding: 0 5%;
}

.banner .textSection .text {
    /*position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);*/
    overflow: hidden;
    will-change: transform;
}

.banner .textSection .title {
    font-family: var(--pnb);
    font-size: 55px;
    line-height: 67px;
    text-align: center;
    letter-spacing: -1px;
    color: #10293E;
    /*transform: translate(0, -100%);*/
    will-change: transform;
    margin: 0;
}

.transition .banner .textSection .title {
    transition: transform 0.6s ease;
}

.banner .textSection .desc {
    font-family: var(--pnsb);
    font-size: 35px;
    line-height: 115.6%;

    /* or 40px */
    text-align: center;
    color: #10293E;
    /*transform: translate(0, 100%);*/
    will-change: transform;
    /*width: 90%;*/
    margin: 0 auto;
}

.transition .banner .textSection .desc {
    transition: transform 0.6s ease;
}

.circle-container {
    position: relative;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
    /*background: url(clientlib-sustainability-banner/css/Dots_Coloured.png) no-repeat center;*/
    height: 160px;
    width: 160px;
    /* transform: translate(50%, 0); */
    opacity: 0;
}

.transition .circle-container {
    transition: opacity 0.3s ease;
}

.circle-container .circle {
    position: absolute;
    /*padding: 100px;*/
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: rotate(0);
    will-change: transform;
}

.transition .circle-container .circle {
    transition: transform 1s ease;
}

.circle-container .circle:before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    will-change: transform;
}

.transition .circle-container .circle:before {
    transition: transform 0.5s ease;
}

.circle-container .circle--1 {
    z-index: 10;
}

.circle-container .circle--1:before {
    background: #583981;
    height: 19%;
    width: 19%;
}


.circle-container .circle--2:before {
    background: #C13375;
    height: 16%;
    width: 16%;
}

.circle-container .circle--3:before {
    background: #ED7150;
    height: 13%;
    width: 13%;
}

.circle-container .circle--4:before {
    background: #FFC044;
    height: 10%;
    width: 10%;
}

.circle-container .circle--5:before {
    background: #468ED0;
    height: 16%;
    width: 16%;
}

.circle-container .circle--6:before {
    background: #0D919B;
    height: 13%;
    width: 13%;
}

.circle-container .circle--7:before {
    background: #A5C18E;
    height: 10%;
    width: 10%;
}


.videoOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    opacity: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.videoOverlay .videoFrame {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
    width: 100%;
}

.videoOverlay .closeOverlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
}

.videoOverlay .closeOverlay:before,
.videoOverlay .closeOverlay:after {
    content: '';
    background: #fff;
    width: 60%;
    height: 2px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    will-change: transform;
}

.videoOverlay .closeOverlay:before {
    transform: translate(-50%, -50%) rotate(-45deg);
    will-change: transform;
}

/*
@keyframes rotateanim1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(30deg);
    }
}

@keyframes rotateanim2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(60deg);
    }
}

@keyframes rotateanim3 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(90deg);
    }
}

@keyframes rotateanim4 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-30deg);
    }
}


@keyframes rotateanim5 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-60deg);
    }
}

@keyframes rotateanim6 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-90deg);
    }
}*/
.transition .banner .humanImage {
    transition: bottom 0.5s ease, left 0.5s ease, width 0.5s ease, transform 0.5s ease;
}

/*.backgroundAnimation .banner img {
    transition: bottom 1s ease, transform 1s ease;
}

.backgroundAnimation .banner img.img4,
.backgroundAnimation .banner img.img3 {
    transition: bottom 0.738s ease, transform 0.738s ease;
}

.backgroundAnimation .banner img.valley {
    transition: bottom 0.750s ease, transform 0.750s ease;
}

.backgroundAnimation .banner img.img2,
.backgroundAnimation .banner img.img1 {
    transition: bottom 0.726s ease, transform 0.726s ease;
}

.banner .humanImage {
    transition: bottom 0.750s ease, left 0.750s ease, width 0.750s ease;
}

.banner .textSection .title {
    transition: transform 0.750s ease;
}

.banner .playButton {
    transition: opacity 0.3s ease;
}

.banner .textSection .desc {
    transition: transform 0.750s ease;
}

.banner .scrollDown {
    transition: opacity 0.3s ease, transform 0.3s ease;
}*/

.transition .circle-container {
    transition: opacity 0.3s ease;
}

.init .banner .scrollDown {
    opacity: 1;
}

.init .banner .playButton {
    opacity: 1;
}

.init .backgroundAnimation .banner img {
    transform: scale(1);
    will-change: transform;
}

.init .backgroundAnimation .banner img.valley {
    bottom: 0;
}

.init .backgroundAnimation .banner img.img1 {
    bottom: 4%;
}

.init .backgroundAnimation .banner img.img2 {
    bottom: 6%;
}

.init .backgroundAnimation .banner img.img3 {
    bottom: 8%;
}

.init .backgroundAnimation .banner img.img4 {
    bottom: 16%;
}

.init .banner .humanImage {
    bottom: -68%;
    left: 35.5%;
    width: 65%;
}

.banner .circle-container {
    opacity: 1;
    transform: translate(50%, 0);
    height: 266px;
    justify-content: center;
    align-items: center;
}

.banner .circle-container img {
    width: auto;
    height: 100%;
}

.init .banner .circle-container .circle--2 {
    transform: rotate(30deg);
}

.init .banner .circle-container .circle--3 {
    transform: rotate(60deg);
}

.init .banner .circle-container .circle--4 {
    transform: rotate(90deg);
}

.init .banner .circle-container .circle--5 {
    transform: rotate(-30deg);

}

.init .banner .circle-container .circle--6 {
    transform: rotate(-60deg);
}

.init .banner .circle-container .circle--7 {
    transform: rotate(-90deg);
}

.init .banner .textSection .desc,
.init .banner .textSection .title {
    transform: translate(0, 0);
}

/*@media only screen and (max-width: 2560px) {

    *resolution Height: 1440*
    .banner .textSection {
        width: 40%;
    }

    .banner .humanImage {
        bottom: -124%;
        left: 31.5%;
    }

    .init .banner .humanImage {
        bottom: -85%;
    }
}

@media only screen and (max-width: 2048px) {

    *resolution Height: 1280*
    .banner .humanImage {
        bottom: -111%;
        left: 32%;
    }

    .banner .textSection {
        width: 50%;
    }

    .init .banner .humanImage {
        bottom: -74%;
    }
}*/

@media only screen and (min-width: 1921px) {

    /*resolution Height: 1080*/
    .banner {
        max-height: 1080px;
    }

    .init .banner .humanImage {
        top: 430px;
        left: 35.5%;
        width: 65%;
    }
}

@media only screen and (max-width: 1792px) {

    /*resolution Height: 1120*/
    .banner .textSection {
        /* width: 90%; */
    }

    .banner .humanImage {
        bottom: -111%;
        left: 32%;
    }

    .init .banner .humanImage {
        bottom: -83%;
        width: 70%;
        left: 35.5%;
    }
}

@media only screen and (max-width: 1680px) {

    /*resolution Height: 1050*/
    .banner .textSection {
        /* width: 55%; */
        margin: 60px 0 0;
    }

    .banner .humanImage {
        bottom: -111%;
        left: 32.3%;
    }

    .init .banner .humanImage {
        bottom: -72%;
        left: 37%;
        width: 63%;
    }
}

@media only screen and (max-width: 1600px) {

    /*resolution Height: 900*/
    .banner .humanImage {
        bottom: -123%;
    }

    .init .banner .humanImage {
        bottom: -81%;
        left: 37%;
        width: 63%;
    }
}

@media only screen and (max-width: 1536px) {

    /*resolution Height: 960*/
    /*.banner .textSection {
        width: 58%;
    }*/

    .banner .humanImage {
        bottom: -111%;
    }

    .init .banner .humanImage {
        bottom: -72%;
    }
}

@media only screen and (max-width: 1440px) {

    /*resolution Height: 900*/
    .banner .textSection {
        margin: 40px 0 0;
        /*width: 61%;*/
    }

    .init .banner .humanImage {
        left: 36%;
    }
}

@media only screen and (max-width: 1366px) {

    /*resolution Height: 768*/
    .banner .humanImage {
        bottom: -123%;
    }

    .init .banner .humanImage {
        bottom: -94%;
        width: 63%;
        left: 37%;
    }

    .banner .textSection .title {
        font-size: 40px;
        line-height: 1.2;
    }

    .banner .textSection .desc {
        font-size: 23px;
    }

    .textSection.pgTitle {
        width: 46%;
    }

    .banner .circle-container {
        width: 160px;
        height: 160px;
    }

    .init .backgroundAnimation .banner img.img2 {
        bottom: 0;
    }

    .init .backgroundAnimation .banner img.img4 {
        bottom: 0;
    }

    .banner {
        padding: 60px 0 60px;
    }

    .banner .textSection {
        margin: 40px 0 0;
    }

    .banner .scrollDown img {
        width: 28px;
        /* height: 28px; */
    }

    .banner .playButton img {
        width: 47px;
    }

    .init .banner .circle-container {
        height: 200px;
        align-items: flex-end;
        display: flex;
    }

    .init .banner .circle-container img {
        height: 100%;
        width: auto;
        align-items: flex-end;
        justify-content: center;
    }
}

@media only screen and (max-width: 1344px) {

    /*resolution Height: 840*/
    .textSection.pgTitle {
        width: 46%;
    }

    .banner .humanImage {
        bottom: -110%;
    }

    .init .banner .humanImage {
        bottom: -80%;
    }
}

@media only screen and (max-width: 1280px) {

    /*resolution Height: 800*/
    .banner .humanImage {
        bottom: -130%;
    }

    .init .banner .humanImage {
        bottom: -85%;
    }

    .textComponent {
        margin: 130px auto;
    }

    .textSection.pgTitle {
        width: 48%;
    }
}

@media only screen and (max-width: 1280px) and (max-height: 720px) {

    /*resolution Height: 720*/
    .banner .humanImage {
        bottom: -138%;
    }

    .init .banner .humanImage {
        bottom: -93%;
    }

    .banner .circle-container {
        width: 120px;
        height: 120px;
    }

    .textSection.pgTitle {
        width: 48%;
    }
}

@media only screen and (max-width: 1152px) {

    /*resolution Height: 720*/
    .banner .humanImage {
        bottom: -110%;
    }

    .textSection.pgTitle {
        width: 53%;
    }

    .init .banner .humanImage {
        bottom: -80%;
    }

    .banner .humanImage {
        bottom: -124%;
    }
}

/*Tabs*/
@media only screen and (max-width: 1366px) and (max-height: 1024px) and (orientation: landscape) {
    .init .banner .humanImage {
        bottom: -60%;
        width: 75%;
        left: 33%;
    }

    .banner .textSection {
        margin: 40px 0 0;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 1366px) {
    .banner {
        max-height: 65vh;
    }

    .init .banner .humanImage {
        bottom: -71%;
        width: 73%;
        left: 34%;
    }

    .textSection.pgTitle {
        width: 60%;
    }

    .sustainability .textComponent.netZero {
        max-width: 100%;
        margin: 170px auto 0;
    }

    .banner .playButton {
        top: 45%;
    }
}

@media only screen and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) {
    .banner {
        max-height: 100vh;
    }

    .textSection.pgTitle .circle-container {
        display: none;
    }

    .textSection.pgTitle {
        margin: 135px 0 0;
        width: 82%;
    }

    .init .banner .humanImage {
        width: 108%;
        left: 26%;
        bottom: unset !important;
        top: 44%;
    }

    .init .backgroundAnimation .banner img.img2 {
        bottom: -28%;
    }
}



@media only screen and (max-width: 1280px) and (max-height: 800px) and (orientation: landscape) {
    .init .banner .humanImage {
        bottom: unset;
        top: 45%;
    }

    .init .banner .playButton {
        top: 53%;
    }
}

@media only screen and (max-width: 1152px) and (max-height: 720px) and (orientation: landscape) {
    .init .banner .humanImage {
        bottom: unset;
        top: 57%;
    }

    .init .banner .playButton {
        top: 68%;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
    .banner {
        max-height: unset;
    }

    .init .banner .humanImage {
        bottom: -71%;
        width: 83%;
        left: 31.5%;
    }
}

@media only screen and (max-width: 800px) and (max-height: 1280px) {
    .textSection.pgTitle {
        width: 90%;
        text-align: center;
    }

    .textSection.pgTitle .text {
        width: 100%;
    }

    .init .backgroundAnimation .banner img.img2 {
        bottom: -30%;
    }

    .init .banner .humanImage {
        bottom: -62%;
    }

    .sustainability .textComponent {
        max-width: unset;
    }

    .sustainability .textComponent .circle-container {
        display: none;
    }
}



@media only screen and (max-width: 962px) and (max-height: 601px) {

    .banner .textSection {
        margin: 50px 0 0;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 600px) {
    .textSection.pgTitle {
        width: 66%;
        margin: 35px 0 0;
    }

    .init .banner .humanImage {
        bottom: -106%;
    }
}

@media only screen and (max-width: 800px) {

    /*.banner .playButton {
        display: none;
    }*/

    .banner .playButton.mobile {
        display: block
    }

    .banner .scrollDown {
        bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .banner {
        max-height: 100vh;
    }

    .banner .textSection .title {
        /*padding: 0 10%;*/
        line-height: 1.2;
        margin: 0;
    }

    .banner .textSection.pgTitle .text {
        padding: 0 10%;
        transform: none;
    }

    /*.banner .textSection .desc,
    .banner .textSection .title {
        padding: 0 10%;
    }*/

    .init .banner .humanImage {
        bottom: -79%;
        width: 100%;
        left: 28%;
    }

    .textSection.pgTitle {
        margin: 40px 0 0;
        width: 100%;
        text-align: center;
    }

    .textSection.pgTitle .text {
        width: 100%;
    }

    .init .backgroundAnimation .banner img.valley {
        /*bottom: 1%;*/
    }

    .banner .textSection {
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {
    .init .banner .humanImage {
        width: 112%;
        left: 25%;
    }
}

@media only screen and (max-width: 414px) {
    .banner {
        max-height: 100vh;
    }

    .banner .textSection .text {
        /* padding: 0 10%; */
    }

    .banner .textSection .title {
        line-height: 1;
        font-size: 30px;
        margin: 0 0 10px;
    }

    .banner .textSection .desc {
        font-size: 20px;
    }

    .banner .textSection .pgTitle .text {
        width: 100%;
        margin: 0 auto;
        padding: 0 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .init .banner .humanImage {
        bottom: -310px;
        width: 150%;
        left: 17%;
    }
}

@media only screen and (max-width: 375px) {
    .banner .textSection .title {
        font-size: 28px;
    }

    .banner .textSection .desc {
        font-size: 19px;
    }
}

@media only screen and (max-width: 360px) {}


@media only screen and (width: 601px) and (height: 962px) and (orientation: portrait) {
    .init .banner .humanImage {
        bottom: -38%;
        width: 130%;
        left: 21%;
    }

    .textComponent .text .desc br {
        display: none;
    }

}

@media only screen and (width: 962px) and (height: 601px) and (orientation: landscape) {
    .init .banner .humanImage {
        bottom: -96%;
    }
}

@media only screen and (max-width: 600px) and (max-height: 1024px) and (orientation: portrait) {
    .init .banner .humanImage {
        top: 42%;
        bottom: unset;
    }

}

@media only screen and (max-width: 393px) and (max-height: 786px) {

    .init .banner {
        max-height: 664px;
    }

    .init .banner .humanImage {
        z-index: 0;
    }

    .init .banner .textSection.pgTitle {
        z-index: 1;
    }

    .sustainability .textComponent.firstSection {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 375px) and (max-height: 812px) {
    .init .banner {
        /*max-height: 640px;*/
    }

    .init .banner .humanImage {
        z-index: 0;
    }

    .init .banner .textSection.pgTitle {
        z-index: 1;
    }

    .sustainability .textComponent.firstSection {
        margin-top: 50px;
    }
}
.banner_style2 {
    display: flex;
    width: 100%;
    height: 740px;
    padding: 0;
    position: relative;
    z-index: 6;
    overflow: hidden;
    justify-content: flex-end;
    align-items: flex-end;
    font-family: var(--pnr);
}

.banner_style2 .bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
}

.banner_style2 .bg img {
    height: 100%;
    width: auto;
}

.banner_style2 .bg:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
}

.banner_style2 .bg video {
    height: 100%;
    width: 100%;
}

.banner_style2 .textSection {
    height: 100%;
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
}

.banner_style2 .textSection .overlay,
.banner_style2 .textSection .overlay:after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1200px;
    height: 1200px;
    background: #EC66D0;
    /* background-blend-mode: multiply; */
    mix-blend-mode: multiply;
    opacity: 0.9;
    border-radius: 50%;
    transform: translate(0, -50%);
    z-index: 0;
}

.banner_style2 .textSection .overlay:after {
    content: '';
    background: #868085;
}

.banner_style2 .textSection .text {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 69%;
    z-index: 1;
}

.banner_style2 .textSection .title {
    text-align: left;
    transform: none;
    font-family: var(--pnb);
    font-size: 53px;
    line-height: 1;
    letter-spacing: 0.9px;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.banner_style2 .textSection .subTitle {
    font-size: 40px;
    line-height: 36px;
    display: block;
    font-family: var(--pnsb);
    letter-spacing: 1px;
}

.banner_style2 .textSection .desc {
    text-align: left;
    font-family: var(--pnr);
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.25px;
    width: 96%;
    color: #FFFFFF;
    padding: 10px 0 0;
    letter-spacing: 0.25px;
}

.banner_style2 .playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*Desktop*/
@media only screen and (max-width: 1920px) {
    /*1080*/
}

@media only screen and (max-width: 1792px) {
    /*1120*/
}

@media only screen and (max-width: 1680px) {
    /*1050*/
}

@media only screen and (max-width: 1600px) {

    /*900*/
    .banner.banner_style2 {
        height: calc(100vh - 65px);
    }
}

@media only screen and (max-width: 1536px) {
    /*960*/
}

@media only screen and (max-width: 1440px) {

    /*900*/
    .banner_style2 .textSection .text {
        width: 73%;
    }

    .banner_style2 {
        max-height: 540px;
    }
}

@media only screen and (max-width: 1366px) {

    /*768*/
    .banner_style2 .textSection .text {
        width: 77%;
    }

    .banner_style2 .textSection .title {
        font-size: 50px;
    }

    .banner_style2 .textSection .subTitle {
        font-size: 38px;
    }

    .banner_style2 .textSection .desc {
        font-size: 24px;
        line-height: 1.2;
    }

    .banner_style2 .playButton img {
        width: 60px;
    }
}

@media only screen and (max-width: 1344px) {
    /*840*/
}

@media only screen and (max-width: 1280px) {
    /*800*/
}

@media only screen and (max-width: 1280px) {
    /*720*/
}

@media only screen and (max-width: 1152px) {

    /*720*/
    .banner_style2 .textSection .title {
        font-size: 44px;
    }

    .banner_style2 .textSection .subTitle {
        font-size: 33px;
    }
}


/*Tab*/

@media only screen and (max-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {

    /*1024*/
    .banner_style2 .textSection .title {
        font-size: 39px;
    }

    .banner_style2 .textSection .subTitle {
        font-size: 29px;
    }
}

@media only screen and (max-width: 1280px) and (max-height: 800px) {
    /*800 */
}

@media only screen and (max-width: 1024px) and (max-height: 768px) {
    /*768*/
}

@media only screen and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {

    /*1024*/
    .banner_style2 .textSection .title {
        font-size: 39px;
    }

    .banner_style2 .textSection .subTitle {
        font-size: 29px;
    }

    .banner_style2 .textSection .desc {
        font-size: 20px;
    }
}

@media only screen and (max-width: 601px) and (max-height: 962px) {
    /*962 */
}

@media only screen and (max-width: 600px) and (max-height: 1024px) {
    /*1024 */
}


/*Mobile (widths) ----------------- */
@media only screen and (max-width: 800px) {
    .banner.banner_style2 {
        height: calc(100vh - 61px);
        flex-direction: column;
        /* justify-content: center; */
    }

    .banner_style2 .textSection {
        width: 100%;
        height: 50%;
    }

    .banner_style2 .textSection .title {
        font-size: 33px;
        line-height: 0.8;
    }

    .banner_style2 .textSection .text {
        width: 90%;
    }

    .banner_style2 .textSection .subTitle {
        font-size: 24.5px;
    }

    .banner_style2 .textSection .desc {
        font-size: 20px;
        line-height: 1.2;
        padding: 0;
        margin: 0;
    }

    .banner_style2 .playButton {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: unset;
        width: 60px;
        height: 60px;
        margin: 0;
        transform: translate(-50%, -50%);
    }

    .banner_style2 .playButton img {
        width: 100%;
    }

    .banner_style2 .textSection .overlay,
    .banner_style2 .textSection .overlay:after {
        width: 200vw;
        height: 150vw;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 75%;
        border-radius: 50% 50% 0 0;
    }

    .banner_style2 .playButton {}

    .banner_style2 .textSection .overlay:after {
        top: 50%;
    }
}

@media only screen and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) {

    .banner_style2 .textSection .overlay, .banner_style2 .textSection .overlay:after {
        width: 200vw;
        height: 200vw;
        top: -20%;
        transform: translate(-50%, 0);
    }
    .banner_style2 .textSection .overlay:after {
        top: 0;
    }
}

@media only screen and (max-width: 767px) {

    .banner_style2 .textSection .overlay,
    .banner_style2 .textSection .overlay:after {
        width: 200vw;
        height: 150vw;
        top: 213%;
    }

    .banner_style2 .textSection .overlay:after {
        top: 50%;
    }
}

@media only screen and (max-width: 680px) {
    .banner_style2 .textSection .overlay {
        top: 0%;
    }
    .banner_style2 .textSection .overlay:after {
        top: 0%;
    }
}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 360px) {}

