/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;padding:0;
  font-family: 'Roboto Slab', serif;
  background-color:#F8F8FB;
  font-size: 14px;
  color:#000;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration:none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  max-width:100%;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}




/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    margin:0 15px 15px 0;
    padding:0 20px 13px 20px;
    border: 1px solid #cecece;
}
fieldset legend{width:auto;font-size: 15px;font-weight: 600;text-transform:initial;}
fieldset p{margin-bottom:0;color: #000 !important;}
fieldset table tr td{padding:10px 30px 0 0;color:#2C5068;font-weight: 600;}
/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
#pageLoader{background-color:rgba(194, 19, 33, 0.95);position: fixed;width:100%;height:100%;display: flex;z-index: 999;justify-content: center;align-items:center;color:#fff;}
.loader{text-align: center;}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@font-face {
    font-family: 'edo_szregular';
    src: url('../fonts/edosz-webfont.woff2') format('woff2'),
         url('../fonts/edosz-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body::-webkit-scrollbar {width: 5px;}
body::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);}
body::-webkit-scrollbar-thumb {background-color: darkgrey;outline: 1px solid slategrey;}
h2{font-family: 'edo_szregular';font-size: 2.6rem;background-image: url(../images/border.svg);background-repeat: no-repeat;background-position:bottom center;display:block;margin-bottom:5px;}
h3{font-size:1.4rem;display:block;}
p{font-size: 15px;line-height:28px;margin: 0 0 20px 0;color:#484848;}
.sub-heading{color:#fff;}
.btn{-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
.btn:hover{-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
header{background-color:#fff;padding:0 70px;}
.logo{margin:0;padding:13px 0;}
.logo img{height:60px;}
.navigation{text-align: right;}
.navigation ul{margin:26px 0;padding:0;display: inline-block;}
.navigation ul li{display: inline-block;padding:5px 16px;border-radius: 20px;}
.navigation ul li a{display:block;font-size: 15px;color:#000;line-height: normal;position:relative;text-decoration: none;border-bottom:1px solid transparent;}
.navigation ul li a span{position:relative;}
.navigation ul li:last-child{background-color:#C20D21;}
.navigation ul li:last-child a{color:#fff;font-weight:bold;}
.navigation ul li:last-child a img{height:18px;margin-left:5px;}
.navigation ul li:hover a{border-color:#C20D21;}
.navigation ul li:hover ul.dropdown-menu{display: inline-block;}
.navigation ul.dropdown-menu{
  display: none;
  margin: 26px 0;
    padding: 0;
    right: 0;
    left: auto;
    top: 0;
}
.navigation ul.dropdown-menu li a {
    padding: 11px 25px;
        color: #444444;
            border-color: #a7a7a7;
}
.navigation ul.dropdown-menu li a:hover{
  background-color: transparent;
  color: #161616;
}
.navigation ul.dropdown-menu li {
    display: block;
    padding: 0;
    margin: 0;
}
.navigation ul.dropdown-menu li:last-child{
  background-color: transparent;
}
.navigation ul.dropdown-menu li:last-child a{
      color: #1d1e1f;
      font-weight: normal;
}
.menu-bar.open span{background-color:#32475b;}
.menu-bar{cursor:pointer;height: 16px;position:fixed;z-index:99;right:15px;top:19px;display:none;}
.menu-bar span { background-color:#32475b; width:25px; height:2px; -webkit-transition:0.2s ease-in-out; transition:0.2s ease-in-out; -webkit-tap-highlight-color: transparent;display: block;margin:2px 0;position:relative;}
.menu-bar span {left:0;}
.menu-bar span:nth-child(1) { top: 0px; }
.menu-bar span:nth-child(2) { top: 3px; }
.menu-bar span:nth-child(3) { bottom:-6px; }
.open.menu-bar span:nth-child(1) {-webkit-transform:rotate(45deg) translate(9.5px, 3.5px);-ms-transform:rotate(45deg) translate(9.5px, 3.5px);transform:rotate(45deg) translate(9.5px, 3.5px);}
.open.menu-bar span:nth-child(2) { opacity: 0; }
.open.menu-bar span:nth-child(3) {-webkit-transform:rotate(-45deg) translate(5.5px, -1px);-ms-transform:rotate(-45deg) translate(5.5px, -1px);transform:rotate(-45deg) translate(5.5px, -1px);}
.banner{position:relative;margin-bottom:70px;}
.banner article{display:flex;display:-webkit-flex;align-items:center;justify-content:space-between;}
.banner article figure{flex-basis:20%;position:relative;text-align:center;background-color:#000;}
.banner article figure:after{background-color:#000;position:absolute;content:'';left:0;right:0;top:0;bottom:0;width:100%;height:100%;opacity:0.5;-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
.banner article figure:hover:after{opacity:0;-webkit-transition: all 0.5s ease-in-out;-moz-transition: all 0.5s ease-in-out;-o-transition: all 0.5s ease-in-out;transition: all 0.5s ease-in-out;}
.banner article figcaption{text-transform:uppercase;position:absolute;left:0;top:51%;z-index:1;text-align:center;display:flex;display:-webkit-flex;align-items:center;justify-content:center;flex-wrap: wrap;}
.banner article figcaption h3{color:#fff;font-size:42px;font-weight:bold;margin:0;}
.banner article figcaption p{flex-basis:100%;color:#DDD;font-size:12px;margin:5px 0;}
.banner article figcaption a{margin-top:40px;background-color:#C20D21;border:2px solid transparent;color:#fff;padding:9px 23px;border-radius:20px;text-decoration:none;font-weight:bold;font-size:14px;display:flex;display:-webkit-flex;align-items:center;}
.banner article figcaption a:hover{background-color:transparent;border-color:#fff;}
.banner article figcaption a img{margin-left:8px;height:18px;}
.about-us .container{display:flex;display:-webkit-flex;justify-content:space-between;}
.about-us .about-content{flex-basis:58%;}
.about-us .about-content a{font-size:15px;font-weight:bold;text-transform:uppercase;color:#192136;border-bottom:3px solid #C20D21;text-decoration:none;}
.about-us .about-content a:hover{color:#C20D21;}
.about-us figure{flex-basis:32%;}
.about-us .framing-text{font-size:52px;color:#192136;font-weight:bold;line-height:58px;margin-top:15px;}
.team{background-image:url(../images/team-bg.jpg);background-repeat:no-repeat;background-size:cover;text-align:center;padding:70px 0;margin:70px 0;}
.team h2{color:#fff;}
.team .our-team{display:flex;display:-webkit-flex;align-items:center;justify-content:center;}
.team .our-team article{flex-basis:31%;position:relative;margin:0 20px;}
.team .our-team article img{border-radius:5px;}
.team .our-team figcaption{color:#fff;text-transform:uppercase;font-size:17px;font-weight:500;position:absolute;bottom:20px;left:0;right:0;text-shadow:0 1px 4px #2c2c2c;}
.projects{text-align:center;}
.film-work{display:flex;display:-webkit-flex;align-items:flex-start;justify-content:space-between;}
.film-work .col_1{flex-basis:32.5%;}
.film-work .col_2{flex-basis:33%;}
.film-work .col_3{flex-basis:32.5%;}
.mb10{margin-bottom:16px;}
.nav-pills .nav-item{padding:0 20px;}
.nav-pills .nav-link{color: #484848;font-size: 15px;padding:0;}
.nav-pills .nav-link.active{border-bottom:3px solid #C20D21;border-radius:0;background-color:transparent;color: #484848;}
.nav-pills .nav-link:hover{border-bottom:3px solid #C20D21;border-radius:0;}
.nav-pills{justify-content:center;margin:30px 0;}
.clients{padding:70px 0;text-align:center;}
.clients h2{margin-bottom:50px;}
.client-list{list-style:none;display:flex;display:-webkit-flex;justify-content:space-between;align-items:center;margin:0;padding:0;}
.client-list img{filter: grayscale(100%);}
.client-list img:hover{filter: grayscale(0);}
.zigzag-clearfix{margin:120px 0 20px 0;text-align:center;}
.footer{background-image:url(../images/curve.svg);background-repeat:no-repeat;background-size:cover;text-align:center;padding:70px 0 0 0;margin-top:50px;}
.footer h3{color:#fff;text-align:center;line-height:normal;font-size:35px;margin-bottom:25px;}
.footer .btn{color:#fff;border-bottom:3px solid #fff;padding: 3px 0;border-radius: 0;text-transform:uppercase;font-weight:bold;}
.copyright{border-top:1px solid #0000002e;padding: 7px 0;margin-top: 60px;}
.copyright .container{display:flex;display:-webkit-flex;justify-content:space-between;align-items:center;}
.copyright p{margin:0;}
.copyright .copy{font-size:12px;color:#DCDCDC;}
.copyright .designby{font-size:12px;color:#DCDCDC;}
.copyright .designby a{font-weight:bold;color:#fff;}
.social-links a{display:inline-block;margin:0 5px;}
.social-links img{height:15px;}
.footer .col_footer{flex-basis:30%;}
.modal-dialog{max-width:80%;margin:10px auto;}
.modal-content{background-color:#000;}
.modal-header .modal-title{color:#fff;}
.modal-header{border-color:#414141;}
.modal-header .close{color:#fff;}
#contactModal .modal-dialog{width:450px;}
#contactModal .modal-content{background-color:#fff;}
#contactModal .modal-header .modal-title{color:#000;}
#contactModal .modal-header{border-color:#ccc;}
#contactModal .modal-header .close{color:#000;}
#contactModal .btn{background-color:#C20D21;color:#fff;border-radius:20px;padding:8px 30px;border:none;cursor:pointer;border:2px solid transparent;}
#contactModal .btn:hover{background-color:transparent;border-color:#C20D21;color:#C20D21;}
.red{color:#ff0000;}
.form-group label{color:#484848;}
.portfolio-tabs{display:flex;display:-webit-flex;flex-wrap:wrap;}
.portfolio-tabs a{flex-basis: 23%;margin: 0 1% 20px 1%;border: 1px solid #cccccc;}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-carousel{background-color:#f1f1f1;padding:0.5rem 0;}.owl-nav.disabled{display:none;}
 .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.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(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{margin-right:5px;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{border:none;width:8px;height:12px;background-color: #000;border-radius:100%;margin:0 5px;}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot:focus{outline: none;box-shadow: none;}button.owl-dot.active{background-color: #d5d5d5;}.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot:hover{background-color: #d5d5d5;}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right;}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{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;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform: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;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
  .navigation ul li{display: block;text-align: left;padding:14px 17px;border-right: none;}
  .navigation ul li a{padding:5px 0;font-size:1.1rem;display:block;}
  .navigation ul{display: block;}
  .navigation{display:none;position:fixed;z-index: 2;width: 100%;left: 0;right: 0;margin-top:60px;}
  .menu-bar{display:block;}
  .navigation{display: none;padding: 0 27px;}
  .logo.fixed{position:fixed;z-index:2;}
  .navigation ul li a.active:before{transform: rotate(0);height:1px;bottom: 0;background-color: rgba(0, 0, 0, 0.5);}
 
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
  .navigation ul li{padding:0 8px;}
  .logo{font-size:1.8rem;padding:22px 0;}
}

@media(max-width:767px){
  .header{background-color: #fff;top: 0;left: 0;right: 0;width: 100%;position: fixed;z-index: 9;padding:0 10px;height: 65px;}
  .owl-carousel{margin-top:58px;}
  .navigation ul li{display: block;text-align: left;padding:14px 17px;border-right: none;}
  .navigation ul li a{padding:5px 0;font-size:1.1rem;display:block;color:#fff;}
  .navigation ul{display: block;}
  .navigation{display:none;position:fixed;z-index: 2;width: 100%;height:100%;left: 0;right: 0;background-color:rgba(194, 19, 33, 0.95);margin-top:63px;}
  .menu-bar{display:block;top:23px;}
  .logo.fixed{position:fixed;z-index:2;}
  .navigation ul li a.active:before{transform: rotate(0);height:1px;bottom: 0;background-color: rgba(0, 0, 0, 0.5);}
  .navigation ul li:last-child{background-color:transparent;}
  .banner article{display: block;white-space: nowrap;overflow-x:auto;}
  .banner article figure{display: inline-block;width: 42%;}
  .banner article figcaption p{white-space:normal;line-height:normal;font-size:9px;}
  .banner article figcaption h3{font-size:23px;}
  .banner article figcaption a{margin-top:10px;font-size: 12px;padding: 9px 12px;}
  .banner{margin:64px 0 20px 0;}
  .banner article figcaption{top:45%;}
  .about-us .container{flex-direction:column;}
  .about-us .framing-text{font-size:28px;line-height:34px;}
  .about-us .framing-text br{display:none;}
  .team{margin: 40px 0;padding:40px 0;}
  .team .our-team{display:block;white-space:nowrap;overflow-x: auto;}
  .team .our-team article{display:inline-block;width:60%;margin-right: 10px;}
  .film-work{flex-direction: column;}
  .film-work img{margin-bottom:10px;}
  h2{font-size:28px;}
  .banner article figcaption a img{display:none;}
  .logo img {height: 43px;}
  .logo{padding:10px 0;}
  .nav-pills{white-space:nowrap;overflow-x:auto;display:block;}
  .nav-pills .nav-item{padding:0 10px;display:inline-block;}
  .zigzag-clearfix{margin: 40px 0 20px 0;}
  .clients{padding:16px ​0 40px ;}
  .client-list{display:block;white-space:nowrap;overflow-x:auto;}
  .client-list li{display:inline-block;padding:0 10px;}
  .client-list img{width:50px;}
  .clients h2 {margin-bottom: 20px;}
  .footer h3{font-size:19px;}
  .copyright .container{display:block;}
  .copyright .copy{font-size:11px;}
  .social-links{margin:5px 0;}
  .footer{padding-top:40px;margin-top:0;}
  .copyright{margin-top: 30px;}
  .modal-body iframe{height:auto;}
  .modal-dialog {max-width: 95%;}
  .portfolio-tabs{display:block;}
  .portfolio-tabs a{width:100%;margin-bottom:15px;display:block;}
}