1/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 80px;
    height:145px;
    margin: -40px 0 0 -72.5px;

    z-index: 1001;
}
#loader  img{ width:100%; } 

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #222222;
    }

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }  






/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, 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;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   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,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        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 for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* 
  Ok so you have made it this far, that means you are very keen to on my code. 
  Anyway I don't really mind it. This is a great way to learn so you actually doing the right thing:)
  Follow me @ihatetomatoes
*/


.dialog,
.dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.dialog {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  pointer-events: none;
  z-index:9999;
}

.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(55, 58, 71, 0.9);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-backface-visibility: hidden;
}

.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
}

.dialog__content {
  width: 50%;
  max-width: 960px;
  min-width: 290px;
  background: #fff;
  padding: 4em;
  text-align: center;
  position: relative;
  z-index: 5;
  opacity: 0;
}

.dialog__content_sml{
  max-width: 560px;
}
.dialog--open .dialog__content {
  pointer-events: auto;
}

/* Content */
.dialog h2 {
  margin: 0;
  font-weight: 400;
  font-size: 2em;
  padding: 0 0 2em;
  margin: 0;
}

.dialog--open .dialog__overlay {
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.dialog--close .dialog__overlay {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.dialog__content {
  padding: 0;
  background: transparent;
}

.dialog.dialog--open .dialog__content {
  opacity: 1;
}

.morph-shape {
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -2px;
  left: -2px;
  z-index: -1;
}

.morph-shape svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 1680;
}

.dialog--open .morph-shape svg rect {
  -webkit-animation: anim-dash 0.6s forwards;
  animation: anim-dash 0.6s forwards;
}

.dialog-inner {
  opacity: 0;
  background: #fff;
}

.dialog--open .dialog-inner {
  padding: 4em;
  opacity: 1;
  -webkit-transition: opacity 0.85s 0.35s;
  transition: opacity 0.85s 0.35s;
}

.dialog.dialog--open h2 {
  -webkit-animation: anim-elem-1 0.7s ease-out both;
  animation: anim-elem-1 0.7s ease-out both;
}

.dialog.dialog--open button {
  -webkit-animation: anim-elem-2 0.7s ease-out both;
  animation: anim-elem-2 0.7s ease-out both;
}

@keyframes anim-dash {
  0% {
    stroke-dashoffset: 1680;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes anim-dash {
  0% {
    stroke-dashoffset: 1680;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Inner elements animations */

@-webkit-keyframes anim-elem-1 {
  0% { opacity: 0; -webkit-transform: translate3d(-150px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); }
}

@keyframes anim-elem-1 {
  0% { opacity: 0; -webkit-transform: translate3d(-150px, 0, 0); transform: translate3d(-150px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

@-webkit-keyframes anim-elem-2 {
  0% { opacity: 0; -webkit-transform: translate3d(150px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); }
}

@keyframes anim-elem-2 {
  0% { opacity: 0; -webkit-transform: translate3d(150px, 0, 0); transform: translate3d(150px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}



/* CSS Document */

@font-face {
  font-family: 'creativeverse_social';
  src: url('../fonts/creativeverse_social427f.html?74606279');
  src: url('../fonts/creativeverse_social427f.html?74606279#iefix') format('embedded-opentype'),
       url('../fonts/creativeverse_social427f-2.html?74606279') format('woff'),
       url('../fonts/creativeverse_social427f-3.html?74606279') format('truetype'),
       url('../fonts/creativeverse_social427f-4.html?74606279#creativeverse_social') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'creativeverse_social';
    src: url('../font/creativeverse_social.svg?74606279#creativeverse_social') format('svg');
  }
}
*/
 
 
 
.icon-delicious:before { content: '\e811'; } /* '' */
.icon-smashmag:before { content: '\e812'; } /* '' */
.icon-stumbleupon:before { content: '\e813'; } /* '' */
.icon-digg:before { content: '\e80f'; } /* '' */
.icon-reddit:before { content: '\e810'; } /* '' */
.icon-yahoo:before { content: '\e814'; } /* '' */
.icon-email:before { content: '\e815'; } /* '' */
.icon-statusnet:before { content: '\e816'; } /* '' */
.icon-stackoverflow:before { content: '\e817'; } /* '' */
.icon-flickr:before { content: '\e80a'; } /* '' */
.icon-lastfm:before { content: '\e80b'; } /* '' */
.icon-pinterest:before { content: '\e80c'; } /* '' */
.icon-vimeo:before { content: '\e80d'; } /* '' */
.icon-twitter:before { content: '\e808'; } /* '' */
.icon-facebook:before { content: '\e802'; } /* '' */
.icon-rss:before { content: '\e800'; } /* '' */
.icon-pinterest-circled:before { content: '\e805'; } /* '' */
.icon-gplus:before { content: '\e801'; } /* '' */
.icon-youtube:before { content: '\e809'; } /* '' */
.icon-dropbox:before { content: '\e804'; } /* '' */
.icon-tumblr:before { content: '\e807'; } /* '' */
.icon-dribbble:before { content: '\e803'; } /* '' */
.icon-skype:before { content: '\e806'; } /* '' */
.icon-deviantart:before { content: '\e80e'; } /* '' */


/*** Social Media ****************************************************/
.cv-social-media {
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  list-style:none;
}

.cv-social-media li {
  width:42px;
  height:35px;
  display:inline-block;
  font-size:26px;
  background:#CCC;
  float:left;
  padding:8px 0px 0px 4px;
  margin:0px 0px 0px 1px;
}

.cv-social-media a {
  display:block;
  width:100%;
  height:100%;
  margin:0px 10px 0px 0px;
  color:#FFF;
  
    -webkit-animation-duration: 2s;
     -moz-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
      
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}



#facebook {
  background:#3b5998;
}

#twitter {
  background:#00a0d1;
}

#pinterest {
  background:#910101;
}

#youtube {
  background:#c4302b;
}

#tumblr {
  background:#34526f;
}

#flickr {
  background:#F3F;
}

#digg {
  background:#036;
}

#delicious {
  background:#03C;
}

#smashmag {
  background:#F30;
}

