﻿
body {
    font-family: 'Prompt', sans-serif;
    background: #000000;
}

.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }


.seperate-stroke {
    width: 80%;
    margin: 10px auto;
}


.viewall {
    text-align: center;
    margin-top: 40px;
}

    .viewall .viewall-button {
        color: #ffffff;
        border: 2px solid white;
        margin: 0px 10px;
        padding: 7px 20px;
        border-radius: 20px;
        min-width: 80px;
        text-align: center;
        font-weight: 600;
        transition: 0.3s ease all;
    }

        .viewall .viewall-button:hover {
            background: #ffffff;
            color: #000000;
            text-decoration: none;
        }

    .viewall.dark-theme .viewall-button {
        color: #000000;
        border: 2px solid #000000;
    }

        .viewall.dark-theme .viewall-button:hover {
            background: #ffffff;
            color: #000000;
        }



.full-width {
    width: 100%;
}


.mb-30 {
    margin-bottom: 30px;
}

/*****************************************
* Swiper
*****************************************/
/*.swiper-slide{
    border:1px solid red;
}*/

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    /*color: #2d3e91;*/
    color: #ffffff;
    left: 20px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    color: #ffffff;
    right: 20px;
    /*background: rgba(255, 255, 255, 0.5);
    height: 60px;
    width: 60px;
    border-radius: 50%;*/
}

@media (max-width: 450px) {
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 0px;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 0px;
    }


    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        font-size: 20px;
    }

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        font-size: 20px;
    }
}


.cookie {
    position: fixed;
    padding: 20px 0;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    background: #303840;
    color: #ffffff;
}

    .cookie a {
        color: #3d1049 !important;
        text-decoration: underline;
        cursor: pointer;
    }

        .cookie a:hover {
            color: #3d1049 !important;
        }

    .cookie .btn-accept, .cookie .btn-accept:hover {
        font-weight: bold;
        text-transform: uppercase;
        color: #3d1049;
        background: #ebcd15;
        font-size: 0.8rem;
    }

.btn-accept {
    position: absolute;
    padding: 6px 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #303841;
    background-color: #ebcd15;
    border-radius: 0px;
}

@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 450px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}


#main-content {
    /*margin-top: 250px;*/
    min-height: 50vh;
}


@media(max-width: 450px) {
    #main-content {
        margin-top: 0px
    }
}


.cls-1 {
    fill: #231f20;
}

/*****************************************
* No Select
*****************************************/
.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .no-select:focus {
        outline: none !important;
    }

/*****************************************
* Iframe Wrapper
*****************************************/
.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    /* pointer-events: none;*/
    outline: none;
}

    .iframe-wrapper.small-frame {
        padding-bottom: 40%; /* 16:9 */
    }

    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



@media(max-width: 450px) {
    .iframe-wrapper.small-frame {
        padding-bottom: 50%;
    }
}

#panorama-iframe {
    position: relative;
    background: #000000;
    pointer-events:none;
}


    #panorama-iframe .your-drone {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -90%);
        width: 30%;
        opacity: 2;
        z-index: 1;
    }

    #panorama-iframe .frame-gradient-bottom {
        position: absolute;
        height: 100px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }


@media(max-width: 450px) {
    #panorama-iframe .your-drone {
        width: 50%;
    }
}



/*****************************************
* Website Header Logo
*****************************************/
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
}

@media(max-width: 450px) {
    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 999;
        transform: translate(-50%, -50%);
    }
}



.slide-wrapper {
    overflow: hidden;
    height: auto;
}


/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

/*.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #009578;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}*/

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    /*width: 300px;*/
    height: 60px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

@media(max-width: 450px) {
    .blink-image {
        height: 40px;
        margin-top: -100px;
    }
}



/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: rgb(255,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
}

    #menuModal .modal-dialog {
        margin: 50px;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: transparent;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -30px;
                right: -20px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 30%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    font-family: 'Blair', sans-serif;
                    color: #ffffff;
                    font-size: 16px;
                    line-height: 20px;
                    letter-spacing: 0px;
                    padding: 10px 0px;
                    text-transform: uppercase;
                }
/*****************************************
* Menu Dropdown
*****************************************/
.menu-dropdown-mobile {
}

    .menu-dropdown-mobile .header {
        color: #ffffff;
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        display: block;
    }

    .menu-dropdown-mobile .menu-product-item {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 10px;
        color: #ffffff;
    }

        .menu-dropdown-mobile .menu-product-item .menu-product-item-icon {
            width: 60px;
        }

        .menu-dropdown-mobile .menu-product-item .menu-product-item-lists {
            width: calc(100% - 60px);
        }

            .menu-dropdown-mobile .menu-product-item .menu-product-item-lists .menu-product-item-type {
                font-weight: 600;
                font-size: 16px;
                line-height: 20px;
                margin-bottom: 0px;
                color: #ffffff;
            }

    .menu-dropdown-mobile .menu-dropdown-lists-item ul {
        list-style: none;
        padding-left: 15px;
        margin-top: 5px;
    }

        .menu-dropdown-mobile .menu-dropdown-lists-item ul li {
            list-style: none;
        }

            .menu-dropdown-mobile .menu-dropdown-lists-item ul li a {
                color: #ffffff;
                font-size: 14px !important;
                line-height: 18px !important;
                font-weight: 400;
            }



