/* ----------------------------------------------------------------
  Template Css
-----------------------------------------------------------------*/

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #0d0d0d;
  background-color: #f8f8f8;
  font-size: 14px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  color: #0d0d0d;
  font-family: "Roboto", sans-serif;
}

p,
span,
div,
ul,
ol,
li,
strong,
em,
a {
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}

/*global*/

.wrap-sm {
  font-weight: 900;
  padding: 10px;
}

.panel-body a h6 {
  margin-bottom: 10px;
}

.btn-link:hover h6 {
  color: #005baa;
}

.icn-img {
  margin: 0 5px 5px;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@keyframes bounceInLeftAlt {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeftAlt !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.show .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

a:hover {
  color: #005baa;
}

@keyframes fullWidth {
  from {
    width: 0;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
  }
  to {
    width: 100%;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.5);
  }
}

.fullWidth-line {
  -webkit-animation-name: fullWidth;
  -moz-animation-name: fullWidth;
  animation-name: fullWidth;
}

.underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 10px;
  z-index: -1;
  background-color: #F26F70;
}

.animated-line {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.nav-logo {
  margin-top: 0 !important;
}

.nav-logo div {
  background-image: url(../images/logo.png);
  width: 310px;
  height: 100px;
  background-repeat: no-repeat;
}

.fancy-title.title-dotted-border {
  background: url(../images/icons/dotted.png) repeat-x center;
}

#content p {
  line-height: 1.5;
}

.container-fullwidth,
.container.alt {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 100px !important;
}

.container-fullwidth.alt {
  padding: 0 !important;
}

.sec-case-study .container-fullwidth.alt {
  /*padding: 0 100px !important;*/
}

li {
  list-style-type: none;
}

#header.transparent-header,
.dark.overlay-menu #primary-menu:not(.not-dark) ul,
.dark.overlay-menu #primary-menu:not(.not-dark) ul,
.overlay-menu #primary-menu.dark ul,
.overlay-menu #primary-menu.dark ul {
  background-color: rgba(38, 76, 124, 0.9);
}

.overlay-menu #primary-menu.dark ul,
.overlay-menu #primary-menu.dark ul {
  background: url(../images/bg-navi.png) no-repeat center center;
  background-size: cover;
}

.overlay-menu:not(.top-search-open) #primary-menu-trigger {
  margin-top: 0;
  top: 20px;
}

.overlay-menu #primary-menu>ul.show {
  right: 0;
}

.overlay-menu:not(.top-search-open) #primary-menu-trigger {
  width: 24px;
  height: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 999;
  float: right;
  position: relative;
  right: auto;
}

#primary-menu-trigger span {
  display: block;
  height: 3px;
  width: 100%;
  margin-bottom: 5px;
  background: #b1babe;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#primary-menu-trigger span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#primary-menu-trigger span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#primary-menu-trigger span:nth-child(3) {
  top: 36px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.primary-menu-open #primary-menu-trigger span:nth-child(1) {
  -webkit-transform: rotate(41deg);
  -moz-transform: rotate(41deg);
  -o-transform: rotate(41deg);
  transform: rotate(41deg);
  top: -3px;
  left: 8px;
}

.primary-menu-open #primary-menu-trigger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.primary-menu-open #primary-menu-trigger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

#header {
  width: 100%;
  -webkit-transition: background-color .10s ease;
  -o-transition: background-color .10s ease;
  transition: background-color .10s ease;
}

#header.transparent-header {
  background-color: transparent;
}

/*#header.dark.sticky-header.transparent-header #header-wrap:not(.not-dark) {*/

#header.sticky-header.transparent-header #header-wrap.not-dark {
  background-color: rgba(0, 91, 170, 0.7);
}

#header.sticky-header #header-wrap {
  box-shadow: none;
}

#header,
#header-wrap,
#logo img {
  height: 60px;
}

.overlay-menu #primary-menu>ul {
  left: auto;
  right: 0;
  width: 0%;
}

#header.full-header #primary-menu>ul {
  padding-right: 0;
  margin-right: 0;
}

.overlay-menu #primary-menu>ul {
  width: 50vw !important;
  right: -50vw;
  /*-webkit-transition: width .4s ease, margin .4s ease, opacity .2s .2s ease;
    -o-transition: width .4s ease, margin .4s ease, opacity .2s .2s ease;
    transition: width .4s ease, margin .4s ease, opacity .2s .2s ease;  */
  -webkit-transition: right 1s ease !important;
  -o-transition: right 1s ease !important;
  /* transition: right 0.7s ease-in-out !important; */
  transition: right 1s ease, margin .4s ease, opacity .2s .2s ease !important;
  opacity: 1 !important;
}

.overlay-menu #primary-menu>ul>li {
  max-width: 16vw;
}

.overlay-menu #primary-menu>ul>li>a {
  font-size: 2vw;
  font-weight: normal;
  padding-top: 10px;
  padding-bottom: 10px;
}

body:not(.device-touch):not(.device-xs):not(.device-xxs) .menu-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
}

.overlay-menu #primary-menu.dark>ul>li.anilist>a {
  -webkit-transition: opacity .1s .15s ease, transform .45s .15s ease, color .2s linear !important;
  -o-transition: opacity .1s .15s ease, transform .45s .15s ease, color .2s linear !important;
  transition: opacity .1s .15s ease, transform .45s .15s ease, color .2s linear !important;
}

.overlay-menu #primary-menu.dark>ul>li.hover>a {
  color: #fff !important;
}

.overlay-menu #primary-menu>ul>li.notHover>a {
  /*  -webkit-filter: grayscale(1) !important;
          filter: grayscale(1);
        opacity: .75 !important;*/
  opacity: 0.5;
}

.overlay-menu #primary-menu>ul>li:hover .menu-divider::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

/* cover */

.cover-outer {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
  overflow-x: hidden;
}

.full-name .form-control,
.dark .form-control:not(.not-dark),
.dark .sm-form-control:not(.not-dark),
#textField {
  color: #999;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.25);
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.4);
}

iframe .full-name {
  background-color: red;
}

.btn-group {
  width: 100%;
}

#quick-contact-form-submit {
  width: 100%;
  text-align: left;
  color: #fff;
}

.btn-group .icon-email2 {
  position: absolute;
  right: 10px;
}

input::placeholder {
  color: #fff;
}

/*Mixin*/

.left-pad-100 {
  padding-left: 5vw;
  display: inline-block;
}

#tpl-expertise:not(.device-touch) .left-pad-100 {
  padding-left: 10vw;
}

#tpl-expertise .fancy-cnt-outer {
  margin: 0;
}

