/* GLOBAL STYLES */
html {
  font-size: 16px;
}

body {
  font-family: 'Dosis', sans-serif;
  font-weight: 300;
  background-color: #c52038;
}

.highlighted-text {
  color: #c52038;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

/* background width overflow fixed */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* PRE LOADER */
.prl {
  overflow: hidden !important;
}

#preloader {
  background-color: rgba(255, 255, 255, 1);
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999999999;
}

.site-spinner {
  border: 2px solid #ddd;
  font-size: 44px;
  width: 44px;
  height: 44px;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  position: absolute;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: site-spin 1s linear infinite;
  -moz-animation: site-spin 1s linear infinite;
  animation: site-spin 1s linear infinite;
  border-top-color: #333;
}

@-webkit-keyframes site-spin {
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes site-spin {
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes site-spin {
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* SECTIONS */
.section-container {
  position: relative;
}

.section-title {
  position: relative;
  top: -40px;
  font-size: 4.375rem;
  line-height: 4.375rem;
  font-weight: 700;
  color: #FFF;
  text-shadow:
    rgb(197, 32, 56) 7px 0 0,
    rgb(197, 32, 56) 6.92869px 0.996602px 0,
    rgb(197, 32, 56) 6.71622px 1.9729px 0,
    rgb(197, 32, 56) 6.36692px 2.909px 0,
    rgb(197, 32, 56) 5.8879px 3.78584px 0,
    rgb(197, 32, 56) 5.28893px 4.58555px 0,
    rgb(197, 32, 56) 4.5822px 5.29183px 0,
    rgb(197, 32, 56) 3.78212px 5.8903px 0,
    rgb(197, 32, 56) 2.90498px 6.36876px 0,
    rgb(197, 32, 56) 1.96865px 6.71747px 0,
    rgb(197, 32, 56) 0.992221px 6.92932px 0,
    rgb(197, 32, 56) -0.00442571px 7px 0,
    rgb(197, 32, 56) -1.00098px 6.92806px 0,
    rgb(197, 32, 56) -1.97715px 6.71498px 0,
    rgb(197, 32, 56) -2.91303px 6.36508px 0,
    rgb(197, 32, 56) -3.78956px 5.88551px 0,
    rgb(197, 32, 56) -4.58889px 5.28603px 0,
    rgb(197, 32, 56) -5.29472px 4.57885px 0,
    rgb(197, 32, 56) -5.89269px 3.77839px 0,
    rgb(197, 32, 56) -6.3706px 2.90095px 0,
    rgb(197, 32, 56) -6.71871px 1.96441px 0,
    rgb(197, 32, 56) -6.92995px 0.98784px 0,
    rgb(197, 32, 56) -6.99999px -0.00885142px 0,
    rgb(197, 32, 56) -6.92743px -1.00536px 0,
    rgb(197, 32, 56) -6.71372px -1.98139px 0,
    rgb(197, 32, 56) -6.36324px -2.91705px 0,
    rgb(197, 32, 56) -5.88311px -3.79328px 0,
    rgb(197, 32, 56) -5.28313px -4.59223px 0,
    rgb(197, 32, 56) -4.57551px -5.29762px 0,
    rgb(197, 32, 56) -3.77466px -5.89507px 0,
    rgb(197, 32, 56) -2.89692px -6.37243px 0,
    rgb(197, 32, 56) -1.96016px -6.71995px 0,
    rgb(197, 32, 56) -0.983458px -6.93057px 0,
    rgb(197, 32, 56) 0.0132771px -6.99999px 0,
    rgb(197, 32, 56) 1.00974px -6.92679px 0,
    rgb(197, 32, 56) 1.98564px -6.71247px 0,
    rgb(197, 32, 56) 2.92107px -6.36139px 0,
    rgb(197, 32, 56) 3.797px -5.88071px 0,
    rgb(197, 32, 56) 4.59557px -5.28022px 0,
    rgb(197, 32, 56) 5.30051px -4.57215px 0,
    rgb(197, 32, 56) 5.89746px -3.77094px 0,
    rgb(197, 32, 56) 6.37426px -2.89289px 0,
    rgb(197, 32, 56) 6.72119px -1.95591px 0,
    rgb(197, 32, 56) 6.93119px -0.979076px 0;
}

.section-sub-title {
  color: #c52038;
  display: block;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-top: -20px;
}

/* TOP SECTION
 ----------------------------------- */
.top-section {
  /*background: #000 url("../img/dark_sky_stars_bg.png") no-repeat center top;*/
  background: #000;
  min-height: 756px;
  color: #FFF;
  position: relative;
  z-index: 5;
}

.top-section .container {
  position: relative;
  z-index: 88;
}

.logo {
  padding-top: 50px;
  padding-bottom: 52px;
}

.logo img {
  width: 116px;
  height: 116px;

  border-radius: 116px;

  -webkit-transition: box-shadow .4s ease-in-out;
  -moz-transition: box-shadow .4s ease-in-out;
  -ms-transition: box-shadow .4s ease-in-out;
  -o-transition: box-shadow .4s ease-in-out;
  transition: box-shadow .4s ease-in-out;
}

.logo img:hover {
  -webkit-box-shadow:  0px 0px 20px 5px #F00;
  -moz-box-shadow:  0px 0px 20px 5px #F00;
  box-shadow:  0px 0px 20px 5px #F00;
}

.hero-text {}

.hero-text h1 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 300;
}

.hero-text p {
  margin-top: 25px;
  margin-bottom: 50px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 200;
}

.hero-ufo {
  background: transparent url("../img/what_we_do_ufo.png") no-repeat center top;
  width: 773px;
  height: 364px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 151px;
}

/* STARS EFFECTS */
@keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
  from {background-position:0 0;}
  to {background-position:-10000px 5000px;}
}
@keyframes move-clouds-back {
  from {background-position:0 0;}
  to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
  from {background-position:0 0;}
  to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
  from {background-position:0 0;}
  to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
  from {background-position: 0;}
  to {background-position:10000px 0;}
}
.stars, .twinkling {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  display:block;
}
.stars {
  background:#000 url('../img/stars/stars.png') repeat top center;
  z-index:0;
}
.twinkling{
  background:transparent url('../img/stars/twinkling.png') repeat top center;
  z-index:1;
  -moz-animation:move-twink-back 200s linear infinite;
  -ms-animation:move-twink-back 200s linear infinite;
  -o-animation:move-twink-back 200s linear infinite;
  -webkit-animation:move-twink-back 200s linear infinite;
  animation:move-twink-back 200s linear infinite;
}

/* WHAT WE DO SECTION
--------------------------------------- */
.wwd-section {
  position: relative;
  z-index: 10;
}

.wwd-content {
  position: relative;
  margin-top: -216px;
}

.wwd-content .container {
  position: relative;
}

.wwd-content h2 {
  text-align: center;
  font-size: 4.375rem;
  line-height: 4.375rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 34px;
}

.wwd-content-top-bg {
  position: absolute;
  top: 82px;
  background: transparent url("../img/wwd_content_top_bg.png") no-repeat center top;
  width: 100%;
  height: 134px;
}

.wwd-left-img {
  position: absolute;
  left: -502px;
  bottom: -2px;
  z-index: 5;
}

.wwd-right-img {
  position: absolute;
  right: -399px;
  bottom: 0;
}

.wwd-item-list {
  background: transparent url("../img/wwd_item_holder_bg_2.png") no-repeat  center 83px;
  max-width: 928px;
  min-height: 142px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 18px 108px 22px;
}

.item-left-col {
  width: 50%;
  /*border: 1px solid red;*/
}

.item-right-col {
  width: 50%;
  /*border: 1px solid red;*/
}

.wwd-item-websites {
  margin-right: 17px;
}

.wwd-item-lps {
  margin-left: 17px;
}

.wwd-item {
  max-width: 195px;
  text-align: center;
}

.wwd-item-list h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: #c52038;
  text-transform: uppercase;
  margin-top: 9px;
  margin-bottom: 28px;
}