/*****************************************
* Navbar 
*****************************************/
.navbar-light {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.2s ease all;
    height: 100px;
    background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.3));
    /*background: #ffffff;
    background: none;
    background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.3));*/
}


    .navbar-light .navbar-brand .navbar-logo {
        height: 60px;
        transition: 0.5s ease all;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:visited,
    .navbar-light .navbar-nav .nav-link:focus {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 14px;
        line-height: 16px;
        padding: 25px 20px;
        letter-spacing: 0px;
        cursor: pointer;
        font-weight: 500;
        text-transform: uppercase;
        transition: 0.3s ease all;
    }

        .navbar-light .navbar-nav .nav-link:hover {
            color: #ff0000;
        }

        .navbar-light .navbar-nav .nav-link.active {
            background-color: #3170e7 !important;
            border-color: #3170e7 !important;
            border-radius: 10px;
            outline: 0;
            position: relative;
            color: #ffc602;
        }


    .navbar-light.navbar-scroll {
        padding: 1.5rem 1rem 1.5rem 1rem;
        transition: 0.2s ease all;
        height: 80px;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        /*background: #1c1c1c;*/
    }


        .navbar-light.navbar-scroll .navbar-brand {
            transition: 0.5s ease all;
        }

            .navbar-light.navbar-scroll .navbar-brand .navbar-logo {
                height: 40px;
            }


    .navbar-light .navbar-toggler {
        color: rgba(0,0,0,.5);
        border: none;
        outline: none;
        position: absolute;
        right: 10px;
        top: 13px;
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }



@media (max-width: 450px) {

    .navbar-light {
        margin: 0px auto 0px auto;
        padding: 0rem 1rem;
        height: 60px;
    }

        .navbar-light .navbar-toggler {
            border: none;
            outline: none;
            right: 0px;
            top: 5px;
        }

        .navbar-light .navbar-share {
            top: 26px;
            right: 60px;
        }

            .navbar-light .navbar-share img {
                width: 20px;
            }

        .navbar-light .navbar-top {
            top: 7px;
            right: 50px;
        }

        .navbar-light .navbar-brand {
            top: 8px;
        }


            .navbar-light .navbar-brand .navbar-logo {
                height: 30px;
            }


        .navbar-light .navbar-nav .nav-link,
        .navbar-light .navbar-nav .nav-link:hover,
        .navbar-light .navbar-nav .nav-link:visited {
            color: #ffffff;
            font-size: 1.5rem;
            letter-spacing: 0px;
        }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }

    .navbar-light.navbar-scroll {
        height: 60px;
        padding: 0.5rem 1rem 0.5rem 1rem;
        background: linear-gradient(to bottom, rgb(0, 0, 0, 1), rgba(0, 0, 0, 0)) !important;
    }

        .navbar-light.navbar-scroll .navbar-brand .navbar-logo {
            height: 30px;
        }
}


/*****************************************
* Menu Dropdown
*****************************************/
.menu-dropdown-content {
    display: none;
    top: 70px;
    left: -15px;
    right: -15px;
    position: absolute;
    width: calc(100% + 30px);
    padding: 0px;
    /*display: block;
    transition: 1s ease all;
    background: rgba(0, 0, 0,0.5);
    height: auto;
    display: flex;
    justify-content: flex-start;*/
}

@media (max-width: 800px) {

    .menu-dropdown-content {
        top: 75px;
        right: 0px;
    }
}


.menu-dropdown:hover .menu-dropdown-content {
    display: block;
    transition: 1s ease all;
    background: rgba(0, 0, 0,0.5);
    height: auto;
    display: flex;
    justify-content: flex-start;
}

.menu-dropdown-thumbnail {
    width: 40%;
}

    .menu-dropdown-thumbnail img {
        width: 100%;
    }

.menu-dropdown-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 60%;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    /*background: #ffffff;*/
}

    .menu-dropdown-lists a {
        color: #ffffff;
    }

        .menu-dropdown-lists a:hover {
            color: #ffc602 !important;
            text-decoration: none;
        }

    .menu-dropdown-lists .menu-dropdown-lists-item {
        width: 50%;
        padding: 20px;
    }

        .menu-dropdown-lists .menu-dropdown-lists-item .header {
            color: #ffffff;
            font-size: 24px;
            line-height: 28px;
            margin-bottom: 20px;
            font-weight: 600;
            display: block;
        }

        .menu-dropdown-lists .menu-dropdown-lists-item a:hover {
            color: #ffc602;
        }

        .menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 20px;
            color: #ffffff;
        }

            .menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-icon {
                width: 60px;
            }

            .menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-lists {
                width: calc(100% - 60px);
            }



                .menu-dropdown-lists .menu-dropdown-lists-item .menu-product-item .menu-product-item-lists .menu-product-item-type {
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 24px;
                    margin-bottom: 0px;
                    color: #ffffff;
                }



        .menu-dropdown-lists .menu-dropdown-lists-item ul {
            list-style: none;
            padding-left: 15px;
            margin-top: 5px;
        }

            .menu-dropdown-lists .menu-dropdown-lists-item ul li {
            }

                .menu-dropdown-lists .menu-dropdown-lists-item ul li a {
                    color: #ffffff;
                    font-size: 16px;
                    line-height: 20px;
                    font-weight: 400;
                }

                    .menu-dropdown-lists .menu-dropdown-lists-item ul li a:hover {
                        color: #ffc602;
                    }





