*:focus {
  outline: none;
}

:root {
  --primary-color: #00E01D;
  --primary300-color: #66EC77;
  --primary200-color: #99F3A5;
  --secondary-color: #1B2F39;
  --white-color: hsl(0, 0%, 100%);
  --dark-color: #1B2F39;

  --titulo-color: #57676F;
  --gray-color: #BEC3C4;
  --gray10-color: #EBF1F2;
  --link-color: #1B2F39;
  --p-color: #57676F;

  --fonte: 'Work Sans', sans-serif;

  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-small: 5px;
}

body {
  background: var(--white-color);
  font-family: var(--fonte);
  overflow: overlay;
}


/* Works on Firefox */
/* * {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--white-color);
} */

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
  background-color: transparent important;
}

*::-webkit-scrollbar-track {
  /* background: var(--white-color); */
  background-color: transparent !important;
  display: none;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
  border: 3px solid var(--white-color);
}

html {
  scroll-behavior: smooth;
}

/* MENU */

/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fonte);
  line-height: inherit;
}

h1 {
  color: var(--titulo-color);
  font-size: 48px;
}

h2 {
  font-size: 36px;
  font-weight: 100;
}

h3 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 0;
}

h4 {
  color: var(--gray-color);
  font-family: var(--fonte);
  font-size: var(--p-font-size);
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  line-height: 1.5em;
}

strong {
  letter-spacing: 0;
  color: var(--primary-color);
}


.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.main-container {
  padding: 100px 0;
}

.center {
  text-align: center;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s
}

.uppercase {
  text-transform: uppercase;
}

.h-30 {
  height: 30px
}

.h-10 {
  height: 10px
}

.color {
  color: var(--primary-color);
  font-size: 11px;
}

img {
  object-fit: cover !important;
}


/*  BLOCKQUOTES */
.quote {
  position: relative;
  margin: 0;
}

.quote::after {
  content: "“";
  position: absolute;
  bottom: -80px;
  left: 20px;
  font-family: times;
  color: var(--gray-color);
  font-weight: bold;
  font-size: 14em;
  line-height: 0;
  opacity: 0.10;
}

blockquote {
  border-left: 5px solid rgba(0, 0, 0, 0.05);
  display: block;
  margin: 42px 0;
  padding: 14px 22px;
  color: rgba(0, 0, 0, 0.5);
}


/* BUTTON */
.btn,
.custom-btn {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-large);
  padding: 12px 26px 14px 26px;
  color: var(--secondary-color);
  font-family: var(--fonte);
  font-size: var(--p-font-size);
  white-space: nowrap;
  transition: all .5s ease;
}

.custom-btn.btn-bg {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: transparent;
  transition: all .3s ease;
}

.btn:hover,
.btn:focus,
.custom-btn:hover,
.custom-btn:focus {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: var(--white-color);
  transition: all .5s ease;
}


/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--secondary-color);
  outline: none;
  text-decoration: none;
}

::selection {
  background: var(--primary-color);
  color: var(--dark-color);
}

.section-padding {
  padding: 8em 0;
}

.section-padding-half {
  padding: 4em 0;
}

.google-map iframe {
  display: block;
  width: 100%;
}

.imagem,
.video {
  border-radius: 5px !important;
  overflow: hidden !important;
}


/* headr
==================================================*/

.container-top {
  position: relative;
}

.box-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  height: 50px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.box-header {
  height: 80px;
  background: transparent;
  box-shadow: none;
}