#tpl-expertise:not(.device-touch) .fancy-cnt-outer {
  width: 80%;
}

#tpl-expertise:not(.device-touch) .fancy-cnt-outer.left-pad-100 {
  width: 100%;
}

.bg-white {
  background: #fff !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.left {
  text-align: left !important;
}

.title-3 {
  padding: 5%;
}

.overlap-top {
  z-index: 100;
}

.lg-font {
  margin: 0;
  font-weight: lighter;
  color: #0d0d0d;
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/*Creative Buttton*/

.creative-btn {
  background: none;
  cursor: pointer;
  padding: 25px;
  display: inline-block;
  margin: 15px 0;
  outline: none;
  position: relative;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
  z-index: 1;
  line-height: 1;
}

.creative-btn:before {
  content: "+" !important;
  font-weight: lighter;
  font-size: 80px;
  float: right;
  line-height: 0.7;
  padding-left: 10px;
  font-family: Lato;
  color: rgba(0, 91, 170, 1);
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  transition: all 1.5s;
}

.creative-btn:after {
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #005baa;
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

.creative-btn:hover {
  color: #fff !important;
}

.creative-btn:hover:before {
  color: #fff !important;
}

.creative-btn:hover:after,
.creative-btn:active:after {
  width: 100%;
}

/*Home*/

/*Home Slider*/

.cnt-outer {
  color: #222;
  font-size: 25px;
}

.cnt-row {
  padding: 150px 0 0 0;
}

#tpl-home .sec-service {
  background: #f9f8f2;
  border-bottom: 1px solid #e9efee;
}

#tpl-home .sec-service .creative-btn {
  margin-top: -5vw;
}

#tpl-home .cnt-outer a {
  color: #222;
}

.cnt-outer .title-1 {
  margin-bottom: 45px;
  font-size: 60px;
}

.title-2 {
  margin-bottom: 45px;
  font-size: 60px;
}

.cnt-outer .title-1 span {
  font-size: 62px;
  border-bottom: 1px solid #0d0d0d;
  color: #0d0d0d;
  display: table;
  line-height: 1.1;
}

.cnt-list li {
  padding-bottom: 22px;
}

#tpl-home .sec-service .btn-abs {
  position: absolute;
  bottom: 0;
  left: 55px;
}

/*Home Client*/

.slider-caption.slider-caption-center {
  max-width: 100%;
  color: #b1babe;
  margin-top: -3vw;
}

.slider-caption.slider-caption-center h2,
.slider-caption.slider-caption-center span {
  text-transform: none;
  font-size: 33px;
  text-align: left;
  font-style: italic;
  line-height: 1;
  color: #b1babe;
  opacity: 0;
}

.slider-caption.slider-caption-center span {
  float: left;
  opacity: 1;

}

.slider-caption.slider-caption-center p {
  font-size: 42px;
  text-align: center;
  font-style: italic;
  line-height: 1;
  opacity: 0;
}

.owl-carousel .owl-dots {
  line-height: 3;
}

.swiper-pagination {
  bottom: 5vw !important;
}

.flex-control-nav {
  top: initial;
  bottom: 5%;
  left: 0;
  width: 100%;
  text-align: center;
}

.flex-control-nav li {
  float: initial;
  width: 15px !important;
  height: 15px !important;
  text-align: center;
  display: inline-block;
}

.swiper-pagination span,
.flex-control-nav li a,
.owl-carousel .owl-dots .owl-dot span {
  width: 15px !important;
  height: 15px !important;
  background-color: #b1babe;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #fff;
}

.sec-case-study {
  position: relative;
  padding: 0;
  margin-top: 150px;
}

.sec-case-study .slider-outer {
  background: #e9efee;
  padding: 50px 0 0 5vw;
  position: relative;
  margin: 0 0 0 100px;
  overflow: visible;
}

.sec-case-study .slider-outer p {
  width: 65%;
}

.sec-case-study .slider-outer:before {
  content: close-quote;
  margin-left: 0px;
  background: url(../images/img-open-quote.png) no-repeat;
  width: 88px;
  height: 71px;
  position: absolute;
  top: 0px;
  left: -100px;
}

.sec-case-study .slider-outer:after {
  content: close-quote;
  margin-left: 0px;
  background: url(../images/img-close-quote.png) no-repeat;
  width: 88px;
  height: 71px;
  position: absolute;
  bottom: 0px;
  right: -100px;
}

.img-ani {
  position: absolute;
  top: -80px;
  right: 0;
  margin: 0;
  /*max-width: 38%;*/
  height: auto;
  z-index: 1;
}

.ani-cnt-1 .img-ani .title-1 {
  position: absolute;
  top: 5vh;
  left: 5vw;
  z-index: 1;
}

/*Case Study Slider*/
.tpl-inner-cs section img {
  width: 100% !important;
}

.tpl-inner-cs:not(.device-xxs):not(.device-xs):not(.device-sm) p {
  font-size: 3rem;

}

.sec-case-study #oc-images {
  /* padding-bottom: 100px; */
}

.sec-case-study .owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  left: -5vw;
  /* line-height: 2; */
}

body.device-xs .flex-direction-nav,
body.device-xxs .flex-direction-nav {
  display: none;
}

.flex-direction-nav {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 100%;
}

.flex-direction-nav [class*=flex-nav-] {
  float: left;
}

.flex-next i {
  margin-left: 1px;
}

.flex-next,
.flex-prev {
  position: static;
}

.sec-case-study .owl-carousel .owl-nav [class*=owl-],
.flex-direction-nav .flex-next i,
.flex-direction-nav .flex-prev i {
  position: static;
  width: auto;
  height: auto;
  border: none;
  color: #666;
  background-color: #c5c8c9;
  font-size: 80px;
  border-radius: 0;
  opacity: 1;
  padding: 0px 20px 10px 20px;
  float: left;
  display: table;
  line-height: 0.7;
  margin-left: 1px;
}

.sec-case-study .owl-carousel .icon-angle-left,
.sec-case-study .owl-carousel .icon-angle-right {
  margin-left: 0 !important
}

.sec-case-study .owl-carousel .owl-nav [class*=owl-]:hover {
  background-color: #005baa !important;
}

.flex-direction-nav [class*=flex-nav-]:hover i {
  color: #fff;
}

.sec-case-study .gallery-txt-outer {
  float: right;
  margin-right: 15vw;
}

.sec-case-study .gallery-txt-outer .inner {
  padding: 20px 50px;
  text-align: left;
}

.sec-case-study .gallery-txt-outer .inner span {
  display: block;
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
}

.color-box {
  padding: 80px 0;
  display: inline-block;
  width: 100%;
}

.color-box.no-padding {
  padding: 0;
}

