* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
}

/*======================================================
                            Navbar
    ======================================================*/
#navbar {
  background: #1c604a;
  color: rgb(13, 26, 38);
  position: fixed;
  top: 0;
  height: 60px;
  line-height: 60px;
  width: 100vw;
  z-index: 10;
}

.nav-wrapper {
  margin: auto;
  text-align: center;
  width: 70%;
}
@media (max-width: 768px) {
  .nav-wrapper {
    width: 90%;
  }
}
@media (max-width: 638px) {
  .nav-wrapper {
    width: 100%;
  }
}

.logo {
  float: left;
  font-size: 1.5em;
  height: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .logo {
    /*       margin-left: 5px; */
  }
}

#navbar ul {
  display: inline-block;
  float: right;
  font-size: 15px;
  list-style: none;
  /* margin-right: 14px; */
  margin-top: -2px;
  text-align: right;
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
}
@media (max-width: 640px) {
  #navbar ul {
    display: none;
  }
}
@media (orientation: landscape) {
  #navbar ul {
    display: inline-block;
  }
}

#navbar li {
  display: inline-block;
}

#navbar li a {
  color: white;
  display: block;
  font-size: 0.7em;
  height: 50px;
  letter-spacing: 1px;
  margin: 0 20px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#navbar li a:hover {
  /* border-bottom: 1px solid rgb(28, 121, 184); */
  color: rgb(28, 121, 184);
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

/* Animated Bottom Line */
#navbar li a:before,
#navbar li a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -1px;
  background: rgb(13, 26, 38);
}

#navbar li a:before {
  left: 0;
  transition: 0.5s;
}

#navbar li a:after {
  background: rgb(13, 26, 38);
  right: 0;
  /* transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); */
}

#navbar li a:hover:before {
  background: rgb(13, 26, 38);
  width: 100%;
  transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
}

#navbar li a:hover:after {
  background: transparent;
  width: 100%;
  /* transition: 0s; */
}

/*======================================================
                      Mobile Menu Menu Icon
    ======================================================*/
@media (max-width: 640px) {
  .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 20px;
    height: 23px;
    width: 27px;
    z-index: 12;
  }

  /* Icon Bars */
  .icon-bars {
    background: rgb(13, 26, 38);
    position: absolute;
    left: 1px;
    top: 45%;
    height: 2px;
    width: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .icon-bars::before {
    background: rgb(13, 26, 38);
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    height: 2px;
    width: 20px;
    /*     -webkit-transition: top 0.2s ease 0.3s;
      transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  .icon-bars::after {
    margin-top: 0px;
    background: rgb(13, 26, 38);
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 20px;
    /*     -webkit-transition: top 0.2s ease 0.3s;
      transition: top 0.2s ease 0.3s; */
    -webkit-transition: 0.3s width 0.4s;
    transition: 0.3s width 0.4s;
  }

  /* Bars Shadows */
  .icon-bars.overlay {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 20px;
    animation: middleBar 3s infinite 0.5s;
    -webkit-animation: middleBar 3s infinite 0.5s;
  }
  @keyframes middleBar {
    0% {
      width: 0px;
    }
    50% {
      width: 20px;
    }
    100% {
      width: 0px;
    }
  }
  @-webkit-keyframes middleBar {
    0% {
      width: 0px;
    }
    50% {
      width: 20px;
    }
    100% {
      width: 0px;
    }
  }

  .icon-bars.overlay::before {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 10px;
    animation: topBar 3s infinite 0.2s;
    -webkit-animation: topBar 3s infinite 0s;
  }
  @keyframes topBar {
    0% {
      width: 0px;
    }
    50% {
      width: 10px;
    }
    100% {
      width: 0px;
    }
  }
  @-webkit-keyframes topBar {
    0% {
      width: 0px;
    }
    50% {
      width: 10px;
    }
    100% {
      width: 0px;
    }
  }

  .icon-bars.overlay::after {
    background: rgb(97, 114, 129);
    background: rgb(183, 199, 211);
    width: 15px;
    animation: bottomBar 3s infinite 1s;
    -webkit-animation: bottomBar 3s infinite 1s;
  }
  @keyframes bottomBar {
    0% {
      width: 0px;
    }
    50% {
      width: 15px;
    }
    100% {
      width: 0px;
    }
  }
  @-webkit-keyframes bottomBar {
    0% {
      width: 0px;
    }
    50% {
      width: 15px;
    }
    100% {
      width: 0px;
    }
  }

  /* Toggle Menu Icon */
  .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars::before {
    top: 0;
    transition-delay: 0.1s;
    opacity: 0;
  }

  .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.1s;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .menuIcon.toggle .icon-bars.overlay {
    width: 20px;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
  }
}

/*======================================================
                     Responsive Mobile Menu 
    ======================================================*/