.wwd-item-info p {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 200;
  color: #FFF;
}

/* Spin on hover item */
.spin-on-hover {
  width: 118px;
  height: 118px;
  border-radius:100%;
  margin: auto;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  -ms-transition: -ms-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
}

.wwd-item:hover .spin-on-hover {
  transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  -webkit-transform:rotate(360deg);
}

/* PROJECTS SECTION
--------------------------------------- */
.projects-section {
  position: relative;
  background-image:
    url("../img/projects_top_bar_bg.jpg"),
    url("../img/projects_main_bg.jpg");
  background-repeat:
    repeat-x,
    repeat-y;
  background-position:
    center top,
    center top;
  min-height: 715px;
  padding-bottom: 100px;
}

.proj-top-clip-bg {
  background: transparent url("../img/projects_top_clip_bg.png") no-repeat center top;
  width: 994px;
  height: 58px;
  position: absolute;
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.projects-section .section-title {
  top: -42px;
}

.projects-wrapper {
  padding: 20px;
}

.projects-list {
  /*display: inline-block;*/
  margin: auto;
  left: 7px;
}

.project-item {
  width: 20%;
  margin-bottom: 15px;
  position: relative;

  -webkit-box-shadow: 2px 2px 5px rgba(0,0,0, .5);
  -moz-box-shadow: 2px 2px 5px rgba(0,0,0, .5);
  box-shadow: 2px 2px 5px rgba(0,0,0, .5);
}

.project-item img {
  width: 100%;
  height: auto;
}

.pro-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  /*background: rgba(0,0,0, .1);*/
  /*cursor: pointer;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  outline: 0 !important;

  cursor: zoom-in;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.pro-item-desc {
  color: #FFF;
  opacity: 0;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.pro-item-desc h4 {
  font-size: 24px;
  text-shadow: 0 0 2px #c52038;
  font-weight: 200;
}

.pro-item-desc h4 + span {
  font-size: 18px;
  font-weight: 200;
}

.project-item:hover .pro-item-overlay {
  background-color: rgba(0,0,0, .5);;
}

.project-item:hover .pro-item-desc {
  opacity: 1;
}

.picture-arrow {
  outline: 0 !important;
  bottom: 20px;
  display: block;
  right: 25px;
  position: absolute;
  width: 40px;
  height: 30px;
  opacity: 0;
  text-indent: -99999px;
  -webkit-transform: translate(-40px, 0);
  transform: translate(-40px, 0);
  /*border: 1px solid red;*/
}

