@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins.ttf);
}
@font-face {
  font-family: "Comfortaa";
  src: url(../fonts/Comfortaa.ttf);
}
@font-face {
  font-family: "Quicksand";
  src: url(../fonts/Quicksand.otf);
}
 
 

::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 2px 6px #4ed0eb; 
}

/* #Primary
================================================== */



a {
  text-decoration: none !important;
}


html {
  overflow-x: hidden;
}
/* On scroll */
html {
  scroll-behavior: smooth;
}
/* Off scroll   background: rgb(22, 28, 49) !important;  rgb(17, 21, 37) */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


body{
font-family: 'Poppins', 'Comfortaa';
background-color: #151c24 !important;
/*font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #212112;
 background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
background-position: center;
background-repeat: repeat;
background-size: 7%; 
background-color: #fff;
overflow-x: hidden;
    transition: all 200ms linear;*/
}


.mh {
  font-family: "Comfortaa", "Poppins";
}

.fonte1 {
  font-family: "Comfortaa", "Poppins";
}

.fonte1 {
  font-family: "Poppins", "Comfortaa";
}






/*--------------------- back to top ----------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1c242f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.back-to-top i {
  font-size: 28px;
  color: #4ed0eb;
  line-height: 0;
}
.back-to-top:hover {
  background: #4ed0eb;
  color: #001e30;
}
.back-to-top:hover i {
  color: #001e30;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 14px 0;
  background: #1c242f;
  position: sticky;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background: #151c24;
}

#header.header-scrolled .navbar a, .navbar a:focus {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}


#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  font-family:  "Poppins";
  letter-spacing: 1px;
  color: #4ed0eb;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #4ed0eb;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  width: 160px;
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #333;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #4ed0eb;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #4ed0eb;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  align-content: center !important;
  justify-content: center !important;
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
  padding: 4rem;
  border-radius: 8px;
  background: rgba(21, 28, 36, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -moz-backdrop-filter: blur(3px);
  -o-backdrop-filter: blur(3px);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
}

#header.header-scrolled .navbar-mobile a, .navbar-mobile a:focus{
  color: #4ed0eb;
  font-size: 17px;
}

#header.header-scrolled .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ccc;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ccc;
}





.mh {
  color: #4ed0eb !important;
}

.titulo {
    font-size: 48px;
    font-weight: 300; 
  }

.cor1 {
    color: #182b45 !important;
}

.cor2 {
    color: rgba(255, 255, 255, 0.8) !important;
}
.cor3 {
  color: #4ed0eb;
}
.bg1 {
    background-color: rgb(17, 21, 37) !important;
    
}
.bg2 {
    background: #151c24 !important;
}
.bg3 {
    background: #1c242f !important;
}
.bg4 {
  background: #4ed0eb;
}
.cor4 {
  color:#001e30
}



/**
 * Add .section to every anchored element for scroll margin
 */
.section {
  scroll-margin-top: 2rem;
}

/* Header */
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3rem;
  text-decoration: none;
  color: #4ed0eb !important;
}

@media (min-width: 48em) {
  .site-title {
    float: left;
  }
}

.nav_blak {
  background: #151c24;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.nav-link {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8) !important; 
}

.social-nav .nav-link {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}


.nav-link:hover,
.nav-link:focus,
.active .nav-link {
  color: rgba(78, 208, 235, 1) !important;
}

/* Hero (intro) section */
.intro-title {
  font-family:  "Comfortaa";
  font-weight: 800 !important; 
  color: rgba(255, 255, 255, 0.8)
}

@-webkit-keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.wave-bg {
  display: block;
  height: 220px;
  width: 100%;
  min-width: auto;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -moz-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -ms-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -o-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards; 
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/svg.png");
  background-position: center;
  background-repeat: no-repeat;
}

.wave2-bg {
  display: block;
  height: 170px;
  width: 100%;
  min-width: auto;
  transform-origin: bottom;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -moz-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -ms-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -o-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/svg2.png");
  background-position: center;
  background-repeat: no-repeat;
}

.wave3-bg {
  display: block;
  height: 170px;
  width: 100%;
  min-width: auto;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -moz-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -ms-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -o-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/svg1.png");
  background-position: center;
  background-repeat: no-repeat;
}

.wave4-bg {
  display: block;
  height: 170px;
  width: 100%;
  min-width: auto;
  transform-origin: bottom;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -moz-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -ms-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  -o-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/svg_foo.png");
  background-position: center;
  background-repeat: no-repeat;
}