/*****************************************
* Button Action
*****************************************/
.button-action {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease all;
}

    .button-action:hover {
        text-decoration: none;
        transform: scale(1.1);
    }


    .button-action .button-text {
        color: #ffffff;
        font-size: 14px;
        padding-right: 10px;
        letter-spacing: 1px;
    }

    .button-action:hover .button-text {
        color: #ffc602;
        font-size: 14px;
        padding-right: 10px;
        letter-spacing: 1px;
        text-decoration: none;
    }

    .button-action .button-icon {
        display: inline-flex;
    }

        .button-action .button-icon .button-icon-icon {
            appearance: none;
            padding: 0;
            margin: 0;
            border: 0;
            background: transparent;
            display: inline-flex;
            align-items: center;
            height: 30px;
            width: 30px;
            padding: 8px;
            justify-content: center;
            border-radius: 100%;
            cursor: pointer;
            position: relative;
            background: #fff;
            font-size: 0;
            border: 2px solid #969696;
            background: none !important;
        }


            .button-action .button-icon .button-icon-icon .icon-over-circle {
                position: absolute;
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
            }

                .button-action .button-icon .button-icon-icon .icon-over-circle svg {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    height: 100%;
                    transform: translate(-50%, -50%) rotate(-90deg);
                }


    .button-action:hover .button-icon .button-icon-icon {
        border: 2px solid #ffc602;
    }

        .button-action:hover .button-icon .button-icon-icon svg {
            fill: #ffc602;
        }

        .button-action:hover .button-icon .button-icon-icon .icon-over-circle {
        }

            .button-action:hover .button-icon .button-icon-icon .icon-over-circle svg {
                fill: #ffc602 !important;
            }




/*****************************************
* Header Banner
*****************************************/
#header-banner {
    position: relative;
}

    #header-banner::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 1), rgba(0, 0, 0, 0) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


@media (max-width: 450px) {
    #home-video {
    }
}


.social-nav-link {
    position: relative;
    cursor: pointer;
}

    .social-nav-link .social-tab {
        top: 65px;
        left: 0px;
        right: 0px;
        position: absolute;
        width: calc(100%);
        padding: 0px;
        height: 0px;
        transition: 0.3s ease all;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .social-nav-link .social-tab .social-tab-content {
            /*display: none;*/
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

            .social-nav-link .social-tab .social-tab-content .social-item {
                width: 40px;
                height: 40px;
                margin: 0px 10px;
                transition: 0.3s ease all;
            }

                .social-nav-link .social-tab .social-tab-content .social-item:hover {
                    width: 60px;
                    height: 60px;
                }

    .social-nav-link .button-icon-icon {
        transition: 0.3s ease all;
    }

    .social-nav-link .button-text {
        transition: 0.3s ease all;
    }


/*****************************************
* More Button
*****************************************/
.more-button, .more-button:hover {
    font-family: 'Blair', sans-serif;
    color: #ffffff;
    background: #4d4d4d;
    display: inline-block;
    margin: 30px 15px 10px 15px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding: 5px 20px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

    .more-button.parallelogram {
        transform: skew(-40deg);
    }

    .more-button .skew-fix {
        display: inline-block;
        transform: skew(40deg);
    }


@media (max-width: 450px) {
    .more-button, .more-button:hover {
        font-size: 14px;
        line-height: 16px;
    }
}


/*****************************************
* Home Work
*****************************************/
#hero {
    padding: 100px 0px;
    color: #ffffff;
}


@media (max-width: 450px) {
    #hero {
        padding: 20px 0px;
    }
}



.hero-slider {
    position: relative;
}

.hero-item {
    position: relative;
    display: block;
}

    .hero-item .hero-item-title {
        position: absolute;
        color: #fff;
        text-align: center;
        margin: 0;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
        font-family: 'Blair', sans-serif;
        font-size: 40px;
        line-height: 40px;
        text-transform: uppercase;
    }

    .hero-item img {
        width: 100%;
    }

    .hero-item .your-drone {
        bottom: 0%;
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -90%);
        width: 30%;
        opacity: 2;
        z-index: 1;
    }

        .hero-item .your-drone img {
            width: 100%;
        }

    .hero-item .hero-item-gradient-top {
        position: absolute;
        height: 200px;
        top: 0px;
        left: 0px;
        right: 0px;
        background-image: linear-gradient(to top, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }

    .hero-item .hero-item-gradient-bottom {
        position: absolute;
        height: 200px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1));
    }