.picture-arrow:before {
  background: #fff;
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
}

.picture-arrow:after {
  background: transparent;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: '';
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0, -7px);
  transform: rotate(45deg) translate(0, -7px);
  width: 10px;
}

.arrow-inline {
  display: inline-block;
  width: 40px;
  height: 10px;
  position: relative;
}

.arrow-inline:before {
  background: #fff;
  content: '';
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
}

.arrow-inline:after {
  background: transparent;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: '';
  height: 7px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0, -5px);
  transform: rotate(45deg) translate(0, -5px);
  width: 7px;
}

.project-item:hover .picture-arrow {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: opacity 0.375s linear,-webkit-transform 0.375s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.375s linear,-webkit-transform 0.375s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.375s linear,transform 0.375s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.375s linear,transform 0.375s cubic-bezier(0.19, 1, 0.22, 1),-webkit-transform 0.375s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: .16s;
  transition-delay: .16s;
}

.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.project-title {
  font-size: 20px;
  font-weight: 200;
  line-height: 27px;
}

.image-source-link {
  color: #c52038 !important;
  font-size: 20px;
  font-weight: 200;
  display: inline-block;
  padding: 5px;
}

.view-project-link {
  display: inline-block;
  background-color: #c52038;
  padding: 5px 10px;
  color: #FFF !important;
  border-radius: 4px;
  margin-top: 1px;
  font-size: 12px;
  text-transform: uppercase;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.view-project-link:hover {
  text-decoration: none;
  background-color: rgba(197, 32, 56, 0.77);
}
/* OUR CLIENTS SECTION
--------------------------------------- */
.client-section { }

.client-section .section-title {
  top: -40px;
}

.clients-list {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 60px;
}

.cl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding-right: 15px;
  padding-left: 15px;
}

.owl-carousel .owl-item img {
  width: auto;
}

.cl-item img {
  max-width: 100%;
  height: auto;
}

.clients-list .owl-nav {
  position: absolute;
  right: 10px;
  top: -40px;
}

.clients-list .owl-nav .owl-prev {
  float: left;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: 2px;
  margin-right: 2px;
}

.clients-list .owl-nav .owl-next {
  float: right;
  padding-left: 7px;
  padding-right: 7px;
  margin-left: 2px;
  margin-right: 2px;
}


.client-top {
  padding-bottom: 129px;
}

.client-content {
  background: #FFF url("../img/client_bot_bg.jpg") no-repeat center bottom;
  padding-bottom: 82px;
}

.client-content > .container {
  position: relative;
}

.ct-left-img {
  position: absolute;
  left: -460px;
  overflow: hidden;
}