img.avatar {
  border-radius: 30p;
}

.img_avatar {
  border-radius: 120px 60px/80px 140px;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 100%;
}

.grid-item {
  padding-bottom: 12px;
}

@media (min-width: 48em) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
  .grid-item {
    float: left;
    padding: 6px;
  }
}

.grid-item img {
  display: block;
  width: 100%;
  max-width: 100%;
}



/* Footer section */
footer a:not(.nav-link) {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
footer {
  background:  #151c24 !important;
}

/* Scroll Top */

/* Additional utility styles */
.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
}

.text-small {
  font-size: 0.875rem;
}

.text-uppercase {
  letter-spacing: 0.05em;
}

.hover-effect {
  transition: transform .18s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-2px);
  color: #4ed0eb
  background: #151c24;
}

.marker {
  font-weight: 400;
}

.marker {
  position: relative;
  display: inline;
  width: auto;
}

.marker-center {
  padding-right: 0;
}

.marker:after {
  content: "";
  width: 125px;
  height: 30px;
  position: absolute;
  bottom: -20px;
  right: -30px;
  background-image: url("../images/marker.png");
  background-repeat: no-repeat;
}

.marker-center:after {
  bottom: -30px;
  left: 50%;
  margin-left: -60px;
}

@media (max-width: 575.98px) {
  .marker {
    padding-right: 0;
  }
  .marker:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
  }
}

.entry-title a {
  text-decoration: none;
}


/*--------------------------------------------------------------
# Sobre
--------------------------------------------------------------*/
.mh-about .mh-about-inner {
  padding-left: 10px; 
}
.mh-about .mh-about-inner h2 {
  margin-bottom: 20px;
  margin-top: 20px; 
}
.mh-about .mh-about-inner p {
  margin-bottom: 30px; 
}
.mh-about .mh-about-inner .btn {
  margin-top: 20px; 
}
.mh-about .mh-about-inner .btn .fa {
  margin-left: 10px; 
}

.mh-about-tag {
  word-break: break-all;
  margin-bottom: 4px;
  margin-top: 4px; }