.sec-our-work .col_last {
  float: right;
  z-index: 1
}

.sec-our-work .color-box {
  background: url(../images/bg-our-work.png) repeat-y;
  background-size: contain;
}

.fancy-cnt-outer {
  margin: 15% 0 0 0;
}

.cnt-row-right .fancy-cnt-inner.left {
  background: #eceff0;
  margin-left: -5vw;
  padding: 0 1vw 0 5vw;
}

.cnt-row-left .color-box {
  background: url(../images/bg-about.png) repeat-y;
  padding-left: 100px;
  background-size: contain;
}

.cnt-row-left .fancy-cnt-inner.right {
  background: #f9f8f2;
  margin-right: -5vw;
  padding-right: 20px;
  max-width: 100%;
}

.cnt-row-left .overlap-layer {
  z-index: 2;
}

/*==================End of Home =========================*/

/*About Us*/

#tpl-about .intro-txt {
  width: 40vw;
  padding-left: 100px;
}

.cnt-outer .title-1 span {
  font-size: 1.4vw;
}

.cnt-outer .title-1 img {
  margin-bottom: 30px;
}

.fancy-title-1-txt {
  font-weight: lighter;
  margin-bottom: 0 !important;
}

.fancy-title-1-outer .divider {
  margin-top: 0;
}

.fancy-title-1-outer .divider .icon-circle:before {
  display: none;
}

.fancy-title-1-outer .divider:after {
  left: 10%;
  border-top: 1px solid #b1babe;
}

#tpl-about .row-1:before,
#tpl-about .row-2:before,
#tpl-about .row-3:before {
  content: "";
  background: url(../images/about/icon-m.png) no-repeat top right;
  width: 573px;
  height: 347px;
  position: absolute;
  top: -100px;
  right: 100px;
  opacity: 0.5;
}

#tpl-about .row-2 .top {
  background: url(../images/about/bg-mission.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 15vw;
}

#tpl-about .row-2 .bottom {
  background: #f3f3f3;
}

#tpl-about .row-2 .icon-mission-outer {
  padding: 4% 0 4% 4%;
  background: #f3f3f3;
  margin-bottom: 0 !important;
}

#tpl-about #oc-events {
  /*padding: 0 5% 0 5%;*/
}

#tpl-about .events .entry,
.ievent {
  padding: 0;
  background-color: transparent;
  border-bottom: 0;
}

#tpl-about .row-2 .icon-mission-outer img {
  display: block;
  margin: 0 auto;
  max-width: 70%;
}

#tpl-about .row-2 .icon-mission-outer span {
  display: block;
}

#tpl-about .row-3,
#tpl-about .row-2 {
  position: relative;
  overflow: hidden;
}

strong.font-year {
  font-size: 75px;
  line-height: 1;
  color: #adadad;
  display: block;
}

#tpl-about .icn-outer {
  margin-bottom: 30px;
}

.emoji-des {
  margin-bottom: 3vw;
  text-align: center;
}

#tpl-about .post-grid .entry {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding-bottom: 0;
}

#tpl-about .post-grid .entry img {
  width: 100%;
}

/*==================End of About =========================*/

/*==================Case Studies =========================*/

body:not(.device-touch) .portfolio {
  /*    -webkit-transition: height .4s linear;
    -o-transition: height .4s linear;
    transition: height .4s linear;*/
  min-height: 100vh;
}

.portfolio.portfolio-parallax .portfolio-item {
  height: 100vh !important;
  padding: 0;
}

.portfolio.portfolio-parallax .portfolio-item .portfolio-image {
  height: 100% !important;
  padding: 0;
  background-size: cover;
  background-attachment: initial !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0%) scale(1) translateZ(0px);
  background-position: 0;
}

}

.portfolio.portfolio-parallax .portfolio-desc h3 a {
  display: block;
}

.align-right.portfolio.portfolio-parallax .portfolio-desc {
  bottom: 20%;
  right: 0;
  top: initial;
  left: auto;
  width: 50%;
}

.portfolio.portfolio-parallax .portfolio-desc span {
  margin-top: 5px;
}

.portfolio.portfolio-parallax .portfolio-desc .txt-des {
  line-height: 1;
  letter-spacing: 0.2px;
}

.portfolio.portfolio-parallax .portfolio-desc h3 span:last-child {
  margin-bottom: 10px;
}

.portfolio.portfolio-parallax .portfolio-desc .portfolio-divider {
  margin: 0px 0 0;
}

/*==================End of Case Studies =========================*/

/*==================Inner =========================*/

.inner-page .content-wrap {
  padding: 100px 0 0 0;
}

.inner-page {
  position: relative;
}

.inner-page .right {
  position: absolute;
  top: -10px;
  right: 4%;
  height: 100%;
  width: 34%;
}

.inner-page .right .pos-fixed {
  position: fixed;
  width: inherit;
}

.inner-page .left img {
  margin-bottom: 20px;
}

.inner-page .divider,
.inner-page .left img:last-child {
  margin: 0;
}

.inner-page .portfolio-meta li {
  margin: 2px 0;
  display: inline-block;
  width: 100%;
}

.inner-page .portfolio-meta li span {
  display: block;
  float: left;
}

.inner-page .portfolio-meta li .left-align {
  float: left;
  width: 100px;
}

.inner-page .portfolio-meta li .right-align {
  width: 75%;
  color: #666;
  font-weight: 400;
}

.inner-page .panel-body {
  padding: 5px;
}

.inner-page .fancy-title {
  margin-bottom: 10px;
}

.inner-page .fancy-title a {
  display: block;
  line-height: 1.5;
  margin-top: 5px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
  /*text-decoration: underline !important;*/
  transition: .3s linear;
  -webkit-transition: color .1s linear;
  -moz-transition: color .1s linear;
  -o-transition: color .1s linear;
}

.inner-page .fancy-title a:hover {
  color: #0d0d0d;
  /*text-decoration: none !important;*/
}

.inner-page p {
  margin-bottom: 15px;
}

.inner-page .panel-body h6 {
  font-weight: 400;
}

.inner-page .panel-body img {
  /*max-width: 25%;*/
}

.single-widget a {
  margin: 0 20px;
  display: block;
}

.single-widget h6 {
  margin: 0 7px;
}

/*Case studies inner*/

.tpl-inner-cs #header {
  position: fixed;
}

.tpl-inner-cs #one .ani-zoom {
  -webkit-animation: zooming 10s ease-in infinite;
  animation: zooming 10s ease-in infinite;
  transition: all 10s ease-in-out;
}

/* Zoom in Keyframes */

.ani-outer {
  overflow: hidden;
}