#email {
  background:#9C0;
}

#stackoverflow {
  background:#F60;
}

#vimeo {
  background:#069;
}

@font-face {
  font-family: 'GothamBook';
  src: url('../fonts/GothamBook.html');
  src: local('GothamBook'), url('../fonts/GothamBook-2.html') format('woff'), url('../fonts/GothamBook-3.html') format('truetype');
}
@font-face {
  font-family: 'gothambold1';
  src: url('../fonts/gothambold1.html');
  src: local('gothambold1'), url('../fonts/gothambold1-2.html') format('woff'), url('../fonts/gothambold1-3.html') format('truetype');
}
@font-face {
  font-family: 'GothamLight';
  src: url('../fonts/GothamLight.html');
  src: local('GothamLight'), url('../fonts/GothamLight-2.html') format('woff'), url('../fonts/GothamLight-3.html') format('truetype');
}




/* ==========================================================================
   MAXVEER
   ========================================================================== */

.os-animation{
  opacity: 0;
}
 
.os-animation.animated{
    opacity: 1;
}

.clear{
  clear:both;
  margin:10px 0;
}

.intro-section {
    height: 100%;
    padding-top: 0;
    text-align: center;
    background: #fff;
  position:relative;
}

.portfolio-section {
    height: 100%;
    text-align: center;
    background:#000 url(../img/project-banner.html) no-repeat;
  position:relative;
}

.about-section {
    height: 100%;
    text-align: center;
    background:url(img/about-banner.jpg) no-repeat center center;
  background-size:cover !important;
  position:relative;
  overflow:hidden;
  width:100%;
}

.team-section {
    height: 100%;
    text-align: center;
    background:url(../img/team-banner.html) no-repeat center center;
  background-size:cover;
  position:relative;
  overflow:hidden;
  display:none;
}

.clients-section {
    height: 100%;
    text-align: center;
   background:url(../img/clients-banner.html) no-repeat center center;
  background-size:cover;
  position:relative;
  overflow:hidden;
}

.services-section {
    height: 100%;
    text-align: center;
    background:url(../img/service-banner.html) no-repeat center center;
  background-size:cover;
  position:relative;
}

.contact-section {
    height: 100%;
    text-align: center;
   background:url(../img/contact-banner.html) no-repeat center center;
  background-size:cover;
  position:relative;
}

.common-section{ height:auto; min-height:800px; }
.common-section .container{ position:relative; z-index:10; }

/* ==========================================================================
   Button
   ========================================================================== */
button.close{
    position: ABSOLUTE;
    z-index: 999;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.4);
    color: #fff;
  text-shadow:none;
  opacity:1;
}