.box-header {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box-header.is-fixed {
  position: fixed;
  top: -80px;
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.box-header.is-visible {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.box-header.menu-is-open {
  background-color: rgba(255, 255, 255, 0.96);
}

.box-logo {
  display: block;
  padding: 20px;
}


/* NAVBAR */

.navbar {
  padding: 1rem;
}

.nav-link {
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  letter-spacing: 0.4px;
  margin: 0 1.6em;
  padding: 0.6em;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand-lg .navbar-nav .nav-link.contato-menu {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  font-family: var(--fonte);
  padding: 0.6em 2em;
}

.navbar-expand-lg .navbar-nav .nav-link.contato-menu:hover,
.navbar-expand-lg .navbar-nav .nav-link.contato-menu.active {
  background: var(--primary-color);
  color: var(--dark-color);
}

.navbar-nav .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/* box-intro
==================================================*/

.box-intro {
  text-align: center;
  display: table;
  height: 100vh;
  width: 100%;
}

.box-intro .table-cell {
  display: table-cell;
  vertical-align: middle;
}

.box-intro em {
  font-style: normal;
  text-transform: uppercase
}

b i:last-child {
  color: var(--primary-color) !important;
}

.box-intro h5 {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  line-height: 1.7
}

.slogan {
  /* -webkit-animation: animaBG 0.4s forwards; */
  /* animation: animaBG 0.4s forwards; */
  overflow: hidden;
  position: relative;
  animation: sloganBG 2.3s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
}

.slogan::before {
  animation: animaBG 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
  /* animation: animaBG 2.5s cubic-bezier(0.85, 0, 0.15, 1) infinite alternate; */
  background-color: var(--primary-color);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@keyframes sloganBG {
  from {
    background: transparent;
  }

  to {
    background: var(--primary-color);
    color: var(--secondary-color);
  }
}

@keyframes animaBG {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(100%);
  }
}

/* mouse effect */

.mouse {
  position: absolute;
  width: 22px;
  height: 42px;
  bottom: 40px;
  left: 50%;
  margin-left: -12px;
  border-radius: 15px;
  border: 2px solid #888;
  -webkit-animation: intro 1s;
  animation: intro 1s;
}

.scroll {
  display: block;
  width: 3px;
  height: 3px;
  margin: 6px auto;
  border-radius: 4px;
  background: #888;
  -webkit-animation: finger 2s infinite;
  animation: finger 2s infinite;
}

@-webkit-keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes intro {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes finger {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}


/* text rotate */

.box-headline {
  font-size: 130px;
  line-height: 1.0;
}

.box-words-wrapper {
  display: inline-block;
  position: relative;
  width: 100% !important;
}

.box-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  right: 0;
}

.box-words-wrapper b.is-visible {
  position: relative;
}

.no-js .box-words-wrapper b {
  opacity: 0;
}

.no-js .box-words-wrapper b.is-visible {
  opacity: 1;
}

.box-headline.rotate-2 .box-words-wrapper {
  -webkit-perspective: 300px;
  perspective: 300px;
}

.box-headline.rotate-2 i,
.box-headline.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.box-headline.rotate-2 b {
  opacity: 0;
}

.box-headline.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.is-visible .box-headline.rotate-2 i {
  opacity: 1;
}

.box-headline.rotate-2 i.in {
  -webkit-animation: box-rotate-2-in 0.4s forwards;
  animation: box-rotate-2-in 0.4s forwards;
}

.box-headline.rotate-2 i.out {
  -webkit-animation: box-rotate-2-out 0.4s forwards;
  animation: box-rotate-2-out 0.4s forwards;
}

.box-headline.rotate-2 em {
  -webkit-transform: translateZ(20px);
  transform: translateZ(20px);
}

.no-csstransitions .box-headline.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0;
}

.no-csstransitions .box-headline.rotate-2 i em {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.no-csstransitions .box-headline.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes box-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}

@keyframes box-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}

@-webkit-keyframes box-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}

@keyframes box-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }

  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}


/*---------------------------------------
      sobre            
  -----------------------------------------*/

.sobre {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: var(--primary-color);
  background-size: cover;
  background-attachment: fixed;
}

.sobre-image img {
  display: block;
  margin: 0 auto;
}

.sobre h2 {
  font-weight: 400;
}

.sobre strong {
  color: #fff;
  font-weight: 400;
}



/*---------------------------------------
     solucoes              
  -----------------------------------------*/

.solucoes {
  background: var(--p-color);
  height: 100vh;
}

.solucoes h2 {
  font-weight: 400;
  color: var(--white-color);
}

.solucoes-wrapper {
  position: relative;
}

.solucoes-wrapper img {
  border-radius: var(--border-radius-small);
  box-shadow: 0 0.6rem 0.6rem 0 rgb(0 0 0 / 10%);
}


.owl-carousel .owl-item img {
  display: block;
  height: 50vh;
}

.logo-projeto {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 20px auto;
  text-align: center;
  width: 250px;
  height: 200px;
}

.logo-projeto img {
  /* object-fit: none !important; */
  height: auto !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 10px;
}

.solucoes-info {
  background: #ffffff3a;
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: 32px;
  /* width: 90%; */
  padding: 32px;
  box-shadow: 0 0.6rem 0.6rem 0 rgb(0 0 0 / 7%);
  text-align: left;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: all .5s
}

.solucoes-info:hover {
  border-bottom-color: var(--primary-color);
  transition: all .5s
}

.solucoes-info small {
  color: var(--gray10-color);
  position: relative;
  top: 2px;
  text-transform: uppercase;
  display: block;
}

.solucoes-info h3 span {
  color: var(--white-color);
  display: block;
  font-weight: 400;
  transition: all .5s
}

.solucoes-icon {
  position: absolute;
  right: 30px;
  top: 40px;
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  padding-left: 3px;
  transform: scale(1);
  transition: all .5s
}

.solucoes-info:hover .solucoes-icon {
  transform: scale(1.2);
  transition: all .5s;
  color: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot {
  outline: none;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--gray-color);
  width: 50px;
  height: 3px;
  margin: 35px 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
}

.list-detail {
  position: relative;
}

.list-detail li {
  display: block;
  list-style: none;
  margin: 0.6em 0;
}

.list-detail li::before {
  content: "{}";
  width: 0;
  height: 0;
  color: var(--primary-color);
  font-size: 400;
  position: absolute;
  left: 0;
  margin-top: -5px;
}