@-webkit-keyframes zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.tpl-inner-cs section {
  position: relative;
  text-align: center;
  background: #F9F9F9;
}

.tpl-inner-cs section#two {
  z-index: -1;
}

.tpl-inner-cs #one .ani-opacity {
  opacity: 1;
  -webkit-transition: all 2s linear 1s;
  /* For Safari 3.1 to 6.0 */
  transition: all 2s linear 1s;
  position: absolute;
  top: 75%;
  left: 40%;
  z-index: 999;
  width: 15%;
  max-width: 15%;
}

.tpl-inner-cs #one.fade-in .ani-opacity {
  opacity: 0.1;
}

/*our work*/

h2 {
  font-size: 3vw;
  color: #444;
}

#tpl-ourwork .slider-caption {
  max-width: 65vw;
}

.slider-caption p {
  font-weight: normal;
}

#tpl-ourwork .slider-caption.alt {
  max-width: 40vw;
}

#tpl-ourwork .portfolio-3 .portfolio-item {
  padding: 0 1.5vw 1.5vw 0 !important;
}

#tpl-ourwork .portfolio-desc h3 a {
  color: #444;
  font-size: 1.4vw;
  /* font-size: 31px; */
}

#tpl-ourwork .portfolio-desc span {
  color: #666;
  /*font-size: 18px;*/
  font-size: 0.9vw;
}

#tpl-ourwork .portfolio-desc:hover h3 a {
  color: #337ab7;
}

#tpl-ourwork #slider-arrow-left,
#tpl-ourwork #slider-arrow-right {
  bottom: 10vh;
  left: auto;
  top: initial;
  margin-top: 0;
  margin-left: 30px;
  border-radius: 0;
}

#tpl-ourwork #slider-arrow-right {
  left: auto;
  right: auto;
  border-radius: 0;
  margin-left: 101px;
}

#tpl-ourwork .swiper-pagination {
  display: none;
}

#tpl-ourwork:not(.device-lg) .swiper-pagination {
  display: block;
}

#slider-arrow-left,
#slider-arrow-right {
  background-color: rgba(0, 91, 170, 0.7);
}

.imagescale .portfolio-overlay a {
  margin: -18px 0 0 -18px;
}

.imagescale img,
.imagescalein img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.imagescale:hover img,
.imagescalein img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ani-img {
  margin-bottom: 3%;
}

/*==================End of Inner =========================*/

/*footer*/

#footer.dark,
.dark #footer {
  border-top: none;
  background: #264c7c url(../images/bg-footer.jpg) no-repeat center center;
  background-size: cover;
  margin: 0 !important;
}

#footer .footer-widgets-wrap {
  position: relative;
  padding: 50px 0;
}

#footer .widget>h4 {
  text-transform: capitalize;
  margin-bottom: 15px;
  font-size: 20px;
}

#footer h3 {
  font-size: 28px;
}

#footer .widget,
#footer .widget_links li a {
  font-size: 18px;
}

/*==================Expertise =========================*/

#tpl-expertise .right {
  text-align: right !important;
}

body:not(.device-lg):not(.device-md) .ipad-up {
  display: none;
}

body:not(.device-xxs):not(.device-sm) .ipad-down {
  display: none;
}

body.device-xxs .force-full-screen,
body.device-sm .force-full-screen {
  background-position: 65% 0 !important;
}

body.device-xxs #img-expertise-intro,
body.device-sm #img-expertise-intro {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

#tpl-expertise #content {
  background-color: #f9f8f2;
}

#tpl-expertise .cnt-row-left .color-box {
  width: 100%;
}

#tpl-expertise .cnt-row-2 .color-box {
  background: url(../images/expertise/bg-cnt-row-2.png) repeat-y;
  background-position: center;
}

#tpl-expertise .cnt-row-3 .color-box,
#tpl-expertise .cnt-row-5 .color-box,
#tpl-expertise .cnt-row-7 .color-box {
  background: url(../images/expertise/bg-cnt-1.png) repeat-y;
}

#tpl-expertise .cnt-row-4 .color-box,
#tpl-expertise .cnt-row-6 .color-box {
  background: url(../images/expertise/bg-cnt-2.png) repeat-y;
}

#tpl-expertise .img-ani img {
  width: 100%;
}

#tpl-expertise .cnt-list p {
  margin-bottom: 7%;
}

#tpl-expertise .cnt-list li {
  color: #666;
  padding-bottom: 2%;
}

#tpl-expertise .cnt-row-left .fancy-cnt-inner {
  margin-right: -10vw;
  margin-top: 5%;
  max-width: inherit;
}

#tpl-expertise .cnt-row-right .fancy-cnt-inner {
  margin-left: -10vw;
  width: 100%;
  margin-top: 5%;
}

#tpl-expertise .line-break {
  line-height: 1em;
  display: block;
  margin-left: 43%;
  color: #333;
}

#tpl-expertise .list-break {
  margin-left: 3%;
  display: block;
}

.partner-outer h2 {
  text-transform: unset;
  padding-left: 5vw;
}

.partners li {
  width: 25%;
  float: left;
  margin: 0;
  padding: 0;
}

.team li {
  width: 16%;
  float: left;
  margin: 0;
  padding: 15px;
}

.client-list .widget h4 {
  line-height: 1.2;
  font-size: 1.2vw;
}

.client-list ul {
  margin-bottom: 25px;
}

.client-list .widget_links li {
  padding: 0;
  font-size: 1vw;
  margin-bottom: 7px;
}

/*Browser Compatability*/

.isIE .flex-control-nav {
  top: auto;
  left: 50%;
  width: auto;
}

.isIE#tpl-ourwork #slider-arrow-left,
.isIE#tpl-ourwork #slider-arrow-right {
  top: auto;
}

/*==================End of Expertise =========================*/

/*tpl play*/

/* remove bootstrap gutter*/

#instafeed {
  column-count: 4;
}

#tpl-play .row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

#tpl-play .row.no-gutter [class*='col-']:not(:first-child),
#tpl-play .row.no-gutter [class*='col-']:not(:last-child) {
  padding-right: 0;
  padding-left: 0;
}

/* the good stuff */

#tpl-play .img-featured-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

#tpl-play .img-featured-container img {
  width: 100%;
  /*   padding: 10px; */
}

#tpl-play .img-featured-container .img-backdrop {
  background: linear-gradient(135deg, rgba(38, 163, 255, 0.85), rgba(83, 201, 179, 0.85));
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}

#tpl-play .img-featured-container:hover>.img-backdrop {
  opacity: 1;
}

/* center text horizontally and vertically on image hover */

