header {
    z-index: 100;
}

.my-container {
    position: fixed;
    top: 75px;
    left: 0;
    display: flex;
    width: 100vw;
    transition: .5s ease;
}

    .my-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .my-container section {
        min-width: 100%;
        min-height: 100vh;
        display: flex;
        z-index: 2;
        padding: 0 100px 100px;
        position: relative;
        right: 0
    }

        .my-container section:first-child {
            align-items: center;
            z-index: 5;
        }

section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #03a9f4;
    mix-blend-mode: overlay;
}

section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0.8;
}

section .video-wrapper {
    width: 850px;
    position: absolute;
    right: 5rem;
    top: 100px;
}

    section .video-wrapper .video {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        padding-top: 0px;
    }

        section .video-wrapper .video div:not(.btn-control) {
            border-radius: 8px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            overflow: hidden;
        }

        section .video-wrapper .video div:nth-child(2) {
            transform: translate(-20px, -20px);
            background-color: #5c257f;
            opacity: .2;
        }

        section .video-wrapper .video div:nth-child(3) {
            transform: translate(45px, -45px );
            background-color: #06704b;
            opacity: .2;
        }

        section .video-wrapper .video div:nth-child(4) {
            transform: translate(-45px, 45px );
            background-color: #097f98;
            opacity: .2;
        }

    section .video-wrapper .btn-control {
        width: 100px;
        height: 100px;
        background-color: #007F9C;
        border-radius: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    section .video-wrapper .fa-play {
        transform: translateX(10%);
        color: #ffffff;
    }

section .text {
    max-width: 600px;
}

    section .text a.btn {
        text-transform: uppercase;
        margin-top: 10px;
        min-width: 210px;
        letter-spacing: 2px;
        transition: 0.2s;
        background-color: #007F9C;
        border-radius: 10px;
        border-color: #007F9C;
        text-align: center;
        color: white;
    }

    section .text h1 {
        color: #333;
        font-family: tahoma;
        font-size: 3rem;
        font-weight: 100;
        line-height: 1.5;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        font-family: 'Calibri Bold';
    }

        section .text h1 span {
            font-size: 40px;
        }

        section .text h1 .message {
            background-color: #007f9c;
            color: #333;
            display: block;
            font-weight: 900;
            overflow: hidden;
            position: absolute;
            padding-left: 0.5rem;
            top: 0.2rem;
            left: 285px;
            animation: openclose 5s ease-in-out infinite;
        }

            section .text h1 .message .word1, section .text h1 .message .word2, section .text h1 .message .word3 {
                font-family: tahoma;
                color: #fff;
            }

@keyframes openclose {
    0% {
        top: 0.2rem;
        width: 0;
    }

    5% {
        width: 0;
    }

    15% {
        width: 230px;
    }

    30% {
        top: 0.2rem;
        width: 230px;
    }

    33% {
        top: 0.2rem;
        width: 0;
    }

    35% {
        top: 0.2rem;
        width: 0;
    }

    38% {
        top: -4.5rem;
    }

    48% {
        top: -4.5rem;
        width: 190px;
    }

    62% {
        top: -4.5rem;
        width: 190px;
    }

    66% {
        top: -4.5rem;
        width: 0;
        text-indent: 0;
    }

    71% {
        top: -9rem;
        width: 0;
        text-indent: 5px;
    }

    86% {
        top: -9rem;
        width: 285px;
    }

    95% {
        top: -9rem;
        width: 285px;
    }

    98% {
        top: -9rem;
        width: 0;
        text-indent: 5px;
    }

    100% {
        top: 0;
        width: 0;
        text-indent: 0;
    }
}

@media (max-width: 1675px) {
    section .video-wrapper {
        width: 650px;
    }
}

@media (max-width: 1400px) {
    .my-container section {
        padding: 50px;
    }

    section .video-wrapper {
        width: 550px;
        position: absolute;
        right: 3rem;
        top: 60px;
    }

        section .video-wrapper .btn-control {
            width: 64px;
            height: 64px;
        }

            section .video-wrapper .btn-control > svg {
                font-size: unset;
            }

    section .section-image img {
        transform: scale(.8);
    }
}

@media (max-width: 1200px) {
    .text {
        top: -15px;
        font-size: 12px;
    }

    #my-text {
        max-width: 500px;
    }

        #my-text h1 span {
            font-size: 32px;
        }

        #my-text h1 .message {
            left: 230px;
        }
}

@media (max-width: 1024px) {
    section .video-wrapper .video div:nth-child(2),
    section .video-wrapper .video div:nth-child(3),
    section .video-wrapper .video div:nth-child(4) {
        display: none;
    }

    #my-video-landing {
        display: block;
    }

    section .video-wrapper {
        width: 100%;
        position: initial;
    }
}

@media (max-width: 768px) {
    .product-items .product-item {
        margin-bottom: 2rem;
    }
}
@media (max-width: 600px) {
    section .text h1 .message {
        display: none;
    }
}