.ct-left-img img {
  position: relative;
  z-index: 10;
}

.stars-bg {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  top: -402px;
  margin-left: 66px;
  overflow: hidden;
  z-index: 5;
}

.ct-top-img {
  position: relative;
  margin-top: -72px;
  margin-bottom: 26px;
}

.ct-text p {
  font-size: 1.375rem;
  line-height: 1.905rem;
  color:#c52038;
  margin-bottom: 40px;
}

.ct-right-img {
  position: absolute;
  right: -497px;
  top: -9px;
  left: auto;
}

/* CONTACT SECTION
------------------------------------ */
.contact-section {
  background: transparent url("../img/contact_bg.png") repeat-y center top;
  min-height: 400px;
}

.contact-section h3 {
  color: #c52038;
  font-size: 4.375rem;
  line-height: 4.375rem;
  font-weight: 700;
  padding-top: 6px;
}

.form-content {
  margin-top: 50px;
  margin-bottom: 55px;
  position: relative;
  min-height: 289px;
}

.form-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  /*background-color: rgba(255, 255, 255, .2);*/
  top: 0;
  left: 0;
}

.form-success {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
}

.form-success h3 {
  color: #c52038;
  font-size: 20px;
  font-weight: 200;
  line-height: normal;
  position: relative;
  top: 40%;
  -webkit-transform: translateY(-40%);
  -moz-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  -o-transform: translateY(-40%);
  transform: translateY(-40%);
}

/* Form input */
.form-in {
  border: 1px solid #FFF;
  display: block;
  outline: 0;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 200;
  width: 100%;
  margin-bottom: 14px;
  height: 60px;
  padding: 12px 18px 15px 18px;

  -webkit-box-shadow: 0 2px 0 #cececa;
  -moz-box-shadow: 0 2px 0 #cececa;
  box-shadow: 0 2px 0 #cececa;

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  -webkit-transition: box-shadow .2s ease-in-out;
  -moz-transition: box-shadow .2s ease-in-out;
  -ms-transition: box-shadow .2s ease-in-out;
  -o-transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;
}

.form-in:focus,
.in-group .error {
  -webkit-box-shadow: 0 2px 0 #c52038;
  -moz-box-shadow: 0 2px 0 #c52038;
  box-shadow: 0 2px 0 #c52038;
}

.in-group .error {
  border-color: #c52038;
}

.submit-error {
  color: #c52038;
  font-size: 22px;
  font-weight: 200;
}

.form-ta {
  resize: none;
  height: 208px;
}

.in-group {
  position: relative;
}

.in-group input:focus,
.in-group textarea:focus {
  outline: none;
}

.in-group label {
  color: #c52038;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.5rem;
  position:absolute;
  pointer-events:none;
  left: 18px;
  top: 16px;
  transition:0.2s ease all;
  margin-bottom: 0;
}

.in-group input,
.in-group textarea {
  padding-top: 22px;
}

/* active state */
.in-group input:focus ~ label,
.in-group input:valid ~ label,
.in-group textarea:focus ~ label,
.in-group textarea:valid ~ label  {
  top: -3px;
  font-size:15px;
}

.form-btn {
  outline: 0;
  border: none;
  color: #FFF;
  background-color: #c52038;
  width: 212px;
  height: 60px;
  margin-top: 7px;
  font-size: 1.5rem;
  font-weight: 700;

  -webkit-box-shadow: 0 2px 0 #660412;
  -moz-box-shadow: 0 2px 0 #660412;
  box-shadow: 0 2px 0 #660412;

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;

  -webkit-transition: background-color .3s ease-in-out;
  -moz-transition: background-color .3s ease-in-out;
  -ms-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

.form-btn:hover {
  background-color: #910635;
}

/* form validation */
.in-group label.error {
  display: none !important;
}

/* Contact Separator */
.contact-sep {
  background: transparent url("../img/contact_form_sep.png") repeat-x left top;
  height: 3px;
  margin-bottom: 52px;
}

.contact-direct {
  padding-bottom: 87px;
}

.contact-direct h4 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #c52038;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-list li {
  display: inline-block;
  margin-left: 42px;
  margin-right: 42px;
}

.contact-list li .cn-img {
  margin-bottom: 16px;
}

.contact-list li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #c52038 !important;
  text-decoration: none !important;
}

/* FOOTER SECTION
------------------------------------ */
.footer { }