.overlay-menu {
  background: lightblue;
  color: rgb(13, 26, 38);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height: 100vh;
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  z-index: 1;
}

.overlay-menu ul,
.overlay-menu li {
  display: block;
  position: relative;
}

.overlay-menu li a {
  display: block;
  font-size: 1.8em;
  letter-spacing: 4px;
  /*   opacity: 0; */
  padding: 10px 0;
  text-align: right;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  /*   -webkit-transition: 0.2s opacity 0.2s ease-out;
    transition: 0.2s opacity 0.2s ease-out; */
}

.overlay-menu li a:hover,
.overlay-menu li a:active {
  color: rgb(28, 121, 184);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.logo-svg {
  width: 60%;
}
.logo-parceiros {
  width: 90%;
}
.container-fluid {
}
.banner-principal img {
  width: 100%;
  height: ;
}
.cima-banner {
  position: relative;
  bottom: 350px;
}
.cima-banner p {
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  font-style: italic;
}
.faleconnosco {
  color: #fff;
  background-color: #ff9d00;
  color: #ffffff;
  font-size: 18px;
  padding: 10px;
  font-weight: 700;
}
html {
  scroll-behavior: smooth;
}

#servicos {
  height: 340px;
}

#section2 {
  height: 600px;
  background-color: yellow;
}

.seccoes h2 {
  font-weight: 700;
  color: #1c604a;
  font-size: 34px;
  text-align: left;
  padding-top: 60px;
}
.seccoes p {
  text-align: justify;
  font-size: 14px;
}
.caixa {
  background-color: #fff;
  height: 200px;
  box-shadow: 1px 10px 18px -7px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 1px 10px 18px -7px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 1px 10px 18px -7px rgba(0, 0, 0, 0.45);
}
.caixa2 {
  background-color: #1c604a !important;
}
.caixa2 p {
  color: #fff !important;
}
.caixa2 h3 {
  color: #fff !important;
}
.caixa-info {
  position: relative;
  bottom: 240px;
}
.caixa-info h3 {
  font-weight: bold;
  font-size: 23px;
  color: #252b42;
  text-align: justify;
  padding-left: 40px;
}
.caixa-info p {
  font-size: 14px;
  text-align: justify;
  padding-left: 40px;
  color: #737373;
}
.conteudo {
  padding-top: 30px;
}
.alinharcentro {
  margin-left: 100px;
}
.alinharcentro:hover {
  text-decoration: none;
  background-color: #fff;
  color: #383838;
}

.azul {
  background-color: #9adcc7;
  height: 120px;
}
#portfolio {
  position: relative;
  bottom: 200px;
}
.container2 {
  width: 80vw;
  margin: 3em auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 50px;
  grid-auto-flow: dense;
  grid-gap: 5px;
}
.container2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.large,
.medium,
.small {
  display: flex;
  height: 100%;
  width: 100%;
  grid-column: auto / span 1;
}

.large {
  grid-row: span 4;
}

.medium {
  grid-row: span 3;
}

.small {
  grid-row: span 2;
}

.tile {
  width: 80%;
  margin: 0px auto;
}

#tile-1 .nav-tabs {
  position: relative;
  border: none !important;
  /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
  border-radius: 6px;
}
#tile-1 .nav-tabs li {
  margin: 0px !important;
}
#tile-1 .nav-tabs li a {
  position: relative;
  margin-right: 0px !important;
  padding: 8px 0px !important;
  font-size: 19px;
  font-weight: 700;
  border: none !important;
  color: #333;
}
#tile-1 .nav-tabs a:hover {
  color: #ff9d00 !important;
  border: none;
}
#tile-1 .slider {
  display: inline-block;
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background-color: #ff9d00;
  position: absolute;
  z-index: 1200;
  bottom: 0;
  transition: all 0.4s linear;
}
#tile-1 .nav-tabs .active {
  background-color: transparent !important;
  border: none !important;
  color: #ff9d00 !important;
}
.contactos h2 {
  font-weight: 700;
  font-size: 16px;
  color: #1c604a;
}
.missao {
  font-weight: 700;
  font-size: 16px;
  color: #1c604a;
}
@media (max-width: 600px) {
  .img-sobre {
    width: 100%;
  }
  .banner-principal {
    position: relative;
    top: 60px;
  }
  .cima-banner {
    position: relative;
    bottom: 150px;
    font-size: 10px;
  }
  .cima-banner p {
    font-size: 25px;
  }
  .caixa-info {
    position: relative;
    bottom: 110px;
  }
  .text-quem {
    padding-right: unset !important;
  }
  .titulo {
    padding-top: 170px !important;
  }
  .img-porque {
    display: none;
  }
  .titulo-porque {
    padding-top: 456px !important;
  }
  .logo-parceiros {
    display: none;
  }
  .parceirosmobile {
    display: unset !important;
    width: 100%;
  }
  .azul {
    height: 58px;
  }
}