@media (max-width: 450px) {
    .hero-item .hero-item-title {
        font-size: 22px;
        line-height: 26px;
        top: 50%;
        left: 13%;
        -ms-transform: translate(-5%, -50%);
        transform: translate(-5%, -50%);
    }

    .hero-item .your-drone {
        width: 40%;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -85%);
    }

    .hero-item .hero-item-gradient-top {
        height: 60px;
    }

    .hero-item .hero-item-gradient-bottom {
        height: 60px;
    }
}



.owl-theme .owl-dots {
    margin-top: -50px !important;
    position: relative;
}

    .owl-theme .owl-dots .owl-dot span {
        background: #ff0000;
        margin: 5px 20px;
        width: 13px;
        height: 13px;
    }

    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #dc0808;
    }

.owl-theme .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    outline: none;
}

@media (max-width: 450px) {
    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 10px;
    }
}


/*****************************************
* Home Work
*****************************************/
#work {
    padding: 100px 0px 100px;
    color: #ffffff;
}

    /*#work .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding-bottom: 20px;
    }*/

    #work .title {
        font-family: 'Blair', sans-serif;
        color: #000000;
        background: #ff0000;
        display: inline-block;
        margin: 30px 15px 0px 15px;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        padding: 5px 20px;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

        #work .title.parallelogram {
            transform: skew(-40deg);
        }

        #work .title .skew-fix {
            display: inline-block;
            transform: skew(40deg);
        }


    #work .detail {
        color: #ffffff;
        font-size: 16px;
        line-height: 20px;
        font-weight: normal;
        width: 80%;
        margin: 30px auto 0px auto;
        text-align: center;
    }

        #work .detail p {
            margin-bottom: 20px;
        }

            #work .detail p:last-child {
                margin-bottom: 0px;
            }


@media (max-width: 450px) {
    #work {
        padding: 0px 0px 40px 0px;
    }

        #work .title {
            font-size: 14px;
            line-height: 16px;
        }

        #work .detail {
            width: 100%;
            font-size: 14px;
            line-height: 16px;
        }
}



/*****************************************
* Movie Work
*****************************************/
#movie {
    padding: 100px 0px;
}

    #movie .title {
        font-family: 'Blair', sans-serif;
        color: #000000;
        background: #ff0000;
        display: inline-block;
        margin: 30px 15px 30px 15px;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        padding: 5px 20px;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

        #movie .title.parallelogram {
            transform: skew(-40deg);
        }

        #movie .title .skew-fix {
            display: inline-block;
            transform: skew(40deg);
        }



@media (max-width: 450px) {
    #movie {
        padding: 0px 0px 20px 0px;
    }

        #movie .title {
            font-size: 14px;
            line-height: 16px;
            margin: 30px 15px 20px 15px;
        }
}

.main-movie {
    width: 100%;
    margin: 20px auto 20px auto;
    position: relative;
}

@media (max-width: 450px) {
    .main-movie {
        width: 100%;
    }
}

.main-movie-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: url('/frontend-assets/images/background/bg-main-movie.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

    .main-movie-content .main-movie-photo {
        width: 40%;
    }

    .main-movie-content .main-movie-detail {
        width: 60%;
        padding: 30px;
        font-size: 16px;
        line-height: 20px;
    }

        .main-movie-content .main-movie-detail .movie-name {
            font-size: 32px;
            line-height: 36px;
            font-weight: bold;
            font-family: 'Blair','Prompt', sans-serif;
            margin-bottom: 30px;
        }

        .main-movie-content .main-movie-detail p {
            font-size: 18px;
            line-height: 20px;
            margin-bottom: 20px;
        }


@media (max-width: 450px) {

    .main-movie-content {
        background: url('/frontend-assets/images/background/bg-main-movie-mobile.png');
        background-size: auto 100%;
        background-position: top center;
        background-repeat: no-repeat;
    }

        .main-movie-content .main-movie-photo {
            width: 100%;
        }

        .main-movie-content .main-movie-detail {
            width: 100%;
            padding: 20px;
        }

            .main-movie-content .main-movie-detail .movie-name {
                font-size: 18px;
                line-height: 20px;
                margin-bottom: 20px;
            }

            .main-movie-content .main-movie-detail p {
                font-size: 14px;
                line-height: 16px;
            }
}

.movie-lists {
    padding: 0px 0px 0px 0px;
}

.movie-item {
    cursor: pointer;
    padding: 10px;
}

    .movie-item .movie-thumbnail {
        
    }

@media (max-width: 450px) {
    .movie-lists {
        padding: 0px 0px 0px 0px;
    }
}



/*****************************************
* Movie Work
*****************************************/
#view-gallery {
    padding: 0px 0px;
    position: relative;
}

    #view-gallery .title {
        position: absolute;
        color: #fff;
        text-align: center;
        margin: 0;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1;
        font-family: 'Blair', sans-serif;
        font-size: 40px;
        line-height: 40px;
        text-transform: uppercase;
    }