.list-detail span {
  position: relative;
  bottom: 5px;
}

.xp-info img {
  width: 100px;
  margin-right: 1em;
}

.xp-info p {
  margin-bottom: 0;
}


/* experiencia */

.experiencia {}

.xp-imagem img {
  width: 100%;
}

/* .xp-imagem {
  width: 90%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background-image: url('../imagens/avatar.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

.imagem-miniatura {
  max-width: 60px;
  margin-right: 20px;
}

.parceiros {
  margin-top: 40px;
}

.parceiros img {
  width: 100%;
}

/*---------------------------------------
     contato              
  -----------------------------------------*/

.contato {
  border-top: 20px solid var(--primary-color);
  background: var(--gray10-color);
}

.newsletter-form .form-control,
.contato-form .form-control {
  box-shadow: none;
  background: var(--gray10-color);
  border: 2px solid var(--gray10-color);
  padding: 1.7em 1.3em;
  margin: 14px 0;
  border-radius: 50px;
  transition: all .5s;
}

.contato-form .form-control:focus {
  border: 2px solid var(--primary-color);
  transition: all 1.5s
}

.newsletter-form button,
.contato-form #submit-button {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  border: 3px solid var(--primary-color);
  color: var(--secondary-color);
  cursor: pointer;
  font-size: var(--p-font-size);
  line-height: 0px;
  padding: 1.5em 1.3em;
}

.contato-form #submit-button:hover {
  background: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: var(--secondary-color);
}

.contato h1 {
  line-height: 1em;
}

/*---------------------------------------
     PROJETO DETALHE              
  -----------------------------------------*/

.projeto-detalhe h3 {
  font-style: italic !important;
  font-size: 16px;

}


/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.site-footer {
  background: var(--dark-color);
  padding: 7em 0 6em 0;
}

.site-footer h1 {
  line-height: 1em;
}

.site-footer a,
.site-footer p {
  color: var(--gray-color);
}

.site-footer a:hover,
.footer-icon {
  color: var(--primary-color);
}

.footer-link li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

.copyright-text,
.footer-link,
.site-footer .social-icon {
  margin-top: 6em;
}

.copyright-text {
  margin-top: 5.3em;
}

.logo-rodape {
  margin-top: 60px;
}

.copy a,
.copy p {
  color: var(--p-color);
}



/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 4em 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 10px;
  text-align: center;
}



/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (min-width: 1200px) {

  .sobre-info h2 {
    max-width: 70%;
  }
}

@media screen and (min-width: 991px) {

  .solucoes h2 {
    max-width: 32%;
    margin: 0 auto;
  }

}


@media screen and (max-width: 991px) {

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    font-weight: 400;
  }

  .xp-imagem img {
    width: 50%;
  }

  .parceiros img {
    width: 70%;
    text-align: center;
  }

  .solucoes {
    height: auto;
  }

  .section-padding {
    padding: 4em 0;
  }

  .box-header {
    position: fixed;
    background: #fff;
  }

  .hero {
    padding-top: 14em;
  }

  .hero-text {
    bottom: 2em;
  }

  .navbar {
    padding: 1em 0;
  }

  .navbar-brand {
    padding-left: 1em;
  }

  .navbar-toggler {
    padding-right: 1em;
  }

  .navbar-collapse {
    text-align: center;
    padding: 2.5em 0;
    background: #fff;
  }

  .nav-link {
    display: inline-block;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contato-menu {
    margin: 1em 0;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 3em;
    padding: 0;
    text-align: left;
  }

  .owl-carousel.owl-drag .owl-item {
    height: 60vh !important;
  }

  .owl-carousel .owl-item img {
    display: block;
    height: 60vh;
  }

  .solucoes-wrapper {
    height: inherit;
  }
}

@media screen and (max-width: 767px) {

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .solucoes-info {
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 90%;
  }

  .footer-link,
  .site-footer .social-icon {
    margin-top: 1em;
  }

  .copyright-text {
    margin: 2.5em 0 1em 0;
  }

  .footer-link li {
    margin-left: 0;
  }
}


@media only screen and (max-width: 670px) {
  .box-headline {
    font-size: 100px;
  }

  .box-intro h5 {
    font-size: 12px;
  }

  .box-primary-nav a {
    padding: 5px 1em;
    font-size: 14px;
  }

  .box-primary-nav {
    padding: 80px 0 0;
  }

  .box-primary-nav .box-social a {
    font-size: 23px;
  }

  .top-bar h1 {
    font-size: 40px;
    line-height: 30px;
  }

  .portfolio .categories-grid .categories ul li {
    float: none;
  }
}

@media only screen and (max-width: 520px) {
  .box-headline {
    font-size: 80px;
  }

  .box-intro h5 {
    font-size: 12px;
  }

  .main-container {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 420px) {
  .box-headline {
    font-size: 50px;
  }

  .box-intro h5 {
    font-size: 12px;
  }

  .top-bar h1 {
    font-size: 30px;
    line-height: 30px;
  }
}