/*Section*/
/*Section title*/
.product-overview {
    padding-top: 5rem;
}

    .product-overview > .title-control {
        min-height: 170px;
    }

        .product-overview > .title-control h2 {
            font-size: 56px;
            font-weight: bold;
            max-width: 500px;
        }

    .product-overview .title-control h3.sub-heading {
        font-size: 28px;
        font-weight: bold;
    }

    .product-overview > .title-control p {
        font-size: 18px;
        text-align: left;
    }

/*Section items*/
.product-items a.h3 {
    text-decoration: none;
    font-size: 48px;
    font-weight: bold;
}

.product-items .sub-heading {
    font-size: 18px;
}

.product-items .product-item a.h4 {
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.product-items .product-item {
    text-align: left;
}

@media (max-width: 1885px) {
    .product-overview {
        padding-top: 1rem;
    }
}



@media (max-width: 1367px) {
    .product-overview {
        padding-top: 0;
    }

        .product-overview > .title-control h2 {
            font-size: 42px;
        }

    .product-items a.h3 {
        font-size: 36px;
    }

    .product-items .product-item a.h4 {
        font-size: 28px;
    }
}

@media (max-width: 1025px) {
    .my-container {
        display: flex;
        flex-direction: column;
        height: auto;
        transform: none !important;
        max-width: 100% !important;
        position: absolute;
        top: 54px;
    }

        .my-container section {
            min-height: 40vh;
            padding: 1rem;
        }

            .my-container section:first-child {
                align-items: flex-end;
            }

                .my-container section:first-child .text {
                    font-size: 12px;
                    margin-bottom: 2rem;
                }

    .text p, .text a {
        font-size: 18px;
    }

    .button-group {
        display: none !important;
    }

    .product-overview > .title-control {
        min-height: unset;
        padding-bottom: 2rem;
    }

        .product-overview > .title-control h2 {
            font-size: 30px
        }

    .product-items a.h3 {
        font-size: 30px
    }

    .product-items .product-item a.h4 {
        font-size: 20px
    }

    .product-items .product-item {
        font-size: 18px;
    }
}



/*Restricted area*/
.button-group {
    display: flex;
    position: fixed;
    bottom: -25px;
    z-index: 1;
    left: 177px;
    height: 50px;
}

    .button-group div {
        position: relative;
        display: flex;
        height: 100%;
        color: #FFF;
        width: 150px;
        padding-top: 5px;
        justify-content: center;
        font-size: 12px;
        cursor: pointer;
        text-transform: capitalize;
        transition: .5s;
    }

        .button-group div.active {
            transform: translateY(-25px);
            width: 150px;
            padding: 0 20px;
            text-align: center;
            padding-top: 5px;
        }

        .button-group div:nth-child(4n+1) {
            background-color: #007F9C;
        }

        .button-group div:nth-child(4n+2) {
            background-color: #096E4A;
        }

        .button-group div:nth-child(4n+3) {
            background-color: #5B2080;
        }

        .button-group div:nth-child(4n+4) {
            background-color: #429BB0;
        }

p {
    font: 18px/21px Calibri Regular;
}

/*image-animation*/
.image-animation .image {
    width: 250px;
    height: 250px;
    position: absolute;
}

@media (max-width: 1366px) {
    .image-animation .image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 1024px) {
    .image-animation {
        display: none;
    }
}

.image-animation .image img {
    object-fit: fill;
}

.image-animation .image:nth-child(1) {
    top: 37px;
    left: 100px;
}

.image-animation .image:nth-child(2) {
    left: 50%;
    bottom: 20%;
}

.image-animation .image:nth-child(3) {
    top: 10%;
    right: 10%;
}





.image-animation .image:nth-child(1).animation {
    animation-name: animation-active-1;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.image-animation .image:nth-child(2).animation {
    animation-name: animation-active-2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.image-animation .image:nth-child(3).animation {
    animation-name: animation-active-3;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.image-animation .image:nth-child(1).remove {
    animation-name: remove-1;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.image-animation .image:nth-child(2).remove {
    animation-name: remove-2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.image-animation .image:nth-child(3).remove {
    animation-name: remove-3;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

/*image 1*/
@keyframes animation-active-1 {
    0% {
        transform: translate(10px, 0px);
    }

    100% {
        transform: translate(10px, 45px) rotateZ(-76.65deg);
    }
}

@keyframes remove-1 {
    0% {
        transform: translate(10px, 45px) rotateZ(-76.65deg);
    }

    100% {
        transform: translate(10px, 0px) rotateZ(0deg);
    }
}

/*image 2*/
@keyframes animation-active-2 {
    0% {
        transform: translate(10px, 5px);
    }

    100% {
        transform: translate(10px, 45px) rotateZ(20.65deg);
    }
}


@keyframes remove-2 {
    0% {
        transform: translate(10px, 45px) rotateZ(20.65deg);
    }

    100% {
        transform: translate(10px, 0px) rotateZ(0deg);
    }
}
/*image 3*/

@keyframes animation-active-3 {
    0% {
        transform: translate(10px, 0px);
    }

    100% {
        transform: translate(10px, 45px) rotateZ(31deg);
    }
}

@keyframes remove-3 {
    0% {
        transform: translate(10px, 45px) rotateZ(31deg);
    }

    100% {
        transform: translate(10px, 0px) rotateZ(0deg);
    }
}