@media (max-width: 450px) {

    #view-gallery .title {
        font-size: 22px;
        line-height: 26px;
        top: 50%;
        left: 20%;
        -ms-transform: translate(5%, -50%);
        transform: translate(5%, -50%);
    }
}


/*****************************************
* Commercial
*****************************************/


#commercial {
    padding: 100px 0px;
}

    /* #commercial .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }*/

    #commercial .title {
        font-family: 'Blair', sans-serif;
        color: #000000;
        background: #ff0000;
        display: inline-block;
        margin: 30px 15px 30px 15px;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        padding: 5px 20px;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

        #commercial .title.parallelogram {
            transform: skew(-40deg);
        }

        #commercial .title .skew-fix {
            display: inline-block;
            transform: skew(40deg);
        }


@media (max-width: 450px) {

    #commercial {
        padding: 0px 0px 20px 0px;
    }

        #commercial .title {
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 20px;
        }
}



.main-commercial {
    position: relative;
    padding: 0px;
    margin: 20px auto 20px auto;
}

@media (max-width: 450px) {
    .main-commercial {
        margin-bottom: 20px;
    }
}

.main-commercial-content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: url('/frontend-assets/images/background/bg-main-movie.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

    .main-commercial-content .main-commercial-photo {
        width: 60%;
    }

    .main-commercial-content .main-commercial-detail {
        width: 40%;
        padding: 30px;
        font-size: 16px;
        line-height: 20px;
    }

        .main-commercial-content .main-commercial-detail .commercial-name {
            font-size: 20px;
            line-height: 24px;
            font-weight: bold;
            font-family: 'Blair', sans-serif;
            margin-bottom: 10px;
        }

        .main-commercial-content .main-commercial-detail p {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 20px;
        }


@media (max-width: 450px) {

    .main-commercial-content {
        background: url('/frontend-assets/images/background/bg-main-movie-mobile.png');
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
    }

        .main-commercial-content .main-commercial-photo {
            width: 100%;
        }

        .main-commercial-content .main-commercial-detail {
            width: 100%;
            padding: 20px;
            font-size: 14px;
            line-height: 16px;
        }

            .main-commercial-content .main-commercial-detail .commercial-name {
                font-size: 18px;
                line-height: 20px;
            }

            .main-commercial-content .main-commercial-detail .commercial-detail p {
                font-size: 14px;
                line-height: 16px;
                margin-bottom: 10px;
            }
}

.commercial-lists {
    padding: 40px 0px 0px 0px;
}


.commercial-item {
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
}

    .commercial-item .commercial-name {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 16px;
        line-height: 22px;
        height: 35px;
        padding: 10px 0px;
        overflow: hidden;
        /*display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;*/
    }


@media (max-width: 450px) {
    .commercial-item .commercial-name {
        font-size: 14px;
        line-height: 22px;
    }
}



/*.commercial-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px;
}

    .commercial-lists .commercial-item {
        width: calc(100% / 3 - 20px);
        margin: 10px;
    }

        .commercial-lists .commercial-item .commercial-name {
            font-family: 'Blair', sans-serif;
            color: #ffffff;
            font-size: 16px;
            line-height: 22px;
            height: 60px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            overflow: hidden;
            padding: 10px 0px;
        }


@media (max-width: 450px) {
    .commercial-lists {
        padding: 20px;
    }

        .commercial-lists .commercial-item {
            width: 100%;
            margin: 0px;
        }

            .commercial-lists .commercial-item .commercial-name {
                font-size: 14px;
                line-height: 18px;
            }
}*/



/*****************************************
* Services
*****************************************/
#services {
    padding: 100px 0px 0px 0px;
    color: #ffffff;
}

    #services .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 20px;
    }

    #services .subtitle {
        font-size: 18px;
        line-height: 20px;
        margin: 0px auto 20px auto;
        width: 60%;
        text-align: center;
    }


@media (max-width: 450px) {

    #services {
        padding: 50px 0px;
    }

        #services .title {
            font-size: 26px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        #services .subtitle {
            font-size: 14px;
            line-height: 16px;
            width: 100%;
        }
}


/*****************************************
* Services
*****************************************/
.panorama-iframe {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}


    .panorama-iframe iframe {
        width: 100%;
        height: 500px;
    }


.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }




/*****************************************
* Product Carousel
*****************************************/
#drone-type {
    padding: 20px;
    background: #000000;
}

    #drone-type .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 20px;
    }

    #drone-type .subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-top: 0px;
        letter-spacing: 2px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

@media(max-width:450px) {

    #drone-type {
        padding: 0px 10px;
    }

        #drone-type .container {
            padding-right: 0px;
            padding-left: 0px;
        }


        #drone-type .title {
            font-size: 26px;
            margin-bottom: 0px;
        }

        #drone-type .subtitle {
            padding: 0px 15px;
        }
}

/*.product-recommened {
    padding: 0px 40px;
}
*/