.footer .container {
  padding-top: 20px;
  padding-bottom: 37px;
}

.footer-logo {
  position: relative;
  top: -46px;
}

.footer-content {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 200;
	color: #f6f6f2;
}

/* go to top
 -------------------------------------------*/
.go-top {
  padding-top: 10px;
  z-index: 999;
  position: fixed;
  width: 62px;
  height: 62px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  top: auto;
  left: auto;
  right: 50px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 3px;
  opacity: .8;
  display: none;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.go-top:hover {
  /*color: #FFF;*/
  /*background-color: #FB4F5B;*/
  opacity: 1;
}

@media (max-width: 767px) {
  .go-top {
    right: 13px;
    bottom: 13px;
    padding-top: 0;
  }
}


/* MEDIA QUERIES
------------------------------------ */
@media (max-width: 969px) {

  .hero-ufo {
    width: 100%;
    background-size: cover;
  }

  .wwd-content-top-bg {
    top: 116px;
    height: 100px;
    background-size: cover;
  }

  .wwd-item-list {
    padding-left: 0;
    padding-right: 0;
    background: none;
  }

  .wwd-item {
    float: none;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
  }

  .wwd-item-branding,
  .wwd-item-websites {
    background: transparent url("../img/wwd_item_holder_bg.png") no-repeat left 82px;
  }

  .wwd-item-lps,
  .wwd-item-print {
    background: transparent url("../img/wwd_item_holder_bg.png") no-repeat right 82px;
  }

  .wwd-item-info {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .wwd-left-img {
    display: none;
  }

  .ct-left-img {
    display: none;
  }

}

@media (max-width: 767px) {
  .hero-ufo {
    height: 300px;
    padding-top: 0;
  }

  .wwd-item-list {
    padding-bottom: 70px;
  }

  .contact-list li {
    display: block;
    margin-bottom: 25px;
  }

  .wwd-content h2 {
    font-size: 3.375rem;
    line-height: 3.375rem;
  }

  .client-top h2 {
    margin-bottom: 20px;
  }

  .clients-list .owl-nav {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }

}

@media (max-width: 479px) {

  .top-section {
    min-height: 586px;
  }

  .logo {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo img {
    width: 80px;
    height: auto;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }

  .hero-text p {
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 1.575rem;
  }

  .wwd-content h2 {
    font-size: 3.0rem;
    line-height: 3.0rem;
  }

  .wwd-content {
    margin-top: -190px;
  }

  .wwd-content-top-bg {
    top: 140px;
    height: 50px;
    z-index: -1;
  }

  .item-left-col,
  .item-right-col {
    width: 100%;
    float: none;
  }

  .wwd-item-branding,
  .wwd-item-websites,
  .wwd-item-lps,
  .wwd-item-print {
    background: none;
    position: relative;
  }

  .wwd-item-branding:before,
  .wwd-item-branding:after,
  .wwd-item-websites:before,
  .wwd-item-websites:after,
  .wwd-item-lps:before,
  .wwd-item-lps:after,
  .wwd-item-print:before,
  .wwd-item-print:after {
    content: '';
    background: transparent url("../img/wwd_item_holder_bg.png") no-repeat left 82px;
    width: 50%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .wwd-item-branding:after,
  .wwd-item-websites:after,
  .wwd-item-lps:after,
  .wwd-item-print:after {
    background-position: right 82px;
    left: auto;
    right: 0;
  }

  .section-title,
  .contact-section h3 {
    font-size: 3.375rem;
    line-height: 3.375rem;
  }

  .projects-section .section-title {
    top: -35px;
  }

  .client-section .section-title {
    top: -40px;
  }

  .form-content {
    margin-top: 30px;
  }

  .form-submit {
    text-align: center;
  }

  .contact-direct h4 {
    font-size: 2.0rem;
    line-height: 2.0rem;
  }

  .contact-sep {
    margin-bottom: 40px;
  }
}

@media (max-width: 374px) {

  .top-section {
    min-height: 536px;
  }

  .hero-ufo {
    height: 250px;
  }

  .hero-text h1 {
    font-size: 1.65rem;
    line-height: 1.65rem;
  }

  .hero-text p {
    font-size: 1.10rem;
  }

  .wwd-content-top-bg {
    top: 155px;
    height: 35px;
  }

}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hvr-wobble-vertical {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}

.contact-list li:hover .hvr-wobble-vertical {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}