
        /*
        New Owl
         */
        .item {
            position: relative;
        }

        .slide-content-left {
            position: absolute;
            top: 10px;
            left: 50px;
            z-index: 10;
        }

        .typewriter{
            position: absolute;
            font-family: "Times New Roman";
            color: #010039;
            font-size: 22px !important;
            letter-spacing: 6px;
            top: 65%;
            left: 50%;
            transform: translate(-50%, -65%);
        }

        .slide-content-right {
            position: absolute;
            bottom: 30px;
            right: 50px;
            z-index: 10;
        }

        .text_left {
            font-family: "Arial MT Std", sans-serif;
            font-size: 26px;
            color: white;
            font-weight: 600;
        }

        .text_right {
            font-family: "Arial MT Std", sans-serif;
            font-size: 26px;
            color: white;
            font-weight: 600;
        }

        @keyframes content_moving_left {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 20px;
            }
        }

        .slide-content-left .text_left {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left .text_left {
            animation: content_moving_left;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left .text_left{
            animation-delay: 1.0s;
        }

        .text_left_1 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 26px;
            color: white;
            font-weight: 600;
        }

        @keyframes content_moving_left_1 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -50px;
            }
        }

        .slide-content-left .text_left_1 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left .text_left_1 {
            animation: content_moving_left_1;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left .text_left_1{
            animation-delay: 1.0s;
        }


        .text_left_2 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 26px;
            color: white;
            font-weight: 600;
        }

        @keyframes content_moving_left_2 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 0px;
            }
        }

        .slide-content-left .text_left_2 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left .text_left_2 {
            animation: content_moving_left_2;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left .text_left_2{
            animation-delay: 1.0s;
        }



        @keyframes content_moving_right {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 0px;
            }
        }

        .slide-content-right .text_right {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-right .text_right {
            animation: content_moving_right;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right .text_right{
            animation-delay: 2.5s;
        }

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            background-color: #080d15;
            opacity: .1;
        }

        .overlay-2{
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            background-color: transparent;
            opacity: 0;
        }

        .owl-theme .owl-nav [class*=owl-]:hover {
            background: transparent !important;
            color: black !important;
        }

        .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
            outline: none;
        }

        #owl-example-article .item img {
            display: block;
            width: 100%;
            height: auto;
        }


        .owl-next span,
        .owl-prev span {
            font-size: 30px !important;
            cursor: pointer;
            outline: none !important;
        }
        .owl-next span:focus,
        .owl-prev span:focus {
            outline: none !important;
        }

        .owl-nav {
            position: absolute;
            bottom: 1.5%;
            transform: translate(-50%);
            left: 50%;
        }

        .owl-item {
            background-color: transparent;
            color: white;
            text-align: center;
        }

        .owl-prev {
            float: left;
            font-size: 14px;
            padding: 14px;
            margin-right: 50px;
            margin-top: -5px;
            color: #f0f0f0;
        }
        .owl-prev:hover {
            float: left;
            font-size: 18px;
            padding: 11px;
            margin-right: 53.7px;
            margin-top: -5px;
            color: #f0f0f0;
        }

        .owl-next {
            float: right;
            font-size: 14px;
            padding: 10px;
            color: #f0f0f0;
        }

        .owl-next:hover {
            float: right;
            font-size: 18px;
            padding: 8.5px;
            margin-top: -2px;
            color: #f0f0f0;
        }

        .owl-dots {
            counter-reset: slides-num;
            /* Initialize counter. */
            position: absolute;
            bottom: 3.7%;
            left: 50%;
            transform: translate(-50%);
            color: #f0f0f0;
        }
        .owl-dots:after {
            content: counter(slides-num);
            display: inline-block;
            font-size: 16px;
            vertical-align: middle;
        }

        .owl-dot {
            display: inline-block;
            counter-increment: slides-num;
            /* Increment counter */
            margin-right: 3px;
        }
        .owl-dot span {
            display: none;
        }
        .owl-dot.active:before {
            content: counter(slides-num) " / ";
            /* Use the same counter to get current item. */
            display: inline-block;
            vertical-align: middle;
            font-size: 16px;
            position: absolute;
            padding-top: 0.5px;
            left: 0;
            top: 0;
        }

        .img {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center; }

        .img-2 {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center; }

        .hero {
            position: relative; }

        .work {
            width: 100%; }
        .work .img {
            width: 100%;
            height: 600px;
            position: relative;
            z-index: 0;
            -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
            -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
            box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26); }

        .work .img-2 {
            width: 100%;
            height: 450px;
            position: relative;
            z-index: 0;
            -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
            -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
            box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26); }

        .work .img:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            z-index: -1;
            background: rgba(255, 93, 177, 0);
            background: -moz-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), color-stop(100%, black));
            background: -webkit-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -o-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -ms-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), to(black));
            background: linear-gradient(to bottom, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#000000', GradientType=0 );
            opacity: .3; }

        .work .img-2:after {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            content: '';
            z-index: -1;
            background: rgba(255, 93, 177, 0);
            background: -moz-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), color-stop(100%, black));
            background: -webkit-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -o-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -ms-linear-gradient(top, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 93, 177, 0)), color-stop(42%, rgba(148, 54, 103, 0)), to(black));
            background: linear-gradient(to bottom, rgba(255, 93, 177, 0) 0%, rgba(148, 54, 103, 0) 42%, black 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#000000', GradientType=0 );
            opacity: .3; }

        .work .img .icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #fff;
            display: block;
            opacity: 0;
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s; }

        .work .img-2 .icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #fff;
            display: block;
            opacity: 0;
            -webkit-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s; }

        @media (prefers-reduced-motion: reduce) {
            .work .img .icon {
                -webkit-transition: none;
                -o-transition: none;
                transition: none; } }

        @media (prefers-reduced-motion: reduce) {
            .work .img-2 .icon {
                -webkit-transition: none;
                -o-transition: none;
                transition: none; } }

        .work .text h3 {
            font-size: 18px;
            font-weight: 500; }
        .work .text h3 a {
            color: #000; }
        .work .text span {
            font-size: 12px;
            letter-spacing: 1px;
            color: rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            font-weight: 500; }
        .work:hover .img .icon {
            opacity: 1;
        }

        .work:hover .img-2 .icon {
            opacity: 1;
        }

        .ftco-section {
            padding: 2em 0; }

        .ftco-no-pt {
            padding-top: 0; }

        .ftco-no-pb {
            padding-bottom: 0; }

        .heading-section {
            font-size: 28px; }
        .owl-carousel .animated {
            -webkit-animation-duration: 1000ms;
            animation-duration: 1000ms;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both
        }

        .owl-carousel .owl-animated-in {
            z-index: 0
        }

        .owl-carousel .owl-animated-out {
            z-index: 1
        }

        .owl-carousel .fadeOut {
            -webkit-animation-name: fadeOut;
            animation-name: fadeOut
        }

        @-webkit-keyframes fadeOut {
            0% {
                opacity: 1
            }
            100% {
                opacity: 0
            }
        }

        @keyframes fadeOut {
            0% {
                opacity: 1
            }
            100% {
                opacity: 0
            }
        }

        .owl-height {
            -webkit-transition: height 500ms ease-in-out;
            -moz-transition: height 500ms ease-in-out;
            -ms-transition: height 500ms ease-in-out;
            -o-transition: height 500ms ease-in-out;
            transition: height 500ms ease-in-out
        }

        .owl-carousel {
            display: none;
            width: 100%;
            -webkit-tap-highlight-color: transparent;
            position: relative;
            z-index: 1
        }

        .owl-carousel .owl-stage {
            position: relative;
            -ms-touch-action: pan-Y
        }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0
        }

        .owl-carousel .owl-stage-outer {
            position: relative;
            overflow: hidden;
            -webkit-transform: translate3d(0px, 0, 0)
        }

        .owl-carousel .owl-item {
            position: relative;
            min-height: 1px;
            float: left;
            -webkit-backface-visibility: hidden;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none
        }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
            -webkit-transform-style: preserve-3d
        }


        .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
            display: none
        }

        .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
            cursor: pointer;
            cursor: hand;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

        .owl-carousel.owl-loaded {
            display: block
        }

        .owl-carousel.owl-loading {
            opacity: 0;
            display: block
        }

        .owl-carousel.owl-hidden {
            opacity: 0
        }

        .owl-carousel.owl-refresh .owl-item {
            display: none
        }

        .owl-carousel.owl-drag .owl-item {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

        .owl-carousel.owl-grab {
            cursor: move;
            cursor: -webkit-grab;
            cursor: -o-grab;
            cursor: -ms-grab;
            cursor: grab
        }

        .owl-carousel.owl-rtl {
            direction: rtl
        }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

        .no-js .owl-carousel {
            display: block
        }

        .owl-carousel .owl-item .owl-lazy {
            opacity: 0;
            -webkit-transition: opacity 400ms ease;
            -moz-transition: opacity 400ms ease;
            -ms-transition: opacity 400ms ease;
            -o-transition: opacity 400ms ease;
            transition: opacity 400ms ease
        }

        .owl-carousel .owl-item img {
            transform-style: preserve-3d
        }


        .owl-carousel .owl-video-wrapper {
            position: relative;
            height: 100%;
            background: #000
        }

        .owl-carousel .owl-video-play-icon {
            position: absolute;
            height: 80px;
            width: 80px;
            left: 50%;
            top: 50%;
            margin-left: -40px;
            margin-top: -40px;
            background: url(owl.video.play.png) no-repeat;
            cursor: pointer;
            z-index: 1;
            -webkit-backface-visibility: hidden;
            -webkit-transition: scale 100ms ease;
            -moz-transition: scale 100ms ease;
            -ms-transition: scale 100ms ease;
            -o-transition: scale 100ms ease;
            transition: scale 100ms ease
        }

        .owl-carousel .owl-video-play-icon:hover {
            -webkit-transition: scale(1.3, 1.3);
            -moz-transition: scale(1.3, 1.3);
            -ms-transition: scale(1.3, 1.3);
            -o-transition: scale(1.3, 1.3);
            transition: scale(1.3, 1.3)
        }

        .owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
            display: none
        }

        .owl-carousel .owl-video-tn {
            opacity: 0;
            height: 100%;
            background-position: center center;
            background-repeat: no-repeat;
            -webkit-background-size: contain;
            -moz-background-size: contain;
            -o-background-size: contain;
            background-size: contain;
            -webkit-transition: opacity 400ms ease;
            -moz-transition: opacity 400ms ease;
            -ms-transition: opacity 400ms ease;
            -o-transition: opacity 400ms ease;
            transition: opacity 400ms ease
        }

        .owl-carousel .owl-video-frame {
            position: relative;
            z-index: 1;
            height: 100%;
            width: 100%
        }

        /* PETRO SLIDER*/

        .text_left_petro{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 0px;
            }
        }

        .slide-content-left-petro .text_left_petro {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro {
            animation: content_moving_left_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro{
            animation-delay: 0.5s;
        }

        .text_left_petro_1{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_1 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 0.5px;
            }
        }

        .slide-content-left-petro .text_left_petro_1 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_1 {
            animation: content_moving_left_petro_1;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_1{
            animation-delay: 0.5s;
        }


        .text_left_petro_2{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_2 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -74px;
            }
        }

        .slide-content-left-petro .text_left_petro_2 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_2 {
            animation: content_moving_left_petro_2;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_2{
            animation-delay: 0.5s;
        }

        .text_left_petro_3{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_3 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -93px;
            }
        }

        .slide-content-left-petro .text_left_petro_3 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_3 {
            animation: content_moving_left_petro_3;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_3{
            animation-delay: 0.5s;
        }


        .text_left_petro_4{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_4 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -95px;
            }
        }

        .slide-content-left-petro .text_left_petro_4 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_4 {
            animation: content_moving_left_petro_4;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_4{
            animation-delay: 0.5s;
        }


        .text_left_petro_5{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_5 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -45px;
            }
        }

        .slide-content-left-petro .text_left_petro_5 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_5 {
            animation: content_moving_left_petro_5;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_5{
            animation-delay: 0.5s;
        }


        .text_left_petro_6{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-left-petro {
            position: absolute;
            top: 10px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_left_petro_6 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 0px;
            }
        }

        .slide-content-left-petro .text_left_petro_6 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro .text_left_petro_6 {
            animation: content_moving_left_petro_6;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro .text_left_petro_6{
            animation-delay: 0.5s;
        }









        .text_bottom_left_petro{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-bottom-left-petro {
            position: absolute;
            bottom: 20px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_bottom_left_petro {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: 0px;
            }
        }

        .slide-content-bottom-left-petro .text_bottom_left_petro {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-bottom-left-petro .text_bottom_left_petro {
            animation: content_moving_bottom_left_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-bottom-left-petro .text_bottom_left_petro{
            animation-delay: 0.5s;
        }

        .text_bottom_left_petro_1{
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-bottom-left-petro {
            position: absolute;
            bottom: 20px;
            left: 40px;
            z-index: 10;
        }

        @keyframes content_moving_bottom_left_petro_1 {
            0% {
                opacity: 0;
                left: -100px;
            }

            100% {
                opacity: 1;
                left: -30px;
            }
        }

        .slide-content-bottom-left-petro .text_bottom_left_petro_1 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-bottom-left-petro .text_bottom_left_petro_1 {
            animation: content_moving_bottom_left_petro_1;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-bottom-left-petro .text_bottom_left_petro_1{
            animation-delay: 0.5s;
        }














        .text_right_petro {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 0px;
            }
        }

        .slide-content-right-petro .text_right_petro {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro {
            animation: content_moving_right_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro{
            animation-delay: 1.0s;
        }

        .text_right_petro_1 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_1 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 20px;
            }
        }

        .slide-content-right-petro .text_right_petro_1 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_1 {
            animation: content_moving_right_petro_1;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_1{
            animation-delay: 1.0s;
        }


        .text_right_petro_2 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_2 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 0px;
            }
        }

        .slide-content-right-petro .text_right_petro_2 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_2 {
            animation: content_moving_right_petro_2;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_2{
            animation-delay: 1.0s;
        }


        .text_right_petro_3 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_3 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 52px;
            }
        }

        .slide-content-right-petro .text_right_petro_3 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_3 {
            animation: content_moving_right_petro_3;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_3{
            animation-delay: 1.0s;
        }


        .text_right_petro_4 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_4 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 25.5px;
            }
        }

        .slide-content-right-petro .text_right_petro_4 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_4 {
            animation: content_moving_right_petro_4;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_4{
            animation-delay: 1.0s;
        }


        .text_right_petro_5 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_5 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 9px;
            }
        }

        .slide-content-right-petro .text_right_petro_5 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_5 {
            animation: content_moving_right_petro_5;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_5{
            animation-delay: 1.0s;
        }


        .text_right_petro_6 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_6 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 34px;
            }
        }

        .slide-content-right-petro .text_right_petro_6 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_6 {
            animation: content_moving_right_petro_6;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_6{
            animation-delay: 1.0s;
        }


        .text_right_petro_7 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_7 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: 26px;
            }
        }

        .slide-content-right-petro .text_right_petro_7 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_7 {
            animation: content_moving_right_petro_7;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_7{
            animation-delay: 1.0s;
        }


        .text_right_petro_8 {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }

        .slide-content-right-petro {
            position: absolute;
            bottom: 15px;
            right: 50px;
            z-index: 10;
        }

        @keyframes content_moving_right_petro_8 {
            0% {
                opacity: 0;
                right: 120px;
            }

            100% {
                opacity: 1;
                right: -4px;
            }
        }

        .slide-content-right-petro .text_right_petro_8 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-right-petro .text_right_petro_8 {
            animation: content_moving_right_petro_8;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-right-petro .text_right_petro_8{
            animation-delay: 1.0s;
        }






        .text_center_petro {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: white;
            font-weight: 600;
        }
        .slide-content-center-petro {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        @keyframes content_moving_center_petro {
            0% {
                transform:translateY(1000px) translateX(-1000px);
                opacity:0;
            }
            100% {
                transform:translateY(0) translateX(0);
                opacity:1;
            }
        }
        .slide-content-center-petro .text_center_petro {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-center-petro .text_center_petro {
            animation: content_moving_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-center-petro .text_center_petro{
            animation-delay: 1.5s;
        }


        .text_up_petro_first {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: #00003f;
            font-weight: 600;
        }

        .slide-content-up-first {
            position: absolute;
            top: 20px;
            left: 140px;
            z-index: 10;
        }

        @keyframes content_moving_up_petro_first {
            0% {
                transform:translateY(1000px);
                opacity:0;
            }
            100% {
                transform:translateY(0);
                opacity:1;
            }
        }

        .slide-content-up-first .text_up_petro_first {
            opacity: 0;
            transition: all 1s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-up-first .text_up_petro_first {
            animation: content_moving_up_petro_first;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-up-first .text_up_petro_first{
            animation-delay: 0.4s;
        }


        .text_up_petro_second {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: #00003f;
            font-weight: 600;
        }

        .slide-content-up-second {
            position: absolute;
            top: 70px;
            left: 140px;
            z-index: 10;
        }

        @keyframes content_moving_up_petro_second {
            0% {
                transform:translateY(1000px);
                opacity:0;
            }
            100% {
                transform:translateY(0);
                opacity:1;
            }
        }

        .slide-content-up-second .text_up_petro_second {
            opacity: 0;
            transition: all 1s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-up-second .text_up_petro_second {
            animation: content_moving_up_petro_second;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-up-second .text_up_petro_second{
            animation-delay: 1.0s;
        }


        .text_up_petro_third {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: #00003f;
            font-weight: 600;
        }

        .slide-content-up-third {
            position: absolute;
            top: 120px;
            left: 140px;
            z-index: 10;
        }

        @keyframes content_moving_up_petro_third {
            0% {
                transform:translateY(1000px);
                opacity:0;
            }
            100% {
                transform:translateY(0);
                opacity:1;
            }
        }

        .slide-content-up-third .text_up_petro_third {
            opacity: 0;
            transition: all 1s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-up-third .text_up_petro_third {
            animation: content_moving_up_petro_third;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-up-third .text_up_petro_third{
            animation-delay: 1.5s;
        }

        .text_up_petro_fourth {
            font-family: "Arial MT Std", sans-serif;
            font-size: 20px;
            color: #00003f;
            font-weight: 600;
        }

        .slide-content-up-fourth {
            position: absolute;
            top: 170px;
            left: 140px;
            z-index: 10;
        }

        @keyframes content_moving_up_petro_fourth {
            0% {
                transform:translateY(1000px);
                opacity:0;
            }
            100% {
                transform:translateY(0);
                opacity:1;
            }
        }

        .slide-content-up-fourth .text_up_petro_fourth {
            opacity: 0;
            transition: all 1s;
            position: relative;
            z-index: 0;
        }

        .active .slide-content-up-fourth .text_up_petro_fourth {
            animation: content_moving_up_petro_fourth;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-up-fourth .text_up_petro_fourth{
            animation-delay: 2.0s;
        }

        #text_underline_refinery {
            position: absolute;
            left: 215px;
            top: 5px;
            width: 140px;
            height: 3px;
            background-color:#f0f0f0;
        }

        @keyframes text_underline_refinery_moving_left {
            0% {
                opacity: 0;
                left: 150px;
            }

            100% {
                opacity: 1;
                left: 150px;
            }
        }

         #text_underline_refinery {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active #text_underline_refinery {
            animation: text_underline_refinery_moving_left;
            animation-duration: 1.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active #text_underline_refinery{
            animation-delay: 1.5s;
        }

        #text_underline_rigs {
            position: absolute;
            right: 0px;
            bottom: -1px;
            width: 200px;
            height: 3px;
            background-color:#f0f0f0;
        }

        @keyframes text_underline_rigs_moving_left {
            0% {
                opacity: 0;
                right: 2px;
            }

            100% {
                opacity: 1;
                right: 2px;
            }
        }

        #text_underline_rigs {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }

        .active #text_underline_rigs {
            animation: text_underline_rigs_moving_left;
            animation-duration: 1.5s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active #text_underline_rigs{
            animation-delay: 2.5s;
        }



        .text_baron_1 {
            font-family: "Times New Roman", sans-serif;
            font-size: 30px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-172px, 72px);
            z-index: 10;
        }
        @keyframes content_showing_center_petro {
            0% {
                opacity:0;
            }
            100% {
                opacity:1;
            }
        }
        .slide-content-left-petro-1 .text_baron_1 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-1 .text_baron_1 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-1 .text_baron_1{
            animation-delay: 0.5s;
        }

        .text_baron_2 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-152px, 75px);
            z-index: 10;
        }

        .slide-content-left-petro-2 .text_baron_2 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-2 .text_baron_2 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-2 .text_baron_2{
            animation-delay: 0.8s;
        }

        .text_baron_3 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-3 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-134px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-3 .text_baron_3 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-3 .text_baron_3 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-3 .text_baron_3{
            animation-delay: 1.1s;
        }

        .text_baron_4 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-4 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-118px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-4 .text_baron_4 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-4 .text_baron_4 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-4 .text_baron_4{
            animation-delay: 1.4s;
        }

        .text_baron_5 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-5 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-100px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-5 .text_baron_5 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-5 .text_baron_5 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-5 .text_baron_5{
            animation-delay: 1.7s;
        }

        .text_baron_6 {
            font-family: "Times New Roman", sans-serif;
            font-size: 30px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-6 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-65px, 72px);
            z-index: 10;
        }

        .slide-content-left-petro-6 .text_baron_6 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-6 .text_baron_6 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-6 .text_baron_6{
            animation-delay: 2.0s;
        }

        .text_baron_7 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-7 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-49px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-7 .text_baron_7 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-7 .text_baron_7 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-7 .text_baron_7{
            animation-delay: 2.3s;
        }

        .text_baron_8 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-8 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-30px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-8 .text_baron_8 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-8 .text_baron_8 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-8 .text_baron_8{
            animation-delay: 2.6s;
        }

        .text_baron_9 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-9 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-19px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-9 .text_baron_9 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-9 .text_baron_9 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-9 .text_baron_9{
            animation-delay: 2.9s;
        }

        .text_baron_10 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-10 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-0px, 75px);
            z-index: 10;
        }
        .slide-content-left-petro-10 .text_baron_10 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-10 .text_baron_10 {
            animation: content_showing_center_petro;
            animation-duration: 1s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-10 .text_baron_10{
            animation-delay: 3.2s;
        }

        .text_baron_11 {
            font-family: "Times New Roman", sans-serif;
            font-size: 24px;
            color: #00003f;
            font-weight: 500;
        }
        .slide-content-left-petro-11 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(30px, 72px);
            z-index: 10;
        }

        .slide-content-left-petro-11 .text_baron_11 {
            opacity: 0;
            transition: all 3s;
            position: relative;
            z-index: 0;
        }
        .active .slide-content-left-petro-11 .text_baron_11 {
            animation: content_showing_center_petro;
            animation-duration: 3s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .active .slide-content-left-petro-11 .text_baron_11{
            animation-delay: 3.5s;
        }