.drone-type-item, .drone-type-item:hover {
    color: #000000;
    text-decoration: none;
    cursor: -webkit-grab;
    cursor: grab;
    color: #000000;
    text-align: center;
}

    .drone-type-item .drone-type-name {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 24px;
        line-height: 26px;
        margin-top: 0px;
        text-transform: uppercase;
        padding-top: 20px;
    }

    .drone-type-item .drone-type-photo {
        position: relative;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: top center !important;
        box-shadow: 0 0 8px 8px #000000 inset;
        padding-bottom: 70%;
    }



@media(max-width:450px) {

    .drone-type-item .drone-type-name {
        font-size: 18px;
        line-height: 18px;
    }

    .drone-type-item .drone-type-photo .gradient-top {
        height: 100px;
    }

    .drone-type-item .drone-type-photo .gradient-bottom {
        height: 100px;
    }
}


.view-more-product {
    margin-top: 20%;
    color: #000000;
    display: block;
    cursor: move;
}

    .view-more-product .view-more-product-icon {
        text-align: center;
    }

        .view-more-product .view-more-product-icon img {
            width: 20%;
            margin: 0px auto;
        }

    .view-more-product .view-more-product-text {
        font-size: 24px;
        line-height: 26px;
        font-weight: bold;
        margin-top: 0px;
        text-transform: uppercase;
        padding-top: 20px;
        text-align: center;
    }


/*https://codepen.io/hbadri-dev/pen/KKBqxvQ*/
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}


/*****************************************
* Footer
*****************************************/
#footer {
    padding: 20px 0px 20px 0px;
    /*border-top: 1px solid #0c0c0c;*/
    color: #ffffff;
    margin: 0px auto;
    text-align: center;
    z-index: 2;
    position: relative;
    background: #000000;
}




/*****************************************
* Product Detail Modal
*****************************************/
.iframe-modal {
    /*background: #222a35;*/
    background: rgba(0, 0, 0, 0.5);
}

    .iframe-modal .modal-dialog {
        max-width: 70%;
        margin: 5% auto;
    }

        .iframe-modal .modal-dialog .modal-content {
            background: #000000;
            box-shadow: 2px 4px 12px rgba(255, 255,255, 0.2);
            /*height: 80vh;*/
        }


            .iframe-modal .modal-dialog .modal-content .modal-header {
                padding: 5px 0px;
                border-bottom: none;
            }

                .iframe-modal .modal-dialog .modal-content .modal-header .close {
                    opacity: 1;
                    outline: none;
                    padding: 1rem 1.5rem;
                }

                    .iframe-modal .modal-dialog .modal-content .modal-header .close img {
                        width: 26px;
                    }

            .iframe-modal .modal-dialog .modal-content .modal-body {
                padding: 0rem;
            }


                .iframe-modal .modal-dialog .modal-content .modal-body iframe {
                    aspect-ratio: 16 / 9;
                    height: 100%;
                    width: 100%;
                }

                .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail {
                    color: #000000;
                    text-align: center;
                    padding: 40px;
                }

                    .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .headline {
                        font-size: 30px;
                        font-weight: 600;
                    }


                    .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .subheadline {
                        font-size: 24px;
                        margin-bottom: 30px;
                    }

                    .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .copybody {
                        font-size: 22px;
                        font-style: italic;
                    }

                .iframe-modal .modal-dialog .modal-content .modal-body .close-button {
                    position: absolute;
                    padding: 10px;
                    top: -28px;
                    right: -25px;
                }

                    .iframe-modal .modal-dialog .modal-content .modal-body .close-button button {
                        outline: none;
                        border: 1px solid #cbcbcb;
                        width: 30px;
                        height: 30px;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #c1c1c1;
                        z-index: 1;
                        position: relative;
                    }



@media (max-width: 450px) {
    .iframe-modal .modal-dialog {
        max-width: 100%;
        margin: 0 auto;
    }

        .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail {
            padding: 30px 15px;
        }

            .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .headline {
                font-size: 26px;
            }

        .iframe-modal .modal-dialog .modal-content .modal-body .close-button {
            top: -5px;
            right: 0px;
        }


        .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .subheadline {
            font-size: 20px;
        }

        .iframe-modal .modal-dialog .modal-content .modal-body .footer-detail .copybody {
            font-size: 18px;
            line-height: 22px;
        }
}





.iframe-view {
    background: #000000;
}

    .iframe-view .product-detail {
        color: #ffffff;
        background: #000000;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .iframe-view .product-detail .product-detail-photo {
            /*width: 50%;*/
            width: 100%;
        }


        .iframe-view .product-detail .product-detail-info {
            /*width: 50%;*/
            width: 100%;
            font-size: 17px;
            line-height: 22px;
            padding: 20px;
        }

            .iframe-view .product-detail .product-detail-info .header-title {
                font-family: 'Blair', sans-serif;
                font-size: 20px;
                line-height: 24px;
                font-weight: bold;
                margin-top: 0px;
                text-transform: uppercase;
                margin-bottom: 20px;
            }

            .iframe-view .product-detail .product-detail-info .topic-title {
                font-family: 'Blair', sans-serif;
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
                margin-top: 30px;
                text-transform: uppercase;
                margin-bottom: 10px;
            }

            .iframe-view .product-detail .product-detail-info .product-detail-text p {
                margin-bottom: 10px;
            }