#tpl-play .img-featured-container .description-container {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 30px;
  text-align: center;
  line-height: 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  z-index: 2;
  opacity: 0;
  transition: all .2s ease;
}

#tpl-play .img-featured-container .description-container .fa-instagram {
  font-size: 40px;
}

#tpl-play .img-featured-container .description-container p {
  font-weight: 300;
  margin-bottom: 0;
}

#tpl-play .img-featured-container:hover .description-container {
  opacity: 1;
}

#tpl-play .img-featured-container .description-container .caption {
  display: none;
  margin-bottom: 10px;
}

#tpl-play .img-featured-container .description-container .likes,
#tpl-play .img-featured-container .description-container .comments {
  margin: 0 5px;
}

/* load more button */

#tpl-play #load-more {
  color: #fff;
  background: #26a3ff;
  font-size: 16px;
  margin: 20px auto;
  padding: 8px 40px;
  display: block;
  border: none;
}

/*Contact */

.cnt-detail {
  background-color: #3381ce;
  padding: 9% 5%;
}

.cnt-form {
  padding: 8% 5% 0 1%;
}

.cnt-form h3 span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

/*join us*/

.join-us .position {
  margin-left: 15px;
  margin-right: 15px;
  padding: 50px 5%;
}

.join-us .position.alt {
  background: #f0f0f0;
}

.join-us p {
  font-size: 18px;
  margin-bottom: 10px;
}

.join-us .position h3 {
  font-size: 25px;
}

.join-us .position span {
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
  color: #c0c0c0;
}

.join-us .position .lg-space {
  margin-bottom: 50px;
}

/*Paging*/

#slider-arrow-left,
#slider-arrow-right {
  height: 80px;
  width: 70px;
}

.icon-angle-right:before,
.icon-angle-left:before {
  content: "";
}

.icon-angle-right,
.icon-angle-left {
  background-repeat: no-repeat;
  background-size: 100%;
  width: 29px !important;
  height: 55px !important;
  margin-top: 13px;
}

.icon-angle-right {
  background-image: url(../images/icon-next.png);
  margin-left: 25px !important;
}

.icon-angle-left {
  background-image: url(../images/icon-prev.png);
  margin-left: 15px !important;
}

.hovicon {
  display: inline-block;
  font-size: 45px;
  line-height: 50px;
  cursor: pointer;
  margin: 20px 1px;
  width: 65px;
  height: 65px;
  text-align: center;
  position: relative;
  text-decoration: none;
  z-index: 1;
  color: #333;
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}

.hovicon .icon-angle-left {
  background-image: url(../images/icon-gray-prev.png);
  margin-left: 0;
  margin-right: 15px;
  margin-top: 5px;
}

.hovicon .icon-angle-right {
  background-image: url(../images/icon-gray-next.png);
  margin-top: 5px;
  margin-left: 5px !important;
}

.hovicon:hover .icon-angle-left {
  background-image: url(../images/icon-prev.png);
}

.hovicon:hover .icon-angle-right {
  background-image: url(../images/icon-next.png);
}

.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  top: 0;
  left: 0;
  padding: 0;
  box-shadow: 0 0 0 1px #c0c0c0;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}

.hovicon:hover:after {
  -webkit-transform: scale(0.90);
  -moz-transform: scale(0.90);
  -ms-transform: scale(0.90);
  transform: scale(0.90);
}

.hovicon:hover {
  /*box-shadow: 0 0 0 5px rgba(000, 000, 000, 0.4);*/
  color: #333;
  color: #fff;
  background: #005baa;
}

.hovicon .icon-angle-left:before,
.hovicon .icon-angle-right:before {
  -webkit-text-stroke: 1px #fff;
}

.hovicon:hover .icon-angle-left:before,
.hovicon:hover .icon-angle-right:before {
  -webkit-text-stroke: 1px #005baa;
}

#wpi-logo {
  margin-top: 8%;
  max-width: 50%;
}

/* media queries  */

@media screen and (min-width:768px) {
  #tpl-play .img-featured-container .description-container .caption {
    display: block;
  }
}

@media (min-width: 1921px) {
  .inner-page .right .pos-fixed {
    width: 23%;
  }
  .owl-carousel .owl-item img {
    max-width: 32%;
  }
  .portfolio.portfolio-parallax .portfolio-item .portfolio-image,
  .portfolio.portfolio-parallax .portfolio-item {
    /*height: 70vh !important;*/
  }
}

@media (min-width: 1700px) {
  /*.portfolio.portfolio-parallax .portfolio-item .portfolio-image, .portfolio.portfolio-parallax .portfolio-item {
  height: 70vh !important;
}*/
  .swiper_wrapper .swiper-slide .container {
    width: 1600px;
  }
  #tpl-ourwork .portfolio-desc h3 a {
    font-size: 1.3vw;
  }
  #tpl-ourwork #slider-arrow-left,
  #tpl-ourwork #slider-arrow-right {
    left: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1920px) {
  /*Home*/
  .cnt-list li {
    padding-bottom: 1.3vw;
  }
  .slider-caption.slider-caption-center {
    max-width: 47vw;
  }
  .slider-caption.slider-caption-center img {
    max-width: 15%;
  }
  .slider-caption.slider-caption-center h2,
  .slider-caption.slider-caption-center span {
    font-size: 1.2vw;
    line-height: 1;
    margin-bottom: 1vw;
  }
  .slider-caption.slider-caption-center p {
    line-height: 1;
    letter-spacing: 0.5px;
  }
  .owl-carousel .owl-stage-outer {
    /*overflow: visible;*/
  }
  .flex-control-nav li:hover a,
  .flex-control-nav li a.flex-active {
    /*    background-color: #337ab7;
    border: 1px solid #337ab7;*/
  }
  .cnt-outer,
  .slider-caption p,
  .tpl-inner-cs p {
    font-size: 1.3vw;
    line-height: 1.5;
    margin-bottom: 2%;
    text-align: left;
  }
  .slider-caption.alt-width p {
    max-width: 80%;
  }
  .cnt-outer .title-1 {
    margin-bottom: 2.3vw;
  }
  .lg-font {
    font-size: 3vw;
  }
  .creative-btn {
    padding: 0.5vw;
  }
  .creative-btn:before {
    font-size: 4vw;
  }
  .ani-cnt-1 .img-ani {
    max-width: 35%;
  }
  .sec-case-study .gallery-txt-outer .inner span {
    font-size: 1.3vw;
  }
  .cnt-outer .title-1 span,
  .cnt-outer .title-1 {
    font-size: 1.4vw;
  }
}

@media (min-width: 1500px) and (max-width: 1920px) {
  .slider-caption.slider-caption-center p {
    font-size: 1.8vw;
  }
  /*  .cnt-outer .title-1 span, .cnt-outer .title-1{
    font-size: 3vw;
  }*/
}