.mh-about-tag ul li {
  margin: 2px 2px;
  border-radius: 4px;
  padding: 4px 0px;
  display: inline-block; 
}
.mh-about-tag ul li span {
  border: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px; 
  font-weight: 400;
  background-color: #1c242f !important; 
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.mh-about-tag ul li span:hover {
  background-color: #4ed0eb !important; 
  color: #001e30;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.mh-about-tag ul .active {
  background: #4ed0eb !important; 
}


.mh-about-tag {
  width: 100%;
  margin: 0 auto; 
}
.mh-home-2 .mh-header-info .mh-about-tag ul li {
  margin: 6px; 
}

.in_sobre li {
  margin: 3px 0;
}

.in_sobre i{
  font-size: 18px;
  display: inline-;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #909090;
  margin-bottom: 2px;
  margin-left: 8px;
  border-radius: 50%;
  padding: 0.5rem;
}

.in_sobre span{
  font-weight: 400;
  color: #909090
}

.btn_geral {
  font-size: 16px;
  font-weight: 400;
  padding: 0.6em 2.6em;
  background: transparent;
  color: #4ed0eb;
  border: 2px solid #4ed0eb;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn_hero {
  font-size: 16px;
  font-weight: 400;
  padding: 0.6em 2.6em;
  background: #4ed0eb;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px !important;
  }

  .btn_hero:hover {
    color: #4ed0eb;
    background: #151c24;
  }

.btn_info {
  font-size: 14px;
  font-weight: 400;
  padding: 0.4em 1.6em;
  background: transparent;
  color: #4ed0eb;
  border: 2px solid #4ed0eb;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

  .btn_info:hover {
    color: #151c24;
    background: #4ed0eb;
  }

.glass_f {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
}



/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #f3f3f3;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #4ed0eb;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 400;
  color: #4ed0eb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #1c242f;
  color: #f7f7f7;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

.resume .resume-item p, .resume-item ul {
  color: #909090;
}

/*--------------------------------------------------------------
# Interesses
--------------------------------------------------------------*/

.rounded-circle {
    border-radius: 50% !important;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.sub-info {
    font-size: 22px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #4ed0eb;
}

.display-30 {
    font-size: 0.9rem;
    color: #ccc;
}

.interesse .img_l img {
  height: 20%;
  width: 20%;
  border-radius: 10px;
  filter: drop-shadow(0 0 5px #4ed0eb);
  background: #151c24;
  box-shadow: rgba(74, 184, 233, 0.4) 5px 5px, rgba(74, 184, 233, 0.3) 10px 10px;
  /*box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px; */
}



/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
/* Progress bar skills */
 .container__progressbars {
   display: flex;
   justify-content: space-around;
   align-items: center;
   flex-wrap: wrap;
   min-width: 220px;
   width: 100%;
   min-height: 100%;
}
 .progressbar {
   position: relative;
   width: 170px;
   height: 170px;
   margin: 0.4em;
   transform: rotate(-90deg);
}
 .progressbar__svg {
   position: relative;
   width: 100%;
   height: 100%;
}

 .progressbar__svg-circle {
   width: 100%;
   height: 100%;
   fill: none;
   stroke-width: 10;
   stroke-dasharray: 440;
   stroke-dashoffset: 440;
   stroke: #f7f7f7;
   stroke-linecap: round;
   transform: translate(5px, 5px);
}
}
 .shadow-html {
   filter: drop-shadow(0 0 5px #f63);
}
 .shadow-css {
   filter: drop-shadow(0 0 5px #3bf);
}
 .shadow-scss {
   filter: drop-shadow(0 0 5px #f3f);
}
 .shadow-pbi {
   filter: drop-shadow(0 0 5px #ff3); 
}
 .shadow-js {
   filter: drop-shadow(0 0 5px #ff3); 
}
 .shadow-ts {
   filter: drop-shadow(0 0 5px #37f);
}
 .shadow-node {
   filter: drop-shadow(0 0 5px #5f3);
}
 .shadow-react {
   filter: drop-shadow(0 0 5px #3ff);
}
 .shadow-angular {
   filter: drop-shadow(0 0 5px #f3f);
}
 .shadow-vue {
   filter: drop-shadow(0 0 5px #3f8);
}
 .circle-html {
   animation: anim_circle-html 1s ease-in-out forwards;
}
 .circle-css {
   animation: anim_circle-css 1s ease-in-out forwards;
}
 .circle-scss {
   animation: anim_circle-scss 1s ease-in-out forwards;
} 
.circle-pbi {
   animation: anim_circle-pbi 1s ease-in-out forwards;
}
 .circle-js {
   animation: anim_circle-js 1s ease-in-out forwards;
}
 .circle-ts {
   animation: anim_circle-ts 1s ease-in-out forwards;
}
 .circle-node {
   animation: anim_circle-node 1s ease-in-out forwards;
}
 .circle-react {
   animation: anim_circle-react 1s ease-in-out forwards;
}
 .circle-angular {
   animation: anim_circle-angular 1s ease-in-out forwards;
}
 .circle-vue {
   animation: anim_circle-vue 1s ease-in-out forwards;
}
 .progressbar__text {
   position: absolute;
   top: 50%;
   left: 50%;
   padding: 0.25em 0.5em;
   color: #fff;
   border-radius: 0.25em;
   transform: translate(-50%, -50%) rotate(90deg);
}
 @keyframes anim_circle-html {
   to {
     stroke-dashoffset: 22;
  }
}
 @keyframes anim_circle-css {
   to {
     stroke-dashoffset: 110;
  }
}
 @keyframes anim_circle-scss {
   to {
     stroke-dashoffset: 132;
  }
}
 @keyframes anim_circle-js {
   to {
     stroke-dashoffset: 387.2;
  }
}
 @keyframes anim_circle-pbi {
   to {
     stroke-dashoffset: 208;
  }
}
 @keyframes anim_circle-ts {
   to {
     stroke-dashoffset: 198;
  }
}
 @keyframes anim_circle-node {
   to {
     stroke-dashoffset: 220;
  }
}
 @keyframes anim_circle-react {
   to {
     stroke-dashoffset: 387.2;
  }
}
 @keyframes anim_circle-angular {
   to {
     stroke-dashoffset: 68;
  }
}
 @keyframes anim_circle-vue {
   to {
     stroke-dashoffset: 170;
  }
}
 


/*--------------------------------------------------------------
# Serviços
--------------------------------------------------------------*/
.serviceBox{
    color: #fff;
    background: linear-gradient(to right,#4ed0eb,#151c24);
    text-align: center;
    padding: 70px 50px;
    border-radius: 120px 60px/80px 140px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px #3bf);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.serviceBox:before{
    content: '';
    background: #151c24;
    border-radius: inherit;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    z-index: -1;
}
.serviceBox .service-icon{
    font-size: 50px;
    line-height: 40px;
    margin: 0 0 20px;
    color: #4ed0eb
}
.serviceBox .title{
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 10px;
    font-family: "Comfortaa"

}
.serviceBox .description{
    color: #909090;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
}

@media only screen and (max-width: 990px){
    .serviceBox{ margin: 0 0 30px; }
}

@media only screen and (max-width: 480px){
  .logo a h1{
    font-size: 22px !important;
  }
    .serviceBox{
    padding: 70px 30px !important;
  }
  .serviceBox .title{
    font-size: 16px;
    font-weight: 500;
  }
  .mt h5 {
      font-size: 17px !important;
    }
    .hover {
    padding-bottom: 35vh !important;
  }
  .hover-2-content h4 a {
    padding: 6px 8px !important;
    font-size: 15px !important;
  }
  .hover-2-content span {
  font-size: 18px !important;
  font-weight: 600;
  }
  .grid-item {
  padding-bottom: 22px !important;
  }

  .navbar-mobile ul {
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    padding: 4rem;
  }
  .portfolio-info h4, .portfolio-desc h4, .portfolio-desc h5 {
    font-size: 17px;
  }
    .portfolio-info li, .portfolio-desc p, .portfolio-desc li {
    font-size: 14px;
  }
  .btn_info {
  font-size: 13px;
  padding: 0.4em 0.6em;
  text-align: center;
  }
  .btn_info i{
  font-size: 13px;
  }
  .listagem_romam {
    padding: 0px !important;
    margin: 0;
  }
    .listagem_romam img{
    width: auto !important;
    height: 150px !important;
  }

  .filtering {
    margin-bottom: 40px;
  }
  .filtering span {
      border-bottom: 2px solid transparent;
      border-radius: 30% 70%/80% 20%;
      color: #001e30;
      cursor: pointer;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.5px;
      margin-right: 1.5px;
      display: inline-block;
      margin-bottom: 1px;
      padding: 3px 7px;
      background: #fff;


  }
  .filtering span:last-child {
      margin: 0;
  }
  .filtering .active {
      background: #4ed0eb;
      border-color: #4ed0eb;
      color: #fff;

  }
  .in_sobre li {
    font-size: 14px !important;
  }
  .sub-info {
    font-size: 19px;
  }

}



/*--------------------------------------------------------------
# Tootips
--------------------------------------------------------------*/
.toolTip{
    position: relative;
    transition: all 0.3s ease;
}
.toolTip:hover,
.toolTip:focus{
    color: #fff;
    background: transparent;
    outline: none;
}
.toolTip:before,
.toolTip:after{
    content: attr(data-tip);
    color: #151c24;
    background: #4ed0eb;
    font-size: 14px;
    font-weight: 400;
    width: 140px;
    text-align: center;
    white-space: normal;
    padding: 13px 10px;
    border-radius: 20% 50%/50% 20%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}
.toolTip:after{
    content: '';
    height: 10px;
    width: 10px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.toolTip:hover:before,
.toolTip:hover:after{
    opacity: 1;
    visibility: visible;
}
.toolTip.top:before,
.toolTip.top:after{
    transform: translateX(-50%) rotateY(90deg);
    position: absolute;
    bottom: calc(130% - 4px);
    left: 50%;
}
.toolTip.top:after{
    transform: translateX(-50%) rotate(45deg) rotateY(90deg);
    bottom: calc(130% - 4px);
}
.toolTip.top:hover:before{
    transform: translateX(-50%) rotateY(0);
    bottom: 130%;
}
.toolTip.top:hover:after{ transform: translateX(-50%) rotate(45deg) rotateY(0); }
.toolTip.left:before,
.toolTip.left:after{
    transform: translateY(-50%) rotateX(90deg);
    position: absolute;
    right: calc(140% - 4px);
    top: 50%;
}
.toolTip.left:after{
    transform: translateY(-50%) rotate(45deg) rotateX(90deg);
    right: calc(140% - 4px);
}
.toolTip.left:hover:before{
    transform: translateY(-50%) rotateX(0);
    right: 140%;
}
.toolTip.left:hover:after{ transform: translateY(-50%) rotate(45deg) rotateX(0); }
.toolTip.right:before,
.toolTip.right:after{
    transform: translateY(-50%) rotateX(90deg);
    position: absolute;
    left: calc(140% - 4px);
    top: 50%;
}
.toolTip.right:after{
    transform: translateY(-50%) rotate(45deg) rotateX(90deg);
    left: calc(140% - 4px);
}
.toolTip.right:hover:before{
    transform: translateY(-50%) rotateX(0);
    left: 140%;
}
.toolTip.right:hover:after{ transform: translateY(-50%) rotate(45deg) rotateX(0); }
.toolTip.bottom:before,
.toolTip.bottom:after{
    transform: translateX(-50%) rotateY(90deg);
    position: absolute;
    top: calc(130% - 4px);
    left: 50%;
}
.toolTip.bottom:after{
    transform: translateX(-50%) rotate(45deg) rotateY(90deg);
    top: calc(130% - 4px);
}
.toolTip.bottom:hover:before{
    transform: translateX(-50%) rotateY(0);
    top: 130%;
}
.toolTip.bottom:hover:after{ transform: translateX(-50%) rotate(45deg) rotateY(0); }
@media only screen and (max-width: 767px){
    .toolTip{ margin: 0 0 20px; }
}



/*--------------------------------------------------------------
# Portfolio 1
--------------------------------------------------------------*/

#testimonials .testimonial-item h4 {
  font-size: 16px;
  color: #181818;
  margin: 4px 0 5px 0;
}


#testimonials .testimonial-item i {
  color: #ccc
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #1bb1dc;
}
/* altura da imagem */
.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 55vh;
  color: #fff;
  margin: 4px;
  filter: drop-shadow(0px 0 2px #3ff);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

}

.swiper-slide img{
  filter: drop-shadow(0 0 3px #3ff);
  padding: 6px;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;

}

.hover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}


.hover-2 .hover-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hover-2-title {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 99;
  transition: all 0.3s;
}

.hover-2-content {
  width: 100%;
  position: absolute;
  bottom: 2rem;
  opacity: 1;
  left: 0;
  text-align: center;
  z-index: 99;
  transition: all 0.3s;
}

.hover-2-content span {
  font-size: 22px;
}

.hover-2-content h4 a {
  padding: 8px 16px;
  color: #ccc;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  backdrop-filter: blur(3px);
  font-weight: 400;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


.hover-2-description span {
    margin-top: 3px;
}

.hover-2:hover .hover-2-title {
  transform: translateY(-1.5rem);
  font-size: 24px;
  font-weight: 700;
}

.hover-2:hover .hover-2-content {
  bottom: 0rem;
  opacity: 1;
  padding: 6px;
  color: #f7f7f7;
  background: rgba(0,0,0,0.4);
}



.hover-2 img:hover {
    transition: .3s;
  transform: translateY(0) scale(1.2);
}

.hover-2:hover .hover-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}



.hero {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.modal-content {
  border-radius: 10px;
  background: #151c24;
  border: 1px solid #151c24;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background: transparent;
  border-bottom: 1px solid #151c24;

}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 2224px;
  }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 1240px;
  }
}
@media (max-width: 860px) {
  .modal-lg,
  .modal-xl {
    max-width: 1000px !important;
  }
}

.modal-title {
  margin-bottom: 0;
  line-height: 0 !important;
}
.portfolio-desc h4, .portfolio-desc h6, 
.portfolio-info h4, .portfolio-info li {
  color: #eee;
}
.portfolio-desc p {
  font-size: 16px;
  color: #ccc;
}

/*-// Filters ---------------------*/
.filtering {
    margin-bottom: 40px;
}
.filtering span {
    border-bottom: 2px solid transparent;
    border-radius: 30% 70%/80% 20%;
    color: #001e30;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 15px;
    background: #f7f7f7;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}
.filtering span:last-child {
    margin: 0;
}
.filtering span:hover {
    background: #4ed0eb;
    border-color: #4ed0eb;
    color: #fff;
}
.filtering .active {
    background: #4ed0eb;
    border-color: #4ed0eb;
    color: #fff;
}


.analise img, .web img{
  border-radius: 8px
}


/* info. projecto ----------------------------------*/

.info_projecto .owl-nav,
.info_projecto .owl-dots {
  margin-top: 3px;
  text-align: center;
}


#info_projecto .testimonial-item i {
  color: #ccc
}

.info_projecto .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #f7f7f7;
  background-color: transparent !important;
}

.info_projecto .owl-dot.active {
  background-color: #4ed0eb;
  border: 2px solid #f7f7f7;
}

/*
@media (max-width: 580px) {
  .mt .fonte1 {
    font-size: 14px !important;
  }
}
--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/