@media(max-width: 450px) {

    .iframe-view #header-banner .header-content {
        top: 7%;
        left: 30%;
        -ms-transform: translate(-20%, 7%);
        transform: translate(-20%, 7%);
    }

    .iframe-view .product-detail .product-detail-photo {
        width: 100%;
    }

    .iframe-view .product-detail .product-detail-info {
        font-size: 14px;
        line-height: 16px;
        width: 100%;
        padding: 40px 20px 20px 20px;
    }


    .iframe-view .product-configuration .product-configuration-item {
        width: 100%;
        padding: 5px 20px;
    }

        .iframe-view .product-configuration .product-configuration-item .header {
            text-align: left;
        }

        .iframe-view .product-configuration .product-configuration-item .detail {
            text-align: left;
        }
}



/*****************************************
* Gallery
*****************************************/
#gallery {
    padding: 100px 20px;
    background: #000000;
}

    #gallery .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }

    #gallery .title {
        font-family: 'Blair', sans-serif;
        color: #000000;
        background: #ff0000;
        display: inline-block;
        margin: 30px 15px 30px 15px;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        padding: 5px 20px;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

        #gallery .title.parallelogram {
            transform: skew(-40deg);
        }

        #gallery .title .skew-fix {
            display: inline-block;
            transform: skew(40deg);
        }

    #gallery .subtitle {
        font-size: 18px;
        line-height: 22px;
        margin-top: 0px;
        letter-spacing: 2px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

@media(max-width:450px) {

    #gallery {
        padding: 0px 0px 40px 0px;
    }

        #gallery .title {
            font-size: 14px;
            line-height: 16px;
            margin-bottom: 20px;
        }

        #gallery .subtitle {
            padding: 0px 15px;
        }
}


.gallery-lists {
    padding: 0px 0px 0px 0px;
}


.gallery-item {
    color: #000000;
    text-decoration: none;
    cursor: -webkit-grab;
    cursor: grab;
    color: #000000;
    text-align: center;
}


    .gallery-item .gallery-photo {
        position: relative;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: top center !important;
        box-shadow: 0 0 8px 8px #000000 inset;
        padding-bottom: 60%;
    }


.gallery-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


    .gallery-content .gallery-content-item {
        width: 49%;
        color: #000000;
        text-decoration: none;
        cursor: -webkit-grab;
        cursor: grab;
        color: #000000;
        text-align: center;
        position: relative;
    }


        .gallery-content .gallery-content-item .gallery-photo {
            position: relative;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            background-position: top center !important;
            box-shadow: 0 0 8px 8px #000000 inset;
            padding-bottom: 60%;
        }

        .gallery-content .gallery-content-item .gallery-name {
            font-family: 'Blair', sans-serif;
            color: #ffffff;
            font-size: 24px;
            line-height: 26px;
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            border-radius: 0px;
            width: 100%;
        }


@media (max-width: 450px) {
    .gallery-content .gallery-content-item .gallery-name {
        font-size: 12px;
        line-height: 16px;
        bottom: -30px;
    }
}


#gallery-mansory {
    padding: 40px;
    background: #000000;
    min-height: 100vh;
}

    #gallery-mansory .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }


@media (max-width: 450px) {
    #gallery-mansory {
        padding: 20px 30px 20px 10px;
    }


        #gallery-mansory .title {
            font-size: 26px;
            line-height: 30px;
            margin-bottom: 10px;
        }
}

/*****************************************
* Grid Container
*****************************************/
.grid-container {
    columns: 3 200px;
    column-gap: 20px;
    width: 100%;
    margin: 0 auto;
}

    .grid-container div {
        margin: 10px;
        display: inline-block;
        width: 100%;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        position: relative;
        cursor: pointer;
    }

        .grid-container div:hover {
            border-color: coral;
        }

        .grid-container div img {
            width: 100%;
            transition: all 0.25s ease-in-out;
            opacity: 0.8;
        }

        .grid-container div:hover img {
            filter: grayscale(0);
            opacity: 1;
        }


        .grid-container div .projec-name {
            margin: 20px 0;
            font-size: 22px;
            line-height: 26px;
            font-weight: 400;
            position: absolute;
            left: 0px;
            top: 0;
            z-index: 9;
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            padding: 10px 20px;
            opacity: 0.2;
            border-radius: 0px;
        }

            .grid-container div .projec-name .name {
                font-size: 26px;
                line-height: 30px;
                font-weight: 400;
                margin-bottom: 5px;
            }

            .grid-container div .projec-name .type {
                font-size: 16px;
                line-height: 20px;
                font-weight: 400;
                margin-bottom: 0px;
                /* margin: 20px 0;
                font-size: 16px;
                line-height: 20px;
                font-weight: 400;
                position: absolute;
                right: 0px;
                bottom: 0;
                z-index: 99;
                background: rgba(0, 0, 0, 0.2);
                color: #ffffff;
                padding: 5px 10px;
                border: 1px solid red;
                text-align: right;*/
            }

        .grid-container div:hover .projec-name {
            opacity: 1;
        }