@media (min-width: 768px) and (max-width: 1499px) {
  .slider-caption.slider-caption-center p {
    font-size: 1.8vw;
  }
}

@media (max-width: 1199px) {
  #ipad-on-nsmark {
    max-width: 60%;
  }
  #ipad-on-sme {
    max-width: 30%;
  }
  #wpi-logo {
    max-width: 60%;
  }
  body:not(.device-touch) .portfolio {
    min-height: 40vw !important;
  }
  .portfolio.portfolio-parallax .portfolio-item {
    height: 40vw !important;
  }
  .overlay-menu #primary-menu>ul>li {
    max-width: 18vw;
  }
  #tpl-ourwork #slider-arrow-left,
  #tpl-ourwork #slider-arrow-right {
    display: none;
  }
  .fancy-title-1-txt {
    font-size: 3rem;
  }
  .cnt-outer .title-1 span,
  .cnt-outer .title-1 {
    font-size: 1.8vw;
  }
  #tpl-expertise .cnt-row-3 .color-box, #tpl-expertise .cnt-row-5 .color-box, #tpl-expertise .cnt-row-7 .color-box,
  #tpl-expertise .cnt-row-4 .color-box, #tpl-expertise .cnt-row-6 .color-box {
      background-position: center;
  }    
}

@media (min-width: 992px) and (max-width: 1200px) {
  /*Home*/
  .slider-caption.slider-caption-center {
    max-width: 510px;
  }
  .slider-caption.slider-caption-center h2 {
    /*line-height: 3.5;*/
  }
  .swiper_wrapper:not(.force-full-screen),
  .swiper_wrapper:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide,
  .ei-slider {
    height: 600px !important;
  }
  .inner-page .portfolio-meta li .right-align {
      width: 70%;
  }  

}

@media (min-width: 768px) and (max-width: 1024px) {
  .container-fullwidth,
  .container.alt {
    padding: 0 60px !important;
  }
  #tpl-about .intro-txt {
    padding-left: 60px;
  }
  .cnt-row {
    padding: 75px 0 0 0;
  }
  .sec-case-study {
    margin: 50px 0 0 0;
  }
  .ani-cnt-1 .img-ani {
    max-width: 40%;
  }
  .slider-caption.slider-caption-center {
    max-width: 65vw;
  }
  .slider-caption.slider-caption-center h2,
  .slider-caption.slider-caption-center span {
    font-size: 2vw;
  }
  .portfolio.portfolio-parallax .portfolio-item .portfolio-image {
    transform: translateY(0%) scale(1) translateZ(0px) !important;
  }
  .cnt-outer,
  .slider-caption p,
  .tpl-inner-cs p,
  .sec-case-study .gallery-txt-outer .inner span {
    font-size: 1.8vw;
  }
  #tpl-expertise .cnt-row-left .color-box {
    padding-left: 2%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .swiper_wrapper:not(.force-full-screen),
  .swiper_wrapper:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide,
  .ei-slider {
    height: 400px !important;
  }
  #tpl-about .cnt-outer .title-1 span,
  #tpl-about .cnt-outer .title-1 {
    font-size: 4vw;
  }
  #tpl-about .cnt-outer {
    font-size: 2.3vw;
  }
  /*  #tpl-home #header.transparent-header + .slider-parallax .slider-parallax-inner {
      top: -400px;
  }*/
}

@media (min-width: 992px) {
  .fixed-header #header.transparent-header {
    position: fixed;
  }
  /*  body:not(.overlay-color) #logo.logo-dark, body.overlay-color #logo {
    display: none;
  }
  body.overlay-color #logo.logo-dark  {
    display: block;
  }  */
  .overlay-color #header.transparent-header {
    /*background-color: rgba(0, 91, 170, 0.7);*/
    border-bottom: 1px solid #f0f0f0;
  }
  .overlay-color #header.transparent-header #header-wrap:not(.not-dark) #primary-menu-trigger span {
    background: #005baa;
  }
  .portfolio.portfolio-parallax .portfolio-desc .txt-des {
    font-size: 2.5vw;
  }
  .portfolio.portfolio-parallax .portfolio-desc h3 span:last-child {
    font-size: 24px;
  }
  #footer .clearfix.clr,
  .one-page-arrow {
    display: none;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .two-col .col_three_fifth.left {
    width: 55%;
  }
  .two-col .col_two_fifth.right {
    /*width: 40%;*/
  }
}

@media (max-width: 991px) {
  .overlay-menu:not(.top-search-open) #primary-menu-trigger {
    width: 20px;
    top: 25px;
    left: 0;
  }
  #primary-menu-trigger span {
    height: 2px;
  }
  #header-wrap {
    background-color: rgba(0, 91, 170, 1);
  }
  #logo {
    height: auto;
    float: left;
  }
  .overlay-menu #primary-menu>ul>li {
    max-width: 100%;
  }
  #header.dark.transparent-header,
  #header.dark.semi-transparent {
    background: rgba(0, 91, 170, 0.5);
  }
  .container-fullwidth,
  .container.alt {
    padding: 0 15px !important;
  }
  .inner-page .content-wrap {
    padding: 30px 0 0 0;
  }
  .overlay-menu #primary-menu {
    clear: both;
  }
  .overlay-menu #primary-menu ul,
  .overlay-menu #primary-menu.dark ul {
    background: transparent;
    width: 100% !important;
  }
  .overlay-menu #primary-menu ul li a {
    text-align: center;
  }
  #tpl-about .intro-txt {
    width: 600px;
    padding-left: 4%;
  }
  .portfolio.portfolio-parallax .portfolio-desc .txt-des {
    font-size: 5vw;
  }
  #footer div[class*="col"] {
    margin-bottom: 30px !important;
  }
  #footer div[class*="col"] .col_half {
    margin-bottom: 0 !important;
  }
  #footer .clearfix.clr {
    display: block;
  }
  .device-xxs #footer .col-xs-6 {
    width: 100%;
  }
  .tpl-inner-cs #header {
    position: relative;
  }
  #tpl-expertise .cnt-row-3 .color-box,
  #tpl-expertise .cnt-row-5 .color-box,
  #tpl-expertise .cnt-row-7 .color-box {
    background: url(../images/expertise/bg-cnt-1.png) repeat-y;
    background-position: 40%;
  }
  .full-banner,
  .full-banner .full-screen {
    height: 320px !important;
  }
  .join-us p {
    font-size: 15px;
  }
  .join-us .position h3 {
    font-size: 18px;
  }
  .join-us .position h3 {
    font-size: 18px;
  }
  .join-us .position span {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .overlay-color #header.transparent-header {
    margin-bottom: 50px;
  }
  .owl-dots {
    display: none;
  }
  .is-web {
    display: block;
  }
  .is-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .owl-carousel.owl-loaded.is-web {
    display: block;
  }
  .owl-carousel.owl-loaded.is-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .clear-alt {
    clear: both;
  }
  .owl-carousel.owl-loaded.is-web {
    display: none !important;
  }
  .owl-carousel.owl-loaded.is-mobile {
    display: block !important;
  }
  #tpl-about .row-2 .icon-mission-outer {
    /*padding: 40px 0 0 0;*/
  }
  #tpl-about .row-2 .icon-mission-outer img {
    /*max-width: 30%;*/
  }
  #tpl-about .owl-carousel:hover .owl-nav [class*=owl-] {
    opacity: 1;
    left: 18px;
  }
  #tpl-about .owl-carousel:hover .owl-nav .owl-next {
    left: auto;
    right: 18px;
  }
  #tpl-about .row-2 .icon-mission-outer img {
    max-width: 80%;
  }
  .client-list .widget h4 {
    font-size: 3vw;
  }
  .client-list .widget_links li {
    font-size: 2vw;
  }
}