/* Common button styles */
.button, .form input.button {
  float: left;
  min-width: 150px;
  max-width: 250px;
  display: block;
  margin: 1em;
  padding: 1em 2em;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.form input.button {
  line-height:normal;
  background:#e98b39;
  height:60px;
}
.button:focus {
  outline: none;
}
.button > span {
  vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.bg-1 .button {
  color: #37474f;
  border-color: #37474f;
}
.bg-2 .button {
  color: #ECEFF1;
  border-color: #ECEFF1;
}
.bg-3 .button {
  color: #fff;
  border-color: #fff;
}

/* Sizes */
.button--size-s {
  font-size: 14px;
}
.button--size-m {
  font-size: 16px;
}
.button--size-l {
  font-size: 18px;
}

/* Typography and Roundedness */
.button--text-upper {
  letter-spacing: 2px;
  text-transform: uppercase;
}
.button--text-thin {
  font-weight: 300;
}
.button--text-medium {
  font-weight: 500;
}
.button--text-thick {
  font-weight: 600;
}
.button--round-s {
  border-radius: 5px;
}
.button--round-m {
  border-radius: 15px;
}
.button--round-l {
  border-radius: 40px;
}

/* Borders */
.button--border-thin {
  border: 1px solid;
}
.button--border-medium {
  border: 2px solid;
}
.button--border-thick {
  border: 3px solid;
}
/* Pipaluk */
.button--pipaluk, form input.button--pipaluk {
  width: 240px;
  padding: 1.5em 3em;
  color: #fff;
}
.button--pipaluk.button--inverted, form input.button--pipaluk.button--inverted  {
  color: #7986cb;
}
.button--pipaluk::before, .button--pipaluk::after, form input.button--pipaluk::before, form input.button--pipaluk::after {
  content: '';
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}
.button--pipaluk::before, form input.button--pipaluk::before {
  border: 2px solid #7986cb;
}
.button--pipaluk.button--inverted::before, form input.button--pipaluk.button--inverted::before{
  border-color: #fff;
}
.button--pipaluk::after, form input.button--pipaluk::after {
  background: #7986cb;
}
.button--pipaluk.button--inverted::after, form input.button--pipaluk.button--inverted::after {
  background: #fff;
}
.button--pipaluk:hover::before, form input.button--pipaluk:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.button--pipaluk::before,
.button--pipaluk:hover::after, form input.button--pipaluk::before, form input.button--pipaluk:hover::after {
  -webkit-transform: scale3d(0.7, 0.7, 1);
  transform: scale3d(0.7, 0.7, 1);
}
.button--pipaluk:hover::after, form input.button--pipaluk:hover::after {
  background-color: #3f51b5;
}
.button--pipaluk.button--inverted:hover::after, form input.button--pipaluk.button--inverted:hover::after {
  background-color: #fff;
}
.mainBtn, form input.mainBtn{ float:none; margin:15px auto; cursor:pointer;color:#FFF !important; }
.mainBtn.blue:before, form input.mainBtn.blue:before{ border: 2px solid #e98b39;  }
.mainBtn.blue::after, form input.mainBtn.blue::after{background: #e98b39;}
.mainBtn.blue.button--inverted, form input.mainBtn.blue.button--inverted {color: #e98b39;}
.serBtn{ float:none; margin:0; width:100%; height:160px; cursor:pointer; max-width:none; }
.serBtn.blue:before{ border: 2px solid #1e98ca; }
.serBtn.blue::after{background: #1e98ca;}
.serBtn.blue.button--inverted {color: #1e98ca;}


/* ==========================================================================
   HOME PAGE
   ========================================================================== */

.homeBanner{ width:100%; height:100%; background:no-repeat center center; background-size:cover; z-index:0; position:absolute; left:0; top:0; z-index:0; background-attachment:fixed; }
.homeText{ position:relative; z-index:1; }

.homeText{ padding-top:300px; }
.homeText h1{ font-size:48px; text-align:center; color:#fff !important; font-family: 'gothambold1';text-transform:uppercase; margin-bottom:20px;  }
.homeText p{ font-size:36px; text-align:center; color:#fff; font-family: 'GothamLight';text-transform:uppercase; margin-bottom:20px; }

.btnView{  padding:8px 20px; color:#fff !important; font-size:14px; text-transform:uppercase; font-weight:normal; text-align:center; margin-top:20px; background:#1e98ca; text-decoration:none; }
.socialBox{ width:42px; position:fixed; right:0; top:50%; margin-top:-76px; z-index:999; }
.socialBox li{ height:42px; margin-bottom:2px;}

/* ==========================================================================
   Portfolio page
   ========================================================================== */
.bird1{ background:url(../img/bird1.html) no-repeat; width:181px; height:256px; position:absolute; z-index:0; left:10%; top:40%; display:block;-webkit-animation: anim 3s infinite; /* Safari 4+ */-moz-animation:anim 3s infinite; /* Fx 5+ */ -o-animation:anim 3s infinite; /* Opera 12+ */ animation:anim 3s infinite; /* IE 10+, Fx 29+ */}
.bird2{ background:url(../img/bird2.html) no-repeat; width:350px; height:479px; position:absolute; z-index:0; right:0; bottom:10%; display:block;-webkit-animation: anim1 3s infinite; /* Safari 4+ */-moz-animation:anim1 3s infinite; /* Fx 5+ */ -o-animation:anim1 3s infinite; /* Opera 12+ */ animation:anim1 3s infinite; /* IE 10+, Fx 29+ */ }

.heading h1{ font-size:36px; color:#fff; position:relative; text-align:center; margin-top:60px; text-transform:uppercase; padding:15px 35px; border-left:2px #1e98ca solid; border-right:2px #1e98ca solid; display:inline-block; font-family: 'gothambold1'; margin-top:100px;}
.heading h1:before{ position:absolute; border-top:2px #1e98ca solid; border-bottom:2px #1e98ca solid; width:15px; left:0; top:0; height:100%;content: ""; }
.heading h1:after{ position:absolute; border-top:2px #1e98ca solid; border-bottom:2px #1e98ca solid; width:15px; right:0; top:0; height:100%;content: ""; }

.portfolioBox{ margin-top:60px;}
.portfolioBox ul{ list-style:none; margin:0; padding:0; }
.portfolioBox ul li{ width:25%; float:left; margin:0; padding:0; }
.portfolioBox ul li a{ display:block; }
.portfolioBox ul li img{ width:100%; }

.fbWrite{ clear:both; overflow:auto; } 
.fbWrite h3{ font-size:24px; color:#fff; }
.fbWrite p{ font-size:16px; color:#aadaee; }
.fbWrite h4{ font-size:16px; color:#aadaee; float:left; padding:5px 20px; border-right:1px #9cdefa solid;  }
.fbWrite h4:first-child{ padding-left:0; }
.fbWrite h4:last-child{ border:none; }
/* ==========================================================================
   About page
   ========================================================================== */
   
 .abtElm1{ width:966px; height:auto; position:absolute; right:5%; bottom:15%; z-index:0; position:absolute; display:block;-webkit-animation: anim3 3s infinite; /* Safari 4+ */-moz-animation:anim3 3s infinite; /* Fx 5+ */ -o-animation:anim3 3s infinite; /* Opera 12+ */ animation:anim3 3s infinite; /* IE 10+, Fx 29+ */ }
 .abtElm2{ width:1164px; height:auto; position:absolute; left:5%; top:0%; z-index:3; position:absolute; display:block;-webkit-animation: anim4 3s infinite; /* Safari 4+ */-moz-animation:anim4 3s infinite; /* Fx 5+ */ -o-animation:anim4 3s infinite; /* Opera 12+ */ animation:anim4 3s infinite; /* IE 10+, Fx 29+ */ }
  .abtElm1 img{ width:100%; }
  .abtElm2 img{width:100%;}
 .aboutMain{ position:relative; z-index:1; }
 .abtText{ position:relative; padding:30px 30px;border:2px #D2574E solid; border-radius: 15px 0px; display:inline-block; margin-top: 200px;  }
 .abtText:before{ position:absolute;  width:15px; left:0; top:0; height:100%;content: ""; }
 .abtText:after{ position:absolute;  width:15px; right:0; top:0; height:100%;content: ""; }
 
 .abtText h1{ font-size:30px; line-height:36px; color:#fff !important; text-align:left; margin:0; padding:0; margin-bottom:20px; font-family: 'gothambold1'; text-transform:uppercase;}
 .abtText p{ font-size:14px; color:#ccc; line-height:22px; margin:0; padding:0; text-align:left;  }
 .headingPop{ text-align:center; margin:20px 0; }
  .headingPop h2{font-family: 'gothambold1'; text-transform:uppercase;font-size:30px; line-height:36px; color:#222; margin-bottom:15px; padding:0;}
 .contentBox{ margin:20px 0; text-align: :left !important; }
 .contentBox p{ font-size:16px; line-height:20px; color:#666; margin:0; padding:0; margin-bottom:15px; font-weight:300; }
 #particles-js{
  width:100%;
  height:100%;
  /*position:absolute;*/
  left:0;
  right:0;
}
 
 /* ==========================================================================
   Service Page
   ========================================================================== */
 .serEl{ background:url(../img/serEl1.html) no-repeat; width:415px; height:422px; position:absolute; margin-left:-207px; left:50%; top:0; z-index:0; position:absolute; display:block;  -webkit-animation: swing 4s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);-moz-animation: swing 4s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);animation: swing 4s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955); transform-origin: top center; -webkit-transform-origin: top center;}
 .serText{ position:relative; padding:30px 30px;border-left:2px #1e98ca solid; border-right:2px #1e98ca solid; display:inline-block; margin-top:300px;  }
 .serText:before{ position:absolute; border-top:2px #1e98ca solid; border-bottom:2px #1e98ca solid; width:15px; left:0; top:0; height:100%;content: ""; }
 .serText:after{ position:absolute; border-top:2px #1e98ca solid; border-bottom:2px #1e98ca solid; width:15px; right:0; top:0; height:100%;content: ""; }
 
 .serText h1{ font-size:30px; line-height:36px; color:#fff; text-align:left; margin:0; padding:0; margin-bottom:20px; font-family: 'gothambold1'; text-transform:uppercase;}
 .serText p{ font-size:14px; color:#ccc; line-height:22px; margin:0; padding:0; text-align:left; }
 
   /* DIAMOND GRIDS STYLES
  -------------------------------------------------*/
  
  .diamond-grid {
    width: 100%;
    padding-right: 0;
    margin-top:300px;
      height: 475px;
  }
  
  ul.diamond-grid li {
    list-style: none;
    float: left;
    margin-left: 45px;
    margin-top: 20px;
    margin-right:25px;
  }
  
  .diamond1 {
    height: 160px;
    width: 160px;
    background: transparent;
    color: #fff !important;
    background:#000;
    background:rgba(0,0,0,0.7);
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    border: 3px solid #e98b39;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    font-size:18px;
    cursor:default;
  }
  
  .diamond1:hover, .act {
    background: #e98b39;
    color: #fff;
  }
  
  .diamond-grid > li:nth-child(4n+3) {
    margin-left: 160px;
    margin-top: -40px;
  }
  
  .diamond-grid > li:nth-child(4n+4) {
    margin-top: -40px;
  }
  
  .diamond-grid > li:nth-child(n+5) {
    margin-top: -40px;
  }
  
  .popover{ max-width:350px; background:#000; color:#fff; }
  .popover.top>.arrow:after{ border-top-color:#000; }
  .text {
    width: 170px;
    height: 170px;
    font-family: 'Slabo 27px', serif;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 10px;
    display: table-cell;
    vertical-align: middle;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    text-align: center;
    font-size:16px;
    font-weight:bold;
  }
  
  .diamonds {
    text-align: center;
    overflow: visible;
    white-space: nowrap;
    display: inline-block;    padding-bottom:250px;
}

.diamond-row-wrap {
    text-align: center;
    position: relative;
    float: left;
    clear: both;
}
.diamond-row-upper, .diamond-row-lower {
    overflow: visible;
    clear: both;
    width: 100%;
}
.diamond-row-lower {
    position: absolute;
    bottom: 0;
}
    .diamond-row-lower .diamond-box {
        margin-left: 64.644660941%; /* 1 - 1 / sqrt(2) / 2 */
        margin-top: 64.644660941%;
    }

.diamond-box-wrap {
    float: left;
    width: 250px; /* Size of diamonds */
    height: 250px;
}

.diamond-box {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    overflow: hidden;
    
    position: relative;
    z-index: 1;
    
    width: 70.710678118%; /* x = sqrt(x^2 / 2) = 1 / sqrt(2) = 0.70710678118 */
    height: 70.710678118%;
    margin: 14.644660941%;
    
    border: 1px solid transparent;
}

.diamond-box-inner {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    
    width: 141.421356237%; /* sqrt(2) */
    height: 141.421356237%;
    margin: -20.7106781185% 0 0 -20.7106781185%; /* (1 - sqrt(2)) / 2 */
  position:relative;
}

.prtGrdBox{ padding:0; margin-bottom:30px; }  

.img img{
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity:1;
  position: relative;
  right: 0px;
  width:100%;
  position:relative;
  right:0px;
  border-top:20px #000 solid;
  border-bottom:20px #000 solid;
}
.clientBox{ padding-top: 150px; position:relative; text-align:center; perspective: 1000px; }
.clientBox img{ width:550px; }
.cltSldr{ width: 248px;
    height: auto;
    position: absolute;
    left: 220px;
    top: 162px;
    margin-left: 0;
    background: #f2f5ff;
  transform: rotateX(10deg);
    transform-origin: bottom center;
  -webkit-transform: rotateX(10deg);
    -webkit-transform-origin: bottom center;
  -moz-transform: rotateX(10deg);
    -moz-transform-origin: bottom center;
}
#owl-demo .item img{
    display: block;
    width: 100%;
    height: auto;
}

.ttlPop{
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
   position:relative;
   text-align: center;
  width: 100%;
    left: 0;
    font-size:16px;
    color:#fff;
    margin-top:20px;
    letter-spacing:2px;
    display:block;
    min-height:50px;
}

  
  /* ==========================================================================
   Team Page
   ========================================================================== */
  .teamElm1{ position:absolute; left:5%; top:15%; z-index:0; position:absolute; display:block; -webkit-animation: wave 8s 0.1s infinite linear;
  -moz-animation: wave 8s 0.1s infinite linear;
  animation: wave 8s 0.1s infinite linear; }
  .teamElm3{ position:absolute; right:5%; bottom:15%; z-index:0; position:absolute; display:block; -webkit-animation: wave 8s 0.1s infinite linear;
  -moz-animation: wave 8s 0.1s infinite linear;
  animation: wave 8s 0.1s infinite linear; }
  .teamElm2{ width:1517px; height:auto; position:absolute; left:5%; top:5%; z-index:0; position:absolute; display:block; -webkit-animation: waveR 10s 0.7s infinite linear;
  -moz-animation: waveR 10s 0.7s infinite linear;
  animation: waveR 10s 0.7s infinite linear; }
  .teamElm1 img, .teamElm2 img, .teamElm3 img{ width:100%; }
  .team-section .heading h1{ color:#fff; margin-bottom:50px; }
  .team-slider{ margin-top:50px;}
  .teamBox{ clear:both; margin-top:60px; overflow:auto; }
  .teamImg, .teamText{ float:left; width:50%; margin:0; padding:0; }
  .teamImg{ position:relative; text-align:center; display:block; }
  .teamImg img{ width:70%; }
  .teamText{ text-align:left; color:#fff; margin-top:120px; padding-right:150px;}
  .teamText h3{ font-family: 'gothambold1'; margin-bottom:5px; padding:0;}
  .teamText p.teamRoll{ font-size:18px; font-weight:300; color:#ccc; }
  .teamText p{ color:#777; font-size:14px; }
  /*.owl-pagination{ display:none; }
  .owl-theme .owl-controls{ position: absolute;top: 50%;width: 100%;margin-top: -24px;}
  .owl-buttons{ clear:both; overflow:auto; }*/
  #team-slider .owl-buttons .owl-prev{ float:left; background:url(../img/prevArrow.html) no-repeat; height:48px; width:48px; display:block; text-indent:-99999px; }
  #team-slider .owl-buttons .owl-next{ float:right; background:url(../img/nextArrow.html) no-repeat; height:48px; width:48px; display:block; text-indent:-99999px; }
  .fullHight{ height:100%; position:relative;}
  .absBar{ position:absolute; height:100%; width:100%; top:0; left:0; }
  #team-slider{ position:absolute; bottom:0; left:0; }
  .ms-staff-carousel .ms-staff-info h3, .ms-slide-info h3{ color:#1e98ca; text-transform:uppercase; font-size:22pt; }
  .ms-info h4 {
  font-weight: 300;
  color: #e98b39;
  font-size: 14pt;
  margin: 3px;
  text-align:center;
}
  .ms-staff-carousel .ms-staff-info.email, .ms-staff-info p{ color:#999; }
  .team-section .ms-slide .ms-slide-bgcont img{ border-radius:50%; -webkit-border-radius:50%; }
  .ms-staff-carousel{ margin-top:250px; position:relative; }
  #stats{ display:none; }
  /* ==========================================================================
   Team Page
   ========================================================================== */
   
  .clientsText h1{ color:#333; } 
  .map{ margin-bottom:60px; }
  /* ==========================================================================
   Contact Page
   ========================================================================== */
    .stone1{ width:200px; height:auto; position:absolute; right:5%; bottom:15%; z-index:0; position:absolute; display:block;-webkit-animation: anim3 3s infinite; /* Safari 4+ */-moz-animation:anim3 3s infinite; /* Fx 5+ */ -o-animation:anim3 3s infinite; /* Opera 12+ */ animation:anim3 3s infinite; /* IE 10+, Fx 29+ */ }
 .stone2{ width:350px; height:auto; position:absolute; left:5%; top:5%; z-index:3; position:absolute; display:block;-webkit-animation: anim4 3s infinite; /* Safari 4+ */-moz-animation:anim4 3s infinite; /* Fx 5+ */ -o-animation:anim4 3s infinite; /* Opera 12+ */ animation:anim4 3s infinite; /* IE 10+, Fx 29+ */ }
 .stone1 img, .stone2 img{ width:100%; }
   .contactAddress{ }
   .contactAddress p{ font-size:16px; color:#fff; text-align:left; margin-bottom:20px; line-height:24px; }
   .mapg{ margin-top:0px; margin-bottom:80px;}
   .common-section .heading h1{ color:#fff; }
   
   .footer{ width:100%; height:40px; position:absolute; bottom:0; left:0; background:#333; color:#fff; }
   .copy{ font-size:12px; color:#999; text-align:left; line-height:40px; }
   .design{ font-size:12px; color:#999; text-align:right; line-height:40px;  }
   .design a{ color:#fff !important; }
   .form{ margin-top:60px; }
   .form input, .form textarea{ background:rgba(0,0,0,0.7); border:none; color:#fff; font-size:16px; border:1px #666 solid; outline:none !important; border-radius: 5px }
   .form input{ height:35px; line-height:35px; padding:0 15px; margin-bottom:15px; border-radius: 3px; width:260px; }
   .form textarea{ height:150px; line-height:24px;width:100%; padding:10px 15px; }
   .form .wpcf7-submit{
  background: none;
  border: 2px #1e98ca solid;
  padding: 0px 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #1e98ca;
  height: auto;
  width: auto;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
   .form .wpcf7-submit:hover{ background:#1e98ca; color:#fff; }
   
   
   .ms-staff-carousel.ms-round .ms-slide-bgcont{ border: solid 8px #e98b39; }
   div.wpcf7-validation-errors{ border:none; background:#C00; color:#fff; }
   

   
   /* Tooltip */
   
   .tooltip-inner{ max-width:275px; font-size:14px; line-height:22px; background:#1e98ca; } 
.tooltip.top .tooltip-arrow{ border-top-color:#1e98ca; }
.contactAddress { color:#fff; margin-top:80px; }
.cnt{ margin-bottom:30px; }
.contactAddress .glyphicon { font-size:24px; margin-bottom:10px; }
.socialBox{ width:42px; position:fixed; right:0; top:50%; margin-top:-76px; z-index:999; }
.socialBox li{ height:42px; margin-bottom:2px;}


.portfolioBox .prtGrdBox:nth-child(n+5) {display: none;}
.portfolioMore{clear: both;} 


   /* ==========================================================================
   Responsive
   ========================================================================== */
   @media (max-width:1400px){
      .heading h1{ margin-top:70px; }
    .portfolioBox{ margin-top:20px; }
    .abtText, .serText, .diamond-grid{ margin-top:200px; }
    #map{ height:225px; }
    .form textarea{ height:125px; }
    .cltSldr{ left:168px; }
   }
   
   
   
   
   
   
   
   @-webkit-keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }

  100% {
    -webkit-transform: rotateZ(-10deg);
    -moz-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}

@-moz-keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }

  100% {
    -webkit-transform: rotateZ(-10deg);
    -moz-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}

@-ms-keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }

  100% {
    -webkit-transform: rotateZ(-10deg);
    -moz-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotateZ(10deg);
    -moz-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }

  100% {
    -webkit-transform: rotateZ(-10deg);
    -moz-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
}
   
   
@-webkit-keyframes wave {
   0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    -moz-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
  }
}

@-moz-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    -moz-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
  }
}

@-ms-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    -moz-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
  }
}

@keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    -moz-transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
    transform: rotateZ(360deg) translate3d(0,10%,0) rotateZ(-360deg);
  }
}

@-webkit-keyframes waveR {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    -moz-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
  }
}

@-moz-keyframes waveR {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    -moz-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
  }
}

@-ms-keyframes waveR {
   0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    -moz-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
  }
}

@keyframes waveR {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    -moz-transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
    transform: rotateZ(0deg) translate3d(0,10%,0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    -moz-transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
    transform: rotateZ(-360deg) translate3d(0,10%,0) rotateZ(360deg);
  }
}

@-webkit-keyframes anim {
  0%   { margin-top: 0; }
  50% { margin-top: 2%; }
  100% { margin-top: 0; }
}
@-moz-keyframes anim {
  0%   { margin-top: 0; }
  50% { margin-top: 2%; }
  100% { margin-top: 0; }
}
@-o-keyframes anim {
  0%   { margin-top: 0; }
  50% { margin-top: 2%; }
  100% { margin-top: 0; }
}
@keyframes anim {
  0%   { margin-top: 0; }
  50% { margin-top: 2%; }
  100% { margin-top: 0; }
}
@-webkit-keyframes anim1 {
  0%   { margin-bottom: 0; }
  50% { margin-bottom: 2%; }
  100% { margin-bottom: 0; }
}
@-moz-keyframes anim1 {
  0%   { margin-bottom: 0; }
  50% { margin-bottom: 2%; }
  100% { margin-bottom: 0; }
}
@-o-keyframes anim1 {
  0%   { margin-bottom: 0; }
  50% { margin-bottom: 2%; }
  100% { margin-bottom: 0; }
}
@keyframes anim1 {
  0%   { margin-bottom: 0; }
  50% { margin-bottom: 2%; }
  100% { margin-bottom: 0; }
}
@-webkit-keyframes anim2 {
  0%   { margin-bottom: 2%; }
  50% { margin-bottom: 0; }
  100% { margin-bottom: 2%; }
}
@-moz-keyframes anim2 {
  0%   { margin-bottom: 2%; }
  50% { margin-bottom: 0; }
  100% { margin-bottom: 2%; }
}
@-o-keyframes anim2 {
  0%   { margin-bottom: 2%; }
  50% { margin-bottom: 0; }
  100% { margin-bottom: 2%; }
}
@keyframes anim2 {
  0%   { margin-bottom: 2%; }
  50% { margin-bottom: 0; }
  100% { margin-bottom: 2%; }
}

@-webkit-keyframes anim3 {
  0%   { margin-bottom:5% ; }
  50% { margin-bottom: 6%; }
  100% { margin-bottom: 5%; }
}
@-moz-keyframes anim3 {
   0%   { margin-bottom:5% ; }
  50% { margin-bottom: 6%; }
  100% { margin-bottom: 5%; }
}
@-o-keyframes anim3 {
   0%   { margin-bottom:5% ; }
  50% { margin-bottom: 6%; }
  100% { margin-bottom: 5%; }
}
@keyframes anim3 {
   0%   { margin-bottom:5% ; }
  50% { margin-bottom: 6%; }
  100% { margin-bottom: 5%; }
}

@-webkit-keyframes anim4 {
  0%   { margin-top:1% ; }
  50% { margin-top: 3%; }
  100% { margin-top: 1%; }
}
@-moz-keyframes anim4 {
   0%   { margin-top:1% ; }
  50% { margin-top: 3%; }
  100% { margin-top: 1%; }
}
@-o-keyframes anim4 {
    0%   { margin-top:1% ; }
  50% { margin-top: 3%; }
  100% { margin-top: 1%; }
}
@keyframes anim4 {
    0%   { margin-top:1% ; }
  50% { margin-top: 3%; }
  100% { margin-top: 1%; }
}

.gform_wrapper ul li.gfield{ float:left; width:50%; padding:0 15px; clear: initial !important;height: 90px; overflow: hidden; }
.gform_wrapper ul li#field_1_6{ float:none; width:100%; height:auto; }
.gform_wrapper .top_label input.medium, .gform_wrapper textarea.medium{ width:100% !important; } 
.gform_wrapper h3.gform_title, .gform_wrapper .top_label .gfield_label, .gform_wrapper .gform_footer input[type=submit]{ color:#fff !important;} 

.cv-social-media a.crrBtn{     width: 110px;
    height: 40px;
    padding: 10px 10px;
    font-size: 14px;
    color: #FFF;
    background: #f35d34;
    margin-top: 123px;
    transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
    margin-left: -33px; }

  
.inqBox{ position:fixed; width:100%; height:100%; top:0; left:0; z-index:1031; display:none; }
.inqBox.act{display:block; background:none;}
.inqOvl{ background:#000; opacity:0.7; position:absolute; width:100%; height:100%; top:0; left:0; z-index:0; }
.inqFrm{ position:absolute; width:400px; height:480px; top:50%; left:50%; z-index:0; margin-top:-240px; overflow:auto; margin-left:-200px; background:#1e98ca; padding:20px 40px;  }
.inqFrm h3{ font-size:24px; margin:0; padding:0; margin-bottom:10px; color:#fff; text-align:center; letter-spacing:2px; }

.inqCls{     width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 105;
    background: #ffffff;
    border-radius: 0;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    text-indent: 200%;
    white-space: nowrap;
 }
 
 .inqCls:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #333333;
    content: "\00d7";
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin: auto;
    text-align: center;
    text-indent: 0;
    -webkit-transition: color 0.15s linear;
    transition: color 0.15s linear;
}

.inqFrmMain .gform_title{ display:none; }
.gform_wrapper ul li.cmnFld { width:100%; padding:0; height:auto; margin-bottom:10px; }
.gform_wrapper ul li.cmnFld input{border:none; background:#0b8cc1; height:50px; color: #fff; padding: 0 10px;}
.gform_wrapper ul li.cmnFld input::-webkit-input-placeholder {
   color: #a5ddf4;
}

.gform_wrapper ul li.cmnFld input:-moz-placeholder { /* Firefox 18- */
   color: #a5ddf4;  
}

.gform_wrapper ul li.cmnFld input::-moz-placeholder {  /* Firefox 19+ */
   color: #a5ddf4;  
}

.gform_wrapper ul li.cmnFld input:-ms-input-placeholder {  
   color: #a5ddf4;  
}
.gform_wrapper .top_label .cmnFld .gfield_label{ display:none; }
.inqFrmMain .gform_wrapper .gform_footer input[type=submit]{ width:100%; background:#fff; color:#1e98ca !important; margin: 0;
    max-width: none; }

@media (max-width:1400px){
  .common-section{
    min-height:760px;
    padding-bottom: 100px;
    overflow:hidden;
  }
  .bird2{ background-size:100%; width:275px; }
  .bird1{ background-size:100%; width:150px; left:5%; }
  .abtElm2{ background-size:100%; width:960px; }
  .abtElm1{ background-size:100%; width:700px; }
  .teamElm2{ width:900px; }
  .dialog__content{ width:auto; }
  .dialog--open .dialog-inner{ padding:2em; }
  .teamElm1{ width:175px; left:2%; top:10%; }
  .teamElm3{ width:190px; right:2%; bottom:10%;}
  .ttlPop{ font-size:14px;}
  
}
@media (min-width:769px) and (max-width:1400px){
  
  ul.diamond-grid li{ margin-left:30px; }
  .diamond1 { width:130px; height:130px; }
  .diamond-grid > li:nth-child(4n+3){ margin-left:123px; }
  .text {width: 130px;height: 130px; font-size:14px;}
  .diamond-grid > li:nth-child(n+5),.diamond-grid > li:nth-child(4n+3), .diamond-grid > li:nth-child(4n+4){ margin-top:-32px; }
  .diamond-grid > li:nth-child(n+6){ margin-left:31px;}
  
}

@media (max-width:768px){
  .abtText, .serText  { width:80%; margin-left:auto; margin-right:auto; }
  .absBar .fullHight{ width:90%; margin-left:auto; margin-right:auto; }
  .contactAddress p{ text-align:center; }
  .footer{ height:auto; }
  .footer .copy, .footer .design{ text-align:center; }
  .diamond-grid > li:nth-child(n+6){ margin-left:45px; }
  .cltSldr{ left: 254px; }
  #textarea-5603cedc8110e{ width:260px; }
  .fm-form input.submit{ right:37%; }
}
@media (max-width:767px){
  .diamond-grid { margin-left:0; }
  ul.diamond-grid li{ margin:0; width:100%; text-align:center; margin-top:80px; }
  ul.diamond-grid li:first-child{ margin:0; }
  .diamond1{ float:none; margin-left:0; margin-right:0; margin:0 auto; }
  .diamond-grid > li:nth-child(4n+3),.diamond-grid > li:nth-child(4n+4){ margin:0;  margin-top: 80px; }
  .diamonds{ min-width:300px !important; }
  .diamond-box-wrap {width: 210px !important;height: 210px !important;}
  .dialog__content{ height:400px; }
  .dialog--open .dialog-inner {padding: 1em;height: 400px;overflow-y: scroll;}
  .contentBox p{ font-size:12px; line-height:18px; }
  .headingPop h2{ font-size:18px; }
  .abtText h1, .heading h1, .serText h1{ font-size:24px; }
  .abtText p, .contactAddress p{ font-size:12px; line-height:20px; }
  .diamond-grid{ margin:0; padding:0; margin-top:200px; }
  .contactAddress{ margin-top:50px; }
  .diamond-grid > li:nth-child(n+5){ margin-top:80px; }
  .diamond-grid > li:nth-child(n+6){ margin-left:0; }
  .cltSldr {left: 194px;}
  .gform_wrapper ul li.gfield{ float:none; width:100%; height:auto; }
}
@media ( max-width:600px ){
  .clientBox img{ width:100%; }
  .cltSldr { width: 42%; left: 137px;}
  .clientBox{ overflow:hidden; text-align:center; }
  
}
@media (max-width:320px){
  .ttlPop{ font-size:12px; }
  .diamond-box-wrap {width: 175px !important;height: 175px !important;}
  .mainBtn, form input.mainBtn{ width:100%;  padding: 1em 2em; }
  .abtText, .serText{ width:90%; }
  .ms-staff-carousel{ min-width:300px; }
  .ms-staff-carousel .ms-staff-info h3{ font-size:18px; }
  .ms-staff-carousel .ms-staff-info h4{ font-size:12px; }
  .footer .copy, .footer .design{ font-size:10px; }
  .cltSldr {width: 40%;left: 93px;}
}
#map{ height:350px; margin-top:80px; }
.boxer-open #boxer{ width:80%; }
.imgBxMd{ width: 600px; }
.imgBxMd img{ width:100%; } 