@media (max-width: 450px) {
    .grid-container {
        columns: 2 150px;
        column-gap: 20px;
    }
}


/*****************************************
* Lighting
*****************************************/
#lighting {
    padding: 100px 0px 0px 0px;
    color: #ffffff;
}

    #lighting .title {
        font-family: 'Blair', sans-serif;
        color: #ffffff;
        font-size: 36px;
        line-height: 40px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 20px;
    }

    #lighting .subtitle {
        font-size: 18px;
        line-height: 20px;
        margin: 0px auto 20px auto;
        width: 60%;
        text-align: center;
    }


@media (max-width: 450px) {

    #lighting {
        padding: 50px 0px;
    }

        #lighting .title {
            font-size: 26px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        #lighting .subtitle {
            font-size: 14px;
            line-height: 16px;
            width: 100%;
            padding: 0px 20px;
        }
}


/*****************************************
* Clients
*****************************************/
/*#clients {
    padding: 100px 0px;
    display: flex;
    align-items: center;
    background: #000000;
    border: 1px solid red;
}*/

#clients {
    padding-top: 60px;
    background: #000000
}


@media (max-width: 450px) {
    #clients {
        padding: 20px 0px 20px 0px;
    }
}

.clients-lists {
    padding: 0px 0px 0px 0px;
}

    .clients-lists .swiper-container {
        position: relative;
    }

        .clients-lists .swiper-container:before,
        .clients-lists .swiper-container:after {
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            content: "";
            z-index: 2;
        }

        .clients-lists .swiper-container:before {
            left: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0), #000000);
        }

        .clients-lists .swiper-container:after {
            right: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
        }


@media (max-width: 450px) {
    .clients-lists .swiper-container:before,
    .clients-lists .swiper-container:after {
        width: 100px;
        height: 100%;
    }
}

.client-item {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    /*border:1px solid red;*/
}

/* .client-item img {
        width: 100%;
        height: auto;
    }*/



/*https://www.youtube.com/watch?v=nAjR0Oj0J8E*/
/*.client-logos {
    overflow: hidden;
    padding: 40px 0;
    background: #000000;
    white-space: nowrap;
    position: relative;
}

    .client-logos:before,
    .client-logos:after {
        position: absolute;
        top: 0;
        width: 250px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .client-logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(0, 0, 0, 0), #000000);
    }

    .client-logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0), #000000);
    }

    .client-logos:hover .logos-slide {
        animation-play-state: paused;
    }

.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}

    .logos-slide img {
        height: 70px;
        margin: 0px 40px;
    }


@media (max-width: 450px) {

    .client-logos:before,
    .client-logos:after {
        width: 100px;
        height: 100%;
    }

    .logos-slide img {
        height: 50px;
        margin: 0px 15px;
    }
}


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}*/


/*****************************************
* Movie Work
*****************************************/
#contact {
    padding: 100px 0px;
}

    #contact .title {
        font-family: 'Blair', sans-serif;
        color: #000000;
        background: #ff0000;
        display: inline-block;
        margin: 30px 15px 30px 15px;
        font-weight: 600;
        font-size: 26px;
        line-height: 28px;
        padding: 5px 20px;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

        #contact .title.parallelogram {
            transform: skew(-40deg);
        }

        #contact .title .skew-fix {
            display: inline-block;
            transform: skew(40deg);
        }


@media (max-width: 450px) {
    #contact {
        padding: 0px 0px 20px 0px;
    }

        #contact .title {
            font-size: 14px;
            line-height: 16px;
            margin: 30px 15px 20px 15px;
        }
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .contact-content .contact-address {
        width: 60%;
        color: #ffffff;
        margin-bottom: 20px;
    }

        .contact-content .contact-address .company-name {
            font-family: 'Blair', sans-serif;
            font-size: 30px;
            line-height: 32px;
            margin-bottom: 10px;
        }

        .contact-content .contact-address .company-address {
            font-size: 20px;
            line-height: 20px;
            margin-bottom: 4px;
        }

            .contact-content .contact-address .company-address a,
            .contact-content .contact-address .company-address a:hover{
                color: #ffffff;
            }

    .contact-content .contact-social {
        width: 40%;
    }


@media (max-width: 450px) {
    .contact-content .contact-address {
        width: 100%;
    }

        .contact-content .contact-address .company-name {
            font-size: 20px;
            line-height: 22px;
        }

        .contact-content .contact-address .company-address {
            font-size: 14px;
            line-height: 16px;
        }


    .contact-content .contact-social {
        width: 100%;
    }
}



.followus {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .followus .followus-item {
        width: calc(100% / 5);
        padding: 0px 10px;
    }

        .followus .followus-item img {
            opacity: 0.6;
            transition: 0.3s ease all;
        }

        .followus .followus-item:hover img {
            opacity: 0.8;
        }


@media (max-width: 450px) {

    .followus {
        justify-content: flex-start;
    }

        .followus .followus-item {
            width: calc(100% / 7);
            padding: 0px 10px 0px 0px;
        }
}