@media only screen and (orientation: portrait) {
  .overlay-menu #primary-menu>ul>li {
    max-width: 100% !important;
  }
  #tpl-about .vertical-middle {
    top: 20% !important;
  }
  #tpl-ourwork .slider-caption {
    max-width: 67vw;
  }
  #tpl-about .intro-txt {
    padding: 60px 25px 0 25px;
    width: 100% !important;
  }
  #tpl-about .cnt-outer .title-1 span,
  #tpl-about .cnt-outer .title-1 {
    font-size: 4vw;
  }
  body#tpl-about .force-full-screen {
    background-position: 68% 0 !important;
  }
  #tpl-about .row-3 .col_two_third,
  #tpl-about .row-3 .col_one_third,
  #tpl-about .col-full-sm {
    width: 100%;
  }

  .inner-page .portfolio-meta li .right-align {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .is-web {
    display: none;
  }
  .is-mobile {
    display: block;
  }
  .ani-img {
    margin-bottom: 0;
  }
  #header .container-fullwidth {
    width: 100% !important;
  }
  #content .container,
  #content .container-fullwidth {
    width: 100% !important;
  }
  .sec-case-study .container-fullwidth.alt {
    padding: 0 !important;
  }
  p {
    margin-bottom: 15px;
  }
  strong.font-year {
    font-size: 10vw;
  }
  .postcontent,
  .postcontent.bothsidebar,
  .sidebar,
  .col_full,
  .col_half,
  .col_one_third,
  .col_two_third,
  .col_three_fourth,
  .col_one_fourth,
  .col_one_fifth,
  .col_two_fifth,
  .col_three_fifth,
  .col_four_fifth,
  .col_one_sixth,
  .col_five_sixth {
    margin-bottom: 20px !important;
  }
  .device-xs .slider-caption img,
  .device-xxs .slider-caption img {
    max-width: 20%;
  }
  .device-xs .slider-caption p,
  .device-xxs .slider-caption p {
    display: block !important;
    font-size: 16px;
    margin-bottom: 5px !important;
  }
  .slider-caption.slider-caption-center h2,
  .slider-caption.slider-caption-center span {
    font-size: 12px;
    margin-bottom: 5px !important;
  }
  .cnt-outer {
    font-size: 2vw;
    padding: 0;
  }

  #tpl-about .col-half-sm {
    width: 50%;
    float: left;
  }   
  #tpl-ourwork .content-wrap.cnt-outer {
    padding: 30px 0 0 0;
    border-top: 1px solid #f0f0f0;
  }
  #tpl-ourwork .content-wrap.cnt-outer h2 {
    margin-bottom: 30px !important;
  }
  .cnt-outer .title-1 {
    margin-bottom: 15px;
  }
  .cnt-outer .title-1 span,
  #tpl-about .cnt-outer .title-1 span {
    font-size: 3vw;
  }
  .cnt-outer .title-1 img {
    margin-bottom: 0;
  }
  .cnt-row {
    padding: 7vw 0 0 0;
  }
  #tpl-home .cnt-row {
    padding: 0 !important;
    margin: 0;
    margin-bottom: 30px;
  }
  #tpl-home .sec-service {
    background: #f9f8f2;
    padding: 30px 15px 0 15px !important;
  }
  .cnt-list li {
    padding-bottom: 15px;
  }
  #tpl-home .sec-service .creative-btn {
    margin-top: -15vw;
  }
  #tpl-about .row-2 .icon-mission-outer {
    padding: 4% 0 4% 0;
  }
  #tpl-about #oc-events {
    padding: 0 15% 5% 15%;
  }
  .emoji-des {
    margin: 0 0 3vw 0;
    padding: 0 15px;
    text-align: center;
  }
  #tpl-about .post-grid .entry {
    width: 23% !important;
    margin-right: 2% !important;
  }
  .lg-font {
    font-size: 5vw;
  }
  .creative-btn:before {
    font-size: 7vw;
  }
  .sec-case-study .container-fullwidth {
    padding: 0 !important;
  }
  .sec-case-study .slider-outer {
    background: #e9efee;
    padding: 30px 30px 0 30px;
    margin: 0 !important;
    display: inline-block;
  }
  .sec-case-study .gallery-txt-outer {
    margin-right: 0;
  }
  .sec-case-study .gallery-txt-outer .inner {
    padding: 20px;
  }
  .sec-case-study .gallery-txt-outer .inner span {
    font-size: 16px;
  }
  .sec-case-study .owl-carousel .owl-nav {
    /*left: 0;*/
    display: none;
  }
  .sec-case-study .owl-carousel .owl-nav [class*=owl-] {
    font-size: 65px;
  }
  .sec-case-study .slider-outer:before,
  .sec-case-study .slider-outer:after {
    display: none;
  }
  .img-ani {
    display: block;
    position: initial;
    width: 100%;
    max-width: 100%;
  }
  .sec-case-study .slider-outer p {
    width: 100%;
  }
  [class*=col_]:empty {
    margin-bottom: 0 !important;
  }
  .color-box {
    width: 100%;
    background-image: none !important;
    padding: 0 !important;
  }
  .fancy-cnt-outer {
    margin: 30px;
  }
  .sec-our-work .color-box {
    background-color: #eceff0;
  }
  .sec-our-work [class*=col_] {
    margin-bottom: 0 !important;
  }
  .sec-about .color-box {
    background: #f9f8f2;
  }
  .sec-about .color-box .col_last {
    margin-bottom: 0 !important;
  }
  .left-pad-100 {
    padding-left: 0;
  }
  #tpl-about .intro-txt {}
  #tpl-about .row-2 .top {
    background-size: 85%;
    background-position: 250%;
  }
  #tpl-about .row-2 .bottom {
    /*background: transparent;*/
  }
  .inner-page .right,
  .inner-page .right .pos-fixed {
    position: static;
    margin-top: 30px;
    width: 100%;
  }
  .inner-page .right .pos-fixed {
    padding: 0 15px;
  }
  .fancy-title-1-outer {
    margin-bottom: 0 !important;
  }
  .divider {
    margin: 10px 0;
  }
  .align-right.portfolio.portfolio-parallax .portfolio-desc {
    /*bottom: initial;
    right: 0;
    top: 65%;
    left: auto;
    width: 50vw;*/
  }
  .portfolio.portfolio-parallax .portfolio-desc .txt-des {
    font-size: 20px;
    border-bottom: 1px solid #b1babe;
    display: inline;
  }
  .portfolio:not(.portfolio-1) .portfolio-desc span {
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  .portfolio.portfolio-parallax .portfolio-desc .portfolio-divider {
    margin: 0;
    line-height: 0.7;
  }
  .swiper-pagination span,
  .flex-control-nav li a,
  .owl-carousel .owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
  }
  .inner-page .left img {
    margin-bottom: 0;
  }
  #tpl-ourwork .swiper_wrapper:not(.force-full-screen),
  #tpl-ourwork .swiper_wrapper:not(.force-full-screen):not(.canvas-slider-grid) .swiper-slide,
  #tpl-ourwork .swiper-slide {
    height: auto !important;
    background-image: none !important;
  }
  #tpl-ourwork .slider-caption.alt,
  #tpl-ourwork .slider-caption {
    max-width: 100%;
    padding-top: 20px;
    position: initial;
  }
  #tpl-ourwork .swiper_wrapper .swiper-container {
    background: #fff;
  }
  #tpl-ourwork #slider-arrow-right {
    /*    left: auto;
    right: 0;
    border-radius: 0;
    margin-left: 0;*/
  }
  #tpl-ourwork #slider-arrow-right i,
  #tpl-ourwork #slider-arrow-left i {
    /*  line-height: 40px;
    width: 15px;
    height: 40px;
    color: #b1babe;
    font-size: 35px;*/
  }
  #tpl-ourwork .slide-img-title {
    position: absolute;
    left: 5%;
    top: 5%;
    max-width: 38%;
  }
  #tpl-ourwork .swiper_wrapper .slider-caption h2 {
    margin-bottom: 15px !important;
  }
  #tpl-ourwork.device-xs .slider-caption p,
  #tpl-ourwork.device-xxs .slider-caption p {
    margin-bottom: 50px !important;
  }
  #tpl-ourwork .swiper-pagination {
    bottom: 2vw !important;
  }
  .swiper-pagination span {
    border: 1px solid #b1babe;
  }
  /*Expertise*/
  .title-3 {
    padding: 15px !important;
    text-align: left;
    width: 100%;
  }
  #tpl-expertise .cnt-list {
    margin: 5vw 7vw 3vw 7vw !important;
  }
  #tpl-expertise .nobottommargin,
  #tpl-expertise .left-pad-100 {
    margin-bottom: 0 !important
  }
  #tpl-expertise .fancy-cnt-inner {
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
  }
  .fancy-cnt-outer {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }
  .cnt-list {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
  }
  #tpl-expertise .line-break,
  #tpl-expertise .list-break {
    display: inline-block;
    margin-left: 0;
  }
  .tpl-inner-cs .section {
    padding: 30px 0;
  }
  .tpl-inner-cs .container {
    width: 100% !important;
    text-align: left;
  }
  .tpl-inner-cs h2 {
    font-size: 10vw;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .client-list .widget h4 {
    font-size: 4.5vw;
  }
  .client-list .widget_links li {
    font-size: 3vw;
  }
  .cnt-detail .widget {
    display: inline-block;
    width: 100%;
  }
  .cnt-form {
    padding: 9% 5%;
  }
}

@media (max-width: 767px) and (min-width: 480px) {
  /*#tpl-home #header.transparent-header + .slider-parallax .slider-parallax-inner {
    top: -300px;
} */
  #tpl-about .vertical-middle {
    top: 30% !important;
  }
  #tpl-about .intro-txt {
    padding: 100px 25px 0 25px;
    width: 50% !important;
    font-size: 9px;
  }
}

@media (max-width: 479px) {
  #footer div[class*="col"] {
    width: 100%;
  }
  .slider-caption.slider-caption-center h2,
  .slider-caption.slider-caption-center span {
    font-size: 8px;
    margin-bottom: 10px !important;
  }
  .device-xs .slider-caption p,
  .device-xxs .slider-caption p {
    font-size: 10px;
  }
  .cnt-outer {
    font-size: 3vw;
  }
  #tpl-about .intro-txt {
    width: 310px;
  }
  .beyond-outer .icn-outer {
    width: 50%;
  }
  #tpl-about .row-1:before,
  #tpl-about .row-2:before,
  #tpl-about .row-3:before {
    background-position: center center;
    right: auto;
    left: 0;
    background-size: 50%;
  }
  .inner-page .right .pos-fixed {
    padding: 0 15px;
  }
  .sec-case-study .owl-carousel .owl-nav [class*=owl-] {
    padding: 10px;
  }
  .sec-case-study .gallery-txt-outer .inner span {
    font-size: 14px;
  }
  .portfolio.portfolio-parallax .portfolio-desc h3 span:last-child {
    line-height: 0;
  }
  #tpl-about #oc-events {
    padding: 0;
  }
  #tpl-ourwork h2 {
    font-size: 6vw;
  }
  #tpl-ourwork .portfolio-desc h3 a {
    font-size: 5vw;
  }
  #tpl-ourwork .portfolio-desc span {
    font-size: 3vw;
  }
  .portfolio.portfolio-parallax .portfolio-desc .txt-des {
      font-size: 15px;
  }   
}

@media (max-width: 414px) {
  #slider-arrow-left,
  #slider-arrow-right {
    display: none;
    ;
  }
  .align-right.portfolio.portfolio-parallax .portfolio-desc {
    width: 65vw;
  }
  #tpl-about .row-2 .icon-mission-outer {
    padding: 4% 0 4% 0;
  }
  .full-banner,
  .full-banner .full-screen {
    height: 200px !important;
  }
}

@media only screen and (max-width: 40em) {
  #instafeed {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}